summaryrefslogtreecommitdiff
path: root/themes
Commit message (Collapse)AuthorAge
* - #18817: Clean up plain-text checking (see drupal-devel!)Steven Wittens2005-03-31
|
* - #16531: Fix weird IE crash on some admin pages with pushbutton.Steven Wittens2005-03-27
|
* - #18879: Pushbutton Header CSS CleanupSteven Wittens2005-03-18
|
* - Adding paragraph margins which were removed from drupal.cssSteven Wittens2005-03-05
|
* - Pushbutton: fix background arrow overlapping foreground in IE (peekaboo bug)Steven Wittens2005-01-07
|
* #13531: Xtemplate {directory} tagSteven Wittens2004-12-24
|
* - 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.
* Bluemarine header margins got changed incorrectly after a recent fix.Steven Wittens2004-12-03
|
* - Patch #13030 by killes: fixed invalid CSS code in bluemarine's stylesheet.Dries Buytaert2004-11-27
|
* #6400: Improved pushbutton arrows.Steven Wittens2004-11-27
|
* - Patch #5942 by jhriggs and Adrian:Dries Buytaert2004-11-24
| | | | | + added support for multi-site configurations. + tidied up some old cruft and added code comments.
* - 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().
* - Patch #12886 by thorne: fixed XHTML problem: the bluemarine theme used a ↵Dries Buytaert2004-11-14
| | | | border=0 attribute on the img tag for the site logo.
* - Patch #12232 by Steven/UnConed: search module improvements.Dries Buytaert2004-10-31
| | | | | | | | | | | | | | | | | | | | | | 1) Clean up the text analyser: make it handle UTF-8 and all sorts of characters. The word splitter now does intelligent splitting into words and supports all Unicode characters. It has smart handling of acronyms, URLs, dates, ... 2) It now indexes the filtered output, which means it can take advantage of HTML tags. Meaningful tags (headers, strong, em, ...) are analysed and used to boost certain words scores. This has the side-effect of allowing the indexing of PHP nodes. 3) Link analyser for node links. The HTML analyser also checks for links. If they point to a node on the current site (handles path aliases) then the link's words are counted as part of the target node. This helps bring out commonly linked FAQs and answers to the top of the results. 4) Index comments along with the node. This means that the search can make a difference between a single node/comment about 'X' and a whole thread about 'X'. It also makes the search results much shorter and more relevant (before this patch, comments were even shown first). 5) We now keep track of total counts as well as a per item count for a word. This allows us to divide the word score by the total before adding up the scores for different words, and automatically makes noisewords have less influence than rare words. This dramatically improves the relevancy of multiword searches. This also makes the disadvantage of now using OR searching instead of AND searching less problematic. 6) Includes support for text preprocessors through a hook. This is required to index Chinese and Japanese, because these languages do not use spaces between words. An external utility can be used to split these into words through a simple wrapper module. Other uses could be spell checking (although it would have no UI). 7) Indexing is now regulated: only a certain amount of items will be indexed per cron run. This prevents PHP from running out of memory or timing out. This also makes the reindexing required for this patch automatic. I also added an index coverage estimate to the search admin screen. 8) Code cleanup! Moved all the search stuff from common.inc into search.module, rewired some hooks and simplified the functions used. The search form and results now also use valid XHTML and form_ functions. The search admin was moved from search/configure to admin/search for consistency. 9) Improved search output: we also show much more info per item: date, author, node type, amount of comments and a cool dynamic excerpt à la Google. The search form is now much more simpler and the help is only displayed as tips when no search results are found. 10) By moving all search logic to SQL, I was able to add a pager to the search results. This improves usability and performance dramatically.
* - Patch #11728 by Uwe Hermann: fixed some typos in the code comments, ↵Dries Buytaert2004-10-19
| | | | | | Doxygen documentation and screen output. Uwe: I dropped the 'iff' chunks as 'iff' stands for 'if and only if'.
* - Fixing problem with tall logos in chameleon.theme.Steven Wittens2004-09-20
|
* - #9576 : A last-minute fix for pushbutton in Opera/Konqueror/Safari got ↵Steven Wittens2004-09-18
| | | | | | | lost in the move to the new template system. http://drupal.org/node/9576#comment-11328 This still suffers from the Safari gamma bug, which we agreed not to cater to.
* Pngcrush'ed the new pushbutton tab images.Steven Wittens2004-09-17
|
* - Patch #9988 by MegaGrunt: visual improvements to the tabs in Pushbutton.Dries Buytaert2004-09-15
|
* 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.
* Tiny tweak to XTemplate CSS: the vertical padding at the bottom of a sticky ↵Steven Wittens2004-08-20
| | | | post should be outside the gray sticky rectangle, not inside it.
* - Fixing incorrect bottom margins for comments in xtemplate default.Steven Wittens2004-08-10
|
* - #6400 - Nicer arrows for pushbutton templateSteven Wittens2004-08-05
| | | | - Removing gAMA chunk from xtemplate logo.png for less to avoid more gamma issues.
* Making the xtemplate logo background transparent to make the Safari gamma ↵Steven Wittens2004-08-04
| | | | bug less obvious.
* CSS improvements:Steven Wittens2004-07-25
| | | | | | | - Restoring background coloring for the watchdog logs (was broken) - Making watchdog backgrounds lighter, makes it easier on the eyes and improves readability. - Adjusted the spacing between items on the frontpage a bit to be clearer. - Fixed the vertical stretching of table rows with form controls in them.
* #6599: XTemplate default: removing whitespace in front of doctypeSteven Wittens2004-07-23
|
* - 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.
* - Bug #8823: fixed typo: '..' -> '.'.Dries Buytaert2004-07-07
|
* - 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.
* - Patch #8617 by TDobes: changes all gifs to pngs for better consistency (andDries Buytaert2004-06-20
| | | | to get of proprietary formats).
* - Patch #8617 by TDobes: changes all gifs to pngs for better consistency (andDries Buytaert2004-06-20
| | | | | | to get of proprietary formats). - Added forum-sticky.png. Made by Steven.
* Changed 'static' back to 'sticky' ... ;-)Dries Buytaert2004-06-19
|
* - Patch #7696 by TDobes: renamed 'static' to 'sticky' which is a moreDries Buytaert2004-06-19
| | | | logical name. Requires a database upgrade.
* - Patch #8602 by TDobes: changed some 'sticky's back to 'static'.Dries Buytaert2004-06-19
|
* First tab improvements by Adrian:Dries Buytaert2004-06-19
| | | | | | | | + Changed menu.inc to generate two separate lists instead of nested lists: that seems to be the only alternative to get rid of absolute positioning. + Changed the tabs code to be more sexy and put the code in misc/drupal.css so all themes are automagically updated.
* 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').
* - Patches #6863 by Kristjan and Moshe: implemented pretty tables and fixed ↵Dries Buytaert2004-06-02
| | | | some tablesort glitches.
* - 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 #7581 by bylund: made the archive module's calendar accessible.Dries Buytaert2004-05-05
|
* - Various aggregator module improvements. Modified patch by drumm.Dries Buytaert2004-04-27
|
* - Patch #7330 by MegaGrunt: turns primary and secondary link ids into a classes,Dries Buytaert2004-04-25
| | | | | | and assigns the classes to header and footer. Also renamed a few elements to make them more logical/consistent. Plus added search id around search area, and a few other minor improvements.
* - Patch #7332 by marky: don't emit extra whitespace withing <body>Dries Buytaert2004-04-23
|
* - Patch #7120 by MegaGrunt: made the title of nodes the same size on home ↵Dries Buytaert2004-04-13
| | | | page as on the node page and improved the various header styles to give better visual indication of hierarchy.
* - Patch #7082 by MegaGrunt: fixed font size and comment spacing.Dries Buytaert2004-04-13
|