CMSimple_XH 1.7.0

A place for general not CMSimple related discussions
cmb
Posts: 14225
Joined: Tue Jun 21, 2011 11:04 am
Location: Bingen, RLP, DE
Contact:

CMSimple_XH 1.7.0

Post by cmb » Sun Jul 02, 2017 1:39 pm

Hi everybody!

We have just released CMSimple_XH 1.7.0 which is the first GA release of the 1.7 branch. And, if may dare to say, the best CMSimple(_XH) ever.

Thanks to everybody who contributed to this new version with ideas, comments, suggestions and code. Special thanks to frase, lck and richukunst who provided new templates for the distribution. Also special thank to frase and wbs for creating and translating, respectively, the new distro content. Very special thanks to Holger who had the idea and did all the basic work for the new page splitting, and to manu who did the TinyMCE 4 editor integration. Last but not least, many thanks to frase, lck and knollsen for doing a lot of testing of early development drafts and providing plenty of valuable suggestions for improvements.

The full changelog is available on our Github project page. See also the changelog of 1.7.0rc1 and the changelog of 1.7.0beta1.

The most notable changes for Users
  1. We finally dropped support for very old PHP versions. The minimum requirement is now PHP 5.3.0. It is recommended to use at least PHP 5.6, though.
  2. The classic CMSimple page splitting has been reworked. Formerly, pages have been split at certain HTML heading elements (<h1>-<h3> by default). Now the pages are split at certain HTML comments instead. That allows to insert arbitrary heading elements on every page, what allows to have a clean heading structure. Also you can now use up to 9 menu levels (at least in theory; the page URLs are likely to become too large with so many menu levels). Furthermore, in normal mode it is not possible to change the names of the pages anymore from the editor; a pagemanager has to be used instead. Advanced users may enable the advanced mode, in which case the HTML split comment is editable in the editor's source code view. Note that the page name is now basically unrelated to the first heading of the page, what makes the alternative heading ("page" tab) unnecessary, so it has been removed.
  3. TinyMCE 3 has been replaced as default editor by TinyMCE 4.
  4. Changing the password has been moved from the general configuration form to an own change password form (Settings → Password) because of issues with non-standard autocompletion of some browsers.
  5. The visibility and publishing status of pages set in the page data tab is now inherited to all subpages.
  6. Several already deprecated functions have been moved to cmsimple/compat.php. If you're sure that you don't need these functions, you can set $cf[site][compat] in cmsimple/config.php to an empty string.
  7. Special support for the Menumanager plugin has been removed, so even if you're using a modified version of this plugin, it won't work anymore.
  8. The automatically generated Legal Notices page has been removed.
  9. There is now an automatically created page Site/CMS Info which shows information about the system, the templates and the plugins including backlinks. You can add additional information to this page via a newsbox. For details see the delivered demo content.
  10. The page URLs have been slightly simplified by collapsing multiple consecutive word separator characters. For instance, a page named "this - that" formerly had the URL this---that but now this-that.
  11. The language codes of Svedish and Greek have been fixed; these are now sv and el, respectively.
  12. The flag icons have been enlarged.
  13. The password hashing has been improved to use BCrypt instead of the less secure former algorithm.
  14. The accessibility of the adminmenu functionality on touchscreen devices has been improved.
  15. A check regarding the password strength has been added. It currently uses a very simple algorithm, where strengths above 100 are supposed to mark very strong passwords.
  16. The system check has been reworked to more clearly convey the meaning of the checks.
  17. The folder core/ has been renamed to assets/.
  18. Several date/time representation are now internationalized if the PHP intl extension is available.
  19. The markup of some elements has been improved (searchbox, lastupdate).
  20. The publication period in the "page" tab has now date/time pickers if supported by the browser.
  21. The login form is now detached from the template.
  22. The Fa_XH plugin has been added to the standard distribution. It allows to use Font Awesome icons in the contents.
  23. The page_params functionality of hiding and unpublishing pages has been moved into the core.
  24. The relevant functionality of the Utf8 plugin has been moved into the core, and the plugin has been removed.
  25. core.css and plugins.css are now combined into xhstyles.css.
  26. Config and language files are now loaded on demand, what might improve the server side performance a bit.
The most notable changes for Template Designers
  1. Special support for XHTML has been removed or deprecated. You are strongly advised to use the HTML5 doctype for new templates.
  2. Due to the new page splitting (see above) there is no need anymore to style <h1>-<h3> identically. Instead all pages are supposed to start with <h1> (or maybe <h2> if the template already uses an <h1> heading for all pages). It might be best to document whether a template is supposed to be optimized for the new page splitting and the details.
  3. It is recommended that templates include a file templateinfo.htm directly in the template folder, which may contain information about the template and a backlink to the designer. The format is simplified HTML (only <a> and <br> elements are allowed) encoded in UTF-8; the maximum supported length are 400 UTF-8 glyphs. The information in this file is injected into the new Site/CMS info page (see above). Consider to remove (or allow users to remove) backlinks to the template designer in the footer of the template, and instead use the new poweredByLink() function.
  4. A template can now ship an own set of language flag icons; simply put respective GIF images into the flags/ subfolder of the template. Missing icons are taken from the default location (userfiles/images/flags/).
  5. The function submenu() accepts an optional parameter now, which allows for custom markup of the submenu title.
  6. The function legallink() which has been deprecated as of CMSimple_XH 1.5.8 has been removed.
  7. The function editmenu() has been deprecated. It did nothing as of XH 1.5 anyway, so it's time to start its removal from templates.
  8. The function tag() has been deprecated. It is recommended to simply emit valid HTML5 instead.
  9. The function top() accepts an optional parameter which can be used to link to another id than #TOP.
  10. .plugintext, .pluginedit and .plugineditcaption have been removed from the core and the standard plugins. While these old pluginloader classes may still be used by some plugins, you can probably ignore them for new templates.
  11. The template stylesheet is now linked as last stylesheet, so that its easier to overwrite plugin defined rules.
  12. The Fa_XH plugin has been added to the standard distribution. It is the recommended way to use Font Awesome in the template.
The most notable changes for Plugin Developers:
  1. While in earlier versions flags in the query string (i.e. a parameter name without equals sign and value) have been automatically registered as global variables with the value 'true', this is no longer the case for security and maintainability reasons. This "feature" has typically been used to check whether the administration of a certain plugin is requested (if ($pagemanager) …), what will not work anymore. Use XH_wantsPluginAdministration() instead.
  2. CMSimple_XH now uses named sessions by default, so that multiple installations on the same domain have their own set of sessions. If a plugin wants to start a session, it shouldn't call session_start() anymore, but XH_startSession() instead. That will not work, if the plugin requests PHP files directly, i.e. without going through CMSimple_XH's index.php. It is recommended to avoid that anyway. If you can't avoid that, you can read the session name from cmsimple/.sessionname, and call session_name() with this name before calling session_start().
  3. The configuration type "password" has been removed.
  4. Advanced config options have been introduced. These are marked with a leading + sign in metaconfig.php and are hidden behind a "more" button in the config forms.
  5. $cf[xhtml][endtags] has been removed and tag() has been deprecated. It is recommended to simply emit valid HTML5 instead.
  6. initvar() has been deprecated. Note that it is not necessary to call initvar('action') or initvar('admin'), because that is done by the core already. For all other uses of initvar() consider to avoid global variables.
  7. The JSON class, which provided a fallback for old PHP versions without JSON support, has been removed. XH_decodeJson() and XH_encodeJson() are still available, but are now only thin wrappers over json_decode() and json_encode(). Consider to use the json_*() functions directly.
  8. The PasswordHash class has been removed. Use the password hashing functions and random_bytes(), respectively, instead. For older PHP versions there are fallbacks available in cmsimple/password.php.
  9. The functions h() and l() which are thin wrappers over $h and $l, respectively, have been deprecated. Consider to use XH\Pages instead.
  10. plugin_admin_common() doesn't expect any parameters anymore, because these have never been used formerly, anyway. You still can stick to passing $action, $admin and $plugin, as PHP silently ignores excess arguments, and probably this won't change in the near future (if ever).
  11. The global variable $rq has been removed.
  12. The editorhooks of the default filebrowser have been moved to the respective editor plugins, so you don't have to overwrite files in the filebrowser plugin. For backward compatibility, if no editor hook is found in the editor plugin, the hook in the old location is used as fallback.
  13. CMSimple_XH has gotten a general class autoloader. To use it put your properly namespaced classes into the classes/ folder of the plugin. Nested namespaces are also supported. It is recommend to rely on class autoloading instead of manual require'ing of PHP files for simplicity and efficiency.
  14. XH_afterFinalCleanUp() has been added, which allows plugins to register a function that will be triggered near the end of the request so the full HTML can be manipulated.
  15. $pd_router->add_tab() accepts an optional third parameter which allows to specify a CSS class which is set on the page data tab, so you can easily style individual tab labels.
  16. The class XH\Mail has been extracted from the mailform code, so plugins can reuse its functionality.
  17. XH_formatDate() is now internationalized if ext/intl is available. Consider to use it for human readable date/time formatting.
  18. $pd_router->model is now private; use the methods of $pd_router instead to forward to the model.
  19. Headings emitted by plugins should be adapted to the new page splitting. For instance, additional content on a page shouldn't use <h4> anymore, but rather <h2> instead. Consider to make the actual heading level configurable.
  20. Plugins which directly deal with the contents of pages may have to cater to the new page splitting (see above).
  21. The Fa_XH plugin has been added to the standard distribution. It is the recommended way to use Font Awesome icons in plugins. Consider to use Font Awesome instead of classic icon images for consistency and better look on Retina devices.
  22. GET requests with `selected` are now redirected to the desired page.
  23. The developer documentation is now generated with Doxygen instead of PhpDocumentor 1.
The most notable changes for Core Developers:
  1. The PEAR coding standards have been superseded by the PSR-2 coding standards. Use `phing sniff` to check for violations.
  2. PHP MessDetector has been added to the development tools, and is availble via `phing mess`.
Important notes
  1. This version introduces some backward compatibility breaks. For a list of known incompatibilites see the respective Wiki page.
  2. Recent versions of jQueryUI might not be fully compatible with jQuery 3, see https://github.com/TN03/jQuery_XH/issues/1. It might be best to not use jQueryUI for new developments.
Upgrade instructions

To upgrade your website to CMSimple_XH 1.7.0, do the following:
  1. Make a backup of the existing site and download everything to your computer
  2. use Exchange_XH to export the content.htm files to content.xml files (detailed instructions are available in the user manual of Exchange_XH); download the content.xml files to your computer
  3. install CMSimple_XH 1.7.0 on your webspace; to get rid of unnecessary files, consider to delete the old installation completely before uploading CMSimple_XH 1.7.0 (you have a backup, don't you?)
  4. use Exchange_XH to import the content.xml files to content.htm files (detailed instructions are available in the user manual of Exchange_XH)
  5. upload the backup of the content/ folder to the new installation (everything except the content.htm files)
  6. upload the backup the second language folders to the new installation
  7. upload the backup of the folder templates/ (or just single template folders) to the new installation
  8. upload the backup of additional plugins to the new installation
  9. upload the backup of all images, downloads and media to the new installation
  10. manually reconfigure Settings->Configuration and Settings->Language
  11. remove the page headings (the top most heading) of all news pages (see user change #2)
Unfortunately, there's plenty of documentation on the new features and changes missing yet. So if you have questions regarding particular items, feel free to ask, so we can set priority on writing the most lacking documentation first.

Download

https://github.com/cmsimple-xh/cmsimple ... -1.7.0.zip

Enjoy!
Last edited by cmb on Wed Sep 20, 2017 10:44 am, edited 4 times in total.
Reason: Fix typo
Christoph M. Becker – Plugins for CMSimple_XH

twc
Posts: 233
Joined: Fri Jun 18, 2010 12:25 am
Location: Netherlands

Re: CMSimple_XH 1.7.0

Post by twc » Sun Jul 02, 2017 3:04 pm

#CMSimple hide#

do not work any more ?

cmb
Posts: 14225
Joined: Tue Jun 21, 2011 11:04 am
Location: Bingen, RLP, DE
Contact:

Re: CMSimple_XH 1.7.0

Post by cmb » Sun Jul 02, 2017 3:16 pm

twc wrote:#CMSimple hide#

do not work any more ?
It's still supposed to work – I just checked, and it does.
Christoph M. Becker – Plugins for CMSimple_XH

cmb
Posts: 14225
Joined: Tue Jun 21, 2011 11:04 am
Location: Bingen, RLP, DE
Contact:

Re: CMSimple_XH 1.7.0

Post by cmb » Sun Jul 02, 2017 3:57 pm

Hmm, looks good here:
fiber.png
You do not have the required permissions to view the files attached to this post.
Christoph M. Becker – Plugins for CMSimple_XH

Tata
Posts: 3586
Joined: Tue May 20, 2008 5:34 am
Location: Slovakia
Contact:

Re: CMSimple_XH 1.7.0

Post by Tata » Sun Jul 02, 2017 4:13 pm

CMSimple.sk Info aktualisiert.
Hier Sprachpacket : http://cmsimple.sk/userfiles/downloads/ ... 170-SK.zip
Die Webseite habe ich local auf 1.7.0 aktualisiert, da sehe ich aber, dass am host kann ich es wohl noch nicht machen, weil Realblog funkzioniert nicht.
Super Leistung Junge.
+1
CMSimple.sk
It's no shame to ask for an answer if all efforts failed.
But it's awful to ask without any effort to find the answer yourself.

twc
Posts: 233
Joined: Fri Jun 18, 2010 12:25 am
Location: Netherlands

Re: CMSimple_XH 1.7.0

Post by twc » Sun Jul 02, 2017 6:20 pm

cmb wrote:Hmm, looks good here:
fiber.png
yeah i found the fix :D

cmb
Posts: 14225
Joined: Tue Jun 21, 2011 11:04 am
Location: Bingen, RLP, DE
Contact:

Re: CMSimple_XH 1.7.0

Post by cmb » Sun Jul 02, 2017 9:12 pm

Super! Ich habe die Sprachpakete aktualisiert.
Tata wrote:Die Webseite habe ich local auf 1.7.0 aktualisiert, da sehe ich aber, dass am host kann ich es wohl noch nicht machen, weil Realblog funkzioniert nicht.
Ja, leider. Ungetesteter Quick-Fix: diese Zeile ersetzen durch:

Code: Select all

return XH_wantsPluginAdministration('realblog'); 
Christoph M. Becker – Plugins for CMSimple_XH

Tata
Posts: 3586
Joined: Tue May 20, 2008 5:34 am
Location: Slovakia
Contact:

Re: CMSimple_XH 1.7.0

Post by Tata » Sun Jul 02, 2017 9:45 pm

Ja, hat geholfen. Doch verstehe ich folgendes nicht:
1. Der gleiche Realblog Plugin incl. stzlesheet wurde von CMSimple.sk kopiert - der "read more..." Link nimmt aber die Styling nicht.
2. Die content.html wurde durch Echange convertiert und importiert. Es gibt da die Seite Aktuality mit {{{Realblog_blog();}}} und die Aktuality/Archiv mit {{{Realblog_archive();}}}. Solange Aktuality und Archiv für Menu offen sind, erscheint auf Submenu. Lasse ich die Aktuality "hidden", Submenu ist weg. Nicht so aber auf CMSimple.sk (v1.6.10). Dort ist Aktuality versteckt, Archiv nicht, doch Submenu ist da.
CMSimple.sk
It's no shame to ask for an answer if all efforts failed.
But it's awful to ask without any effort to find the answer yourself.

cmb
Posts: 14225
Joined: Tue Jun 21, 2011 11:04 am
Location: Bingen, RLP, DE
Contact:

Re: CMSimple_XH 1.7.0

Post by cmb » Mon Jul 03, 2017 9:33 am

Tata wrote:1. Der gleiche Realblog Plugin incl. stzlesheet wurde von CMSimple.sk kopiert - der "read more..." Link nimmt aber die Styling nicht.
Könnte ein Cache-Problem sein. Lösche mal assets/css/xhstyles.css, und wenn das nicht hilft, den Browsercache.
Tata wrote:2. Die content.html wurde durch Echange convertiert und importiert. Es gibt da die Seite Aktuality mit {{{Realblog_blog();}}} und die Aktuality/Archiv mit {{{Realblog_archive();}}}. Solange Aktuality und Archiv für Menu offen sind, erscheint auf Submenu. Lasse ich die Aktuality "hidden", Submenu ist weg. Nicht so aber auf CMSimple.sk (v1.6.10). Dort ist Aktuality versteckt, Archiv nicht, doch Submenu ist da.
Ab CMSimple_XH 1.7 sind Unterseiten versteckter Seiten ebenfall versteckt; siehe https://github.com/cmsimple-xh/cmsimple-xh/issues/48.
Christoph M. Becker – Plugins for CMSimple_XH

ojay
Posts: 78
Joined: Sun Nov 09, 2014 10:24 am
Location: da, wo die Zeit entsteht

Re: CMSimple_XH 1.7.0

Post by ojay » Mon Jul 03, 2017 5:56 pm

Hallo,

ich habe mich getraut (natürlich mit Backup von v.1.6.10) mit Template 'responsivehtml' laut "Upgrade instructions" auf v.1.7.0 zu wechseln. :?
Die Seite läßt sich normal aufrufen, Userlogin (Plugin: memberpages) freigegebene Seiten werden richtig angezeigt.

Aber der Admin-Login funktioniert nicht. Auch die 'Passwort vergessen'-Funktion schickt keinen gültiges Passwort zu.
Wie komme ich wieder rein?
Die Login-Seite erscheint als Einzel-Seite, nicht im Template integriert.

Für ein Update ist der Änderungsschritt ziemlich (zu) groß. Gerade, die sich nicht in ein CMS einarbeiten wollen, werden damit nicht froh.
Wer mit v.1.7.0 startet wird vermutlich zufriedener sein, als mit den Vorversionen.

Post Reply