summaryrefslogtreecommitdiff
path: root/themes
Commit message (Collapse)AuthorAge
* 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?
* - Display the current node's title in the <title></title>-tag.Dries Buytaert2001-12-02
|
* - marvin.theme updates:Dries Buytaert2001-11-25
| | | | | | | | + Some improvements to make it look better on Windows. I don't have Windows though so I can't really test it. + Fixed the character encoding and the doctype, and polished on the XML well-formedness of the theme.
* - modified node_save so that revisions are not validated using check_input,Kjartan Mannes2001-11-23
| | | | | | | | as this breaks revisions. - modified link_node() to take a third parameter $main, which will be passed on to _link hooks. This lets modules decide which links a node will get when shown on the main page, or when not. - updated themes to use the new syntax.
* - modified node_save so that revisions are not validated using check_input,natrak2001-11-23
| | | | | | | | as this breaks revisions. - modified link_node() to take a third parameter $main, which will be passed on to _link hooks. This lets modules decide which links a node will get when shown on the main page, or when not. - updated themes to use the new syntax.
* Removed some 'debug' stuff :PSteven Wittens2001-11-17
|
* - removed trailing whitespacesDries Buytaert2001-11-12
|
* Updated Goofy: added a few explicit styles such as "font-weight: normal;" ↵Steven Wittens2001-11-11
| | | | and "text-align: left" to make IE6 behave good again.
* - Changed the Druplicon logo (courtesey of UnConeD)Dries Buytaert2001-11-01
|
* - A large batch of updates, amongst them a rewritten node system. MoreDries Buytaert2001-11-01
| | | | information available on the mailing list.
* - added the CVS keyword $Id$ to all files to make future version trackingnatrak2001-10-20
| | | | easier. Also changed the <? tag to <?php in some cases.
* - added the CVS keyword $Id$ to all files to make future version trackingKjartan Mannes2001-10-20
| | | | easier. Also changed the <? tag to <?php in some cases.
* - Updated example.theme: it's being reduced to a minimum as it can inheritDries Buytaert2001-10-20
| | | | most/all of its functions from the BaseTheme.
* - added a comment() function to the base theme: you don't have to overloadDries Buytaert2001-10-07
| | | | | | | it in your custom themes - moved 'theme_account()' to the base theme as '$theme->user()' so that it can be themed.
* - Added a new theme!Dries Buytaert2001-10-07
|
* - Moved theme 'jeroen' and 'yaroon' to drupal-contrib.Dries Buytaert2001-10-06
|
* - fixed bug in theme unconedDries Buytaert2001-09-23
|
* - fixed HTML/XHTML typosDries Buytaert2001-09-21
|
* - Added the new user module!Dries Buytaert2001-09-16
|
* - added UnConeD's drupal.png to the development branchDries Buytaert2001-09-16
|
* - Fixed a bug in theme UnConeDDries Buytaert2001-09-13
|