We launched new forums in March 2019—join us there. In a hurry for help with your website? Get Help Now!
    • 32963
    • 1,732 Posts
    Hi All,

    Getting ready to roll out TP3.3. Please let us see if we can get all those outstanding items ready for the release:

    1) Default content (backup site_content and site_snippets tables)
    2) QuickEdit (lastest and greatest versions)
    3) FCKEditor (2.1PR or other 2.0 fixes)
    4) Other TP3.3 fixes
      xWisdom
      www.xwisdomhtml.com
      The fear of the Lord is the beginning of wisdom:
      MODx Co-Founder - Create and do more with less.
      • 25663 MODX Staff
      • 12,272 Posts
      Just wrapped up the initial commenting styling and UserComments revisions ... working much more nicely and looking better now. Could someone peek at them in Win IE, please (pixelhick.com blog comments).

      I would like to think of TP3.3 as a release candidate for a MODx 1.0 release for all practical purposes. It’s really pretty slick and certainly worthy of th moniker. No telling when in reality we’ll actually have the new manager...

      A 1.0 tag would bring in the perception that it’s finally a stable release worthy of deploying. I suspect there will be at least 6 months of testing and tweaking after the new manager is out before we can release  any way.

      Here’s what remains as critical for TP 3.3 internal testing release:

      1) Getting the blog posts to use a RTE for data entry.
      2) Quick Edit is still a bit off.

      Would be nice for Comments to have a RTE instance too (scaled back REALLY simply styling, that is).

      For the public release, we should consider:

      1) All copy writing and editing. Thorough content review including filling in some description gaps.
      2) Get the RSS feeds fixed properly.
      3) Thorough testing of DropMenu code.

      and possibly...

      4) AJAX contact form and/or Live Search powered by Prototype.js (part of scriptaculous).
      5) Style switcher.


        Ryan Thrash, MODX Co-Founder
        Follow me on Twitter at @rthrash or catch my occasional unofficial thoughts at thrash.me
        • 4018
        • 1,131 Posts
        One bug that I wouldn’t mind having fixed is the fact that aliases can’t be case sensitive. Ran into a problem with this while dealing with Google’s Site Maps. Here’s what I believe to be a fix for this:

        Open save_content.processor.php

        Around line 605:

        function stripAlias($alias) {
        	$alias = strip_tags($alias);
        	$alias = strtolower($alias);
        	$alias = preg_replace('/&.+?;/', '', $alias); // kill entities
        	$alias = preg_replace('/[^\.%a-z0-9 _-]/', '', $alias);
        	$alias = preg_replace('/\s+/', '-', $alias);
        	$alias = preg_replace('|-+|', '-', $alias);
        	$alias = trim($alias, '-');
        	return $alias;
        }
        


        Change to:

        function stripAlias($alias) {
        	$alias = strip_tags($alias);
        	$alias = preg_replace('/&.+?;/', '', $alias); // kill entities
        	$alias = preg_replace('/[^\.%A-Za-z0-9 _-]/', '', $alias);
        	$alias = preg_replace('/\s+/', '-', $alias);
        	$alias = preg_replace('|-+|', '-', $alias);
        	$alias = trim($alias, '-');
        	return $alias;
        }
        


        Since I removed the strtolower line from the stripAlias function, one of the regular expressions needed to be changed to allow for upper-case letters. By default, a search for a specific string value is case insensitive with MySQL. This is good because if a user enters ’TestPage’ then a search would it would return a result even if the value ’testPage’ or ’testpage’ exists. I tested this and it works like a charm. I’ll be testing this just to make sure. smiley
          Jeff Whitfield

          "I like my coffee hot and strong, like I like my women, hot and strong... with a spoon in them."
          • 1764
          • 680 Posts
          I think QE is ready for 3.3. I’ve worked with Ryan on bugfixes and some enhancements to the v11 download.

          I’m on vacation this next week. Hopefully I’ll come back to a fresh 3.3 release smiley
            • 25663 MODX Staff
            • 12,272 Posts
            We’re getting closer and closer...

            Remaining significant work for internal testing build:


            • Minor RSS Feed work to filter out snippets from adding HTML ... this might be tricky ... Mark is working on this
            • NewsPublisher to use an RTE instance for the content.
            • XML page types are getting a .html extension when FURLs are being used. (I think Raymond already has a fix for this that’s not been committed to SVN).
            • Committing the new content and tweaked snippets to SVN.

            I’ve noted some issues with the DropMenu code and will be fixing that soon. I need to create an explanation of how it works, too. Perhaps I should include some example configurations, too... this would be a good start for a documentation page.

            Susan should be getting Richard’s Editor’s Guide and more documentation tweaks done too. Hopefully she and Richard and Brian (once he returns from Web 2.0) will give all the content on Pixelhick.com a once-over too.

            That just leaves one minor thing left that I’d like to have for the distribution: Live Search. We can hold off on the AJAX contact form I think ... LiveSearch has more of a wow factor any way. smiley
              Ryan Thrash, MODX Co-Founder
              Follow me on Twitter at @rthrash or catch my occasional unofficial thoughts at thrash.me
              • 34162
              • 1 Posts
              I can’t wait to try out 3.3 on my test site.

              Thanks
                • 25663 MODX Staff
                • 12,272 Posts
                OK, so based on Mark’s recent RSS, leaves only my DropMenu shenanigans and Getting the Blog to use an RTE as the remaining "big" coding issues (I think the others are fixed by Raymond’s non-committed stuff in his Sandbox).

                From there, it’s tweaks and cleanups. laugh

                Next week should be fun.

                  Ryan Thrash, MODX Co-Founder
                  Follow me on Twitter at @rthrash or catch my occasional unofficial thoughts at thrash.me
                  • 7455
                  • 2,204 Posts
                  when using the weblogin snippet pressing enter to login does not work you need to press the submiy button to login. in older versions this is not a problem pressing enter after entering user <tab> password did the trick.
                    follow me on twitter: @dimmy01
                    • 25663 MODX Staff
                    • 12,272 Posts
                    There must be some extra JS in the page that’s causing this, and it is very annoying. Raymond, ideas?
                      Ryan Thrash, MODX Co-Founder
                      Follow me on Twitter at @rthrash or catch my occasional unofficial thoughts at thrash.me
                      • 32963
                      • 1,732 Posts
                      Ok I will have a look at it. Please log it into the bug list
                        xWisdom
                        www.xwisdomhtml.com
                        The fear of the Lord is the beginning of wisdom:
                        MODx Co-Founder - Create and do more with less.