Speaking of the demo content...we really need to clean it up before going out of RC status with 0.9.5. Right now we have pages that have redundant calls to Prototype and Scriptaculous and, in some cases, are loading all these different libraries. In my opinion, we need to keep the default content lean and mean and stick with a unified library. I’m working on getting everything in the manager to be compatible with MooTools so we can move away from so many different libraries. I think we should do the same with the default content. During the course of this week I’ll be working on getting the DocManager, a few of the TV widgets, and the default content to where they all use MooTools. Doing so will great speed up progress towards our goals.
Jeff
Jeff Whitfield
"I like my coffee hot and strong, like I like my women, hot and strong... with a spoon in them."
-
MODX Staff
- 12,272 Posts
Demo content will not be changing for 095, as that’s basically introducing new features, and the demo content isn’t critical to functionality. 0951 we can intro changes to our hearts content, and will be just fine. We’re way too behind as it is.
Ryan Thrash, MODX Co-Founder
Follow me on Twitter at @rthrash or catch my occasional unofficial thoughts at thrash.me
Agree. Demo content is important, but right now we need to focus on the difference between 0.9.2.2 and 0.9.5. The switch to Moo has already held up 0.9.5 and caused a number of issues; it is just too late to be changing yet more things. Besides, it makes perfect sense for 0.9.5 to be a transitional release that uses both libraries.
Ryan/whoever, can you add the version 0.9.5.1 to the Tracker?
Looks to me like some of the icons we’re using are from
http://www.famfamfam.com/lab/icons/silk/
If this is the case, we should link back to that page in the credits.
And also possibly bung him a few quid.
-
MODX Staff
- 12,272 Posts
We actually need to update the credits page in general I think, and I like your idea of pulling the credits stuff out of the language files.
Ryan Thrash, MODX Co-Founder
Follow me on Twitter at @rthrash or catch my occasional unofficial thoughts at thrash.me
-
MODX Staff
- 12,272 Posts
There is a new build available now after merging in Garry’s and Jeff’s latest additions: htp://modxcms.com/testbuilds/MODx-095RC3-rev2017.zip
Please give it a quick run-through prior to letting it loose to the public at large.
Ryan Thrash, MODX Co-Founder
Follow me on Twitter at @rthrash or catch my occasional unofficial thoughts at thrash.me
Quote from: banzai at Nov 18, 2006, 09:07 AM
I have a strange issue in RC3 rev2017 and rev2032.
Edit template display a preview window instead the template code (see attached image)
Same issue in Edit chunks, snippet and plugins
EDIT: solved, is not RC issue
it’s a CodePress Plugin Issue , removed the plugin everything works fine.
-
MODX Staff
- 10,725 Posts
Revision 2066 committed to SVN (trunk) -- session cookies, rememberme functionality, and session_keepalive actually work now (ugh), on manager and front-end. Please test away if you have a chance, but make sure you run the upgrade, as there is a new configuration setting for the rememberme cookies called session.cookie.lifetime that indicates the number of seconds the cookie persists when rememberme is checked. There is also new code for the function startCMSSession required in the config file.
This should be public RC3 if there aren’t any major outstanding issues...
-
☆ A M B ☆
- 24,524 Posts
While fixing 404 errors involving images on one of my sites, I ran across an old reference still in the bkmanager.static.php file, line 61:
<span class="right"><img src="media/images/_tx_.gif" width="1" height="5"><br /><?php echo $_lang["bk_manager"]; ?></span>
It can be fixed like this:
<span class="right"><img src="media/style/<?php echo $manager_theme ? "$manager_theme/":""; ?>images/_tx_.gif" width="1" height="5"><br /><?php echo $_lang["bk_manager"]; ?></span>