summaryrefslogtreecommitdiff
path: root/themes
Commit message (Collapse)AuthorAge
* - Applied Ax's Xtemplate footer patch though shuffled around a bit with theDries Buytaert2003-04-25
| | | | variable names.
* - Update Xtemplate theme to support the onload attribute (was not included inDries Buytaert2003-04-21
| | | | | | Gordon's patch). - Updated CHANGELOG.
* - Committed Gordon's htmlarea patch.Dries Buytaert2003-04-21
|
* - Made it so that the xtemplate engine can only be included once. Patch byDries Buytaert2003-04-13
| | | | Ax.
* Patch by Ax:Dries Buytaert2003-04-04
| | | | | | | - Bugfix: xtemplate.inc removed "$xx" from content. - Improvement: changed a high ascii char to low ascii to be able to debug xtemplate.inc.
* - Some visual improvements. More suggestions welcome.Dries Buytaert2003-03-15
|
* - Another attempt to get the font size right. Al, Ax: better now?Dries Buytaert2003-03-13
|
* - Made the xtemplate theme support the td.dark and tr.light tags emittedDries Buytaert2003-03-12
| | | | | | | by the table rendering functions. - Made the font-size in the sidebar a bit smaller to avoid excessive wrapping. Requested by Al.
* - Fixed typo: <base url=> --> <base href=>. Patch by Moshe.Dries Buytaert2003-03-07
|
* - Changed 'node($node, $main)' to 'node($node, $main = 0)': cures a warning.Dries Buytaert2003-03-06
|
* - Fix by Michael; see mailing list archives. Better now?Dries Buytaert2003-03-03
|
* - More improvements.Dries Buytaert2003-02-27
|
* - Some bugfixes:Dries Buytaert2003-02-26
| | | | | + Made the sidebar stick to the right. + Corrected the size of the header-tags: they are in proportion now.
* - Small CSS improvement.Dries Buytaert2003-02-26
|
* - Small improvement to header width. Suggested by Ax.Dries Buytaert2003-02-20
|
* - Added missing footer logic. Patch by Ax.Dries Buytaert2003-02-19
|
* - Theme options patch. See mailing list.Dries Buytaert2003-02-17
|
* - Clean URLs.Dries Buytaert2003-02-14
|
* - Applied Alastair's date patch.Dries Buytaert2003-02-09
| | | | | | | | | | | | | | | | | | | | | | | | | | - Removed all instances of '$user->nodes'. - Committed Moshe's taxonomy patch - minus the node_compact_list() bit. It needs a bit more thought/work. This patch changes the links of taxonomy pages/feeds so update your custom code and themes accordingly! Themes should now use "taxonomy_link("taxonomy terms", $node)" to get an array of taxonomy term links. The old construct is deprecated and should be changed. // old theme blob: if (function_exists("taxonomy_node_get_terms")) { foreach (taxonomy_node_get_terms($node->nid) as $term) { $terms[] = l($term->name, NULL, array(), "or=$term->tid"); } } // new theme blob: if (module_exist("taxonomy")) { $terms = taxonomy_link("taxonomy terms", $node); } // old URL: http://foo.com/index.php?or=1,2 // new URL: http://foo.com/?q=taxonomy/page/or/1,2
* - Small improvements to help people getting started with the xtemplateDries Buytaert2003-02-09
| | | | theme.
* Patch by Ax:Dries Buytaert2003-02-01
| | | | | | | | | | | | | | | - Bad usage of css ID's: they may be used for a single element only, but were used as #node, #block, which can occur multiple times in a single page. - Moved HTML from theme to template - thats what templates are all about! - Added support for head() hook - Added support for diffentiating between boxes and blocks. - Typo: secundary -> secondary
* - Bugfix: removed the call to comment_moderation.Dries Buytaert2003-01-29
|
* Patch by Ax:Dries Buytaert2003-01-21
| | | | | | - Removed the XML prolog from xtemplate.xtmpl because some browsers have difficulties with it and it's not required. see http://webstandards.org/learn/reference/prolog_problems.html. - Fixed the term link.
* - Added a template driven theme.Dries Buytaert2003-01-20
|
* - Removed theme goofy from CVS.Dries Buytaert2003-01-20
|
* - Fixed bug in update of taxonomy links.Dries Buytaert2003-01-06
|
* - Forgot to update the taxonomy links. Reported by Adam.Dries Buytaert2003-01-06
|
* - Tidied up the use of check_output(). Might make rendering pages a bitDries Buytaert2002-12-31
| | | | snappier (performance improvement).
* - Refactored the administration pages.Dries Buytaert2002-12-24
|
* - Removed the "comment anchors" in the themes; the anchor is emittedDries Buytaert2002-12-10
| | | | by the comment module. Patch by Ax.
* - changing theme patch. Now Drupal will init the $this->path automatically.Kjartan Mannes2002-11-17
|
* - made the themes path aware. If your theme creates a constructor function itKjartan Mannes2002-11-16
| | | | will now be passed the filename as the first parameter.
* - Applied Moshe's "theme head" patch:Dries Buytaert2002-11-09
| | | | | | | "This patch to theme.inc adds the ability for modules to insert HTML into the <HEAD> section of all web pages. The additional modules in this directory [ed: blog.module] demonstate possible uses for the new _head() hook."
* - more short tags.Kjartan Mannes2002-09-08
|
* Theme update:Steven Wittens2002-06-01
| | | | Got rid of the drop.org logo's in the themes and replaced them with the Drupal logo.
* UnConeD.themeSteven Wittens2002-06-01
| | | | Removed 'nowrap' from box titles
* - Added missing translations and the like.Dries Buytaert2002-05-31
|
* - Removed a "nowrap" attribute to make theme Marvin look better on IE6.Dries Buytaert2002-05-24
| | | | | | (Suggested by UnConed.) - Made theme Marvin support the taxonomy module.
* Forgot to use l() for the taxonomy links.Steven Wittens2002-05-20
|
* Added taxonomy support to themes Goofy and UnConeDSteven Wittens2002-05-20
|
* Fixed typo (td after tr)Steven Wittens2002-05-09
|
* - Applied Marco's big patch, including contributions from Moshe:Dries Buytaert2002-04-20
| | | | | | | | | | | | | | | | | | | | | | + Changed the db_query() API. + Wrapped all links in l(), lm(), la(), ..., drupal_url() functions. + XHTML-ified some HTML. + Wrapped a lot of text in the administrative pages in a t() function. + Replaced all $REQUEST_URI/$PATH_INFOs by request_uri(). + Small bugfixes (eg. bug in book_export_html() and clean-ups (eg. RSS code). + Fixed some bugs in the taxonomy module (eg. tree making bug), added new functionality (eg. new APIs for use by other modules), included Moshe's taxonomy extensions, and some documentation udpates. + ...
* - Added Marco's long-awaited taxonmy module and patches - a replacementDries Buytaert2002-04-14
| | | | | | | | | | | | | | | | | | | for the meta system. The patches add some extra functionality to the comment system (for example, comments can be set read-only) and fix a couple of small problems. + I integrated the required SQL updates from the varius *.mysql files into the "update.php" script. Upgrading should be easy ... + I did not apply/commit the "user.diff" as requested by Marco ... + I didn't know what to do with "forum.module" and "forum2.module": what do you want me to do with it Marco? Which one should go in? + Can we remove "node_index()" now; both from "node.module" and the themes? + Thanks Marco!
* - modified the SQL update to lowercase all user theme settings to let themKjartan Mannes2002-04-14
| | | | | | keep their settings. - Change author fields in marvin and example theme. Dries is picky about his name ;)
* This is a major change to the system, needs more testing!Kjartan Mannes2002-04-14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Committing Changes by Moshe Weitzman: - admin_user_account(), user_edit(), and user_view() no longer have any hard code for authentication modules. instead authentication modules implement the _user hook. - fixed a couple 'help' typos. - linked the 'REGISTER' text in the login block to the register page. this page now advertises DA better if site employs DA. - admins may now edit everything about a user account (was a feature request). - user #1 may now login immediately, in addition to receiving his password via email. Other changes: - modules and themes are now enabled/disabled in the administrative / settings / modules | themes pages. Requires SQL update and things must be enabled before your site returns to normal. TODO: enable all functionality. (For now just do UPDATE system SET status = 1;) - removed $themes from conf.php. - added a $theme->system() function where theme can specify settings. All themes in the Drupal CVS have been updated to use this. - added _system hook to modules. TODO: update modules to use this. - changed strange use of sprintf to the usual strtr. The disadvantage of sprintf is that it requires translations to keep the string order, which may not be possible in all languages. - an invalid/nonexisting theme in a user profile will now fallback to the BaseTheme instead of crashing.
* - applying patches from Axel Kollmorgen. SeeKjartan Mannes2002-02-17
| | | | | | | | | | http://list.drupal.org/drupal-devel/2002-February/thread.html#6678 http://list.drupal.org/drupal-devel/2002-February/thread.html#6629 - removed references to $this->user() from themes. - removed $BaseTheme->user(). It was deprecated a while back. NOTE: this update will break custom themes, so make sure you update your themes before updating!
* - Removed theme "Trillian": it sucked.Dries Buytaert2001-12-27
|
* - fixed a parse error in the marvin themeKjartan Mannes2001-12-16
|
* - Reversed the $title - $sitename order in the title to be the same as the ↵Steven Wittens2001-12-15
| | | | other themes.
* - Updated BaseTheme and the Drupal themes to have header($title = "") as the ↵Steven Wittens2001-12-15
| | | | | | | | | | | header declaration and use title when provided. This is just a step towards having unique titles. In all themes, except Marvin which already had $title, I put the $title first, because it's usually the thing the page is about: "The future of weblogs? - Drop.org" "Your account settings - Drop.org" rather than the other way around, right?