From 4ed7a430c38adaea203605784e767a4fde09dac3 Mon Sep 17 00:00:00 2001 From: MichaelDaum Date: Tue, 17 Jan 2023 11:51:35 +0100 Subject: [PATCH] Item13883: fixed version of ui modules --- .../lib/Foswiki/Plugins/JQueryPlugin/UI/ACCORDION.pm | 5 +++-- .../lib/Foswiki/Plugins/JQueryPlugin/UI/AUTOCOMPLETE.pm | 5 +++-- JQueryPlugin/lib/Foswiki/Plugins/JQueryPlugin/UI/BUTTON.pm | 4 ++-- .../lib/Foswiki/Plugins/JQueryPlugin/UI/DATEPICKER.pm | 5 +++-- JQueryPlugin/lib/Foswiki/Plugins/JQueryPlugin/UI/DIALOG.pm | 5 +++-- .../lib/Foswiki/Plugins/JQueryPlugin/UI/DRAGGABLE.pm | 5 +++-- .../lib/Foswiki/Plugins/JQueryPlugin/UI/PROGRESSBAR.pm | 5 +++-- .../lib/Foswiki/Plugins/JQueryPlugin/UI/RESIZABLE.pm | 5 +++-- JQueryPlugin/lib/Foswiki/Plugins/JQueryPlugin/UI/SLIDER.pm | 5 +++-- JQueryPlugin/lib/Foswiki/Plugins/JQueryPlugin/UI/SPINNER.pm | 5 +++-- JQueryPlugin/lib/Foswiki/Plugins/JQueryPlugin/UI/TABS.pm | 5 +++-- JQueryPlugin/lib/Foswiki/Plugins/JQueryPlugin/UI/TOOLTIP.pm | 5 +++-- 12 files changed, 35 insertions(+), 24 deletions(-) diff --git a/JQueryPlugin/lib/Foswiki/Plugins/JQueryPlugin/UI/ACCORDION.pm b/JQueryPlugin/lib/Foswiki/Plugins/JQueryPlugin/UI/ACCORDION.pm index 11c4f7ae6..71835a849 100644 --- a/JQueryPlugin/lib/Foswiki/Plugins/JQueryPlugin/UI/ACCORDION.pm +++ b/JQueryPlugin/lib/Foswiki/Plugins/JQueryPlugin/UI/ACCORDION.pm @@ -1,9 +1,10 @@ # See bottom of file for license and copyright information package Foswiki::Plugins::JQueryPlugin::UI::ACCORDION; + use strict; use warnings; -use Foswiki::Plugins::JQueryPlugin::Plugin; +use Foswiki::Plugins::JQueryPlugin::Plugin (); our @ISA = qw( Foswiki::Plugins::JQueryPlugin::Plugin ); =begin TML @@ -28,7 +29,7 @@ sub new { my $this = bless( $class->SUPER::new( name => 'UI::Accordion', - version => '1.13.1', + version => '1.13.2', puburl => '%PUBURLPATH%/%SYSTEMWEB%/JQueryPlugin/plugins/ui', author => 'see http://jqueryui.com/about', homepage => 'http://api.jqueryui.com/accordion/', diff --git a/JQueryPlugin/lib/Foswiki/Plugins/JQueryPlugin/UI/AUTOCOMPLETE.pm b/JQueryPlugin/lib/Foswiki/Plugins/JQueryPlugin/UI/AUTOCOMPLETE.pm index 5e88f26eb..f8d3a0968 100644 --- a/JQueryPlugin/lib/Foswiki/Plugins/JQueryPlugin/UI/AUTOCOMPLETE.pm +++ b/JQueryPlugin/lib/Foswiki/Plugins/JQueryPlugin/UI/AUTOCOMPLETE.pm @@ -1,9 +1,10 @@ # See bottom of file for license and copyright information package Foswiki::Plugins::JQueryPlugin::UI::AUTOCOMPLETE; + use strict; use warnings; -use Foswiki::Plugins::JQueryPlugin::Plugin; +use Foswiki::Plugins::JQueryPlugin::Plugin(); our @ISA = qw( Foswiki::Plugins::JQueryPlugin::Plugin ); =begin TML @@ -28,7 +29,7 @@ sub new { my $this = bless( $class->SUPER::new( name => 'UI::Autocomplete', - version => '1.13.1', + version => '1.13.2', puburl => '%PUBURLPATH%/%SYSTEMWEB%/JQueryPlugin/plugins/ui', author => 'see http://jqueryui.com/about', homepage => 'http://api.jqueryui.com/autocomplete/', diff --git a/JQueryPlugin/lib/Foswiki/Plugins/JQueryPlugin/UI/BUTTON.pm b/JQueryPlugin/lib/Foswiki/Plugins/JQueryPlugin/UI/BUTTON.pm index 2d99f8bd6..95ed2d387 100644 --- a/JQueryPlugin/lib/Foswiki/Plugins/JQueryPlugin/UI/BUTTON.pm +++ b/JQueryPlugin/lib/Foswiki/Plugins/JQueryPlugin/UI/BUTTON.pm @@ -4,7 +4,7 @@ package Foswiki::Plugins::JQueryPlugin::UI::BUTTON; use strict; use warnings; -use Foswiki::Plugins::JQueryPlugin::Plugin; +use Foswiki::Plugins::JQueryPlugin::Plugin(); our @ISA = qw( Foswiki::Plugins::JQueryPlugin::Plugin ); =begin TML @@ -29,7 +29,7 @@ sub new { my $this = bless( $class->SUPER::new( name => 'UI::Button', - version => '1.13.1', + version => '1.13.2', puburl => '%PUBURLPATH%/%SYSTEMWEB%/JQueryPlugin/plugins/ui', author => 'see http://jqueryui.com/about', homepage => 'http://api.jqueryui.com/button/', diff --git a/JQueryPlugin/lib/Foswiki/Plugins/JQueryPlugin/UI/DATEPICKER.pm b/JQueryPlugin/lib/Foswiki/Plugins/JQueryPlugin/UI/DATEPICKER.pm index 1560c16ae..ebcf3bc68 100644 --- a/JQueryPlugin/lib/Foswiki/Plugins/JQueryPlugin/UI/DATEPICKER.pm +++ b/JQueryPlugin/lib/Foswiki/Plugins/JQueryPlugin/UI/DATEPICKER.pm @@ -1,9 +1,10 @@ # See bottom of file for license and copyright information package Foswiki::Plugins::JQueryPlugin::UI::DATEPICKER; + use strict; use warnings; -use Foswiki::Plugins::JQueryPlugin::Plugin; +use Foswiki::Plugins::JQueryPlugin::Plugin(); our @ISA = qw( Foswiki::Plugins::JQueryPlugin::Plugin ); =begin TML @@ -28,7 +29,7 @@ sub new { my $this = bless( $class->SUPER::new( name => 'UI::Datepicker', - version => '1.13.1', + version => '1.13.2', puburl => '%PUBURLPATH%/%SYSTEMWEB%/JQueryPlugin/plugins/ui', author => 'see http://jqueryui.com/about', homepage => 'http://api.jqueryui.com/datepicker/', diff --git a/JQueryPlugin/lib/Foswiki/Plugins/JQueryPlugin/UI/DIALOG.pm b/JQueryPlugin/lib/Foswiki/Plugins/JQueryPlugin/UI/DIALOG.pm index 24f5b31fb..e12658017 100644 --- a/JQueryPlugin/lib/Foswiki/Plugins/JQueryPlugin/UI/DIALOG.pm +++ b/JQueryPlugin/lib/Foswiki/Plugins/JQueryPlugin/UI/DIALOG.pm @@ -1,9 +1,10 @@ # See bottom of file for license and copyright information package Foswiki::Plugins::JQueryPlugin::UI::DIALOG; + use strict; use warnings; -use Foswiki::Plugins::JQueryPlugin::Plugin; +use Foswiki::Plugins::JQueryPlugin::Plugin(); our @ISA = qw( Foswiki::Plugins::JQueryPlugin::Plugin ); =begin TML @@ -28,7 +29,7 @@ sub new { my $this = bless( $class->SUPER::new( name => 'UI::Dialog', - version => '1.13.1', + version => '1.13.2', puburl => '%PUBURLPATH%/%SYSTEMWEB%/JQueryPlugin/plugins/ui', author => 'see http://jqueryui.com/about', homepage => 'http://api.jqueryui.com/dialog/', diff --git a/JQueryPlugin/lib/Foswiki/Plugins/JQueryPlugin/UI/DRAGGABLE.pm b/JQueryPlugin/lib/Foswiki/Plugins/JQueryPlugin/UI/DRAGGABLE.pm index 2fc08b739..5d779bf8e 100644 --- a/JQueryPlugin/lib/Foswiki/Plugins/JQueryPlugin/UI/DRAGGABLE.pm +++ b/JQueryPlugin/lib/Foswiki/Plugins/JQueryPlugin/UI/DRAGGABLE.pm @@ -1,9 +1,10 @@ # See bottom of file for license and copyright information package Foswiki::Plugins::JQueryPlugin::UI::DRAGGABLE; + use strict; use warnings; -use Foswiki::Plugins::JQueryPlugin::Plugin; +use Foswiki::Plugins::JQueryPlugin::Plugin(); our @ISA = qw( Foswiki::Plugins::JQueryPlugin::Plugin ); =begin TML @@ -28,7 +29,7 @@ sub new { my $this = bless( $class->SUPER::new( name => 'UI::Draggable', - version => '1.13.1', + version => '1.13.2', puburl => '%PUBURLPATH%/%SYSTEMWEB%/JQueryPlugin/plugins/ui', author => 'see http://jqueryui.com/about', homepage => 'http://api.jqueryui.com/draggable/', diff --git a/JQueryPlugin/lib/Foswiki/Plugins/JQueryPlugin/UI/PROGRESSBAR.pm b/JQueryPlugin/lib/Foswiki/Plugins/JQueryPlugin/UI/PROGRESSBAR.pm index 5e6514435..8baca22b7 100644 --- a/JQueryPlugin/lib/Foswiki/Plugins/JQueryPlugin/UI/PROGRESSBAR.pm +++ b/JQueryPlugin/lib/Foswiki/Plugins/JQueryPlugin/UI/PROGRESSBAR.pm @@ -1,9 +1,10 @@ # See bottom of file for license and copyright information package Foswiki::Plugins::JQueryPlugin::UI::PROGRESSBAR; + use strict; use warnings; -use Foswiki::Plugins::JQueryPlugin::Plugin; +use Foswiki::Plugins::JQueryPlugin::Plugin(); our @ISA = qw( Foswiki::Plugins::JQueryPlugin::Plugin ); =begin TML @@ -28,7 +29,7 @@ sub new { my $this = bless( $class->SUPER::new( name => 'UI::Progressbar', - version => '1.13.1', + version => '1.13.2', puburl => '%PUBURLPATH%/%SYSTEMWEB%/JQueryPlugin/plugins/ui', author => 'see http://jqueryui.com/about', homepage => 'http://api.jqueryui.com/progressbar/', diff --git a/JQueryPlugin/lib/Foswiki/Plugins/JQueryPlugin/UI/RESIZABLE.pm b/JQueryPlugin/lib/Foswiki/Plugins/JQueryPlugin/UI/RESIZABLE.pm index 92f1a06e8..8f9cc817f 100644 --- a/JQueryPlugin/lib/Foswiki/Plugins/JQueryPlugin/UI/RESIZABLE.pm +++ b/JQueryPlugin/lib/Foswiki/Plugins/JQueryPlugin/UI/RESIZABLE.pm @@ -1,9 +1,10 @@ # See bottom of file for license and copyright information package Foswiki::Plugins::JQueryPlugin::UI::RESIZABLE; + use strict; use warnings; -use Foswiki::Plugins::JQueryPlugin::Plugin; +use Foswiki::Plugins::JQueryPlugin::Plugin(); our @ISA = qw( Foswiki::Plugins::JQueryPlugin::Plugin ); =begin TML @@ -28,7 +29,7 @@ sub new { my $this = bless( $class->SUPER::new( name => 'UI::Resizable', - version => '1.13.1', + version => '1.13.2', puburl => '%PUBURLPATH%/%SYSTEMWEB%/JQueryPlugin/plugins/ui', author => 'see http://jqueryui.com/about', homepage => 'http://api.jqueryui.com/resizable/', diff --git a/JQueryPlugin/lib/Foswiki/Plugins/JQueryPlugin/UI/SLIDER.pm b/JQueryPlugin/lib/Foswiki/Plugins/JQueryPlugin/UI/SLIDER.pm index 0e03705f7..d5ff8b241 100644 --- a/JQueryPlugin/lib/Foswiki/Plugins/JQueryPlugin/UI/SLIDER.pm +++ b/JQueryPlugin/lib/Foswiki/Plugins/JQueryPlugin/UI/SLIDER.pm @@ -1,9 +1,10 @@ # See bottom of file for license and copyright information package Foswiki::Plugins::JQueryPlugin::UI::SLIDER; + use strict; use warnings; -use Foswiki::Plugins::JQueryPlugin::Plugin; +use Foswiki::Plugins::JQueryPlugin::Plugin(); our @ISA = qw( Foswiki::Plugins::JQueryPlugin::Plugin ); =begin TML @@ -28,7 +29,7 @@ sub new { my $this = bless( $class->SUPER::new( name => 'UI::Slider', - version => '1.13.1', + version => '1.13.2', puburl => '%PUBURLPATH%/%SYSTEMWEB%/JQueryPlugin/plugins/ui', author => 'see http://jqueryui.com/about', homepage => 'http://api.jqueryui.com/slider/', diff --git a/JQueryPlugin/lib/Foswiki/Plugins/JQueryPlugin/UI/SPINNER.pm b/JQueryPlugin/lib/Foswiki/Plugins/JQueryPlugin/UI/SPINNER.pm index cc9a3b9b0..ceca5317c 100644 --- a/JQueryPlugin/lib/Foswiki/Plugins/JQueryPlugin/UI/SPINNER.pm +++ b/JQueryPlugin/lib/Foswiki/Plugins/JQueryPlugin/UI/SPINNER.pm @@ -1,9 +1,10 @@ # See bottom of file for license and copyright information package Foswiki::Plugins::JQueryPlugin::UI::SPINNER; + use strict; use warnings; -use Foswiki::Plugins::JQueryPlugin::Plugin; +use Foswiki::Plugins::JQueryPlugin::Plugin(); our @ISA = qw( Foswiki::Plugins::JQueryPlugin::Plugin ); =begin TML @@ -28,7 +29,7 @@ sub new { my $this = bless( $class->SUPER::new( name => 'UI::Spinner', - version => '1.13.1', + version => '1.13.2', puburl => '%PUBURLPATH%/%SYSTEMWEB%/JQueryPlugin/plugins/ui', author => 'see http://jqueryui.com/about', homepage => 'http://api.jqueryui.com/spinner/', diff --git a/JQueryPlugin/lib/Foswiki/Plugins/JQueryPlugin/UI/TABS.pm b/JQueryPlugin/lib/Foswiki/Plugins/JQueryPlugin/UI/TABS.pm index b4d1619e2..b16008a72 100644 --- a/JQueryPlugin/lib/Foswiki/Plugins/JQueryPlugin/UI/TABS.pm +++ b/JQueryPlugin/lib/Foswiki/Plugins/JQueryPlugin/UI/TABS.pm @@ -1,9 +1,10 @@ # See bottom of file for license and copyright information package Foswiki::Plugins::JQueryPlugin::UI::TABS; + use strict; use warnings; -use Foswiki::Plugins::JQueryPlugin::Plugin; +use Foswiki::Plugins::JQueryPlugin::Plugin(); our @ISA = qw( Foswiki::Plugins::JQueryPlugin::Plugin ); =begin TML @@ -28,7 +29,7 @@ sub new { my $this = bless( $class->SUPER::new( name => 'UI::Tabs', - version => '1.13.1', + version => '1.13.2', puburl => '%PUBURLPATH%/%SYSTEMWEB%/JQueryPlugin/plugins/ui', author => 'see http://jqueryui.com/about', homepage => 'http://api.jqueryui.com/tabs/', diff --git a/JQueryPlugin/lib/Foswiki/Plugins/JQueryPlugin/UI/TOOLTIP.pm b/JQueryPlugin/lib/Foswiki/Plugins/JQueryPlugin/UI/TOOLTIP.pm index 29f055409..c4f084f71 100644 --- a/JQueryPlugin/lib/Foswiki/Plugins/JQueryPlugin/UI/TOOLTIP.pm +++ b/JQueryPlugin/lib/Foswiki/Plugins/JQueryPlugin/UI/TOOLTIP.pm @@ -1,9 +1,10 @@ # See bottom of file for license and copyright information package Foswiki::Plugins::JQueryPlugin::UI::TOOLTIP; + use strict; use warnings; -use Foswiki::Plugins::JQueryPlugin::Plugin; +use Foswiki::Plugins::JQueryPlugin::Plugin(); our @ISA = qw( Foswiki::Plugins::JQueryPlugin::Plugin ); =begin TML @@ -28,7 +29,7 @@ sub new { my $this = bless( $class->SUPER::new( name => 'UI::Tooltip', - version => '1.13.1', + version => '1.13.2', puburl => '%PUBURLPATH%/%SYSTEMWEB%/JQueryPlugin/plugins/ui', author => 'see http://jqueryui.com/about', homepage => 'http://api.jqueryui.com/tooltip/',