summaryrefslogtreecommitdiff
path: root/themes
Commit message (Collapse)AuthorAge
* - Bugfix: made request_uri() rewrite ( and ) with their entity equivalentsDries Buytaert2003-06-03
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | to avoid XSS attacks! Patch by Al, Moshe, Marco, Kjartan and me. - Bugfix: the admin module does now import drupal.css prior to admin.css. Patch by me. - Bugfix: the admin module was still emitting a <base href=""> tag. I removed this as it is been taken care of by theme_head(); Patch by me. - Bugfix: made the tracker module's pager only consider published pages. Patch by Moshe. - Bugfix: cured some typos in the comment module's help function. Patch by Marco. - Bugfix: fixed a typo in the pager_display() that caused optional attributes to be discarded. - Bugfix: made the Xtemplate emit empty boxes like any other theme does. Patch by Al. - Bugfix: fixed broken link on the statistics module's log page. Reported by Kjartan. - CSS improvements: made the HTML output emitted by the tracker module look nicer. Patch by Moshe and Al. - CSS improvements: added CSS classes for form elements. Patch by Al. - CSS improvements: added a vertical gap between the last form item and the submit button. Patch by Al. Note that Opera 6 is not picking up this CSS but apparently others browsers such as Konqueror do. - Xtemplate improvements: changed the color of the selected day in the archive module's calendar. Patch by Al. - Usability improvements: made the "birthday" field of the profile module look nicer. Patch by Al. ------ - TODO: it might be a good idea to emit the following meta tag in the theme_head() function: <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> Currently, some themes (and modules!) emit this while others don't. This would also make it possible to change the charset site-wide. - TODO: now we added support for td.dark and td.light to drupal.css, maybe it can be removed from admin.css as well as xtemplate.css?
* - Made all CSS definitions look alike.Dries Buytaert2003-06-01
|
* - CSS improvements to the calendar of the archive module. Updated the XtemplateDries Buytaert2003-05-31
| | | | theme and theme Marvin to take advantage of this. Patch by Al. Pretty stuff.
* - Import the theme specific stylesheet after importing drupal.css.Dries Buytaert2003-05-30
|
* - Remove the <base href="">-tags from the themes; these are being added byDries Buytaert2003-05-30
| | | | theme_head().
* - The check_output()s slipped back in. Removing them again.Dries Buytaert2003-05-29
|
* - Theme improvements by Al, with help from Nick: stylesheet improvements,Dries Buytaert2003-05-29
| | | | XHTML-ified theme UnConeD, etc.
* - Theme maintenance: moved CSS to separate stylesheet, updated to use relativeDries Buytaert2003-05-27
| | | | font sizes, etc. Thanks Al.
* - Removed check_output() from the theme system layer.Dries Buytaert2003-05-26
|
* - Added option to control placement of sidebar(s).Dries Buytaert2003-05-18
|
* Patch by Ax:Dries Buytaert2003-05-15
| | | | | | - Show sidebar only if there is at least one block. - Remove xml prolog; fixes http://lists.drupal.org/pipermail/drupal-devel/2003-May/024484.html.
* - Forgot this one. Patch by Ax.Dries Buytaert2003-05-15
|
* - Another batch of theme improvements by Ax.Dries Buytaert2003-05-15
| | | | (Al: your additional patch did not apply. Will look into that later.)
* - CSS fixes by Al.Dries Buytaert2003-05-14
|
* - Fixed a typo in the PostgreSQL database scheme. Patch by Michael Frankowski.Dries Buytaert2003-05-13
| | | | | | | | | | | | | - Fixed a typo in the MSSQL database scheme. Patch by Michael Frankowski. - Removed dependency on "register_globals = on"! Patches by Michael Frankowski. Notes: + Updated the patches to use $foo["bar"] instead of $foo['bar']. + Updated the INSTALL and CHANGELOG files as well. - Tiny improvement to the "./scripts/code-clean.sh" script.
* - More little tweaks. Looks like the links no longer right align on IE.Dries Buytaert2003-05-11
| | | | Sigh. Thoughts?
* - Added character encoding.Dries Buytaert2003-05-11
| | | | | | - <div> is not allowed within <span>. - Reworked the header: the alignment/wrapping of the primary and secondary links actually works now and is a tad simpler.
* - Fixed some broken links.Dries Buytaert2003-05-11
|
* - 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.