Changeset 836
- Timestamp:
- 11/20/08 19:00:58 (4 years ago)
- Location:
- trunk
- Files:
-
- 1 added
- 13 edited
-
CommentPlugin/lib/Foswiki/Plugins/CommentPlugin.pm (modified) (2 diffs)
-
EmptyPlugin/lib/Foswiki/Plugins/EmptyPlugin.pm (modified) (22 diffs)
-
JSCalendarContrib/lib/Foswiki/Form/Date.pm (modified) (1 diff)
-
MailerContrib/lib/Foswiki/Contrib/MailerContrib.pm (modified) (2 diffs)
-
SpanishTWikiContrib/data/TWiki_ES/WebPreferences.txt (modified) (1 diff)
-
TWikiCompatibilityPlugin/lib/TWiki/Func.pm (modified) (1 diff)
-
TWikiCompatibilityPlugin/lib/TWiki/Plugins.pm (modified) (2 diffs)
-
TWikiCompatibilityPlugin/lib/TWiki/Plugins/TWikiCompatibilityPlugin/MANIFEST (modified) (1 diff)
-
TopicUserMappingContrib/lib/Foswiki/Users/TopicUserMapping.pm (modified) (1 diff)
-
WysiwygPlugin/lib/Foswiki/Plugins/WysiwygPlugin.pm (modified) (2 diffs)
-
core/data/System/DefaultPreferences.txt (modified) (1 diff)
-
core/data/System/WebPreferences.txt (modified) (1 diff)
-
core/lib/Foswiki/Configure/Load.pm (modified) (1 diff)
-
core/pub/System/ProjectLogos/badge.gif (added)
Legend:
- Unmodified
- Added
- Removed
-
trunk/CommentPlugin/lib/Foswiki/Plugins/CommentPlugin.pm
r811 r836 1 # Plugin for Foswiki - The Free Open Source Wiki, http://foswiki.org/ 2 # 3 # Copyright (C) 2004 Crawford Currie 4 # Copyright (C) 2001-2006 Foswiki Contributors. All Rights Reserved. 5 # Foswiki Contributors 6 # are listed in the AUTHORS file in the root of this distribution. 7 # NOTE: Please extend that file, not this notice. 8 # 9 # This program is free software; you can redistribute it and/or 10 # modify it under the terms of the GNU General Public License 11 # as published by the Free Software Foundation; either version 2 12 # of the License, or (at your option) any later version. For 13 # more details read LICENSE in the root of this distribution. 14 # 15 # This program is distributed in the hope that it will be useful, 16 # but WITHOUT ANY WARRANTY; without even the implied warranty of 17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 18 # 19 # For licensing info read LICENSE file in the TWiki root. 1 # See bottom of file for license and copyright information 20 2 # 21 3 # See Plugin topic for history and plugin information … … 86 68 87 69 1; 70 __DATA__ 71 # Plugin for Foswiki - The Free Open Source Wiki, http://foswiki.org/ 72 # 73 # Copyright (C) 2008 Foswiki Contributors. All Rights Reserved. 74 # Foswiki Contributors are listed in the AUTHORS file in the root 75 # of this distribution. NOTE: Please extend that file, not this notice. 76 # 77 # Additional copyrights apply to some or all of the code in this 78 # file as follows: 79 # 80 # Copyright (C) 2001-2006 TWiki Contributors. All Rights Reserved. 81 # TWiki Contributors are listed in the AUTHORS file in the root 82 # of this distribution. NOTE: Please extend that file, not this notice. 83 # Copyright (C) 2004-2008 Crawford Currie 84 # 85 # This program is free software; you can redistribute it and/or 86 # modify it under the terms of the GNU General Public License 87 # as published by the Free Software Foundation; either version 2 88 # of the License, or (at your option) any later version. For 89 # more details read LICENSE in the root of this distribution. 90 # 91 # This program is distributed in the hope that it will be useful, 92 # but WITHOUT ANY WARRANTY; without even the implied warranty of 93 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -
trunk/EmptyPlugin/lib/Foswiki/Plugins/EmptyPlugin.pm
r811 r836 1 # Plugin for Foswiki - The Free Open Source Wiki, http://foswiki.org/ 2 # 3 # Copyright (C) 2000-2003 Andrea Sterbini, a.sterbini@flashnet.it 4 # Copyright (C) 2001-2006 Peter Thoeny, peter@thoeny.org 5 # and Foswiki Contributors. All Rights Reserved. Foswiki Contributors 6 # are listed in the AUTHORS file in the root of this distribution. 7 # NOTE: Please extend that file, not this notice. 8 # 9 # This program is free software; you can redistribute it and/or 10 # modify it under the terms of the GNU General Public License 11 # as published by the Free Software Foundation; either version 2 12 # of the License, or (at your option) any later version. For 13 # more details read LICENSE in the root of this distribution. 14 # 15 # This program is distributed in the hope that it will be useful, 16 # but WITHOUT ANY WARRANTY; without even the implied warranty of 17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 18 # 19 # For licensing info read LICENSE file in the TWiki root. 1 # See bottom of file for default license and copyright information 20 2 21 3 =pod … … 23 5 ---+ package EmptyPlugin 24 6 25 This is an empty TWiki plugin. It is a fully defined plugin, but is26 disabled by default in a TWiki installation. Use it as a template7 This is an empty Foswiki plugin. It is a fully defined plugin, but is 8 disabled by default in a Foswiki installation. Use it as a template 27 9 for your own plugins; see %SYSTEMWEB%.Plugins for details. 28 10 … … 32 14 plugin can check it. 33 15 34 __NOTE:__ To interact with TWiki use ONLY the official API functions16 __NOTE:__ To interact with Foswiki use ONLY the official API functions 35 17 in the Foswiki::Func module. Do not reference any functions or 36 variables elsewhere in TWiki, as these are subject to change18 variables elsewhere in Foswiki, as these are subject to change 37 19 without prior warning, and your plugin may suddenly stop 38 20 working. … … 45 27 46 28 __NOTE:__ When developing a plugin it is important to remember that 47 TWiki is tolerant of plugins that do not compile. In this case,29 Foswiki is tolerant of plugins that do not compile. In this case, 48 30 the failure will be silent but the plugin will not be available. 49 31 See [[%SYSTEMWEB%.Plugins#FAILEDPLUGINS]] for error messages. … … 53 35 [[%SYSTEMWEB%.Plugins#Handlig_deprecated_functions]] 54 36 for information on regarding deprecated handlers that are defined for 55 compatibility with older TWiki versions.37 compatibility with older Foswiki versions. 56 38 57 39 __NOTE:__ When writing handlers, keep in mind that these may be invoked … … 72 54 require Foswiki::Plugins; # For the API version 73 55 74 # $VERSION is referred to by TWiki, and is the only global variable that56 # $VERSION is referred to by Foswiki, and is the only global variable that 75 57 # *must* exist in this package. 76 58 use vars qw( $VERSION $RELEASE $SHORTDESCRIPTION $debug $pluginName $NO_PREFS_IN_TOPIC ); 77 59 78 # This should always be $Rev$ so that TWiki can determine the checked-in60 # This should always be $Rev$ so that Foswiki can determine the checked-in 79 61 # status of the plugin. It is used by the build automation tools, so 80 62 # you should leave it alone. … … 84 66 # It is *not* used by the build automation tools, but is reported as part 85 67 # of the version number in PLUGINDESCRIPTIONS. 86 $RELEASE = ' TWiki-4.2';68 $RELEASE = 'Foswiki-4.2'; 87 69 88 70 # Short description of this plugin … … 94 76 # older plugins, but imposes a significant performance penalty, and 95 77 # is not recommended. Instead, use $Foswiki::cfg entries set in LocalSite.cfg, or 96 # if you want the users to be able to change settings, then use standard TWiki78 # if you want the users to be able to change settings, then use standard Foswiki 97 79 # preferences that can be defined in your %USERSWEB%.SitePreferences and overridden 98 80 # at the web and topic level. … … 122 104 123 105 You may also call =Foswiki::Func::registerTagHandler= here to register 124 a function to handle variables that have standard TWiki syntax - for example,106 a function to handle variables that have standard Foswiki syntax - for example, 125 107 =%MYTAG{"my param" myarg="My Arg"}%. You can also override internal 126 TWiki variable handling functions this way, though this practice is unsupported108 Foswiki variable handling functions this way, though this practice is unsupported 127 109 and highly dangerous! 128 110 … … 171 153 sub _EXAMPLETAG { 172 154 my($session, $params, $theTopic, $theWeb) = @_; 173 # $session - a reference to the TWiki session object (if you don't know155 # $session - a reference to the Foswiki session object (if you don't know 174 156 # what this is, just ignore it) 175 157 # $params= - a reference to a Foswiki::Attrs object containing parameters. … … 207 189 * =$url= - request url 208 190 * =$pathInfo= - pathinfo from the CGI query 209 Allows a plugin to set the username. Normally TWiki gets the username191 Allows a plugin to set the username. Normally Foswiki gets the username 210 192 from the login manager. This handler gives you a chance to override the 211 193 login manager. … … 233 215 * =$loginName= - users login name 234 216 235 Called when a new user registers with this TWiki.217 Called when a new user registers with this Foswiki. 236 218 237 219 *Since:* Foswiki::Plugins::VERSION = '1.010' … … 262 244 263 245 Plugins that have to parse the entire topic content should implement 264 this function. Internal TWiki246 this function. Internal Foswiki 265 247 variables (and any variables declared using =Foswiki::Func::registerTagHandler=) 266 248 are expanded _before_, and then again _after_, this function is called … … 302 284 * =$web= - the name of the web in the current CGI query 303 285 * =$meta= - meta-data object for the topic MAY BE =undef= 304 This handler is called before TWiki does any expansion of it's own286 This handler is called before Foswiki does any expansion of it's own 305 287 internal variables. It is designed for use by cache plugins. Note that 306 288 when this handler is called, <verbatim> blocks are still present … … 332 314 * =$web= - the name of the web in the current CGI query 333 315 * =$meta= - meta-data object for the topic MAY BE =undef= 334 This handler is after TWiki has completed expansion of %TAGS%.316 This handler is after Foswiki has completed expansion of %TAGS%. 335 317 It is designed for use by cache plugins. Note that when this handler 336 318 is called, <verbatim> blocks are present in the text. … … 358 340 * =\%removed= - reference to a hash that maps the placeholders to the removed blocks. 359 341 360 Handler called immediately before TWiki syntax structures (such as lists) are342 Handler called immediately before Foswiki syntax structures (such as lists) are 361 343 processed, but after all variables have been expanded. Use this handler to 362 344 process special syntax only recognised by your plugin. … … 681 663 * =$url= - the URL to redirect to 682 664 683 This handler can be used to replace TWiki's internal redirect function.665 This handler can be used to replace Foswiki's internal redirect function. 684 666 685 667 If this handler is defined in more than one plugin, only the handler … … 719 701 *Since:* Foswiki::Plugins::VERSION 1.1 720 702 721 Note that since TWiki-4.2,you can also extend the range of available703 Note that you can also extend the range of available 722 704 types by providing a subclass of =Foswiki::Form::FieldDefinition= to implement 723 the new type (see =Foswiki:: Plugins.JSCalendarContrib= and724 =Foswiki:: Plugins.RatingContrib= for examples). This is the preferred way to725 extend the form field types , but does not work for TWiki < 4.2.705 the new type (see =Foswiki::Extensions.JSCalendarContrib= and 706 =Foswiki::Extensions.RatingContrib= for examples). This is the preferred way to 707 extend the form field types. 726 708 727 709 =cut … … 736 718 it's =blah blah=, for =BlahBlah= it's =BlahBlah=, and for [[Blah Blah]] it's =Blah Blah=. 737 719 * =$hasExplicitLinkLabel= - true if the link is of the form =[<nop>[Link][blah blah]]= (false if it's ==<nop>[Blah]] or =BlahBlah=) 738 * =$web=, =$topic= - specify the topic being rendered (only since TWiki 4.2)720 * =$web=, =$topic= - specify the topic being rendered 739 721 740 722 Called during rendering, this handler allows the plugin a chance to change … … 757 739 758 740 This handler is called on the ingredients of every page that is 759 output by the standard TWikiscripts. It is designed primarily for use by741 output by the standard CGI scripts. It is designed primarily for use by 760 742 cache and security plugins. 761 743 * =$html= - the body of the page (normally <html>..$lt;/html>) … … 778 760 779 761 This is an example of a sub to be called by the =rest= script. The parameter is: 780 * =$session= - The TWiki object associated to this session.762 * =$session= - The Foswiki object associated to this session. 781 763 782 764 Additional parameters can be recovered via de query object in the $session. … … 794 776 795 777 1; 778 __DATA__ 779 This copyright information applies to the EmptyPlugin: 780 781 # Plugin for Foswiki - The Free Open Source Wiki, http://foswiki.org/ 782 # 783 # EmptyPlugin is Copyright (C) 2008 Foswiki Contributors. Foswiki Contributors 784 # are listed in the AUTHORS file in the root of this distribution. 785 # NOTE: Please extend that file, not this notice. 786 # Additional copyrights apply to some or all of the code as follows: 787 # Copyright (C) 2000-2003 Andrea Sterbini, a.sterbini@flashnet.it 788 # Copyright (C) 2001-2006 Peter Thoeny, peter@thoeny.org 789 # and TWiki Contributors. All Rights Reserved. Foswiki Contributors 790 # are listed in the AUTHORS file in the root of this distribution. 791 792 This license applies to EmptyPlugin *and also to any derivatives* 793 # 794 # This program is free software; you can redistribute it and/or 795 # modify it under the terms of the GNU General Public License 796 # as published by the Free Software Foundation; either version 2 797 # of the License, or (at your option) any later version. For 798 # more details read LICENSE in the root of this distribution. 799 # 800 # This program is distributed in the hope that it will be useful, 801 # but WITHOUT ANY WARRANTY; without even the implied warranty of 802 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 803 # 804 # For licensing info read LICENSE file in the Foswiki root. -
trunk/JSCalendarContrib/lib/Foswiki/Form/Date.pm
r811 r836 58 58 Module of Foswiki - The Free Open Source Wiki, http://foswiki.org/, http://Foswiki.org/ 59 59 60 Copyright (C) 2001-2007 Foswiki Contributors. All Rights Reserved. 61 Foswiki Contributors are listed in the AUTHORS file in the root of 62 this distribution. NOTE: Please extend that file, not this notice. 63 60 # Copyright (C) 2008 Foswiki Contributors. All Rights Reserved. 61 # Foswiki Contributors are listed in the AUTHORS file in the root 62 # of this distribution. NOTE: Please extend that file, not this notice. 63 # 64 # Additional copyrights apply to some or all of the code in this 65 # file as follows: 66 # 67 # Copyright (C) 2001-2007 TWiki Contributors. All Rights Reserved. 68 # TWiki Contributors are listed in the AUTHORS file in the root 69 # of this distribution. NOTE: Please extend that file, not this notice. 70 # 64 71 This program is free software; you can redistribute it and/or 65 72 modify it under the terms of the GNU General Public License -
trunk/MailerContrib/lib/Foswiki/Contrib/MailerContrib.pm
r811 r836 1 # Module of Foswiki - The Free Open Source Wiki, http://foswiki.org/ 2 # 3 # Copyright (C) 2004 Wind River Systems Inc. 4 # Copyright (C) 1999-2006 Foswiki Contributors. 5 # All Rights Reserved. Foswiki Contributors 6 # are listed in the AUTHORS file in the root of this distribution. 7 # NOTE: Please extend that file, not this notice. 8 # 9 # This program is free software; you can redistribute it and/or 10 # modify it under the terms of the GNU General Public License 11 # as published by the Free Software Foundation; either version 2 12 # of the License, or (at your option) any later version. For 13 # more details read LICENSE in the root of this distribution. 14 # 15 # This program is distributed in the hope that it will be useful, 16 # but WITHOUT ANY WARRANTY; without even the implied warranty of 17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 18 # 19 # As per the GPL, removal of this notice is prohibited. 1 # See bottom of file for license and copyright information 20 2 21 3 =pod … … 514 496 515 497 1; 498 __DATA__ 499 # Module of Foswiki - The Free Open Source Wiki, http://foswiki.org/ 500 # 501 # Copyright (C) 2008 Foswiki Contributors. All Rights Reserved. 502 # Foswiki Contributors are listed in the AUTHORS file in the root 503 # of this distribution. NOTE: Please extend that file, not this notice. 504 # 505 # Additional copyrights apply to some or all of the code in this 506 # file as follows: 507 # 508 # Copyright (C) 1999-2006 TWiki Contributors. All Rights Reserved. 509 # TWiki Contributors are listed in the AUTHORS file in the root 510 # of this distribution. NOTE: Please extend that file, not this notice. 511 # Copyright (C) 2004 Wind River Systems Inc. 512 # 513 # This program is free software; you can redistribute it and/or 514 # modify it under the terms of the GNU General Public License 515 # as published by the Free Software Foundation; either version 2 516 # of the License, or (at your option) any later version. For 517 # more details read LICENSE in the root of this distribution. 518 # 519 # This program is distributed in the hope that it will be useful, 520 # but WITHOUT ANY WARRANTY; without even the implied warranty of 521 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 522 # 523 # As per the GPL, removal of this notice is prohibited. -
trunk/SpanishTWikiContrib/data/TWiki_ES/WebPreferences.txt
r733 r836 31 31 32 32 * Nota de derechos reservados para la web TWiki. 33 * Set WEBCOPYRIGHT = <span class="twikiRight"> <a href="http://twiki.org/"><img src="%PUBURLPATH%/%SYSTEMWEB%/ProjectLogos/ T-badge-88x31.gif" alt="This site is powered by the TWiki collaboration platform" width="88" height="31" title="This site is powered by the TWiki collaboration platform" border="0" /></a></span>%MAKETEXT{"Copyright &© by the contributing authors. All material on this collaboration platform is the property of the contributing authors." args="1999-%GMTIME{$year}%"}% <br /> %MAKETEXT{"Ideas, requests, problems regarding [_1]? <a href='[_2]'>Send feedback</a>" args="<nop>%WIKITOOLNAME%,mailto:%WIKIWEBMASTER%?subject=%WIKITOOLNAME%%20Feedback%20on%20%BASEWEB%.%BASETOPIC%"}% %IF{"$ WEB= $ SYSTEMWEB" then="<br /> __Note:__ Please contribute updates to this topic on TWiki.org at TWiki:TWiki.%BASETOPIC%"}%33 * Set WEBCOPYRIGHT = <span class="twikiRight"> <a href="http://twiki.org/"><img src="%PUBURLPATH%/%SYSTEMWEB%/ProjectLogos/badge.gif" alt="This site is powered by Foswiki" title="This site is powered by Foswiki" border="0" /></a></span>%MAKETEXT{"Copyright &© by the contributing authors. All material on this collaboration platform is the property of the contributing authors." args="1999-%GMTIME{$year}%"}% <br /> %MAKETEXT{"Ideas, requests, problems regarding [_1]? <a href='[_2]'>Send feedback</a>" args="<nop>%WIKITOOLNAME%,mailto:%WIKIWEBMASTER%?subject=%WIKITOOLNAME%%20Feedback%20on%20%BASEWEB%.%BASETOPIC%"}% %IF{"$ WEB= $ SYSTEMWEB" then=""}% 34 34 35 35 * Logotipos utilizados para efectos de traducción en esta web: -
trunk/TWikiCompatibilityPlugin/lib/TWiki/Func.pm
r833 r836 7 7 8 8 use Foswiki::Func; 9 10 use TWiki::Plugins; 9 11 10 12 sub getSkin { Foswiki::Func::getSkin(@_) } -
trunk/TWikiCompatibilityPlugin/lib/TWiki/Plugins.pm
r834 r836 1 1 package TWiki::Plugins; 2 3 use TWiki; 2 4 3 5 use Foswiki::Plugins; 4 6 5 7 # Compatible version of TWiki::Plugins 6 our $VERSION = '1.2';8 our $VERSION = 1.2; 7 9 8 10 # Access to $TWiki::Plugins::SESSION is via a tie to $Foswiki::Plugins::SESSION … … 15 17 }; 16 18 17 #tie($SESSION, 'TWiki::Plugins::SESSION_TIE');19 tie($SESSION, 'TWiki::Plugins::SESSION_TIE'); 18 20 19 21 1; -
trunk/TWikiCompatibilityPlugin/lib/TWiki/Plugins/TWikiCompatibilityPlugin/MANIFEST
r834 r836 6 6 lib/TWiki/Plugins.pm 0644 Perl module 7 7 lib/TWiki/Func.pm 0644 Perl module 8 lib/TWiki/TWiki.pm 0644 Perl module 9 lib/TWiki/UI.pm 0644 Perl module 8 10 lib/TWiki/Attrs.pm 0644 Perl module 9 11 lib/TWiki/Sandbox.pm 0644 Perl module 10 12 lib/TWiki/Prefs.pm 0644 Perl module 13 -
trunk/TopicUserMappingContrib/lib/Foswiki/Users/TopicUserMapping.pm
r811 r836 1 1 # Module of Foswiki - The Free Open Source Wiki, http://foswiki.org/ 2 2 # 3 # Copyright (C) 2008 Foswiki Contributors. Foswiki Contributors 4 # are listed in the AUTHORS file in the root of this distribution. 5 # NOTE: Please extend that file, not this notice. 6 # 7 # Additional copyrights apply to some or all of the code in this file: 8 # 3 9 # Copyright (C) 2007 Sven Dowideit, SvenDowideit@distributedINFORMATION.com 4 # and Foswiki Contributors. All Rights Reserved. Foswiki Contributors10 # and TWiki Contributors. All Rights Reserved. Foswiki Contributors 5 11 # are listed in the AUTHORS file in the root of this distribution. 6 12 # NOTE: Please extend that file, not this notice. -
trunk/WysiwygPlugin/lib/Foswiki/Plugins/WysiwygPlugin.pm
r811 r836 1 # Copyright (C) 2005 ILOG http://www.ilog.fr 2 # and Foswiki Contributors. All Rights Reserved. Foswiki Contributors 3 # are listed in the AUTHORS file in the root of this distribution. 4 # NOTE: Please extend that file, not this notice. 5 # 6 # This program is free software; you can redistribute it and/or 7 # modify it under the terms of the GNU General Public License 8 # as published by the Free Software Foundation; either version 2 9 # of the License, or (at your option) any later version. For 10 # more details read LICENSE in the root of the TWiki distribution. 11 # 12 # This program is distributed in the hope that it will be useful, 13 # but WITHOUT ANY WARRANTY; without even the implied warranty of 14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 15 # 16 # As per the GPL, removal of this notice is prohibited. 1 # See bottom of file for license and copyright information 17 2 18 3 =begin twiki … … 867 852 868 853 1; 854 __DATA__ 855 # Module of Foswiki - The Free Open Source Wiki, http://foswiki.org/ 856 # 857 # Copyright (C) 2008 Foswiki Contributors. Foswiki Contributors 858 # are listed in the AUTHORS file in the root of this distribution. 859 # NOTE: Please extend that file, not this notice. 860 # 861 # Additional copyrights apply to some or all of the code in this file: 862 # 863 # Copyright (C) 2005 ILOG http://www.ilog.fr 864 # and TWiki Contributors. All Rights Reserved. TWiki Contributors 865 # are listed in the AUTHORS file in the root of your Foswiki (or TWiki) 866 # distribution. 867 # 868 # This program is free software; you can redistribute it and/or 869 # modify it under the terms of the GNU General Public License 870 # as published by the Free Software Foundation; either version 2 871 # of the License, or (at your option) any later version. For 872 # more details read LICENSE in the root of the TWiki distribution. 873 # 874 # This program is distributed in the hope that it will be useful, 875 # but WITHOUT ANY WARRANTY; without even the implied warranty of 876 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 877 # 878 # As per the GPL, removal of this notice is prohibited. -
trunk/core/data/System/DefaultPreferences.txt
r813 r836 38 38 39 39 * Copyright notice: 40 * Set WEBCOPYRIGHT = <span class="twikiRight"> <a href="http://twiki.org/"><img src="%PUBURLPATH%/%SYSTEMWEB%/ProjectLogos/ T-badge-88x31.gif" alt="This site is powered by the TWiki collaboration platform" width="88" height="31" title="This site is powered by the TWiki collaboration platform" border="0" /></a></span>%MAKETEXT{"Copyright &© by the contributing authors. All material on this collaboration platform is the property of the contributing authors." args="1999-%GMTIME{$year}%"}% <br /> %MAKETEXT{"Ideas, requests, problems regarding [_1]? <a href='[_2]'>Send feedback</a>" args="<nop>%WIKITOOLNAME%,mailto:%WIKIWEBMASTER%?subject=%WIKITOOLNAME%%20Feedback%20on%20%BASEWEB%.%BASETOPIC%"}% %IF{"$ WEB= $ SYSTEMWEB" then="<br /> __Note:__ Please contribute updates to this topic on TWiki.org at TWiki:TWiki.%BASETOPIC%"}%40 * Set WEBCOPYRIGHT = <span class="twikiRight"> <a href="http://twiki.org/"><img src="%PUBURLPATH%/%SYSTEMWEB%/ProjectLogos/badge.gif" alt="This site is powered by Foswiki" title="This site is powered by Foswiki" border="0" /></a></span>%MAKETEXT{"Copyright &© by the contributing authors. All material on this collaboration platform is the property of the contributing authors." args="1999-%GMTIME{$year}%"}% <br /> %MAKETEXT{"Ideas, requests, problems regarding [_1]? <a href='[_2]'>Send feedback</a>" args="<nop>%WIKITOOLNAME%,mailto:%WIKIWEBMASTER%?subject=%WIKITOOLNAME%%20Feedback%20on%20%BASEWEB%.%BASETOPIC%"}% %IF{"$ WEB= $ SYSTEMWEB" then=""}% 41 41 42 42 * Simplified Copyright notice for the WebRss feed (don't use any special characters, html tags, entities, wiki markup or WikiWords) -
trunk/core/data/System/WebPreferences.txt
r733 r836 32 32 * Set WEBFORMS = DefaultPreferencesForm 33 33 34 * Copyright notice for the TWikiweb.35 * Set WEBCOPYRIGHT = <span class="twikiRight"> <a href="http://twiki.org/"><img src="%PUBURLPATH%/%SYSTEMWEB%/ProjectLogos/ T-badge-88x31.gif" alt="This site is powered by the TWiki collaboration platform" width="88" height="31" title="This site is powered by the TWiki collaboration platform" border="0" /></a></span>%MAKETEXT{"Copyright &© by the contributing authors. All material on this collaboration platform is the property of the contributing authors." args="1999-%GMTIME{$year}%"}% <br /> %MAKETEXT{"Ideas, requests, problems regarding [_1]? <a href='[_2]'>Send feedback</a>" args="<nop>%WIKITOOLNAME%,mailto:%WIKIWEBMASTER%?subject=%WIKITOOLNAME%%20Feedback%20on%20%BASEWEB%.%BASETOPIC%"}% %IF{"$ WEB= $ SYSTEMWEB" then="<br /> __Note:__ Please contribute updates to this topic on TWiki.org at TWiki:TWiki.%BASETOPIC%"}%34 * Copyright notice for the web. 35 * Set WEBCOPYRIGHT = <span class="twikiRight"> <a href="http://twiki.org/"><img src="%PUBURLPATH%/%SYSTEMWEB%/ProjectLogos/badge.gif" alt="This site is powered by Foswiki" title="This site is powered by Foswiki" border="0" /></a></span>%MAKETEXT{"Copyright &© by the contributing authors. All material on this collaboration platform is the property of the contributing authors." args="1999-%GMTIME{$year}%"}% <br /> %MAKETEXT{"Ideas, requests, problems regarding [_1]? <a href='[_2]'>Send feedback</a>" args="<nop>%WIKITOOLNAME%,mailto:%WIKIWEBMASTER%?subject=%WIKITOOLNAME%%20Feedback%20on%20%BASEWEB%.%BASETOPIC%"}% %IF{"$ WEB= $ SYSTEMWEB" then=""}% 36 36 37 37 * Users or groups who __are not__ / __are__ allowed to __view__ / __change__ / __rename__ topics in the <nop>%WEB% web: (See %SYSTEMWEB%.AccessControl). -
trunk/core/lib/Foswiki/Configure/Load.pm
r830 r836 82 82 83 83 $Foswiki::cfg{ConfigurationFinished} = 1; 84 85 # Alias TWiki cfg to Foswiki cfg for plugins and contribs 86 *{'TWiki::cfg'} = *{'Foswiki::cfg'}; 84 87 } 85 88
Note: See TracChangeset
for help on using the changeset viewer.
