Page 1 of 1
0.10beta1
Posted: Thu Apr 14, 2005 1:41 am
by Ted
Well, the new beta needs some testing and feedback. Please test it in a development environment and post any bugs or feedback here or on the bug tracking system (
http://bugs.cmsmadesimple.org). Take a look at the ChangeLog (
http://svn.cmsmadesimple.org/cms/tags/v ... /ChangeLog) to get an idea of what's changed.
Thanks!
Re: 0.10beta1
Posted: Thu Apr 14, 2005 6:33 pm
by WiseQ
Great work

I like the new admin look and functionality. However, I think it would have been even better if the "top menu" used css drop down menues so that sub categories could be reached with only one click.
Re: 0.10beta1
Posted: Thu Apr 14, 2005 6:36 pm
by Ted
Thanks.
That was the original idea, but I had a very hard time figuring out how to do it that would work on all browsers. It's not too late to submit code for 0.10, though.

Re: 0.10beta1
Posted: Fri Apr 15, 2005 11:41 am
by Ted
Also, to the translators out there, the modules now have language files. If you look in modules/News/lang, for instance, you'll see an en_US.php there. If you copy it to your language and modify it, it will automatically start working if that langage is selected in your admin.
And...
You can also do: {cms_module module='News' lang='en_US'}, replacing it with your language, and it will work on the frontend as well.
I need to get the default modules (Comments, News, TinyMCE, PHPLayers and RSS) translated before the 0.10 release.
Thanks!
Re: 0.10beta1
Posted: Fri Apr 15, 2005 2:00 pm
by Lohengrin
Do you know the IE javascript hover trick? If not,
this might make a worthwile read.
Re: 0.10beta1
Posted: Sat Apr 16, 2005 6:11 am
by sjg
WiseQ's code CSS menu code has been integrated into the svn version of the admin.
Re: 0.10beta1
Posted: Sat Apr 16, 2005 10:17 am
by piratos
Language Files for modules RSS and LinkBlog did not work
Re: 0.10beta1
Posted: Sat Apr 16, 2005 1:15 pm
by Greg
'View Site' in admin opens in the same window now, I preferred how it worked in 0.9 --> opening in a new tab or window.
Re: 0.10beta1
Posted: Sat Apr 16, 2005 5:28 pm
by Ted
piratos: I fixed RSS. I'll have to bug heavy to update LinkBlog before the first rc release.
Greg: Good point. I'll fix it for beta2.
Re: 0.10beta1
Posted: Sun Apr 17, 2005 12:45 am
by Greg
Line 127 of index.php and line 43 of topmenu.php to fix the 'View Site' in a new window
Code: Select all
<a href="../index.php" target="_blank"><?php echo lang('viewsite') ?></a>
The one for the top dropdown menu is in line 668 of class.admintheme.inc.php
wishy how do I fix that one

Re: 0.10beta1
Posted: Sun Apr 17, 2005 1:28 am
by Ted
I'm not totally sure. I'm going to wait until Monday to ask sjg (who wrote that stuff) about it.
Re: 0.10beta1
Posted: Sun Apr 17, 2005 2:04 am
by Greg
I added this at line 20 in bluewaterTheme.php, line 15 of monochromeTheme.php and line 712 of class.admintheme.inc.php and it fixes it
Code: Select all
if ($thisItem['url'] == '../index.php') {
echo ' target="_blank"';
}
Re: 0.10beta1
Posted: Sun Apr 17, 2005 6:14 am
by sjg
Excellent! I love it when people solve the problem even before I get a chance to get confused
I'll patch the copies in svn.
Thanks Greg!