summaryrefslogtreecommitdiff
path: root/themes/chameleon/chameleon.theme
Commit message (Collapse)AuthorAge
* #18260 by m3avrck, cleaning up broken chameleon theme.Neil Drumm2006-05-23
|
* #51002: Admins could not see unpublished comments (plus minor usability ↵Steven Wittens2006-04-15
| | | | enhancements for previewing/unpublished)
* #56709: Expose hidden 'toggle_logo' variable and rearrange theme toggles.Steven Wittens2006-04-04
|
* - Patch #52508 by TDobes: fixed theme system regressions.Dries Buytaert2006-03-07
|
* - Patch #13148 by Morbus: less globals.Dries Buytaert2006-02-02
|
* - Patch #46927 by markus/killes: added missing t() functions.Dries Buytaert2006-02-01
|
* - Patch #13148 by Morbus: further base path fixes / clean-ups.Dries Buytaert2006-01-30
|
* - Patch #27884 by gordon: js addLoadEvent not working.Dries Buytaert2006-01-20
|
* - Patch #40631 by Chris Johnson: added missing isset().Dries Buytaert2005-12-27
|
* - Patch #40631 by Chris Johnson: is_array() slower than isset() or empty().Dries Buytaert2005-12-14
|
* - Patch #22215 by Richard Archer: refactored primary and secondary links.Dries Buytaert2005-11-03
| | | | | | | | | Deprecates the primary_links module. This patch was much needed. Thanks Richards! NOTE: if some themers could investigate if there is room for improvement with regard to theming, that would be awesome.
* - Patch #35791 by hunmonk: fixed broken link in chameleon's comment themeing.Dries Buytaert2005-11-01
|
* - Patch #16216 by nedjo: multiple block regions!Dries Buytaert2005-08-16
|
* - Patch #26637 by Robert Douglas: $teaser misnamed in themes theme_node().Dries Buytaert2005-08-07
| | | | TODO: update documentation!
* - Patch #27737 by Gerhard: format_name($object) -> theme('username', $object).Dries Buytaert2005-08-01
| | | | | | Usernames can now be themed; eg. an icon/avatar could be added. TODO: update contributed modules + update the migration docs.
* - Removing some whitespaceDries Buytaert2005-06-06
|
* - #23360: Chameleon: fix taxonomy terms disappearing if there are no node links.Steven Wittens2005-05-27
|
* - #20809: User-configurable, per-theme, optional favicons.Steven Wittens2005-05-25
|
* - Patch #21855 by TDobes: the recent commit of phptemplate caused a number ↵Dries Buytaert2005-05-05
| | | | | | | | | | | of problems for non-phptemplate themes. A patch is attached to address these issues. Changes include: * parsing of the primary/secondary links has been moved out of phptemplate and into theme_get_setting. * unnecessary and XHTML-invalidating duplicate div#help removed from themes/bluemarine/page.tpl.php (this is already generated by theme_help) * weird generation of the "edit primary/secondary links" messages removed from bluemarine and placed in theme.inc * unnecessary changes to themes/bluemarine/style.css rolled back (the phptemplate bluemarine had an older version of style.css than the one in core) * chameleon updated to work with new link scheme (passes links through theme_links)
* - Patch #21517 by Stefan and TDobes: theme system improvements.Dries Buytaert2005-04-30
|
* - #18817: Clean up plain-text checking (see drupal-devel!)Steven Wittens2005-03-31
|
* - Patch #13907 by Neil: less ways to set the page title.Dries Buytaert2004-12-15
| | | | | | | * Less logic in theme code. * Encourages use of the menu system. * Easier to find where a title or breadcrumb comes from in other people's code because there are less places to look. Look in menu and then grep for the appropriate set function. Looking for calls to theme_page() is hard because there are too many of them. * Very slightly more efficient.
* - Patch #6166 by Moshe: node preview should not display links. Push the ↵Dries Buytaert2004-11-23
| | | | | | | | links to the theme instead of the theme having to pull them in using node_link(). TODO: 1. Update theme upgrade instructions in the handbook: node_link() is gone. 2. Remove page_link() just like we removed node_link().
* - Fixing problem with tall logos in chameleon.theme.Steven Wittens2004-09-20
|
* Replace hardcoded <html lang="en"> with a locale dependant one. This is ↵Steven Wittens2004-09-09
| | | | especially important for asian sites where this has an effect on font selection.
* - #9292: Make Drupal (somewhat) PHP5 compatible. xtemplate is still horribly ↵Steven Wittens2004-08-22
| | | | broken.
* - Patch by JonBob: for consistency and readability, add brief descriptions ↵Dries Buytaert2004-08-21
| | | | of each source file inside the @file comment block at the head of the file. This helps with Doxygen indexing, and also allows neophytes to see what a file does immediately on opening the source, regardless of the organization of the hooks.
* - Fixing 'flash of unstyled content' in bluemarine/pushbutton, which got ↵Steven Wittens2004-08-20
| | | | | | | | reintroduced after the template changes. - Fixed separate styles: added theme_get_styles() and the xtemplate {styles} tag to make sure stylesheets get included in the right order (drupal-specific, template-specific, style-specific). - Fixing missing class on screenshots. - Renamed drupal_get_theme_setting() and drupal_get_theme_settings() to theme_get_setting() and theme_get_settings().
* - Patch by TDobes:Dries Buytaert2004-08-20
| | | | | + removes 'toggle_search' from the features array in chameleon.theme + merges changes to bluemarine from just a couple of hours before template patch was committed
* - Removing some DOS-style line endings. Thanks TDobes.Dries Buytaert2004-08-20
|
* - Theme system changes. Please consult http://drupal.org/node/view/9576 for ↵Dries Buytaert2004-08-20
| | | | details.
* - Changed the way status messages are printed as per Kristjan's suggestion:Dries Buytaert2004-07-08
| | | | | | | | | | http://drupal.org/files/issues/error_messages_list.png (issue #9138). drupal_set_message() has been changed to group message by type and a helper function, theme_status_message(), is added to display the messages. Chameleon and Xtemplate have been updated to use this new function. - Updated CHANGELOG.txt.
* - Improved the error/status reporting in Chameleon: made the messagesDries Buytaert2004-07-07
| | | | | | | | | stand out a bit better by using green-ish and red-ish colors, resp. for 'success' and 'failure'. - Small change to the way context-sensitive help texts are emitted - the pages wouldn't validate in the presence of help texts with block-level elements.
* Tabs patch!Dries Buytaert2004-06-18
| | | | | | | | | | | | | | | | | | CHANGES ------- + Introduced tabs. First, we extended the menu system to support tabs. Next, a tab was added for every link that was (1) an administrative action other than the implicit 'view' (2) relevant to that particular page only. This is illustrated by the fact that all tabs are verbs and that clicking a page's tab leads you to a subpage of that page. + Flattened the administration menu. The tabs helped simplify the navigation menu as I could separate 'actions' from 'navigation'. In addition, I removed the 'administer > configuration'-menu, renamed 'blocks' to 'sidebars' which I hope is a bit more descriptive, and made a couple more changes. Earlier, we already renamed 'taxonomy' to 'categorization' and we move 'statistics' under 'logs'. + Grouped settings. All settings have been grouped under 'administer > settings'. TODO ---- + Update core themes: only Xtemplate default supports tabs and even those look ugly. Need help. + Update contributed modules. The menu() hook changed drastically. Updating your code adhere the new menu() function should be 90% of the work. Moreover, ensure that your modue's admin links are still valid and that URLs to node get updated to the new scheme ('node/view/x' -> 'node/x').
* - Simplified the 'anonymous poster settings' of the comment module andDries Buytaert2004-05-20
| | | | | | | | | | | | | | | | | | | | | made it possible to enforce a username/e-mail address. Based on James Seng's work there are now 3 radio buttons: ( ) Anonymous users may not enter contact information ( ) Anonymous users may leave contact information ( ) Anonymous users must leave contact information - Fixed a bug in the default theme_comment_view() function. - Added permalinks for comments. Requested by Michael and Christina. Maintainers of contributed themes might want to add permalinks too. TODO: - Fix the interaction design of the submission form: the page you are directed to and the validation of the contact information. - Changing the comment viewing options appears to be broken?
* - Patch #7332 by marky: don't emit extra whitespace withing <body>Dries Buytaert2004-04-23
|
* - Fixed bug #6048: display footer in theme chameleon.Dries Buytaert2004-02-25
|
* - Changed the directory structure of theme chameleon. Each template is nowDries Buytaert2004-02-15
| | | | in a subdirectory. This makes it easier to clone/fork an existing theme.
* - Patch 5140 by Moshe: removed the theme("header") and theme("footer") ↵Dries Buytaert2004-01-26
| | | | functions.
* Patch 5114 by Kjartan:Dries Buytaert2004-01-14
| | | | | | | - Adds drupal_set_header() and drupal_get_headers(). - Cache now stores custom headers. - Replace theme_head() with drupal_get_html_head(), added drupal_set_html_head(). - Added RSS autodiscover links to node, blog and taxonomy pages.
* - Fixed default chameleon CSS.Dries Buytaert2004-01-07
|
* - Made it possible to set and display multiple status messages. Modified ↵Dries Buytaert2003-12-30
| | | | | | patch by Kjartan.
* - XHTML improvements: <b> -> <strong>. Patch by Stefan.Dries Buytaert2003-12-29
|
* - Made the chameleon theme display comment authors. Patch by Kjartan.Dries Buytaert2003-12-29
|
* - Added a new theme derived from Kristjan's styleswitcher theme.Dries Buytaert2003-12-15