IF you type up a new description forward it to me and I'll update it for you. As to brnaching.... if you see the branch in cvs, then drupal.org should package it bout every 12 hours. If something didn't go right, then I think you will need Dries or Steven look at it. Don't delete your 4.7 branch if you already have it, that would mess up the scripts.
________________________________
From: infrastructure-bounces@drupal.org on behalf of Ken Collins Sent: Sat 2/4/2006 6:08 AM To: A list for Drupal infrastructure maintainers (eg. drupal.org, CVS,mailing lists) Cc: A list for documentation writers; themes@drupal.org Subject: Re: [infrastructure] loads of new themes: lots of thoughts :)
Thanks. Some time today I'd like to type up a new description. Maybe I can forward the HTML to someone to edit.
But right now I need to figure out why my CVS tags did not branch this to 4.7. I had thought that some cron job might have run last night but it's still tagged as a CVS download in my project page. Thoughts?
- Ken
On Feb 3, 2006, at 10:06 PM, Steven Peck wrote:
That is btw a really nice theme. What do you need edited?
________________________________
From: infrastructure-bounces@drupal.org on behalf of Ken Collins Sent: Thu 2/2/2006 6:07 PM To: A list for Drupal infrastructure maintainers (eg. drupal.org, CVS,mailing lists) Cc: A list for documentation writers; themes@drupal.org Subject: Re: [infrastructure] loads of new themes: lots of thoughts :)
Ber, I'd like to help any if I could. I've been using Drupal for almost a year now and I'm just getting my feet wet in the "giving back" and "pitching in" aspect. Earlier this week I just did my CVS upload for my theme contribution http://drupal.org/node/43376 and once I get it tagged for 4.7. I'd like to see it go into some more visable areas. Right now I'm having a problem where I cannot edit my project page because I do not have full HTML privileges. Would I need this to help with any of the items your asking about? - Ken On Feb 2, 2006, at 6:17 PM, Bèr Kessels wrote: > Hello. > > I added a bunch of new themes, and it is looking very well :) Thank > you for > the nice new additions. > > However, the site is growing, and needs work. Here is my plan: > Write twelve (just below the pager) nodes. I am not a fan of > lipsum, so IMO it > should just be an intro into Drupal, theming and other information > like that. > I also want one page explaining that Garen theme is NOT available. > Steven and > I have been getting quite a lot of personal mails about that > lately. If > possible we should add one or two small images to one or two nodes. > Any takers? > > I want to show one node/add screen. For that I would like to > develop a module > that adds no content. Maybe someone has a nicer idea? > > I want to show comments + comment form. The comments could be put > online, but > could be queued (and deteleted) > > I also like to discuss auto-installation of themes. I do not have > time to read > thoroughly trough all the themes. I did check the new ones this > time, but > when that is growing this will no longer be possible. > We could add a crontab that pulls in new 4.6 tagged themes every > night, but Ie > am afraid that one CVS committer can abuse that to commit+tag a > hacked up > theme and then take over the site the same night. > > Ideas are more then welcome. The site is getting busy lately :) > > Bèr > -- > | Bèr Kessels | webschuur.com | website development | > | Jabber & Google Talk: ber@jabber.webschuur.com > | http://bler.webschuur.com | http://www.webschuur.com | > -- > [ infrastructure | http://lists.drupal.org/listinfo/infrastructure ] -- [ infrastructure | http://lists.drupal.org/listinfo/infrastructure ]
-- [ infrastructure | http://lists.drupal.org/listinfo/infrastructure ]
Hi was hoping that when I made a page_civicrm.tpl.php file - that it would them the civicrm pages much like the page_admin.tpl.php themes those pages. Should that have worked? Is there something more that I need to do?
Thanks,
Josh
One way I use a lot: Put a conditional up at the top of your default page. What I have on one site:
<?php if (arg(0)=="admin") { include('page-admin.tpl.php'); return; } ?><?php if (arg(0)=="civicrm") { include('page-crm.tpl.php'); return; } ?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> etc....
The create a page-crm.tpl.php page template to handle just your CRM pages.
Best, Laura
josh on wrote:
Hi was hoping that when I made a page_civicrm.tpl.php file - that it would them the civicrm pages much like the page_admin.tpl.php themes those pages. Should that have worked? Is there something more that I need to do?
Thanks,
Josh
themes mailing list themes@drupal.org http://lists.drupal.org/mailman/listinfo/themes
Thanks Laura!
That seems like a great solution. I think maybe that should be part of the install deafult. Because my regular theme is fixed width and doesn't work for the CRM pages.
Josh
The thing I liked about the admin layout was that it forces it to be a two column layout. But I realised that this seems to be the case before it even arrives at template.php (which is where the switch happens - directing it to use page_admin.tpl.php.
My new question is: Where do the $sidebar_right and $sidebar_left get cleaned up to only contain the admin menu? Is that a civicpace thing or a drupal wide thing?
In the end I want to get Civicrm to ignore the right menu. I guess I could just hack it in template.php with a conditional:
if ((arg(0) == 'civicrm') && (user_access('access civicrm pages'))) { $sidebar_right=""; return true; }
But that seems like a real hackjob!
Josh -I want to learn to do things properly - so one day I can make stuff that is re-usable by others!
----- Original Message ----- From: josh on To: A list for theme developers Sent: Sunday, February 05, 2006 12:48 PM Subject: Re: [themes] theming civicrm
Thanks Laura!
That seems like a great solution. I think maybe that should be part of the install deafult. Because my regular theme is fixed width and doesn't work for the CRM pages.
Josh
------------------------------------------------------------------------------
_______________________________________________ themes mailing list themes@drupal.org http://lists.drupal.org/mailman/listinfo/themes