Skip to content

Commit 7185058

Browse files
SvenDowideitSvenDowideit
authored andcommitted
Item109: TWikiGuest -> WikiGuest
1 parent 4fcade8 commit 7185058

File tree

162 files changed

+279
-279
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

162 files changed

+279
-279
lines changed

ActionTrackerPlugin/data/TWiki/ActionTrackerPlugin.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ Write the command =%<nop>ACTION{= _attributes_ =}% ... %<nop>ENDACTION%= anywhe
6060

6161
For example,
6262
<pre>
63-
%<nop>ACTION{ who="TWikiGuest" due="2 Jan 2004" state="open" notify="AttillaTheHun" }% An action for TWikiGuest %<nop>ENDACTION%
63+
%<nop>ACTION{ who="WikiGuest" due="2 Jan 2004" state="open" notify="AttillaTheHun" }% An action for WikiGuest %<nop>ENDACTION%
6464
%<nop>ACTION{ who="LittleOysters" due="2 Jan 1884" state="open" }%
6565
The time has come, the walrus said,
6666
To speak of many things.
@@ -99,7 +99,7 @@ For example,
9999
<pre>
100100
%<nop>ACTIONSEARCH{ who="me" state="late" }%
101101
%<nop>ACTIONSEARCH{ who="me" open late }%
102-
%<nop>ACTIONSEARCH{ who="TWikiGuest" state="open" within="7" }%
102+
%<nop>ACTIONSEARCH{ who="WikiGuest" state="open" within="7" }%
103103
%<nop>ACTIONSEARCH{ web=".*" who="[email protected]" state="open" within="7" }%
104104
</pre>
105105

@@ -391,9 +391,9 @@ Set to 1 to enable debug features, including the undocumented =%<nop>ACTIONNOTIF
391391

392392
%$INSTALL_INSTRUCTIONS%
393393
* If the plugin is installed and enabled correctly you should see a formatted action below:
394-
%ACTION{who=TWikiGuest,due="1 Jan 2003",open}% Example action %ENDACTION%
394+
%ACTION{who=WikiGuest,due="1 Jan 2003",open}% Example action %ENDACTION%
395395
* ... and the result of a formatted search below:
396-
%ACTIONSEARCH{topic=ActionTrackerPlugin who=TWikiGuest header="|Who|Due|State|Description|" format="| $who |$due|$state|$text $link|" orient="rows" }%
396+
%ACTIONSEARCH{topic=ActionTrackerPlugin who=WikiGuest header="|Who|Due|State|Description|" format="| $who |$due|$state|$text $link|" orient="rows" }%
397397

398398
Note that if you want to use the =action= template shipped with the TWiki:Plugins.CommentPlugin to create actions, then you must put the !CommentPlugin *before* the !ActionTrackerPlugin in the ={PluginsOrder}= configuration option.
399399

ActionTrackerPlugin/test/unit/ActionTrackerPlugin/ActionTrackerPluginTests.pm

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -204,13 +204,13 @@ sub testAfterEditHandler {
204204
my $second = $2;
205205
my $re = qr/\s+state=\"open\"\s+/;
206206
$this->assert_matches($re, $first); $first =~ s/$re/ /;
207-
$re = qr/\s+creator=\"$this->{users_web}\.TWikiGuest\"\s+/o;
207+
$re = qr/\s+creator=\"$this->{users_web}\.WikiGuest\"\s+/o;
208208
$this->assert_matches($re, $first); $first =~ s/$re/ /;
209209
$re = qr/\s+due=\"3-Jun-2002\"\s+/;
210210
$this->assert_matches($re, $first); $first =~ s/$re/ /;
211211
$re = qr/\s+created=\"3-Jun-2002\"\s+/;
212212
$this->assert_matches($re, $first); $first =~ s/$re/ /;
213-
$re = qr/\s+who=\"$this->{users_web}.TWikiGuest\"\s+/;
213+
$re = qr/\s+who=\"$this->{users_web}.WikiGuest\"\s+/;
214214
$this->assert_matches($re, $first); $first =~ s/$re/ /;
215215
}
216216

@@ -233,13 +233,13 @@ sub testBeforeSaveHandler1 {
233233
$text,"Topic2",$this->{users_web});
234234
my $re = qr/ state=\"open\"/;
235235
$this->assert_matches($re, $text); $text =~ s/$re//;
236-
$re = qr/ creator=\"$this->{users_web}.TWikiGuest\"/o;
236+
$re = qr/ creator=\"$this->{users_web}.WikiGuest\"/o;
237237
$this->assert_matches($re, $text); $text =~ s/$re//;
238238
$re = qr/ created=\"3-Jun-2002\"/o;
239239
$this->assert_matches($re, $text); $text =~ s/$re//;
240240
$re = qr/ due=\"3-Jun-2002\"/o;
241241
$this->assert_matches($re, $text); $text =~ s/$re//;
242-
$re = qr/ who=\"$this->{users_web}.TWikiGuest\"/o;
242+
$re = qr/ who=\"$this->{users_web}.WikiGuest\"/o;
243243
$this->assert_matches($re, $text); $text =~ s/$re//;
244244
$re = qr/ No description/o;
245245
$this->assert_matches($re, $text); $text =~ s/$re//;
@@ -278,13 +278,13 @@ EOF
278278
$text,"Topic2",$this->{users_web});
279279
my $re = qr/ state=\"open\"/o;
280280
$this->assert_matches($re, $text); $text =~ s/$re//;
281-
$re = qr/ creator=\"$this->{users_web}.TWikiGuest\"/o;
281+
$re = qr/ creator=\"$this->{users_web}.WikiGuest\"/o;
282282
$this->assert_matches($re, $text); $text =~ s/$re//;
283283
$re = qr/ created=\"3-Jun-2002\"/o;
284284
$this->assert_matches($re, $text); $text =~ s/$re//;
285285
$re = qr/ due=\"3-Jun-2002\"/o;
286286
$this->assert_matches($re, $text); $text =~ s/$re//;
287-
$re = qr/ who=\"$this->{users_web}.TWikiGuest\"/o;
287+
$re = qr/ who=\"$this->{users_web}.WikiGuest\"/o;
288288
$this->assert_matches($re, $text); $text =~ s/$re//;
289289
}
290290

AlbumOfSnapsPlugin/data/TWiki/AlbumOfSnapsPlugin.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,5 @@ Edit AlbumOfSnapsPlugin topic to set the debug variable to 0 or 1 i.e. to enable
2727

2828
* Set DEBUG = 0
2929

30-
-- Main.TWikiGuest - 02 Nov 2004
30+
-- Main.WikiGuest - 02 Nov 2004
3131

ApprovalPlugin/lib/TWiki/Plugins/ApprovalPlugin.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ sub _createTransitionForm {
262262
if( $noactions ){
263263
# not permitted to change state
264264
my $logIn = '';
265-
my $guest = $TWiki::cfg{DefaultUserWikiName} || 'TWikiGuest';
265+
my $guest = $TWiki::cfg{DefaultUserWikiName} || 'WikiGuest';
266266
#if( TWiki::Func::isGuest() ){
267267
if( $user eq $guest ){
268268
my $url = TWiki::Func::getScriptUrl( $web, $topic, 'login' );

AttachContentPlugin/data/TWiki/AttachContentPlugin.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ See: PatternSkinColorSettings. This topic uses !AttachContentPlugin to write a C
5252
%STARTATTACH{"userdata.xml" comment="User data as of %DATE%"}%
5353
<?xml version="1.0" encoding="ISO-8859-1"?>
5454
<users>
55-
%SEARCH{ "[F]irstName.*value=.*()" web="%MAINWEB%" type="regex" nonoise="on" excludetopic="UserForm,ProjectContributor,TWikiGuest,UnknownUser" format="<user><firstname><![CDATA[$formfield(FirstName)]]></firstname><lastname><![CDATA[$formfield(LastName)]]></lastname><url><![CDATA[%SCRIPTURL{view}%/%WEB%/$topic]]></url></user>" }%
55+
%SEARCH{ "[F]irstName.*value=.*()" web="%MAINWEB%" type="regex" nonoise="on" excludetopic="UserForm,ProjectContributor,WikiGuest,UnknownUser" format="<user><firstname><![CDATA[$formfield(FirstName)]]></firstname><lastname><![CDATA[$formfield(LastName)]]></lastname><url><![CDATA[%SCRIPTURL{view}%/%WEB%/$topic]]></url></user>" }%
5656
</users>
5757
%ENDATTACH%
5858
</verbatim>

AttachmentListPlugin/data/TWiki/AttachmentListPlugin.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ This plugin uses TWiki:Plugins/TopicDataHelperPlugin
3939
| =extension= | Comma-separated list of file extensions to be listed. To find files that do not have an extension, pass special name =NONE=. | none | =extension="gif, jpg, NONE"= |
4040
| =excludeextension= | Comma-separated list of file extensions to not show | none | =excludeextension="htm"= |
4141
| =user= | Comma-separated list of user names (that have attached an attachment) to be listed. To find attachments where no user is specified, use =UnknownUser=. | none | =user="ProjectContributor"= |
42-
| =excludeuser= | Comma-separated list of user names (that have attached an attachment) to not show | none | =excludeuser="<nop>ProjectContributor, <nop>TWikiAdminUser, <nop>TWikiGuest, <nop>UnknownUser"= |
42+
| =excludeuser= | Comma-separated list of user names (that have attached an attachment) to not show | none | =excludeuser="<nop>ProjectContributor, <nop>TWikiAdminUser, <nop>WikiGuest, <nop>UnknownUser"= |
4343
| =hide= | Set to "on" to show only non-hidden attachments | show all attachments | =hide="on"= |
4444
| =fromdate=, =todate= | Date range filter: show attachments between =fromdate= and =todate=; dates are specified in format =yyyy/mm/dd= \
4545
%BB% =fromdate="" todate="2007/09/01"= selects all attachments up to 1 Sep 2007 \

AutoCompleteAddOn/data/Sandbox/AutoCompleteTestData.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ Pass parameter =topicsweb= for the web.
1313
Data is returned as an array of arrays. %BR%
1414
To be used with TWiki:Plugins/PersonalInfoAddOn.
1515

16-
%STARTSECTION{"usernames"}%%SEARCH{ "[F]irstName.*value=.*();[W]orkStatus.*value=.*(Current)" web="%MAINWEB%" type="regex" nonoise="on" excludetopic="UserForm,PersonalInfo,PersonalInfoDocumentation,ProjectContributor,TWikiGuest,UnknownUser" format="[\"$topic\", \"$formfield(FirstName) $formfield(LastName)\"]" separator=","}%%ENDSECTION{"usernames"}%
16+
%STARTSECTION{"usernames"}%%SEARCH{ "[F]irstName.*value=.*();[W]orkStatus.*value=.*(Current)" web="%MAINWEB%" type="regex" nonoise="on" excludetopic="UserForm,PersonalInfo,PersonalInfoDocumentation,ProjectContributor,WikiGuest,UnknownUser" format="[\"$topic\", \"$formfield(FirstName) $formfield(LastName)\"]" separator=","}%%ENDSECTION{"usernames"}%

AutoCompletePlugin/data/Sandbox/AutoCompletePluginTestData.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Test data topic for %SYSTEMWEB%.AutoCompletePlugin.
66
---++ usernames
77
Data is returned as an array of arrays. %BR%
88

9-
%STARTSECTION{"usernames"}%%SEARCH{ "[F]irstName.*value=.*()" web="%MAINWEB%" type="regex" nonoise="on" excludetopic="UserForm,PersonalInfo,PersonalInfoDocumentation,ProjectContributor,TWikiGuest,UnknownUser" format="[\"$topic\", \"$formfield(FirstName) $formfield(LastName)\"]" separator=","}%%ENDSECTION{"usernames"}%
9+
%STARTSECTION{"usernames"}%%SEARCH{ "[F]irstName.*value=.*()" web="%MAINWEB%" type="regex" nonoise="on" excludetopic="UserForm,PersonalInfo,PersonalInfoDocumentation,ProjectContributor,WikiGuest,UnknownUser" format="[\"$topic\", \"$formfield(FirstName) $formfield(LastName)\"]" separator=","}%%ENDSECTION{"usernames"}%
1010

1111
---++ topiclist
1212

BenchmarkContrib/data/Benchmarks/WebHome.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
%META:TOPICINFO{author="TWikiGuest" date="1147648879" format="1.1" reprev="1.5" version="1.5"}%
1+
%META:TOPICINFO{author="WikiGuest" date="1147648879" format="1.1" reprev="1.5" version="1.5"}%
22
---+!! Benchmarks - Examine TWiki Performance
33

44
For help see the %SYSTEMWEB%.BenchmarkContribUserGuide!

BenchmarkContrib/data/Benchmarks/WebNotify.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
%META:TOPICINFO{author="ProjectContributor" date="1112002813" format="1.0" version="$Rev: 6708 $"}%
22
%MAKETEXT{"This is a subscription service to be automatically notified by e-mail when topics change in this [_1] web. This is a convenient service, so you do not have to come back and check all the time if something has changed. To subscribe, please add a bullet with your [_2] in alphabetical order to this list:" args="*<nop>%WEB%*,%SYSTEMWEB%.WikiName"}%
33

4-
* Main.TWikiGuest - [email protected]
4+
* Main.WikiGuest - [email protected]
55

66
%INCLUDE{"%SYSTEMWEB%.WebChangesAlert"}%
77

0 commit comments

Comments
 (0)