We launched new forums in March 2019—join us there. In a hurry for help with your website? Get Help Now!
    • 28042 ☆ A M B ☆
    • 24,524 Posts
    This was with a clean installation. No big deal, it’s just a matter of looking at the default tpls and a View Source to see what needs arranging; probably just some changes to the classnames. I’ve already created a new theme folder to work with.
      Studying MODX in the desert - http://sottwell.com
      Tips and Tricks from the MODX Forums and Slack Channels - http://modxcookbook.com
      Join the Slack Community - http://modx.org
      • 34084 ☆ A M B ☆
      • 756 Posts
      Quote from: sottwell at Apr 21, 2010, 07:08 AM

      This was with a clean installation. No big deal, it’s just a matter of looking at the default tpls and a View Source to see what needs arranging; probably just some changes to the classnames. I’ve already created a new theme folder to work with.

      there is a fix to the theme display coming in the next 5 min that might solve your problem if your configuration is set to use a different theme than the default one....
        Evo Revo // Ubuntu, CentOS, Win // Apache 2x, Lighttp (Lighty)
        Visit CharlesMx.com for latest news and status updates.
        • 34084 ☆ A M B ☆
        • 756 Posts
        Updated Release 0.0.5b.5, and I hope this one sticks for awhile....

        Download at http://code.google.com/p/mxcalendar/downloads/list

        As always I’m open to all feedback the good, bad, and ugly.

        ~cheers
          Evo Revo // Ubuntu, CentOS, Win // Apache 2x, Lighttp (Lighty)
          Visit CharlesMx.com for latest news and status updates.
          • 23546
          • 29 Posts
          charless, I still can have no idea how to display month info in ’list’ (or ’full’) calendar mode in Russian. Currently months are displayed like ’Apr’ there, and I need them to be displayed like ’Апр’. ;-)

          At the moment I have to use WordsReplace plug-in (http://modxcms.com/forums/index.php/topic,3832.0.html) as a way out. But this way is not a straight-forward one. Could you please advice more correct way?

          Thank you in advance!


          P.S. The latest 0.0.5b.5 release was installed without any errors. Great job!
            • 34084 ☆ A M B ☆
            • 756 Posts
            Quote from: Plankton at Apr 21, 2010, 04:19 PM

            charless, I still can have no idea how to display month info in ’list’ (or ’full’) calendar mode in Russian. Currently months are displayed like ’Apr’ there, and I need them to be displayed like ’Апр’. ;-)

            At the moment I have to use WordsReplace plug-in (http://modxcms.com/forums/index.php/topic,3832.0.html) as a way out. But this way is not a straight-forward one. Could you please advice more correct way?

            Thank you in advance!


            P.S. The latest 0.0.5b.5 release was installed without any errors. Great job!

            I’m going to try one of the following to see if I can get your ? resolved.
            setlocale (LC_TIME, "locale code");
            


            and change "local code" to one of the following:
            ru_RU.CP1251
            ru_RU.CP866
            ru_RU.ISO8859-5
            ru_RU.ISO8859-5
            ru_RU.KOI8-R
            ru_RU.CP866
            ru_RU.ISO8859-5
            ru_RU.ISO8859-5
            ru_RU.KOI8-R
            


            once I confirm and run additional testing I’ll update everyone
              Evo Revo // Ubuntu, CentOS, Win // Apache 2x, Lighttp (Lighty)
              Visit CharlesMx.com for latest news and status updates.
              • 34084 ☆ A M B ☆
              • 756 Posts
              Quote from: Kristalin at Apr 20, 2010, 10:25 PM

              Quote from: charless at Apr 20, 2010, 10:18 PM



              looks like the table name it’s looking for doesn’t exist, have you looked at the "System Events" log in the manager reports? If there are errors on install with the tables it will write to the system event log.

              check your database and make sure that you have four tables with "_mxcalendar" in the name.

              cheers

              "System Events" - No records found.
              in database i have no tables with "_mxcalendar"

              Delete the assets/modules/mxCalendar/config/config.xml file, but first copy the contents and past them back here. Then re-run the manager module and it should then rerun all the database install scripts.

              cheers
                Evo Revo // Ubuntu, CentOS, Win // Apache 2x, Lighttp (Lighty)
                Visit CharlesMx.com for latest news and status updates.
                • 34084 ☆ A M B ☆
                • 756 Posts
                @Plankton

                I made some quick changes and when I test in Russian, my system pref is ’Russian_Russia.1251’, the attached is the month abbreviation that is presented.

                that’s different than your format and I have not had any luck getting it to display that way, I’m going to check a few other things, but wanted to provide an update.

                cheers
                  Evo Revo // Ubuntu, CentOS, Win // Apache 2x, Lighttp (Lighty)
                  Visit CharlesMx.com for latest news and status updates.
                  • 34084 ☆ A M B ☆
                  • 756 Posts
                  Quote from: Kristalin at Apr 21, 2010, 01:09 AM

                  now i have another strange situation:
                  Categories and Configuration tabs is empty/blank

                  AND

                  when i add new events - nothing happens...white screen

                  just updating the group, if you use Chrome the last release does not display the Configuration and Categories tabs in manager, use FF or IE until I get that updated in the next release. Sorry, I’ll work on that fixing the open tags in the next release. You can fix it for Chrome only by changing line #107 of the mxCalendar.tpl.php file to:
                  (note: not recommended; will break display in FF and IE)
                      $output.='</div></div></div></div></div><p> </p>';
                  



                  then the second one with the blank screen after adding/saving an event was code for > PHP 5.x on lines #776 and #778 of the mxCalendar.class.php file, these lines are not need and can be removed or commented out; they will be removed from the code in the next release

                  should look like this now if commenting out:
                                      //-- Break apart the dates
                  		    //$startValues = date_parse($param['fmstartdate']);
                                      $startValuesSplit = explode(' ', $param['fmstartdate']);
                                      //$endValues = date_parse($param['fmenddate']);
                                      $endValuesSplit = explode(' ', $param['fmenddate']);
                  


                  cheers
                    Evo Revo // Ubuntu, CentOS, Win // Apache 2x, Lighttp (Lighty)
                    Visit CharlesMx.com for latest news and status updates.
                    • 23546
                    • 29 Posts
                    Quote from: charless at Apr 21, 2010, 08:02 PM

                    Quote from: Plankton at Apr 21, 2010, 04:19 PM

                    charless, I still can have no idea how to display month info in ’list’ (or ’full’) calendar mode in Russian. Currently months are displayed like ’Apr’ there, and I need them to be displayed like ’Апр’. ;-)

                    At the moment I have to use WordsReplace plug-in (http://modxcms.com/forums/index.php/topic,3832.0.html) as a way out. But this way is not a straight-forward one. Could you please advice more correct way?

                    Thank you in advance!


                    P.S. The latest 0.0.5b.5 release was installed without any errors. Great job!

                    I’m going to try one of the following to see if I can get your ? resolved.
                    setlocale (LC_TIME, "locale code");
                    


                    and change "local code" to one of the following:
                    ru_RU.CP1251
                    ru_RU.CP866
                    ru_RU.ISO8859-5
                    ru_RU.ISO8859-5
                    ru_RU.KOI8-R
                    ru_RU.CP866
                    ru_RU.ISO8859-5
                    ru_RU.ISO8859-5
                    ru_RU.KOI8-R
                    


                    once I confirm and run additional testing I’ll update everyone

                    charless,

                    thank you for spending your time to help me. In fact I’m interested in one of the following locales:

                    ru_RU.UTF8
                    ru_RU.UTF-8
                    ru_RU.utf8
                    ru_RU.utf-8

                    please check: http://gmstraining.ru/locale.php
                      • 34084 ☆ A M B ☆
                      • 756 Posts

                      yeah, the local code depends on each system, but the same results are achieved from the example previously posted; I’ll get the localization of the date time fixed in the next release which will probably early next week

                      if you can’t wait let me know and I make it happen sooner

                      can’t believe I missed the core date time support on internationalization - sorry everyone
                      undecided
                        Evo Revo // Ubuntu, CentOS, Win // Apache 2x, Lighttp (Lighty)
                        Visit CharlesMx.com for latest news and status updates.