Skip to content

Commit f5d8dfb

Browse files
committed
Version 1.6.7 2024-08-05
Update jQuery to 3.7.1 Update jQuery migrate to 3.5.0 Update jQuery ui to 1.13.3 replace PHP_EOL with LF ("/n") for html output (The output in XH is characterized by "/n" in most places.)
1 parent 923d48d commit f5d8dfb

23 files changed

+1140
-42
lines changed

admin.php

Lines changed: 15 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,13 @@
66
* Admin-interface for configuring the plugin
77
* via the standard-functions of pluginloader.
88
*
9-
* Version: 1.6.6
10-
* Build: 2023071101
9+
* Version: 1.6.7
10+
* Build: 2024080501
1111
* Copyright: Holger Irmler
1212
* Email: CMSimple@HolgerIrmler.de
1313
* Website: http://CMSimple.HolgerIrmler.de
14+
* Copyright: CMSimple_XH developers
15+
* Website: https://www.cmsimple-xh.org/?About-CMSimple_XH/The-XH-Team
1416
* */
1517
if (!defined('CMSIMPLE_XH_VERSION')) {
1618
header('HTTP/1.0 403 Forbidden');
@@ -80,23 +82,24 @@ function jquery_getMigrateVersions() {
8082
$o .= plugin_admin_common($action, $admin, $plugin);
8183
}
8284
if ($admin == '') {
83-
$o .= PHP_EOL . '<div>';
84-
$o .= PHP_EOL . '<h1>jQuery for CMSimple</h1>';
85-
$o .= PHP_EOL . '<p>Version 1.6.6 - 2023-06-21</p>';
86-
$o .= PHP_EOL . '<p>&copy;2011-2023 <a href="http://cmsimple.holgerirmler.de/" target="_blank">http://CMSimple.HolgerIrmler.de</a></p>';
87-
$o .= PHP_EOL . '<p>';
88-
$o .= PHP_EOL . 'jQuery Version: ';
85+
$o .= "\n" . '<div>';
86+
$o .= "\n" . '<h1>jQuery for CMSimple</h1>';
87+
$o .= "\n" . '<p>Version 1.6.7 - 2024-08-05</p>';
88+
$o .= "\n" . '<p>&copy;2011-2023 <a href="http://cmsimple.holgerirmler.de/" target="_blank">http://CMSimple.HolgerIrmler.de</a></p>';
89+
$o .= "\n" . '<p>&copy;2024 <a href="https://www.cmsimple-xh.org/?About-CMSimple_XH/The-XH-Team" target="_blank">The CMSimple_XH developers</a></p>';
90+
$o .= "\n" . '<p>';
91+
$o .= "\n" . 'jQuery Version: ';
8992
$o .= '<script>
9093
var migrate = " & Migrate-Plugin";
9194
if (typeof jQuery.migrateWarnings === \'undefined\') {
9295
migrate = "";
9396
}
9497
document.write(jQuery.fn.jquery + migrate)
9598
</script>';
96-
$o .= PHP_EOL . '<br>';
97-
$o .= PHP_EOL . 'jQueryUI Version: ';
99+
$o .= "\n" . '<br>';
100+
$o .= "\n" . 'jQueryUI Version: ';
98101
$o .= '<script>document.write(jQuery.ui.version)</script>';
99-
$o .= PHP_EOL . '</p>';
100-
$o .= PHP_EOL . '</div>';
102+
$o .= "\n" . '</p>';
103+
$o .= "\n" . '</div>';
101104
}
102105
}

changelog.txt

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@ Full history since v.1.6.6 is now available on GitHub https://github.com/cmsimpl
22

33
========================================================================================
44

5+
Version 1.6.7 2024-08-05
6+
7+
Update jQuery to 3.7.1
8+
Update jQuery migrate to 3.5.0
9+
Update jQuery ui to 1.13.3
10+
replace PHP_EOL with LF ("/n") for html output (The output in XH is characterized by "/n" in most places.)
11+
12+
------------------------------------------------------------------------------------------------------------------
13+
514
Version 1.6.6 2023-07-11
615

716
Update jQuery to 3.6.4, 3.7.0

config/.htaccess

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
order deny,allow
2+
deny from all

config/config.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?php
22

3-
$plugin_cf['jquery']['version_core']="3.7.0";
4-
$plugin_cf['jquery']['version_ui']="1.13.2";
5-
$plugin_cf['jquery']['version_migrate']="jquery-migrate-3.4.1.min.js";
3+
$plugin_cf['jquery']['version_core']="3.7.1";
4+
$plugin_cf['jquery']['version_ui']="1.13.3";
5+
$plugin_cf['jquery']['version_migrate']="jquery-migrate-3.5.0.min.js";
66
$plugin_cf['jquery']['load_migrate']="";
77
$plugin_cf['jquery']['autoload']="";
88
$plugin_cf['jquery']['autoload_libraries']="jQuery";

config/defaultconfig.php

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,24 @@
11
<?php
22

3-
$plugin_cf['jquery']['version_core']="3.7.0";
4-
$plugin_cf['jquery']['version_ui']="1.13.2";
5-
$plugin_cf['jquery']['version_migrate']="jquery-migrate-3.4.1.min.js";
3+
/**
4+
* jQuery for CMSimple
5+
*
6+
* Admin-interface for configuring the plugin
7+
* via the standard-functions of pluginloader.
8+
*
9+
* Version: 1.6.7
10+
* Build: 2024080501
11+
* Copyright: Holger Irmler
12+
* Email: CMSimple@HolgerIrmler.de
13+
* Website: http://CMSimple.HolgerIrmler.de
14+
* Copyright: CMSimple_XH developers
15+
* Website: https://www.cmsimple-xh.org/?About-CMSimple_XH/The-XH-Team
16+
17+
* */
18+
19+
$plugin_cf['jquery']['version_core']="3.7.1";
20+
$plugin_cf['jquery']['version_ui']="1.13.3";
21+
$plugin_cf['jquery']['version_migrate']="jquery-migrate-3.5.0.min.js";
622
$plugin_cf['jquery']['load_migrate']="";
723
$plugin_cf['jquery']['autoload']="";
824
$plugin_cf['jquery']['autoload_libraries']="jQuery";

config/index.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
<?php
2+
3+
die('access denied');
4+

config/metaconfig.php

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
<?php
22

3+
/**
4+
* jQuery for CMSimple
5+
*
6+
* Admin-interface for configuring the plugin
7+
* via the standard-functions of pluginloader.
8+
*
9+
* Version: 1.6.7
10+
* Build: 2024080501
11+
* Copyright: Holger Irmler
12+
* Email: CMSimple@HolgerIrmler.de
13+
* Website: http://CMSimple.HolgerIrmler.de
14+
* Copyright: CMSimple_XH developers
15+
* Website: https://www.cmsimple-xh.org/?About-CMSimple_XH/The-XH-Team
16+
17+
* */
18+
319
$plugin_mcf['jquery']['version_core']="function:jquery_getCoreVersions";
420
$plugin_mcf['jquery']['version_ui']="function:jquery_getUiVersions";
521
$plugin_mcf['jquery']['version_migrate']="function:jquery_getMigrateVersions";

help/help.htm

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -52,12 +52,10 @@ <h1><a class="mozTocH1" name="mozTocId902206"></a>jQuery
5252
a CMSimple installation and make the libraries available to use with
5353
other CMSimple-Plugins. </p>
5454

55-
<p class="additional">Version 1.6.6 - 2023-07-11<br>
56-
57-
<span class="additional">
58-
&copy; 2011-2023 Holger Irmler, </span><a class="additional" target="_blank" href="http://cmsimple.holgerirmler.de">http://CMSimple.HolgerIrmler.de</a><span class="additional">.<br>
59-
60-
</span></p>
55+
<p class="additional">Version 1.6.7 - 2024-08-05<br>
56+
<span class="additional">&copy; 2011-2023 </span><a class="additional" target="_blank" href="http://cmsimple.holgerirmler.de">Holger Irmler</a>.<br>
57+
<span class="additional">&copy; 2024 </span><a class="additional" target="_blank" href="https://www.cmsimple-xh.org/?About-CMSimple_XH/The-XH-Team">CMSimple_XH developers</a>.
58+
</p>
6159

6260
<br>
6361

help/help_de.htm

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -51,12 +51,10 @@ <h1><a class="mozTocH1" name="mozTocId902206"></a>jQuery
5151
einer CMSimple Installation beifügt und die Bibliotheken anderen
5252
CMSimple-Plugins zur Verfügung stellt. </p>
5353

54-
<p class="additional">Version 1.6.6 - 2023-07-11<br>
55-
56-
<span class="additional">
57-
&copy; 2011-2023 Holger Irmler, </span><a class="additional" target="_blank" href="http://cmsimple.holgerirmler.de">http://CMSimple.HolgerIrmler.de</a><span class="additional">.<br>
58-
59-
</span></p>
54+
<p class="additional">Version 1.6.7 - 2024-08-05<br>
55+
<span class="additional">&copy; 2011-2023 </span><a class="additional" target="_blank" href="http://cmsimple.holgerirmler.de">Holger Irmler</a>.<br>
56+
<span class="additional">&copy; 2024 </span><a class="additional" target="_blank" href="https://www.cmsimple-xh.org/?About-CMSimple_XH/The-XH-Team">CMSimple_XH developers</a>.
57+
</p>
6058

6159
<br>
6260

index.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,13 @@
33
/**
44
* jQuery for CMSimple
55
*
6-
* Version: 1.6.6
7-
* Build: 2023071101
6+
* Version: 1.6.7
7+
* Build: 2024080501
88
* Copyright: Holger Irmler
99
* Email: CMSimple@HolgerIrmler.de
1010
* Website: http://CMSimple.HolgerIrmler.de
11+
* Copyright: CMSimple_XH developers
12+
* Website: https://www.cmsimple-xh.org/?About-CMSimple_XH/The-XH-Team
1113
* */
1214
if (!defined('CMSIMPLE_XH_VERSION')) {
1315
header('HTTP/1.0 403 Forbidden');

0 commit comments

Comments
 (0)