Announcing CMSMS 1.11 Beta Program

Project Announcements. This is read-only, as in... not for problems/bugs/feature request.
Post Reply
calguy1000
Support Guru
Support Guru
Posts: 8169
Joined: Tue Oct 19, 2004 6:44 pm
Location: Fernie British Columbia, Canada

Announcing CMSMS 1.11 Beta Program

Post by calguy1000 »

The CMSMS Dev Team is delighted to announce the Beta release of our next major version CMS Made Simple 1.11. There have been some significant and important changes. We strongly advise that if you are a Module creator, your participation in the beta testing cycle will not only be of great benefit to us but an extremely useful exercise for you to get an immediate and comprehensive understanding of the improvements. Particularly developers of modules that export custom content types should participate in the beta process (to experience changes in the content class as noted below), so that you can ensure compatible releases of the module are available at the time when CMSMS 1.11 is released.

We do of course encourage all people to test this product at length, and to start building evaluation websites with it. However, we cannot support people that decide to use a beta product on a production site, so to minimize stress on you, the community, and the development team, please only use this version now for evaluation purposes.

The Beta is scheduled to run until July 21 or thereabouts depending on the results of testing. During the Beta we will cut new beta releases as needed for the important major bug fixes, but not for minor ones.

Please note that the beta period is not the time to request features. No further feature requests for the 1.11 release will be added now we are entered into the Beta Cycle. Whilst we look forward to your comments and evaluations, not every ‘issue’ will necessarily be fixed: The dev team reserves the right to make the final decision as to what issues are to be addressed (and how to address them). We will have a special forum for issues with the beta and this forum will be heavily moderated by the development team so that we can test, reproduce, track, and close reported issues. You should use this forum to report any Bet issues as that is the main place that we will be monitoring. The only other available channel will be the #cmsms-beta irc channel, which can be used to communicate with the dev team about issues specifically related to the beta. We look forward to hearing from you!

So let’s take a look at the major changes

Smarty 3:
The biggest change in CMSMS 1.11 is that we are now using Smarty3. Smarty3 brings some new functionality for Smarty templates, such as improved parsing, which should help with embedded javascript; smarty functions; and advanced cache control.

The CMSMS Dev Team worked extensively in conjunction with the developers of Smarty to implement an unmodified version Smarty 3.1.10 into CMSMS. The important part of this transition was to retain the power of the variable scoping we have become accustomed to in CMSMS; e.g. being able to set a variable in a module template that is called from the body, and to use that variable in the page head.

CMSMS 1.11 enables Smarty caching in a very flexible way to give the power of caching all or parts of individual pages. This is almost as good as full page caching, but retains the dynamic power of CMSMS.

In 1.11, most plugins in the plugins folder are ‘cachable’, i.e., the output of those plugins can be cached on the page and not re-executed. The obvious exception being the {content} plugins which will not cache.

The News module has also been modified to take better advantage of Smarty3’s caching capabilities, and to serve as an example for module developers.

There are some detriments to the adoption of Smarty3 however. We have noticed that the initial compilation (converting Smarty templates into PHP code) and rendering of a stock CMSMS page is noticeably slower. This performance degradation is due to the complexity of the lexer and parser in Smarty3 and is a known limitation in the library.

However, once caching is enabled, we are noticing a significant performance improvement. We feel that this trade-off will be beneficial in the long run to all users of CMSMS.

Language and locale improvements:
We have rewritten the language detection and selection mechanisms into a class to allow for more flexibility. The NLS data set now contain locale and encoding information so that the $config[‘locale’] and $config[‘encoding’] information will be optional even for non-English sites.

We have reorganized some of the language detection mechanisms so that it is called AFTER modules (the ones that can’t lazy load) are initialized. This, in conjunction with the new CmsNlsOperations::set_language_detector() method, allows third party modules to specify how the current frontend language should be detected. Modules can then use session variables, cookies, a variable on the URL, or user or module preferences to determine what language to use for that frontend request.

The importance of this cannot be understated. This allows third party modules to create proper multi-language capabilities within CMSMS and we are sure that there are many module developers and thousands of website developers that will be extremely happy.

CSS Improvements:
Each stylesheet can now have an a media query string. This allows you to better make responsive websites, or webpages for mobile devices. As well, some new config variables will allow you to control the output directory for generated stylesheets.

New Admin Theme:
Goran Ilic, a valued member of the CMSMS Dev team, has created a new, HTML5, responsive admin theme for CMSMS that is completely Smarty controlled, and extendable. This is the new admin theme for all fresh CMSMS installs, and the old ‘default’ admin theme has been removed. This leaves the NCleanGrey and OneEleven admin themes.

New Frontend Theme:
We are also delighted that CMSMS 1.11 comes with the new ‘Simplex’ frontend theme. Simplex Theme has been created to demonstrate HTML5 and CSS3 functionality within CMSMS. We envision slowly replacing the sample HTML4 transitional themes in the distribution with HTML5 examples.

Drag and Drop Upload:
Along with the new admin theme, we’ve upgraded the jquery and jquery.ui that is shipped with CMSMS and have added support for uploading files via drag and drop (for most non-IE browsers). This makes the file upload capabilities in wysiwyg editors all but redundant, and solves a long standing difficulty with CMSMS. The OneEleven admin theme has a dropzone in its main area, allowing you to drag files from your desktop into CMSMS and then select the file from within the wysiwyg editor. Additionally, you can change working directories from within the OneEleven admin theme.

Better Module Lazy Loading:
Continuing with what was started in the 1.10 series, we have improved the module lazy loading capabilities to improve performance on your websites. To that end we’ve also re-worked the routing functionality.

Improved auditing:
Audit trails are becoming more and more important in our websites (who did what, and when). For that reason, we’ve gone through all of the important pieces of functionality and ensured there’s is a line placed in the audit log for each of them.

A System Maintenance page:
A brand new system maintenance page in the admin interface allows you to perform periodic maintenance tasks like database repairs and optimizations, clearing the cache, etc.

Improved Content class:
a. As mentioned at the start of this release we have re-organized the Content class again to improve performance, and lay the foundation for some work planned in the future. To that end we’ve reworked the property classes in the base content object (the methods that retrieve the content blocks, etc). We have also marked all of the content object methods and members as public, protected, or private, as appropriate.

b. In the past, the editcontent form used regular expressions to parse the page template in order to detect the content blocks. This has changed, and we are actually now using Smarty. This improves the flexibility, and reduces the possibility for error when editing page templates. Additionally, it is now possible for content block definitions to be inserted into sub templates (i.e: via {include} or via global content blocks) which gives us much more flexibility for re-use of templates.

c. It is now possible, when adding content blocks, to specify a tab within the edit content form that should contain the content block text area.

Improvements in core modules: MenuManager:
MenuManager now has a new breadcrumbs action (and the breadcrumbs tag is now depeciated). The new breadcrumbs action allows for template customization of the appearance of breadcrumbs, and even its behaviour.

Additionally, MenuManager has a new “items” action to replace the “items=” method in previous versions. This allows naming specific page aliases and having them, and their children, in your navigation.

Improvements in core modules: News module:
The news module has gone through extensive “under the hood” modifications:

a: The news module now uses Smarty caching so that on cached pages no database queries are necessary (for summary views):

b: The news module now preloads field information for all articles displayed in a summary view to reduce the number of queries required and significantly improve performance.

c: Category information is now preloaded and cached and can be shared between summary and detail views.

Bits and pieces:
- XML Module export only exports the English version of the help and about.
- A new bulk action in listcontent for changing page ownership.
- Improved user settings pages.
- Adding a new user allows you to specify the default wysiwyg for that user.
- Custom page URLs can now include an extension.
- Removed the ‘output_compression’ config option.
- Removed the ‘process_whole_template’ config option.
- Removed the ‘use_adodb_lite’ config option.
- Removed support for Postgres.
- Removed the ‘max_upload_size’ config option.
- Removed the google_search plugin.
- Moved the {menu}, {news,} {search}, and other plugins to their respective modules.
- Some general re-organization of various admin pages.
- Dozens of bug fixes.
- Lots more.
For a much more complete list of what has changed please view the CHANGELOG.txt file in the docs directory of your beta installation.

Thanks
Once again, massive amounts of effort has gone into creating this release, freely donated by the members of the development team and other volunteers. Special thanks to: Ronny Krijt, Rolf, René Helminsen, Jeff Bosch, Robert Campbell, Ted Kulp, Morten Poulsen, Goran Ilic, Mark Reed, Anne-Mieke Bovelett, Tapio Löytty, John Scotcher, Jonathan Schmid and Jean-Claude Etiemble.
Follow me on twitter
Please post system information from "Extensions >> System Information" (there is a bbcode option) on all posts asking for assistance.
--------------------
If you can't bother explaining your problem well, you shouldn't expect much in the way of assistance.
calguy1000
Support Guru
Support Guru
Posts: 8169
Joined: Tue Oct 19, 2004 6:44 pm
Location: Fernie British Columbia, Canada

Re: Announcing CMSMS 1.11 Beta Program

Post by calguy1000 »

Thanks to the help of a number of fans... numerous issues have been detected and fixed in the CMSMS 1.11 stream already. Keep up the good work. The first beta was downloaded in excess of 200 times in just a few days!!

We have now released the second beta (now available from the downloads page). That addresses all but the most minor of issues that we could reproduce.

We encourage people to keep testing, but to move to some more significant areas, such as testing the new caching functionality, site upgrades, performance, module compatibility etc.

We also need to emphasize, that in all cases we can only fix or explain issues that we can see and duplicate. Therefore contextual information is critically important. Please provide as much information as you can gather, and provide details so that we can reproduce any problems you may encounter. Too much information is fine, but insufficient information frequently results in our not being able to reproduce the error.

Keep going guys, this release is on the path to being the best CMSMS release yet!
Follow me on twitter
Please post system information from "Extensions >> System Information" (there is a bbcode option) on all posts asking for assistance.
--------------------
If you can't bother explaining your problem well, you shouldn't expect much in the way of assistance.
calguy1000
Support Guru
Support Guru
Posts: 8169
Joined: Tue Oct 19, 2004 6:44 pm
Location: Fernie British Columbia, Canada

Re: Announcing CMSMS 1.11 Beta Program

Post by calguy1000 »

CMSMS 1.11 Beta3 will probably come out tomorrow. There have been numerous fixed issues and minor improvements. Including: reverting MicroTiny to an earlier version of tinymce to restore the expected <p> and <br/> behavior.

Stay tuned.
Follow me on twitter
Please post system information from "Extensions >> System Information" (there is a bbcode option) on all posts asking for assistance.
--------------------
If you can't bother explaining your problem well, you shouldn't expect much in the way of assistance.
calguy1000
Support Guru
Support Guru
Posts: 8169
Joined: Tue Oct 19, 2004 6:44 pm
Location: Fernie British Columbia, Canada

Re: Announcing CMSMS 1.11 Beta Program

Post by calguy1000 »

Here we are again.. with the third beta in our series. The 1.11 series is rapidly stabilizing. We've recieved a number of bug reports, both significant and trivial and we've investigated all of them.

There have been bugs fixed related to smarty, issues with right to left languages, some theming fixes, and of course adjustments to MicroTiny.ram.

Perhaps the biggest change in this beta release is that we've reverted MicroTiny to an earlier version of tinymce so that we can restore the expected behaviour of creating a new paragraph when the enter key is pressed.

Additionally, we have decided that we will no longer upgrade any libraries we are using whilst in the middle of a beta program, unless we find it to be absolutely necessary. To that end we have no intention of upgrading to smarty 3.1.11 during the beta cycle (unless an issue is found that demands it).

We feel that we are still on track for a final release of CMSMS 1.11 on or around the 21st of July.

We encourage people to keep testing, but to move to some more significant areas, such as testing the new caching functionality, site upgrades, performance, module compatibility etc.

We also need to emphasize, that in all cases we can only fix or explain issues that we can see and duplicate. Therefore contextual information is critically important. Please provide as much information as you can gather, and provide details so that we can reproduce any problems you may encounter. Too much information is fine, but insufficient information frequently results in our not being able to reproduce the error.

Keep up the good work people.
Follow me on twitter
Please post system information from "Extensions >> System Information" (there is a bbcode option) on all posts asking for assistance.
--------------------
If you can't bother explaining your problem well, you shouldn't expect much in the way of assistance.
calguy1000
Support Guru
Support Guru
Posts: 8169
Joined: Tue Oct 19, 2004 6:44 pm
Location: Fernie British Columbia, Canada

Re: Announcing CMSMS 1.11 Beta Program

Post by calguy1000 »

CMSMS 1.11 - Beta4 has been released.

Hopefully this will be the last beta release. We still feel we are on schedule to release the final version of 1.11 about a week from today.

This release fixes numerous issues with FileManager and FilePicker (particularly on windoze hosts). And some issues with the 1.11 theme. Additionally, numerous other minor issues have been fixed that should result in a nice stable 1.11 environment. Thanks to all of those beta testers for their hard work.

We're still concerned about testing on some of the advanced features that are new to 1.11. i.e: Enabling smarty caching etc. We've done some testing but there is no way we can test every possible issue without some assistance. So please, spend some time on this in the next week.

The new beta is available from the downloads page, and have fun!
Follow me on twitter
Please post system information from "Extensions >> System Information" (there is a bbcode option) on all posts asking for assistance.
--------------------
If you can't bother explaining your problem well, you shouldn't expect much in the way of assistance.
Post Reply

Return to “Announcements”