diff --git a/ConfigurePlugin/data/System/ConfigurePlugin.txt b/ConfigurePlugin/data/System/ConfigurePlugin.txt
index 89bc46593b..6c86cf2591 100644
--- a/ConfigurePlugin/data/System/ConfigurePlugin.txt
+++ b/ConfigurePlugin/data/System/ConfigurePlugin.txt
@@ -1,4 +1,4 @@
-%META:TOPICINFO{author="ProjectContributor" date="1655468868" format="1.1" version="1"}%
+%META:TOPICINFO{author="ProjectContributor" date="1691320505" format="1.1" version="1"}%
%META:TOPICPARENT{name="Plugins"}%
---+!! Configure Plugin
%FORMFIELD{"Description"}%
@@ -43,6 +43,7 @@ The plugin uses the =JsonRpcContrib=, which must be installed.
---++ Change History
%TABLE{columnwidths="7em" tablewidth="100%"}%
+| 06 Aug 2023: | (1.12) Foswikitask:Item15151: add warnings and strictness |
| 31 Jan 2021: | (1.11) Foswikitask:Item15014: Prevent password fields form being auto-filled |
| 17 Apr 2020: | (1.10) Foswikitask:Item14901: Add support for XML and CERT data types in configure pages |
| 08 Dec 2017: | (1.09) Foswikitask:Item14536: Configure leaves "wait" cursor spinning while waiting for user action.
\
@@ -60,7 +61,7 @@ The plugin uses the =JsonRpcContrib=, which must be installed.
%META:FORM{name="PackageForm"}%
%META:FIELD{name="Author" title="Author" value="CrawfordCurrie"}%
-%META:FIELD{name="Copyright" title="Copyright" value="2013-2021, CrawfordCurrie http://c-dot.co.uk, All Rights Reserved"}%
+%META:FIELD{name="Copyright" title="Copyright" value="2013-2023, CrawfordCurrie http://c-dot.co.uk, All Rights Reserved"}%
%META:FIELD{name="Description" title="Description" value="%25$SHORTDESCRIPTION%25"}%
%META:FIELD{name="Home" title="Home" value="https://foswiki.org/Extensions/%25$ROOTMODULE%25"}%
%META:FIELD{name="License" title="License" value="GPL ([[https://www.gnu.org/copyleft/gpl.html][GNU General Public License]])"}%
diff --git a/ConfigurePlugin/lib/Foswiki/Plugins/ConfigurePlugin.pm b/ConfigurePlugin/lib/Foswiki/Plugins/ConfigurePlugin.pm
index 19834a82ce..84e3a97a1c 100644
--- a/ConfigurePlugin/lib/Foswiki/Plugins/ConfigurePlugin.pm
+++ b/ConfigurePlugin/lib/Foswiki/Plugins/ConfigurePlugin.pm
@@ -31,8 +31,8 @@ package Foswiki::Plugins::ConfigurePlugin;
use strict;
use warnings;
-our $VERSION = '1.11';
-our $RELEASE = '31 Jan 2021';
+our $VERSION = '1.12';
+our $RELEASE = '06 Aug 2023';
our $SHORTDESCRIPTION = '=configure= interface using json-rpc';
our $NO_PREFS_IN_TOPIC = 1;
@@ -207,7 +207,7 @@ Author: Crawford Currie http://c-dot.co.uk
Foswiki - The Free and Open Source Wiki, http://foswiki.org/
-Copyright (C) 2013-2021 Foswiki Contributors. Foswiki Contributors
+Copyright (C) 2013-2023 Foswiki Contributors. Foswiki Contributors
are listed in the AUTHORS file in the root of this distribution.
NOTE: Please extend that file, not this notice.
diff --git a/EditRowPlugin/data/System/EditRowPlugin.txt b/EditRowPlugin/data/System/EditRowPlugin.txt
index 12d9545368..d23718f5c6 100755
--- a/EditRowPlugin/data/System/EditRowPlugin.txt
+++ b/EditRowPlugin/data/System/EditRowPlugin.txt
@@ -1,4 +1,4 @@
-%META:TOPICINFO{author="ProjectContributor" date="1677500014" format="1.1" version="1"}%
+%META:TOPICINFO{author="ProjectContributor" date="1691320505" format="1.1" version="1"}%
---+!! !EditRowPlugin
%FORMFIELD{"Description"}%
@@ -271,6 +271,7 @@ Provides the vertical row editing interface like
---++ Change History
%TABLE{columnwidths="7em" tablewidth="100%"}%
+| 3.401 (06 Aug 2023) | Foswikitask:Item15151: add warnings and strictness |
| 3.400 (16 Jun 2022) | Foswikitask:Item15146: performance fixes |
| 3.330 (29 Sep 2020) | Foswikitask:Item14929: fixed single zero char not rendered in table cell |
| 3.321 (05 Feb 2018) | Foswikitask:Item14537: The plugin makes tables "shaky". |
@@ -350,7 +351,7 @@ Provides the vertical row editing interface like
%META:FIELD{name="Description" title="Description" value=""}%
%META:FORM{name="PackageForm"}%
%META:FIELD{name="Author" title="Author" value="Crawford Currie http://c-dot.co.uk"}%
-%META:FIELD{name="Copyright" title="Copyright" value="© 2007-2011 WindRiver Inc.
© 2008-2022 Foswiki Contributors"}%
+%META:FIELD{name="Copyright" title="Copyright" value="© 2007-2011 WindRiver Inc.
© 2008-2023 Foswiki Contributors"}%
%META:FIELD{name="Description" title="Description" value="%25$SHORTDESCRIPTION%25"}%
%META:FIELD{name="Home" title="Home" value="http://foswiki.org/Extensions/EditRowPlugin"}%
%META:FIELD{name="License" title="License" value="[[http://www.gnu.org/licenses/gpl.html][GPL (Gnu General Public License)]]"}%
diff --git a/EditRowPlugin/lib/Foswiki/Plugins/EditRowPlugin.pm b/EditRowPlugin/lib/Foswiki/Plugins/EditRowPlugin.pm
index a44f984191..8a3f79308c 100644
--- a/EditRowPlugin/lib/Foswiki/Plugins/EditRowPlugin.pm
+++ b/EditRowPlugin/lib/Foswiki/Plugins/EditRowPlugin.pm
@@ -34,8 +34,8 @@ BEGIN {
}
}
-our $VERSION = '3.400';
-our $RELEASE = '16 Jun 2022';
+our $VERSION = '3.401';
+our $RELEASE = '06 Aug 2023';
our $SHORTDESCRIPTION = 'Inline edit for tables';
our $NO_PREFS_IN_TOPIC = 1;
@@ -124,7 +124,7 @@ __END__
Author: Crawford Currie http://c-dot.co.uk
-Copyright (c) 2008-2022 Foswiki Contributors
+Copyright (c) 2008-2023 Foswiki Contributors
Copyright (c) 2007 WindRiver Inc.
All Rights Reserved. Foswiki Contributors are listed in the
AUTHORS file in the root of this distribution.
diff --git a/EditTablePlugin/data/System/EditTablePlugin.txt b/EditTablePlugin/data/System/EditTablePlugin.txt
index 31bb082b20..3710fff09f 100644
--- a/EditTablePlugin/data/System/EditTablePlugin.txt
+++ b/EditTablePlugin/data/System/EditTablePlugin.txt
@@ -1,4 +1,4 @@
-%META:TOPICINFO{author="ProjectContributor" date="1655899072" format="1.1" version="1"}%
+%META:TOPICINFO{author="ProjectContributor" date="1691320505" format="1.1" version="1"}%
%META:TOPICPARENT{name="Plugins"}%
---+!! Edit Table Plugin
%FORMFIELD{"Description"}%
@@ -194,6 +194,7 @@ Test if the Plugin is correctly installed:
---++ Change History
%TABLE{columnwidths="7em" tablewidth="100%"}%
+| 06 Aug 2023: | 4.47: Foswikitask:Item15151: add warnings and strictness |
| 04 Apr 2017: | 4.46: Item14324: Unescaped left brace - Perl 5.25.10 |
| 28 Nov 2016: | 4.45: Released with Foswiki 2.1.3
\
Foswikitask:Item14236: Include compressed and gziped versions of css and js. |
@@ -263,7 +264,7 @@ Test if the Plugin is correctly installed:
%META:FORM{name="PackageForm"}%
%META:FIELD{name="Author" title="Author" value="ProjectContributor"}%
-%META:FIELD{name="Copyright" title="Copyright" value="© 2008-2012, Arthur Clemens, 2008-2015, Foswiki Contributors; Copyright © 2002-2007 Peter Thoeny, peter@thoeny.org and TWiki Contributors"}%
+%META:FIELD{name="Copyright" title="Copyright" value="© 2008-2012, Arthur Clemens, 2008-2023, Foswiki Contributors; Copyright © 2002-2007 Peter Thoeny, peter@thoeny.org and TWiki Contributors"}%
%META:FIELD{name="Description" title="Description" value="%25$SHORTDESCRIPTION%25"}%
%META:FIELD{name="Home" title="Home" value="http://foswiki.org/Extensions/%TOPIC%"}%
%META:FIELD{name="License" title="License" value="GPL ([[http://www.gnu.org/copyleft/gpl.html][GNU General Public License]])"}%
@@ -271,15 +272,15 @@ Test if the Plugin is correctly installed:
%META:FIELD{name="Repository" title="Repository" value="https://github.com/foswiki/%TOPIC%"}%
%META:FIELD{name="Support" title="Support" value="http://foswiki.org/Support/%TOPIC%"}%
%META:FIELD{name="Version" title="Version" value="%$VERSION%"}%
-%META:FILEATTACHMENT{name="EditTablePluginCalendarExample.gif" attr="h" comment="" date="1655899072" size="7823" user="ProjectContributor" version="1"}%
-%META:FILEATTACHMENT{name="ScreenshotEditCell1.gif" attr="h" comment="" date="1655899072" size="2017" user="ProjectContributor" version="1"}%
-%META:FILEATTACHMENT{name="ScreenshotEditCell2.gif" attr="h" comment="" date="1655899072" size="3199" user="ProjectContributor" version="1"}%
-%META:FILEATTACHMENT{name="img.gif" attr="h" comment="" date="1655899072" size="145" user="ProjectContributor" version="1"}%
-%META:FILEATTACHMENT{name="menuarrow.gif" attr="h" comment="" date="1655899072" size="68" user="ProjectContributor" version="1"}%
-%META:FILEATTACHMENT{name="edittable.gif" attr="h" comment="" date="1655899072" size="298" user="ProjectContributor" version="1"}%
-%META:FILEATTACHMENT{name="btn_move.gif" attr="h" comment="" date="1655899072" size="298" user="ProjectContributor" version="1"}%
-%META:FILEATTACHMENT{name="btn_delete.gif" attr="h" comment="" date="1655899072" size="298" user="ProjectContributor" version="1"}%
-%META:FILEATTACHMENT{name="btn_delete_disabled.gif" attr="h" comment="" date="1655899072" size="298" user="ProjectContributor" version="1"}%
-%META:FILEATTACHMENT{name="edittable.css" attr="h" comment="" date="1655899072" size="298" user="ProjectContributor" version="1"}%
-%META:FILEATTACHMENT{name="edittable.js" attr="h" comment="" date="1655899072" size="298" user="ProjectContributor" version="1"}%
-%META:FILEATTACHMENT{name="move_done_bg_anim.gif" attr="h" comment="" date="1655899072" size="298" user="ProjectContributor" version="1"}%
+%META:FILEATTACHMENT{name="EditTablePluginCalendarExample.gif" attr="h" comment="" date="1691320505" size="7823" user="ProjectContributor" version="1"}%
+%META:FILEATTACHMENT{name="ScreenshotEditCell1.gif" attr="h" comment="" date="1691320505" size="2017" user="ProjectContributor" version="1"}%
+%META:FILEATTACHMENT{name="ScreenshotEditCell2.gif" attr="h" comment="" date="1691320505" size="3199" user="ProjectContributor" version="1"}%
+%META:FILEATTACHMENT{name="img.gif" attr="h" comment="" date="1691320505" size="145" user="ProjectContributor" version="1"}%
+%META:FILEATTACHMENT{name="menuarrow.gif" attr="h" comment="" date="1691320505" size="68" user="ProjectContributor" version="1"}%
+%META:FILEATTACHMENT{name="edittable.gif" attr="h" comment="" date="1691320505" size="298" user="ProjectContributor" version="1"}%
+%META:FILEATTACHMENT{name="btn_move.gif" attr="h" comment="" date="1691320505" size="298" user="ProjectContributor" version="1"}%
+%META:FILEATTACHMENT{name="btn_delete.gif" attr="h" comment="" date="1691320505" size="298" user="ProjectContributor" version="1"}%
+%META:FILEATTACHMENT{name="btn_delete_disabled.gif" attr="h" comment="" date="1691320505" size="298" user="ProjectContributor" version="1"}%
+%META:FILEATTACHMENT{name="edittable.css" attr="h" comment="" date="1691320505" size="298" user="ProjectContributor" version="1"}%
+%META:FILEATTACHMENT{name="edittable.js" attr="h" comment="" date="1691320505" size="298" user="ProjectContributor" version="1"}%
+%META:FILEATTACHMENT{name="move_done_bg_anim.gif" attr="h" comment="" date="1691320505" size="298" user="ProjectContributor" version="1"}%
diff --git a/EditTablePlugin/lib/Foswiki/Plugins/EditTablePlugin.pm b/EditTablePlugin/lib/Foswiki/Plugins/EditTablePlugin.pm
index fa16eae702..1b2f8b0227 100644
--- a/EditTablePlugin/lib/Foswiki/Plugins/EditTablePlugin.pm
+++ b/EditTablePlugin/lib/Foswiki/Plugins/EditTablePlugin.pm
@@ -16,11 +16,11 @@ BEGIN {
}
}
-our $VERSION = '4.46';
+our $VERSION = '4.47';
# Please note that the second is now two digit.
# Someone increased 4.22 to 4.3 which is not correct.
-our $RELEASE = '04 Apr 2017';
+our $RELEASE = '06 Aug 2023';
our $pluginName = 'EditTablePlugin';
our $ENCODE_START = '--EditTableEncodeStart--';
@@ -241,7 +241,7 @@ sub addJavaScriptInterfaceDisabledToHead {
__END__
Foswiki - The Free and Open Source Wiki, http://foswiki.org/
-Copyright (C) 2008-2015 Foswiki Contributors. Foswiki Contributors
+Copyright (C) 2008-2023 Foswiki Contributors. Foswiki Contributors
are listed in the AUTHORS file in the root of this distribution.
NOTE: Please extend that file, not this notice.
diff --git a/InterwikiPlugin/data/System/InterwikiPlugin.txt b/InterwikiPlugin/data/System/InterwikiPlugin.txt
index 3a6a38b756..7c6a037b87 100644
--- a/InterwikiPlugin/data/System/InterwikiPlugin.txt
+++ b/InterwikiPlugin/data/System/InterwikiPlugin.txt
@@ -1,4 +1,4 @@
-%META:TOPICINFO{author="ProjectContributor" date="1655468868" format="1.1" version="1"}%
+%META:TOPICINFO{author="ProjectContributor" date="1691320505" format="1.1" version="1"}%
%META:TOPICPARENT{name="Plugins"}%
---+!! Interwiki Plugin
%FORMFIELD{"Description"}%
@@ -67,6 +67,7 @@ The =INTERWIKIPLUGIN_INTERLINKFORMAT= supports a number of formatting tokens:%ST
---++ Change History
%TABLE{columnwidths="7em" tablewidth="100%"}%
+| 06 Aug 2023: (1.27) | Foswikitask:Item15151: add warnings and strictness |
| 3 May 2018: (1.26) | Foswikitask:Item14688: Correct tyops and poor grammar in documentation. |
| 8 Dec 2017: (1.25) | Foswikitask:Item14395: Failure to check result from readTopic causes error. |
| 8 Feb 2071: (1.24) | Foswikitask:Item14321: Fix some stale default Interwiki links. |
@@ -110,7 +111,7 @@ The =INTERWIKIPLUGIN_INTERLINKFORMAT= supports a number of formatting tokens:%ST
%META:FORM{name="PackageForm"}%
%META:FIELD{name="Author" title="Author" value="Foswiki:%25USERSWEB%25.AndreaSterbini, TWiki:Main.PeterThoeny"}%
-%META:FIELD{name="Copyright" title="Copyright" value="© 2001-2007, Andrea Sterbini, Peter Thoeny ([[http://www.twiki.net/][TWIKI.NET]]), 2007-2017 %25SYSTEMWEB%25.ProjectContributor"}%
+%META:FIELD{name="Copyright" title="Copyright" value="© 2001-2007, Andrea Sterbini, Peter Thoeny ([[http://www.twiki.net/][TWIKI.NET]]), 2007-2023 Foswiki:%25SYSTEMWEB%25.ProjectContributor"}%
%META:FIELD{name="Description" title="Description" value="%25$SHORTDESCRIPTION%25"}%
%META:FIELD{name="Home" title="Home" value="http://foswiki.org/Extensions/InterwikiPlugin"}%
%META:FIELD{name="License" title="License" value="GPL ([[http://www.gnu.org/copyleft/gpl.html][GNU General Public License]])"}%
diff --git a/InterwikiPlugin/lib/Foswiki/Plugins/InterwikiPlugin.pm b/InterwikiPlugin/lib/Foswiki/Plugins/InterwikiPlugin.pm
index 0f9c804fac..c065990139 100644
--- a/InterwikiPlugin/lib/Foswiki/Plugins/InterwikiPlugin.pm
+++ b/InterwikiPlugin/lib/Foswiki/Plugins/InterwikiPlugin.pm
@@ -26,8 +26,8 @@ use warnings;
use Foswiki::Func (); # The plugins API
use Foswiki::Plugins (); # For the API version
-our $VERSION = '1.26';
-our $RELEASE = '3 May 2018';
+our $VERSION = '1.27';
+our $RELEASE = '06 Aug 2023';
our $NO_PREFS_IN_TOPIC = 1;
our $SHORTDESCRIPTION =
'Link !ExternalSite:Page text to external sites based on aliases defined in a rules topic';
@@ -202,7 +202,7 @@ sub _trimWhitespace {
__END__
Foswiki - The Free and Open Source Wiki, http://foswiki.org/
-Copyright (C) 2008-2018 Foswiki Contributors. Foswiki Contributors
+Copyright (C) 2008-2023 Foswiki Contributors. Foswiki Contributors
are listed in the AUTHORS file in the root of this distribution.
NOTE: Please extend that file, not this notice.
diff --git a/JSCalendarContrib/data/System/JSCalendarContrib.txt b/JSCalendarContrib/data/System/JSCalendarContrib.txt
index 5d62034d61..1146e7266a 100644
--- a/JSCalendarContrib/data/System/JSCalendarContrib.txt
+++ b/JSCalendarContrib/data/System/JSCalendarContrib.txt
@@ -1,4 +1,4 @@
-%META:TOPICINFO{author="ProjectContributor" comment="" date="1655468868" format="1.1" version="1"}%
+%META:TOPICINFO{author="ProjectContributor" comment="" date="1691320505" format="1.1" version="1"}%
%META:TOPICPARENT{name="Contribs"}%
---+!! %TOPIC%
@@ -79,6 +79,7 @@ If the contrib is installed, you will see such a field here:
---++ Change History
%TABLE{columnwidths="7em" tablewidth="100%"}%
+|06 Aug 2023 (1.61) | Foswikitask:Item15151: add warnings and strictness |
| 18 Nov 2020 (1.60) | Foswiktask:Item14994: don't generate inline @import-ed css for performance reasons |
| 08 Dec 2017 (1.56) | Foswikitask:Item14554: remove link to unused wikiring.com domain. |
| 14 Jun 2015 (1.55) | Released with Foswiki 2.0, copyright updates, minor doc updates. |
diff --git a/JSCalendarContrib/lib/Foswiki/Contrib/JSCalendarContrib.pm b/JSCalendarContrib/lib/Foswiki/Contrib/JSCalendarContrib.pm
index 016e0c852e..43049cb29d 100644
--- a/JSCalendarContrib/lib/Foswiki/Contrib/JSCalendarContrib.pm
+++ b/JSCalendarContrib/lib/Foswiki/Contrib/JSCalendarContrib.pm
@@ -18,8 +18,8 @@ use warnings;
use Foswiki::Func (); # The plugins API
-our $VERSION = '1.60';
-our $RELEASE = '16 Nov 2020';
+our $VERSION = '1.61';
+our $RELEASE = '06 Aug 2023';
our $SHORTDESCRIPTION =
"[[http://dynarch.com/mishoo/calendar.epl][Mishoo JSCalendar]] date and time picker, packaged for use by plugins, skins and add-ons";
@@ -239,7 +239,7 @@ HERE
__END__
Foswiki - The Free and Open Source Wiki, http://foswiki.org/
-Copyright (C) 2008-2020 Foswiki Contributors. Foswiki Contributors
+Copyright (C) 2008-2023 Foswiki Contributors. Foswiki Contributors
are listed in the AUTHORS file in the root of this distribution.
NOTE: Please extend that file, not this notice.
diff --git a/JsonRpcContrib/data/System/JsonRpcContrib.txt b/JsonRpcContrib/data/System/JsonRpcContrib.txt
index 76259f7861..d6c6f2d421 100644
--- a/JsonRpcContrib/data/System/JsonRpcContrib.txt
+++ b/JsonRpcContrib/data/System/JsonRpcContrib.txt
@@ -1,4 +1,4 @@
-%META:TOPICINFO{author="ProjectContributor" comment="" date="1655468868" format="1.1" version="1"}%
+%META:TOPICINFO{author="ProjectContributor" comment="" date="1691320505" format="1.1" version="1"}%
---+!! %TOPIC%
%FORMFIELD{"Description"}%
@@ -217,6 +217,7 @@ If a namespace, method, or parameters are specified as part of a JSON-RPC reques
---++ Change History
%TABLE{columnwidths="7em" tablewidth="100%"}%
+| 06 Aug 2023: (3.01) | fixed some perl critics |
| 16 Jun 2022: (3.00) | make uploads available in json-rpc requests |
| 05 May 2022: (2.40) | fixed switching web-topic context before dispatching the method |
| 31 Jan 2022: (2.30) | added =foswiki.jsonRpc()= api |
@@ -255,7 +256,7 @@ If a namespace, method, or parameters are specified as part of a JSON-RPC reques
%META:FIELD{name="Release" title="Release" value="%25$RELEASE%25"}%
%META:FIELD{name="Description" title="Description" value="%25$SHORTDESCRIPTION%25"}%
%META:FIELD{name="Repository" title="Repository" value="https://github.com/foswiki/distro"}%
-%META:FIELD{name="Copyright" title="Copyright" value="© 2011-2022 Michael Daum and Foswiki Contributors"}%
+%META:FIELD{name="Copyright" title="Copyright" value="© 2011-2023 Michael Daum and Foswiki Contributors"}%
%META:FIELD{name="License" title="License" value="[[http://www.gnu.org/licenses/gpl.html][GPL (Gnu General Public License)]]"}%
%META:FIELD{name="Home" title="Home" value="http://foswiki.org/Extensions/JsonRpcContrib"}%
%META:FIELD{name="Support" title="Support" value="Foswiki:Support/JsonRpcContrib"}%
diff --git a/JsonRpcContrib/lib/Foswiki/Contrib/JsonRpcContrib.pm b/JsonRpcContrib/lib/Foswiki/Contrib/JsonRpcContrib.pm
index a6b7bc6572..5d498734ab 100644
--- a/JsonRpcContrib/lib/Foswiki/Contrib/JsonRpcContrib.pm
+++ b/JsonRpcContrib/lib/Foswiki/Contrib/JsonRpcContrib.pm
@@ -21,8 +21,8 @@ BEGIN {
=cut
-our $VERSION = '3.00';
-our $RELEASE = '16 Jun 2022';
+our $VERSION = '3.01';
+our $RELEASE = '06 Aug 2023';
our $SHORTDESCRIPTION = 'JSON-RPC interface for Foswiki';
our $NO_PREFS_IN_TOPIC = 1;
our $SERVER;
@@ -49,7 +49,7 @@ sub getServer {
__END__
# Plugin for Foswiki - The Free and Open Source Wiki, http://foswiki.org/
#
-# JsonRpcContrib is Copyright (C) 2011-2022 Michael Daum http://michaeldaumconsulting.com
+# JsonRpcContrib is Copyright (C) 2011-2023 Michael Daum http://michaeldaumconsulting.com
# and Foswiki Contributors.
#
# This program is free software; you can redistribute it and/or
diff --git a/ModPerlEngineContrib/data/System/ModPerlEngineContrib.txt b/ModPerlEngineContrib/data/System/ModPerlEngineContrib.txt
index 46c37c5dcc..c1ca9115d9 100644
--- a/ModPerlEngineContrib/data/System/ModPerlEngineContrib.txt
+++ b/ModPerlEngineContrib/data/System/ModPerlEngineContrib.txt
@@ -1,4 +1,4 @@
-%META:TOPICINFO{author="ProjectContributor" date="1655468868" format="1.1" version="1"}%
+%META:TOPICINFO{author="ProjectContributor" date="1691320505" format="1.1" version="1"}%
---+!! !ModPerlEngineContrib
%FORMFIELD{"Description"}%
@@ -148,6 +148,7 @@ set in %USERSWEB%.SitePreferences, default taken from
---++ Change History
%TABLE{columnwidths="7em" tablewidth="100%"}%
+| 06 Aug 2023 (1.08) | Foswikitask:Item15151: add warnings and strictness |
| 08 Dec 2017 (1.06) | Foswikitask:Item14544: SCRIPTURL breaks when X-FORWARDED-HOST has multiple values (partial fix). |
| 30 Apr 2017 (1.05) | Foswikitask:Item14381: Preserver URL Encoding of the Foswiki URI. |
| 26 Nov 2016 (1.04) | Released with Foswiki 2.1.3. Old Apache 1.x modules have been removed from the DEPENDENCIES file. |
@@ -169,7 +170,7 @@ set in %USERSWEB%.SitePreferences, default taken from
%META:FORM{name="PackageForm"}%
%META:FIELD{name="Author" title="Author" value="Foswiki:Main.GilmarSantosJr"}%
-%META:FIELD{name="Copyright" title="Copyright" value="© 2009-2015 Gilmar Santos Jr and Foswiki Contributors"}%
+%META:FIELD{name="Copyright" title="Copyright" value="© 2009-2023 Gilmar Santos Jr and Foswiki Contributors"}%
%META:FIELD{name="Description" title="Description" value="%25$SHORTDESCRIPTION%25"}%
%META:FIELD{name="Home" title="Home" value="https://foswiki.org/Extensions/%$ROOTMODULE%"}%
%META:FIELD{name="License" title="License" value="[[http://www.gnu.org/licenses/gpl.html][GPL (Gnu General Public License)]]"}%
diff --git a/ModPerlEngineContrib/lib/Foswiki/Contrib/ModPerlEngineContrib.pm b/ModPerlEngineContrib/lib/Foswiki/Contrib/ModPerlEngineContrib.pm
index a970b139b3..59d8647adf 100644
--- a/ModPerlEngineContrib/lib/Foswiki/Contrib/ModPerlEngineContrib.pm
+++ b/ModPerlEngineContrib/lib/Foswiki/Contrib/ModPerlEngineContrib.pm
@@ -1,7 +1,7 @@
# mod_perl Runtime Engine of Foswiki - The Free and Open Source Wiki,
# http://foswiki.org/
#
-# Copyright (C) 2009-2017 Gilmar Santos Jr, jgasjr@gmail.com and Foswiki
+# Copyright (C) 2009-2023 Gilmar Santos Jr, jgasjr@gmail.com and Foswiki
# contributors. Foswiki contributors are listed in the AUTHORS file in the root
# of Foswiki distribution.
#
@@ -24,8 +24,8 @@ use warnings;
use vars qw( $VERSION $RELEASE $SHORTDESCRIPTION );
-$VERSION = '1.07';
-$RELEASE = '08 Dec 2017';
+$VERSION = '1.08';
+$RELEASE = '06 Aug 2023';
$SHORTDESCRIPTION = 'Permits Foswiki to be executed under mod_perl';
1;
diff --git a/PlainFileStoreContrib/data/System/PlainFileStoreContrib.txt b/PlainFileStoreContrib/data/System/PlainFileStoreContrib.txt
index 8f9394a8a6..b4fdca40b7 100644
--- a/PlainFileStoreContrib/data/System/PlainFileStoreContrib.txt
+++ b/PlainFileStoreContrib/data/System/PlainFileStoreContrib.txt
@@ -1,4 +1,4 @@
-%META:TOPICINFO{author="ProjectContributor" date="1655468868" format="1.1" version="1"}%
+%META:TOPICINFO{author="ProjectContributor" date="1691320505" format="1.1" version="1"}%
---+!! PlainFileStoreContrib
%FORMFIELD{"Description"}%
@@ -69,6 +69,7 @@ Many thanks to the following sponsors for supporting this work
---++ Change History
%TABLE{columnwidths="7em" tablewidth="100%"}%
+| 1.47 (06 Aug 2023) | Foswikitask:Item15151: add warnings and strictness |
| 1.46 (08 Dec 2017) | Foswikitask:Item14554: remove link to unused wikiring.com domain. |
| 1.45 (06 Mar 2016) | Foswikitask:Item14008: Warn if FoswikiAttachPubFiles is enabled with the PlainFile store. |
| 1.44 (03 Feb 2016) | Released with Foswiki 2.1. Release notes, Copyright updates. |
@@ -91,7 +92,7 @@ Many thanks to the following sponsors for supporting this work
%META:FORM{name="PackageForm"}%
%META:FIELD{name="Author" title="Author" value="CrawfordCurrie http://c-dot.co.uk"}%
-%META:FIELD{name="Copyright" title="Copyright" value="© 2012-2016 Crawford Currie, Foswiki Contributors"}%
+%META:FIELD{name="Copyright" title="Copyright" value="© 2012-2023 Crawford Currie, Foswiki Contributors"}%
%META:FIELD{name="Description" title="Description" value="%25$SHORTDESCRIPTION%25"}%
%META:FIELD{name="Home" title="Home" value="http://foswiki.org/Extensions/%$ROOTMODULE%"}%
%META:FIELD{name="License" title="License" value="GPL ([[http://www.gnu.org/copyleft/gpl.html][GNU General Public License]])"}%
diff --git a/PlainFileStoreContrib/lib/Foswiki/Contrib/PlainFileStoreContrib.pm b/PlainFileStoreContrib/lib/Foswiki/Contrib/PlainFileStoreContrib.pm
index 620075f23e..c7462162d1 100644
--- a/PlainFileStoreContrib/lib/Foswiki/Contrib/PlainFileStoreContrib.pm
+++ b/PlainFileStoreContrib/lib/Foswiki/Contrib/PlainFileStoreContrib.pm
@@ -14,8 +14,8 @@ use warnings;
use Foswiki::Configure::FileUtil;
use Foswiki::Configure::Load;
-our $VERSION = '1.46';
-our $RELEASE = '08 Dec 2017';
+our $VERSION = '1.47';
+our $RELEASE = '06 Aug 2023';
our $SHORTDESCRIPTION = 'Store Foswiki data using plain text files';
1;
@@ -89,7 +89,7 @@ Foswiki - The Free and Open Source Wiki, http://foswiki.org/
Author: CrawfordCurrie
-Copyright (C) 2012-2017 Crawford Currie http://c-dot.co.uk
+Copyright (C) 2012-2023 Crawford Currie http://c-dot.co.uk
and Foswiki Contributors
This program is free software; you can redistribute it and/or
diff --git a/RenderListPlugin/data/System/RenderListPlugin.txt b/RenderListPlugin/data/System/RenderListPlugin.txt
index 65d08dff37..214fdda6ce 100755
--- a/RenderListPlugin/data/System/RenderListPlugin.txt
+++ b/RenderListPlugin/data/System/RenderListPlugin.txt
@@ -1,4 +1,4 @@
-%META:TOPICINFO{author="ProjectContributor" date="1655468868" format="1.1" version="1"}%
+%META:TOPICINFO{author="ProjectContributor" date="1691320505" format="1.1" version="1"}%
%META:TOPICPARENT{name="Plugins"}%
---+ Render List Plugin
%FORMFIELD{"Description"}%
@@ -335,6 +335,7 @@ Themes are defined by setting a [[%SYSTEMWEB%.PreferenceSettings][preference]] c
---++ Change History
%TABLE{columnwidths="7em" tablewidth="100%"}%
+| 06 Aug 2023: | 2.29: Foswikitask:Item15151: add warnings and strictness |
| 08 Apr 2016: | 2.28: Foswikitask:Item14022 Change all foswiki.org links to https. |
| 14 Jun 2015: | 2.27: Foswiki 2.0 release. Foswikitask:Item12864: Use simple decimal versions. Foswikitask:Item13423: Perl 5.22 deprecations. |
| 28 Nov 2012: | 2.2.7: Foswiki 1.1.6 release. Item11267: Convert to perl version string. |
@@ -365,7 +366,7 @@ Themes are defined by setting a [[%SYSTEMWEB%.PreferenceSettings][preference]] c
%META:FORM{name="PackageForm"}%
%META:FIELD{name="Author" title="Author" value="ProjectContributor"}%
-%META:FIELD{name="Copyright" title="Copyright" value="Copyright (C) 2006-2007 Peter Thoeny, peter@thoeny.org and TWiki Contributors; 2008-2015 Foswiki Contributors"}%
+%META:FIELD{name="Copyright" title="Copyright" value="Copyright (C) 2006-2007 Peter Thoeny, peter@thoeny.org and TWiki Contributors; 2008-2023 Foswiki Contributors"}%
%META:FIELD{name="Description" title="Description" value="%25$SHORTDESCRIPTION%25"}%
%META:FIELD{name="Home" title="Home" value="icon, 1, 16, 16, %25ATTACHURL%25/empty.gif, %25ATTACHURL%25/dot_udr.gif, %25ATTACHURL%25/dot_ud.gif, %25ATTACHURL%25/dot_ur.gif, %25ATTACHURL%25/home.gif"}%
%META:FIELD{name="License" title="License" value="GPL ([[http://www.gnu.org/copyleft/gpl.html][GNU General Public License]])"}%
@@ -373,29 +374,29 @@ Themes are defined by setting a [[%SYSTEMWEB%.PreferenceSettings][preference]] c
%META:FIELD{name="Repository" title="Repository" value="https://github.com/foswiki/distro"}%
%META:FIELD{name="Support" title="Support" value="https://foswiki.org/Support/%25$ROOTMODULE%25"}%
%META:FIELD{name="Version" title="Version" value="%25$VERSION%25"}%
-%META:FILEATTACHMENT{name="image.gif" attr="h" comment="" date="1655468868" size="943" user="ProjectContributor" version="1"}%
-%META:FILEATTACHMENT{name="virtualpersons.gif" attr="h" comment="" date="1655468868" size="160" user="ProjectContributor" version="1"}%
-%META:FILEATTACHMENT{name="virtualhome.gif" attr="h" comment="" date="1655468868" size="162" user="ProjectContributor" version="1"}%
-%META:FILEATTACHMENT{name="xls.gif" attr="h" comment="" date="1655468868" size="918" user="ProjectContributor" version="1"}%
-%META:FILEATTACHMENT{name="email.gif" attr="h" comment="" date="1655468868" size="183" user="ProjectContributor" version="1"}%
-%META:FILEATTACHMENT{name="dot_ur.gif" attr="h" comment="" date="1655468868" size="106" user="ProjectContributor" version="1"}%
-%META:FILEATTACHMENT{name="person.gif" attr="h" comment="" date="1655468868" size="153" user="ProjectContributor" version="1"}%
-%META:FILEATTACHMENT{name="sound.gif" attr="h" comment="" date="1655468868" size="166" user="ProjectContributor" version="1"}%
-%META:FILEATTACHMENT{name="folder.gif" attr="h" comment="" date="1655468868" size="903" user="ProjectContributor" version="1"}%
-%META:FILEATTACHMENT{name="persons.gif" attr="h" comment="" date="1655468868" size="164" user="ProjectContributor" version="1"}%
-%META:FILEATTACHMENT{name="doc.gif" attr="h" comment="" date="1655468868" size="922" user="ProjectContributor" version="1"}%
-%META:FILEATTACHMENT{name="dot_udr.gif" attr="h" comment="" date="1655468868" size="109" user="ProjectContributor" version="1"}%
-%META:FILEATTACHMENT{name="empty.gif" attr="h" comment="" date="1655468868" size="100" user="ProjectContributor" version="1"}%
-%META:FILEATTACHMENT{name="pdf.gif" attr="h" comment="" date="1655468868" size="938" user="ProjectContributor" version="1"}%
-%META:FILEATTACHMENT{name="folders.gif" attr="h" comment="" date="1655468868" size="913" user="ProjectContributor" version="1"}%
-%META:FILEATTACHMENT{name="home.gif" attr="h" comment="" date="1655468868" size="172" user="ProjectContributor" version="1"}%
-%META:FILEATTACHMENT{name="globe.gif" attr="h" comment="" date="1655468868" size="1024" user="ProjectContributor" version="1"}%
-%META:FILEATTACHMENT{name="ppt.gif" attr="h" comment="" date="1655468868" size="921" user="ProjectContributor" version="1"}%
-%META:FILEATTACHMENT{name="zip.gif" attr="h" comment="" date="1655468868" size="940" user="ProjectContributor" version="1"}%
-%META:FILEATTACHMENT{name="file.gif" attr="h" comment="" date="1655468868" size="151" user="ProjectContributor" version="1"}%
-%META:FILEATTACHMENT{name="dot_ud.gif" attr="h" comment="" date="1655468868" size="108" user="ProjectContributor" version="1"}%
-%META:FILEATTACHMENT{name="group.gif" attr="h" comment="" date="1655468868" size="162" user="ProjectContributor" version="1"}%
-%META:FILEATTACHMENT{name="trend.gif" attr="h" comment="" date="1655468868" size="149" user="ProjectContributor" version="1"}%
-%META:FILEATTACHMENT{name="virtualperson.gif" attr="h" comment="" date="1655468868" size="149" user="ProjectContributor" version="1"}%
-%META:FILEATTACHMENT{name="see.gif" attr="h" comment="" date="1655468868" size="81" user="ProjectContributor" version="1"}%
-%META:FILEATTACHMENT{name="files.gif" attr="h" comment="" date="1655468868" size="907" user="ProjectContributor" version="1"}%
+%META:FILEATTACHMENT{name="image.gif" attr="h" comment="" date="1691320505" size="943" user="ProjectContributor" version="1"}%
+%META:FILEATTACHMENT{name="virtualpersons.gif" attr="h" comment="" date="1691320505" size="160" user="ProjectContributor" version="1"}%
+%META:FILEATTACHMENT{name="virtualhome.gif" attr="h" comment="" date="1691320505" size="162" user="ProjectContributor" version="1"}%
+%META:FILEATTACHMENT{name="xls.gif" attr="h" comment="" date="1691320505" size="918" user="ProjectContributor" version="1"}%
+%META:FILEATTACHMENT{name="email.gif" attr="h" comment="" date="1691320505" size="183" user="ProjectContributor" version="1"}%
+%META:FILEATTACHMENT{name="dot_ur.gif" attr="h" comment="" date="1691320505" size="106" user="ProjectContributor" version="1"}%
+%META:FILEATTACHMENT{name="person.gif" attr="h" comment="" date="1691320505" size="153" user="ProjectContributor" version="1"}%
+%META:FILEATTACHMENT{name="sound.gif" attr="h" comment="" date="1691320505" size="166" user="ProjectContributor" version="1"}%
+%META:FILEATTACHMENT{name="folder.gif" attr="h" comment="" date="1691320505" size="903" user="ProjectContributor" version="1"}%
+%META:FILEATTACHMENT{name="persons.gif" attr="h" comment="" date="1691320505" size="164" user="ProjectContributor" version="1"}%
+%META:FILEATTACHMENT{name="doc.gif" attr="h" comment="" date="1691320505" size="922" user="ProjectContributor" version="1"}%
+%META:FILEATTACHMENT{name="dot_udr.gif" attr="h" comment="" date="1691320505" size="109" user="ProjectContributor" version="1"}%
+%META:FILEATTACHMENT{name="empty.gif" attr="h" comment="" date="1691320505" size="100" user="ProjectContributor" version="1"}%
+%META:FILEATTACHMENT{name="pdf.gif" attr="h" comment="" date="1691320505" size="938" user="ProjectContributor" version="1"}%
+%META:FILEATTACHMENT{name="folders.gif" attr="h" comment="" date="1691320505" size="913" user="ProjectContributor" version="1"}%
+%META:FILEATTACHMENT{name="home.gif" attr="h" comment="" date="1691320505" size="172" user="ProjectContributor" version="1"}%
+%META:FILEATTACHMENT{name="globe.gif" attr="h" comment="" date="1691320505" size="1024" user="ProjectContributor" version="1"}%
+%META:FILEATTACHMENT{name="ppt.gif" attr="h" comment="" date="1691320505" size="921" user="ProjectContributor" version="1"}%
+%META:FILEATTACHMENT{name="zip.gif" attr="h" comment="" date="1691320505" size="940" user="ProjectContributor" version="1"}%
+%META:FILEATTACHMENT{name="file.gif" attr="h" comment="" date="1691320505" size="151" user="ProjectContributor" version="1"}%
+%META:FILEATTACHMENT{name="dot_ud.gif" attr="h" comment="" date="1691320505" size="108" user="ProjectContributor" version="1"}%
+%META:FILEATTACHMENT{name="group.gif" attr="h" comment="" date="1691320505" size="162" user="ProjectContributor" version="1"}%
+%META:FILEATTACHMENT{name="trend.gif" attr="h" comment="" date="1691320505" size="149" user="ProjectContributor" version="1"}%
+%META:FILEATTACHMENT{name="virtualperson.gif" attr="h" comment="" date="1691320505" size="149" user="ProjectContributor" version="1"}%
+%META:FILEATTACHMENT{name="see.gif" attr="h" comment="" date="1691320505" size="81" user="ProjectContributor" version="1"}%
+%META:FILEATTACHMENT{name="files.gif" attr="h" comment="" date="1691320505" size="907" user="ProjectContributor" version="1"}%
diff --git a/RenderListPlugin/lib/Foswiki/Plugins/RenderListPlugin.pm b/RenderListPlugin/lib/Foswiki/Plugins/RenderListPlugin.pm
index 49ebf0b738..215cd0cab4 100755
--- a/RenderListPlugin/lib/Foswiki/Plugins/RenderListPlugin.pm
+++ b/RenderListPlugin/lib/Foswiki/Plugins/RenderListPlugin.pm
@@ -13,8 +13,8 @@ use vars qw(
$pubUrl $attachUrl
);
-our $VERSION = '2.28';
-our $RELEASE = '2.28';
+our $VERSION = '2.29';
+our $RELEASE = '06 Aug 2023';
our $pluginName = 'RenderListPlugin'; # Name of this Plugin
our $NO_PREFS_IN_TOPIC = 1;
our $SHORTDESCRIPTION = 'Render bullet lists in a variety of formats';
@@ -326,7 +326,7 @@ __END__
Foswiki - The Free and Open Source Wiki, http://foswiki.org/
Copyright (C) 2001-2007 Peter Thoeny, peter@thoeny.org
-Copyright (C) 2008-2015 Foswiki Contributors. Foswiki Contributors
+Copyright (C) 2008-2023 Foswiki Contributors. Foswiki Contributors
are listed in the AUTHORS file in the root of this distribution.
NOTE: Please extend that file, not this notice.
diff --git a/SubscribePlugin/data/System/SubscribePlugin.txt b/SubscribePlugin/data/System/SubscribePlugin.txt
index c7bd1a2c79..76650ed0e4 100644
--- a/SubscribePlugin/data/System/SubscribePlugin.txt
+++ b/SubscribePlugin/data/System/SubscribePlugin.txt
@@ -1,4 +1,4 @@
-%META:TOPICINFO{author="ProjectContributor" date="1655468868" format="1.1" version="1"}%
+%META:TOPICINFO{author="ProjectContributor" date="1691320505" format="1.1" version="1"}%
%META:TOPICPARENT{name="Plugins"}%
---+ Subscribe Plugin
%FORMFIELD{"Description"}%
@@ -64,6 +64,7 @@ A word of warning; if you used !SubscribePlugin before version 3.1, please note
---++ Change History
%TABLE{columnwidths="7em" tablewidth="100%"}%
+| 3.7 (06 Aug 2023) | Foswikitask:Item15151: add warnings and strictness |
| 3.6 (08 Dec 2017) | Foswikitask:Item14554: remove link to unused wikiring.com domain. |
| 3.5 (06 Nov 2015) | Foswikitask:Item13519: Add dependency on URI due to MailerContrib dependency. |
| 3.4 (27 Jul 2015) | Foswikitask:Item13450: Fix support for FamFamFam skin. |
@@ -78,7 +79,7 @@ A word of warning; if you used !SubscribePlugin before version 3.1, please note
%META:FORM{name="PackageForm"}%
%META:FIELD{name="Author" title="Author" value="[[http://c-dot.co.uk][Crawford Currie]]"}%
%META:FIELD{name="Compatibility" title="Compatibility" value="2.0"}%
-%META:FIELD{name="Copyright" title="Copyright" value="© 2007-2014, Crawford Currie http://c-dot.co.uk %25BR%25 © 2008-2014 Foswiki Contributors"}%
+%META:FIELD{name="Copyright" title="Copyright" value="© 2007-2014, Crawford Currie http://c-dot.co.uk; © 2008-2023 Foswiki Contributors"}%
%META:FIELD{name="Description" title="Description" value="%25$SHORTDESCRIPTION%25"}%
%META:FIELD{name="Home" title="Home" value="http://foswiki.org/Extensions/%25$ROOTMODULE%25"}%
%META:FIELD{name="License" title="License" value="GPL ([[http://www.gnu.org/copyleft/gpl.html][GNU General Public License]])"}%
@@ -86,4 +87,4 @@ A word of warning; if you used !SubscribePlugin before version 3.1, please note
%META:FIELD{name="Repository" title="Repository" value="https://github.com/foswiki/distro"}%
%META:FIELD{name="Support" title="Support" value="http://foswiki.org/Support/%25$ROOTMODULE%25"}%
%META:FIELD{name="Version" title="Version" value="%25$VERSION%25"}%
-%META:FILEATTACHMENT{name="logo.gif" attr="h" comment="" date="1655468868" size="21246" user="ProjectContributor" version="1"}%
+%META:FILEATTACHMENT{name="logo.gif" attr="h" comment="" date="1691320505" size="21246" user="ProjectContributor" version="1"}%
diff --git a/SubscribePlugin/lib/Foswiki/Plugins/SubscribePlugin.pm b/SubscribePlugin/lib/Foswiki/Plugins/SubscribePlugin.pm
index d29d8acd6e..3fbb3ecb06 100644
--- a/SubscribePlugin/lib/Foswiki/Plugins/SubscribePlugin.pm
+++ b/SubscribePlugin/lib/Foswiki/Plugins/SubscribePlugin.pm
@@ -24,8 +24,8 @@ use JSON ();
# SUBSCRIBE macro.
use URI ();
-our $VERSION = '3.6';
-our $RELEASE = '08 Dec 2017';
+our $VERSION = '3.7';
+our $RELEASE = '06 Aug 2023';
our $SHORTDESCRIPTION =
'This is a companion plugin to the MailerContrib. It allows you to trivially add a "Subscribe me" link to topics to get subscribed to changes.';
our $NO_PREFS_IN_TOPIC = 1;
@@ -261,8 +261,9 @@ __END__
Plugin for Foswiki - The Free and Open Source Wiki, http://foswiki.org/
-Copyright (C) 2007-2017 Crawford Currie http://c-dot.co.uk
-and Foswiki Contributors. All Rights Reserved. Foswiki Contributors
+Copyright (C) 2007-2023 Crawford Currie http://c-dot.co.uk and Foswiki Contributors.
+
+All Rights Reserved. Foswiki Contributors
are listed in the AUTHORS file in the root of this distribution.
NOTE: Please extend that file, not this notice.