| Commit message (Collapse) | Author | Age |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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?
|
| |
|
|
|
|
| |
theme and theme Marvin to take advantage of this. Patch by Al. Pretty stuff.
|
| |
|
|
|
|
| |
theme_head().
|
| |
|
|
|
|
| |
XHTML-ified theme UnConeD, etc.
|
|
|
|
| |
font sizes, etc. Thanks Al.
|
| |
|
| |
|
|
|
|
|
|
| |
- 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.
|
| |
|
|
|
|
| |
(Al: your additional patch did not apply. Will look into that later.)
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- 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.
|
|
|
|
| |
Sigh. Thoughts?
|
|
|
|
|
|
| |
- <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.
|
| |
|
|
|
|
| |
variable names.
|
|
|
|
|
|
| |
Gordon's patch).
- Updated CHANGELOG.
|
| |
|
|
|
|
| |
Ax.
|
|
|
|
|
|
|
| |
- Bugfix: xtemplate.inc removed "$xx" from content.
- Improvement: changed a high ascii char to low ascii to be able to debug
xtemplate.inc.
|
| |
|
| |
|
|
|
|
|
|
|
| |
by the table rendering functions.
- Made the font-size in the sidebar a bit smaller to avoid excessive
wrapping. Requested by Al.
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
| |
+ Made the sidebar stick to the right.
+ Corrected the size of the header-tags: they are in proportion now.
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- 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
|
|
|
|
| |
theme.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- 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
|
| |
|
|
|
|
|
|
| |
- 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.
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
snappier (performance improvement).
|
| |
|
|
|
|
| |
by the comment module. Patch by Ax.
|
| |
|
|
|
|
| |
will now be passed the filename as the first parameter.
|