0.10beta1
0.10beta1
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!
Thanks!
Re: 0.10beta1
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.

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
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.
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
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!
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
Do you know the IE javascript hover trick? If not, this might make a worthwile read.
Re: 0.10beta1
WiseQ's code CSS menu code has been integrated into the svn version of the admin.
Many modules available from the http://dev.cmsmadesimple.org
The CMS Made Simple Developer Cookbook is now available from Packt Publishers!
The CMS Made Simple Developer Cookbook is now available from Packt Publishers!
Re: 0.10beta1
'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.
Greg
Re: 0.10beta1
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.
Greg: Good point. I'll fix it for beta2.
Re: 0.10beta1
Line 127 of index.php and line 43 of topmenu.php to fix the 'View Site' in a new window
The one for the top dropdown menu is in line 668 of class.admintheme.inc.php
wishy how do I fix that one
Code: Select all
<a href="../index.php" target="_blank"><?php echo lang('viewsite') ?></a>
wishy how do I fix that one

Last edited by Greg on Sun Apr 17, 2005 1:12 am, edited 1 time in total.
Greg
Re: 0.10beta1
I'm not totally sure. I'm going to wait until Monday to ask sjg (who wrote that stuff) about it.
Re: 0.10beta1
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"';
}
Greg
Re: 0.10beta1
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!

I'll patch the copies in svn.
Thanks Greg!
Many modules available from the http://dev.cmsmadesimple.org
The CMS Made Simple Developer Cookbook is now available from Packt Publishers!
The CMS Made Simple Developer Cookbook is now available from Packt Publishers!