/[drupal]/drupal/modules/help/help.module
ViewVC logotype

Log of /drupal/modules/help/help.module

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Links to HEAD: (view) (download) (as text) (annotate)
Sticky Tag:

Revision 1.91 - (view) (download) (as text) (annotate) - [select for diffs]
Thu Sep 10 06:32:54 2009 UTC (2 months, 2 weeks ago) by dries
Branch: MAIN
CVS Tags: DRUPAL-7-0-UNSTABLE-10, DRUPAL-7-0-UNSTABLE-9, HEAD
Changes since 1.90: +2 -2 lines
Diff to previous 1.90
- Patch #569282 by joshmiller: removal of Site configuration and fixed a number of broken links.

Revision 1.90 - (view) (download) (as text) (annotate) - [select for diffs]
Mon Aug 24 00:14:20 2009 UTC (3 months ago) by webchick
Branch: MAIN
Changes since 1.89: +3 -1 lines
Diff to previous 1.89
#497118 by chx, catch, pwolanin, JoshuaRogers, and Jacob Singh: Remove the function registry. While the hope was that this would result in improved performance for low-end hosts, it comes at the expense of critical development experience problems and less benefit than something like APC. Class registry remains intact to facilitate autoloading.

Revision 1.89 - (view) (download) (as text) (annotate) - [select for diffs]
Mon Aug 24 00:10:43 2009 UTC (3 months ago) by webchick
Branch: MAIN
Changes since 1.88: +1 -3 lines
Diff to previous 1.88
Of all the patches to accidentally commit without a message. :( Rolling back registry rip. Let's try that again.

Revision 1.88 - (view) (download) (as text) (annotate) - [select for diffs]
Mon Aug 24 00:02:01 2009 UTC (3 months ago) by webchick
Branch: MAIN
Changes since 1.87: +3 -1 lines
Diff to previous 1.87
*** empty log message ***

Revision 1.87 - (view) (download) (as text) (annotate) - [select for diffs]
Wed Aug 12 23:51:19 2009 UTC (3 months, 1 week ago) by webchick
Branch: MAIN
Changes since 1.86: +2 -2 lines
Diff to previous 1.86
#545952 by yoroy and Gábor Hojtsy: move modules to config/modules.

Revision 1.86 - (view) (download) (as text) (annotate) - [select for diffs]
Fri Jul 31 11:20:42 2009 UTC (3 months, 3 weeks ago) by dries
Branch: MAIN
Changes since 1.85: +2 -2 lines
Diff to previous 1.85
- Patch #536440 by Gábor Hojtsy: the attached patch moves the Structure >> Themes section to the top level Appearance item as outlined in the D7UX IA.

Revision 1.85 - (view) (download) (as text) (annotate) - [select for diffs]
Mon Jul 20 18:51:33 2009 UTC (4 months ago) by dries
Branch: MAIN
CVS Tags: DRUPAL-7-0-UNSTABLE-8
Changes since 1.84: +3 -3 lines
Diff to previous 1.84
- Patch #521474 by bangpound, JuliaKM et al: rename admin/site-building to admin/structure.

Revision 1.84 - (view) (download) (as text) (annotate) - [select for diffs]
Thu Jun 4 09:38:25 2009 UTC (5 months, 3 weeks ago) by dries
Branch: MAIN
Changes since 1.83: +2 -2 lines
Diff to previous 1.83
- Patch #475596 by tic2000: corrected documentation.

Revision 1.83 - (view) (download) (as text) (annotate) - [select for diffs]
Tue Jun 2 03:33:35 2009 UTC (5 months, 3 weeks ago) by webchick
Branch: MAIN
Changes since 1.82: +9 -2 lines
Diff to previous 1.82
#475596 by emmajane, catch, yoroy, et al. Move default welcome message to help system.

Revision 1.82 - (view) (download) (as text) (annotate) - [select for diffs]
Wed May 27 18:33:57 2009 UTC (5 months, 4 weeks ago) by dries
Branch: MAIN
Changes since 1.81: +3 -3 lines
Diff to previous 1.81
- Patch #472642 by stella, agentrickard: remove 'implementation of' nominalizations from Docblocks.

Revision 1.81 - (view) (download) (as text) (annotate) - [select for diffs]
Tue May 6 12:18:47 2008 UTC (18 months, 2 weeks ago) by dries
Branch: MAIN
CVS Tags: DRUPAL-7-0-UNSTABLE-1, DRUPAL-7-0-UNSTABLE-2, DRUPAL-7-0-UNSTABLE-3, DRUPAL-7-0-UNSTABLE-4, DRUPAL-7-0-UNSTABLE-5, DRUPAL-7-0-UNSTABLE-6, DRUPAL-7-0-UNSTABLE-7
Changes since 1.80: +1 -3 lines
Diff to previous 1.80
- Patch #221964 by chx, dopry, webernet, moshe, webchick, justinrandall, flobruit
  et al.  Can you say 'registry'?  Drupal now maintains an internal registry of
  all functions or classes in the system, allowing it to lazy-load code files as
  needed (reducing the amount of code that must be parsed on each request). The
  list of included files is cached per menu callback for subsequent loading by
  the menu router. This way, a given page request will have all the code it needs
  but little else, minimizing time spent parsing unneeded code.

Revision 1.80 - (view) (download) (as text) (annotate) - [select for diffs]
Sun Apr 20 18:23:25 2008 UTC (19 months ago) by dries
Branch: MAIN
Changes since 1.79: +2 -1 lines
Diff to previous 1.79
- Added a test framework to Drupal along with a first batch of tests for
  Drupal core!  This is an important milestone for the project so enable
  the module and check it out ... :)

  Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
  Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
  Lal, Moshe Weitzman, and the many other people that helped with testing
  over the past years and that drove this home.

  It all works but it is still rough around the edges (i.e. documentation
  is still being written, the coding style is not 100% yet, a number of
  tests still fail) but we spent the entire weekend working on it in Paris
  and made a ton of progress.  The best way to help and to get up to speed,
  is to start writing and contributing some tests ... as well as fixing
  some of the failures.

  For those willing to help with improving the test framework, here are
  some next steps and issues to resolve:

    - How to best approach unit tests and mock functions?
    - How to test drupal_mail() and drupal_http_request()?
    - How to improve the admin UI so we have a nice progress bar?
    - How best to do code coverage?
    - See http://g.d.o/node/10099 for more ...

Revision 1.79 - (view) (download) (as text) (annotate) - [select for diffs]
Mon Apr 14 17:48:37 2008 UTC (19 months, 1 week ago) by dries
Branch: MAIN
Changes since 1.78: +5 -5 lines
Diff to previous 1.78
- Patch #245115 by kkaefer, John Morahan, JohnAlbin et al: after a long discussion we've decided to make the concatenation operator consistent with the other operators.

Revision 1.78.2.1 - (view) (download) (as text) (annotate) - [select for diffs]
Wed Apr 9 21:11:48 2008 UTC (19 months, 2 weeks ago) by goba
Branch: DRUPAL-6
CVS Tags: DRUPAL-6-10, DRUPAL-6-11, DRUPAL-6-12, DRUPAL-6-13, DRUPAL-6-14, DRUPAL-6-2, DRUPAL-6-3, DRUPAL-6-4, DRUPAL-6-5, DRUPAL-6-6, DRUPAL-6-7, DRUPAL-6-8, DRUPAL-6-9
Changes since 1.78: +2 -1 lines
Diff to previous 1.78 , to next main 1.91
Drupal 6.2

Revision 1.78 - (view) (download) (as text) (annotate) - [select for diffs]
Fri Dec 14 18:08:46 2007 UTC (23 months, 1 week ago) by goba
Branch: MAIN
CVS Tags: DRUPAL-6-0, DRUPAL-6-0-RC-1, DRUPAL-6-0-RC-2, DRUPAL-6-0-RC-3, DRUPAL-6-0-RC-4, DRUPAL-6-1
Branch point for: DRUPAL-6
Changes since 1.77: +2 -2 lines
Diff to previous 1.77
#200069 by keith.smith: new standard for 'more information' links in module help texts, as the handbook we referred to before was renamed

Revision 1.77 - (view) (download) (as text) (annotate) - [select for diffs]
Thu Dec 13 09:34:38 2007 UTC (23 months, 1 week ago) by goba
Branch: MAIN
Changes since 1.76: +3 -12 lines
Diff to previous 1.76
#197297 by DanW (as GHOP 17), and keith.smith: clean up lots of help texts, update to drag and drop functionality, drupal.module removal, etc

Revision 1.69.2.1 - (view) (download) (as text) (annotate) - [select for diffs]
Tue Oct 16 06:57:22 2007 UTC (2 years, 1 month ago) by drumm
Branch: DRUPAL-5
CVS Tags: DRUPAL-5-10, DRUPAL-5-11, DRUPAL-5-12, DRUPAL-5-13, DRUPAL-5-14, DRUPAL-5-15, DRUPAL-5-16, DRUPAL-5-17, DRUPAL-5-18, DRUPAL-5-19, DRUPAL-5-20, DRUPAL-5-3, DRUPAL-5-4, DRUPAL-5-5, DRUPAL-5-6, DRUPAL-5-7, DRUPAL-5-8, DRUPAL-5-9
Changes since 1.69: +8 -3 lines
Diff to previous 1.69 , to next main 1.91
#183357 by Freso: hide administration pages links on module help pages if there are no admin links for the module

Revision 1.76 - (view) (download) (as text) (annotate) - [select for diffs]
Sun Aug 19 09:27:24 2007 UTC (2 years, 3 months ago) by dries
Branch: MAIN
CVS Tags: DRUPAL-6-0-BETA-1, DRUPAL-6-0-BETA-2, DRUPAL-6-0-BETA-3, DRUPAL-6-0-BETA-4
Changes since 1.75: +3 -78 lines
Diff to previous 1.75
- Patch #166719 by Crell: split up help module.

Revision 1.75 - (view) (download) (as text) (annotate) - [select for diffs]
Mon Jul 2 14:41:35 2007 UTC (2 years, 4 months ago) by dries
Branch: MAIN
Changes since 1.74: +2 -2 lines
Diff to previous 1.74
- Patch #155986 by Uwe: fixed typos.

Revision 1.74 - (view) (download) (as text) (annotate) - [select for diffs]
Sat Jun 30 19:46:56 2007 UTC (2 years, 4 months ago) by goba
Branch: MAIN
Changes since 1.73: +9 -8 lines
Diff to previous 1.73
#154064 by pwolanin: get hook_help() up to speed to menu changes, allowing router path based lookups, and also full path argument lookup with a passed argument array

Revision 1.73 - (view) (download) (as text) (annotate) - [select for diffs]
Mon Apr 30 17:03:25 2007 UTC (2 years, 6 months ago) by dries
Branch: MAIN
Changes since 1.72: +3 -3 lines
Diff to previous 1.72
- Patch #128082 by Goba et al: Allow localization of built-in menu items.

Revision 1.72 - (view) (download) (as text) (annotate) - [select for diffs]
Wed Apr 18 20:42:23 2007 UTC (2 years, 7 months ago) by dries
Branch: MAIN
Changes since 1.71: +2 -2 lines
Diff to previous 1.71
- Patch #132018 by alienbrain: replace instances of _module_parse_info_file() with drupal_parse_info_file().

Revision 1.71 - (view) (download) (as text) (annotate) - [select for diffs]
Fri Apr 13 08:56:58 2007 UTC (2 years, 7 months ago) by dries
Branch: MAIN
Changes since 1.70: +2 -2 lines
Diff to previous 1.70
- Patch #134493 by douggreen: getting the Drupal coding standards right in core. Woot. Woot.

Revision 1.70 - (view) (download) (as text) (annotate) - [select for diffs]
Wed Jan 24 14:48:36 2007 UTC (2 years, 10 months ago) by dries
Branch: MAIN
Changes since 1.69: +14 -18 lines
Diff to previous 1.69
- Patch #34755 by chx et al: faster menu system.  HEAD is temporary broken and there is no upgrade path yet.

Revision 1.69 - (view) (download) (as text) (annotate) - [select for diffs]
Sat Dec 23 22:06:05 2006 UTC (2 years, 11 months ago) by dries
Branch: MAIN
CVS Tags: DRUPAL-5-0, DRUPAL-5-0-RC-2, DRUPAL-5-1, DRUPAL-5-2
Branch point for: DRUPAL-5
Changes since 1.68: +3 -5 lines
Diff to previous 1.68
- Patch #104437 by kkaefer: corrected help texts.

Revision 1.68 - (view) (download) (as text) (annotate) - [select for diffs]
Mon Dec 18 21:44:38 2006 UTC (2 years, 11 months ago) by dries
Branch: MAIN
Changes since 1.67: +4 -4 lines
Diff to previous 1.67
- Patch #103946 by kkaefer: fixed broken help text.

Revision 1.67 - (view) (download) (as text) (annotate) - [select for diffs]
Sun Dec 10 09:54:33 2006 UTC (2 years, 11 months ago) by unconed
Branch: MAIN
CVS Tags: DRUPAL-5-0-RC-1
Changes since 1.66: +2 -2 lines
Diff to previous 1.66
#100516: CSS preprocessor to cache and compress all .css files. Benchmarks show up to 40% faster page loads.

Revision 1.66 - (view) (download) (as text) (annotate) - [select for diffs]
Fri Dec 1 22:47:53 2006 UTC (2 years, 11 months ago) by unconed
Branch: MAIN
Changes since 1.65: +4 -6 lines
Diff to previous 1.65
#100563: Conditional loading of (some) module.css files

Revision 1.65 - (view) (download) (as text) (annotate) - [select for diffs]
Mon Nov 27 02:08:25 2006 UTC (2 years, 11 months ago) by drumm
Branch: MAIN
CVS Tags: DRUPAL-5-0-BETA-2
Changes since 1.64: +11 -19 lines
Diff to previous 1.64
#89200 by kkaefer, RobRoy, and Gurpartap. Redo admin/help glossary.

Revision 1.64 - (view) (download) (as text) (annotate) - [select for diffs]
Fri Nov 24 10:18:23 2006 UTC (3 years ago) by dries
Branch: MAIN
Changes since 1.63: +9 -9 lines
Diff to previous 1.63
- Patch # #98366 by webchick and ac: simplified strings for translators.

Revision 1.63 - (view) (download) (as text) (annotate) - [select for diffs]
Fri Nov 24 09:30:17 2006 UTC (3 years ago) by dries
Branch: MAIN
Changes since 1.62: +6 -3 lines
Diff to previous 1.62
- Patch #99114 by kkaefer: proper capitalization of module names.

Revision 1.62 - (view) (download) (as text) (annotate) - [select for diffs]
Tue Nov 21 20:14:18 2006 UTC (3 years ago) by dries
Branch: MAIN
Changes since 1.61: +5 -2 lines
Diff to previous 1.61
- Patch #92992 by webchick and neclimdul: clean up documentation that is superseded by the new 'by module' administration dashboard.

Revision 1.61 - (view) (download) (as text) (annotate) - [select for diffs]
Sun Oct 22 08:28:45 2006 UTC (3 years, 1 month ago) by unconed
Branch: MAIN
CVS Tags: DRUPAL-5-0-BETA-1
Changes since 1.60: +5 -3 lines
Diff to previous 1.60
#84146: Use 'Sentence capitalization' for menu items, page titles, form items, etc

Revision 1.60 - (view) (download) (as text) (annotate) - [select for diffs]
Sat Oct 14 06:07:14 2006 UTC (3 years, 1 month ago) by unconed
Branch: MAIN
Changes since 1.59: +3 -3 lines
Diff to previous 1.59
- #89156: Fix layout on admin/help

Revision 1.59 - (view) (download) (as text) (annotate) - [select for diffs]
Fri Sep 1 07:32:57 2006 UTC (3 years, 2 months ago) by drumm
Branch: MAIN
Changes since 1.58: +5 -5 lines
Diff to previous 1.58
#80844 by Uwe Hermann. Various string cleanup, which should have been put in smaller patches.

Revision 1.58 - (view) (download) (as text) (annotate) - [select for diffs]
Thu Aug 31 20:22:35 2006 UTC (3 years, 2 months ago) by dries
Branch: MAIN
Changes since 1.57: +1 -3 lines
Diff to previous 1.57
- Patch #80952 by earl, webchick, neclimdul et al: .info files

Revision 1.57 - (view) (download) (as text) (annotate) - [select for diffs]
Fri Aug 25 09:01:12 2006 UTC (3 years, 3 months ago) by drumm
Branch: MAIN
Changes since 1.56: +3 -3 lines
Diff to previous 1.56
#78656 by m3avrck. Drupal Core's first CSS hack.

Revision 1.56 - (view) (download) (as text) (annotate) - [select for diffs]
Sun Aug 20 07:07:17 2006 UTC (3 years, 3 months ago) by dries
Branch: MAIN
Changes since 1.55: +4 -4 lines
Diff to previous 1.55
- Patch #79476 by assimonds and webchick: fixed broken t()-iness.
 CVS: ----------------------------------------------------------------------

Revision 1.55 - (view) (download) (as text) (annotate) - [select for diffs]
Fri Aug 18 12:16:58 2006 UTC (3 years, 3 months ago) by unconed
Branch: MAIN
Changes since 1.54: +5 -5 lines
Diff to previous 1.54
#76802: Introduce placeholder magic into t()
See: http://drupal.org/node/64279#t-placeholders

Revision 1.54 - (view) (download) (as text) (annotate) - [select for diffs]
Mon Aug 14 07:14:49 2006 UTC (3 years, 3 months ago) by drumm
Branch: MAIN
Changes since 1.53: +6 -1 lines
Diff to previous 1.53
#77183 by m3avrck and timcn, split up drupal.css by module.

Revision 1.53 - (view) (download) (as text) (annotate) - [select for diffs]
Mon Aug 7 15:04:14 2006 UTC (3 years, 3 months ago) by dries
Branch: MAIN
Changes since 1.52: +2 -2 lines
Diff to previous 1.52
- Patch #77422 by timcn: corrected various paths in the documentation.

Revision 1.52 - (view) (download) (as text) (annotate) - [select for diffs]
Mon Jul 31 11:25:53 2006 UTC (3 years, 3 months ago) by dries
Branch: MAIN
Changes since 1.51: +2 -2 lines
Diff to previous 1.51
- Patch #72079 by Earl et al: give Drupal an overall administration page ... :-)

Revision 1.51 - (view) (download) (as text) (annotate) - [select for diffs]
Sun May 7 00:08:36 2006 UTC (3 years, 6 months ago) by drumm
Branch: MAIN
Changes since 1.50: +2 -2 lines
Diff to previous 1.50
#61802 by Zen, Double spaced sentences clean up

Revision 1.50 - (view) (download) (as text) (annotate) - [select for diffs]
Sun Mar 12 01:56:11 2006 UTC (3 years, 8 months ago) by unconed
Branch: MAIN
Changes since 1.49: +34 -22 lines
Diff to previous 1.49
- #47841: Sort help items alphabetically (and prettify output)

Revision 1.49 - (view) (download) (as text) (annotate) - [select for diffs]
Tue Feb 21 18:46:54 2006 UTC (3 years, 9 months ago) by dries
Branch: MAIN
Changes since 1.48: +2 -2 lines
Diff to previous 1.48
- Patch #49912: www.drupal.org -> drupal.org.  (Today's critical bugfix #5.)

Revision 1.48 - (view) (download) (as text) (annotate) - [select for diffs]
Tue Nov 1 10:17:34 2005 UTC (4 years ago) by dries
Branch: MAIN
Changes since 1.47: +15 -1 lines
Diff to previous 1.47
- Patch #26139 by webchick / Kieran / documentation team: improved admin help of core modules! /

Revision 1.47 - (view) (download) (as text) (annotate) - [select for diffs]
Thu Aug 25 21:14:16 2005 UTC (4 years, 3 months ago) by dries
Branch: MAIN
Changes since 1.46: +2 -2 lines
Diff to previous 1.46
- Patch #29385 by chx: no ?> add end of files.

Revision 1.46 - (view) (download) (as text) (annotate) - [select for diffs]
Sun Apr 24 16:34:34 2005 UTC (4 years, 7 months ago) by dries
Branch: MAIN
Changes since 1.45: +3 -3 lines
Diff to previous 1.45
- Patch 20910 by chx: centralize print theme page.

Revision 1.45 - (view) (download) (as text) (annotate) - [select for diffs]
Fri Apr 1 15:55:00 2005 UTC (4 years, 7 months ago) by dries
Branch: MAIN
Changes since 1.44: +2 -2 lines
Diff to previous 1.44
- Patch #19451 by JonBob: improved consistency of module descriptions.  We should write guidelines for this -- maybe in the PHPDoc code of the _help hook.

Revision 1.40.2.3 - (view) (download) (as text) (annotate) - [select for diffs]
Tue Feb 8 19:19:37 2005 UTC (4 years, 9 months ago) by dries
Changes since 1.40.2.2: +10 -6 lines
Diff to previous 1.40.2.2 , to branch point 1.40 , to next main 1.91
- Patch #16949 by Neil: fixed two HTML typos/brainos in the help text.

  I found another HTML typo, and replaced a <u></u> by <strong></strong> because <u> does not validate as 'XHTML 1.0 stict'.

Revision 1.44 - (view) (download) (as text) (annotate) - [select for diffs]
Tue Feb 8 19:17:51 2005 UTC (4 years, 9 months ago) by dries
Branch: MAIN
Changes since 1.43: +20 -15 lines
Diff to previous 1.43
- Patch #16949 by Neil: fixed two HTML typos/brainos in the help text.

  I found another HTML typo, and replaced a <u></u> by <strong></strong> because <u> does not validate as 'XHTML 1.0 stict'.

Revision 1.43 - (view) (download) (as text) (annotate) - [select for diffs]
Tue Dec 7 16:55:38 2004 UTC (4 years, 11 months ago) by dries
Branch: MAIN
Changes since 1.42: +1 -2 lines
Diff to previous 1.42
- Refactored the queue module: removed the queue module's field from the node table.  With help from Gerhard.

- Slight addition to INSTALL.txt with regard to PHP versions.

- Updated/reworded some node type descriptions as per Boris' suggestions.

- Adding missing {} around a table name in update.php.

Revision 1.40.2.2 - (view) (download) (as text) (annotate) - [select for diffs]
Mon Nov 8 22:28:30 2004 UTC (5 years ago) by dries
Changes since 1.40.2.1: +2 -2 lines
Diff to previous 1.40.2.1 , to branch point 1.40
- Patch #12713 by Goba: remove useless t() function from help module.

Revision 1.42 - (view) (download) (as text) (annotate) - [select for diffs]
Mon Nov 8 22:27:34 2004 UTC (5 years ago) by dries
Branch: MAIN
Changes since 1.41: +2 -2 lines
Diff to previous 1.41
- Patch #12713 by Goba: remove useless t() function from help module.

Revision 1.41 - (view) (download) (as text) (annotate) - [select for diffs]
Tue Oct 19 18:02:24 2004 UTC (5 years, 1 month ago) by dries
Branch: MAIN
Changes since 1.40: +2 -2 lines
Diff to previous 1.40
- Patch #11728 by Uwe Hermann: fixed some typos in the code comments, Doxygen documentation and screen output.

  Uwe: I dropped the 'iff' chunks as 'iff' stands for 'if and only if'.

Revision 1.40.2.1 - (view) (download) (as text) (annotate) - [select for diffs]
Tue Oct 19 18:00:27 2004 UTC (5 years, 1 month ago) by dries
Changes since 1.40: +2 -2 lines
Diff to previous 1.40
- Patch #11728 by Uwe Hermann: fixed some typos in the code comments, Doxygen documentation and screen output.

  Uwe: I dropped the 'iff' chunks as 'iff' stands for 'if and only if'.

Revision 1.40 - (view) (download) (as text) (annotate) - [select for diffs]
Mon Oct 4 18:32:05 2004 UTC (5 years, 1 month ago) by dries
Branch: MAIN
Changes since 1.39: +2 -2 lines
Diff to previous 1.39
- Patch #11166 by drumm: removed redundant help page from the taxonomy module.

Revision 1.39 - (view) (download) (as text) (annotate) - [select for diffs]
Thu Sep 16 07:17:55 2004 UTC (5 years, 2 months ago) by dries
Branch: MAIN
Changes since 1.38: +17 -13 lines
Diff to previous 1.38
- Patch #8179 by JonBob: reintroduced menu caching.

Revision 1.38 - (view) (download) (as text) (annotate) - [select for diffs]
Sat Aug 21 06:42:36 2004 UTC (5 years, 3 months ago) by dries
Branch: MAIN
Changes since 1.37: +6 -1 lines
Diff to previous 1.37
- Patch by JonBob: for consistency and readability, add brief descriptions 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.

Revision 1.37 - (view) (download) (as text) (annotate) - [select for diffs]
Sat Aug 14 07:22:39 2004 UTC (5 years, 3 months ago) by dries
Branch: MAIN
Changes since 1.36: +10 -8 lines
Diff to previous 1.36
- Patch by Al: don't translate all help text upon every page view!

Revision 1.36 - (view) (download) (as text) (annotate) - [select for diffs]
Thu Aug 12 18:00:11 2004 UTC (5 years, 3 months ago) by dries
Branch: MAIN
Changes since 1.35: +2 -2 lines
Diff to previous 1.35
- Patch #9983 by Stefan: various code style improvements.

Revision 1.35 - (view) (download) (as text) (annotate) - [select for diffs]
Tue Aug 10 05:44:17 2004 UTC (5 years, 3 months ago) by dries
Branch: MAIN
Changes since 1.34: +39 -17 lines
Diff to previous 1.34
- Patch by Al: improved the admin/help pages (first step).

Revision 1.34 - (view) (download) (as text) (annotate) - [select for diffs]
Fri Jul 2 18:46:42 2004 UTC (5 years, 4 months ago) by dries
Branch: MAIN
Changes since 1.33: +2 -4 lines
Diff to previous 1.33
- Patch #8973 by JonBob: Drupal contains many undefined variables and array indices, which makes PHP throw a lot of warnings when the reporting level is set to E_ALL. Things run fine with these warnings, but as a matter of code style if nothing else we should probably strive to avoid them. The attached fixes most of the more egregious offenders (about 95% of the warnings when I load /node on my test site).

Revision 1.33 - (view) (download) (as text) (annotate) - [select for diffs]
Fri Jun 18 15:04:35 2004 UTC (5 years, 5 months ago) by dries
Branch: MAIN
Changes since 1.32: +13 -8 lines
Diff to previous 1.32
Tabs patch!

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').

Revision 1.32 - (view) (download) (as text) (annotate) - [select for diffs]
Mon May 17 22:00:06 2004 UTC (5 years, 6 months ago) by dries
Branch: MAIN
Changes since 1.31: +29 -29 lines
Diff to previous 1.31
- Code improvements by JonBob.  Thanks.

Revision 1.31 - (view) (download) (as text) (annotate) - [select for diffs]
Wed Apr 21 13:56:37 2004 UTC (5 years, 7 months ago) by dries
Branch: MAIN
Changes since 1.30: +7 -4 lines
Diff to previous 1.30
- Added support for 403 handling.  Patch by JonBob.  As a side benefit,
  administrators will be able to define a custom 403 page, just as they
  can define 404 pages now.

  This needs to be documented in the "Changes since / migrating to ..."
  pages.

Revision 1.30 - (view) (download) (as text) (annotate) - [select for diffs]
Fri Jan 23 18:42:43 2004 UTC (5 years, 10 months ago) by dries
Branch: MAIN
Changes since 1.29: +18 -18 lines
Diff to previous 1.29
Patch 5287 by Stefan: multiline help texts should become inside a single $output.

Revision 1.29 - (view) (download) (as text) (annotate) - [select for diffs]
Sun Jan 11 20:31:25 2004 UTC (5 years, 10 months ago) by dries
Branch: MAIN
Changes since 1.28: +3 -3 lines
Diff to previous 1.28
- Patch #5021: clean up URLs in _help texts.  Patch by UnConeD.

Revision 1.28 - (view) (download) (as text) (annotate) - [select for diffs]
Tue Nov 25 19:26:21 2003 UTC (6 years ago) by dries
Branch: MAIN
Changes since 1.27: +3 -7 lines
Diff to previous 1.27
- Committed phase 4 of JonBob's menu system changes.

Revision 1.27 - (view) (download) (as text) (annotate) - [select for diffs]
Thu Nov 20 21:51:23 2003 UTC (6 years ago) by dries
Branch: MAIN
Changes since 1.26: +11 -3 lines
Diff to previous 1.26
- Patch by JonBob:

  Phase 2 of the menu system integration project. This unifies the interface
  used by admin and non-admin pages, and deprecates the _page hook in favor of
  explicit callbacks from menu(). Breadcrumbs, titles, and help text go away
  as a result of this patch; they will return in the phase 3 patch, printed
  by the theme.

Revision 1.26 - (view) (download) (as text) (annotate) - [select for diffs]
Thu Oct 9 18:53:21 2003 UTC (6 years, 1 month ago) by dries
Branch: MAIN
Changes since 1.25: +10 -7 lines
Diff to previous 1.25
- Committed part 3 of Michael's help system improvements: removed the $help
  parameter from the menu() function.

Revision 1.25 - (view) (download) (as text) (annotate) - [select for diffs]
Tue Oct 7 18:16:41 2003 UTC (6 years, 1 month ago) by dries
Branch: MAIN
Changes since 1.24: +5 -14 lines
Diff to previous 1.24
- Help system improvements: eliminated the _system hook.  Patch by Michael.

- Bloggerapi module fixes.  Patch by Kjartan.

- Coding style fixes.  Patch by Michael.

Revision 1.24 - (view) (download) (as text) (annotate) - [select for diffs]
Sun Oct 5 08:41:48 2003 UTC (6 years, 1 month ago) by dries
Branch: MAIN
Changes since 1.23: +2 -2 lines
Diff to previous 1.23
- Bugfix: the block module's help was not being displayed.  Patch by Gabor.

Revision 1.23 - (view) (download) (as text) (annotate) - [select for diffs]
Fri Oct 3 14:55:27 2003 UTC (6 years, 1 month ago) by dries
Branch: MAIN
Changes since 1.22: +28 -15 lines
Diff to previous 1.22
- Help improvements and translation improvements from Michael.  Thanks!

Revision 1.22 - (view) (download) (as text) (annotate) - [select for diffs]
Sun Sep 28 17:07:46 2003 UTC (6 years, 1 month ago) by dries
Branch: MAIN
Changes since 1.21: +3 -3 lines
Diff to previous 1.21
- More translation fixes for the menu items.  Patch by Gabor.

Revision 1.21 - (view) (download) (as text) (annotate) - [select for diffs]
Fri Sep 26 23:05:14 2003 UTC (6 years, 2 months ago) by dries
Branch: MAIN
Changes since 1.20: +2 -2 lines
Diff to previous 1.20
- Patch by Kjartan:

   + Fixed CSS to use the same format as the rest of drupal.css.
   + Added fallback routine for menu icons.
   + Fixed anonymous users not seeing the menu.
   + Added proper access checks for admin and help menu items.

Revision 1.20 - (view) (download) (as text) (annotate) - [select for diffs]
Fri Sep 26 10:04:09 2003 UTC (6 years, 2 months ago) by dries
Branch: MAIN
Changes since 1.19: +2 -3 lines
Diff to previous 1.19
- Committed the admin menu integration patch.  Thanks Adrian, Stefan and others.

Revision 1.19 - (view) (download) (as text) (annotate) - [select for diffs]
Fri Sep 19 07:41:54 2003 UTC (6 years, 2 months ago) by dries
Branch: MAIN
Changes since 1.18: +3 -3 lines
Diff to previous 1.18
- Committed a partial administration page integration patch.

Revision 1.18 - (view) (download) (as text) (annotate) - [select for diffs]
Thu Sep 18 20:31:58 2003 UTC (6 years, 2 months ago) by dries
Branch: MAIN
Changes since 1.17: +2 -2 lines
Diff to previous 1.17
- Fixed small spacing problem

Revision 1.17 - (view) (download) (as text) (annotate) - [select for diffs]
Tue Aug 5 18:33:39 2003 UTC (6 years, 3 months ago) by dries
Branch: MAIN
Changes since 1.16: +13 -13 lines
Diff to previous 1.16
- Help system improvements from Michael.

Revision 1.16 - (view) (download) (as text) (annotate) - [select for diffs]
Sun Jun 15 19:06:22 2003 UTC (6 years, 5 months ago) by dries
Branch: MAIN
Changes since 1.15: +2 -2 lines
Diff to previous 1.15
- Improvements: XHTML-ifications.  Patch by GmbH.

Revision 1.15 - (view) (download) (as text) (annotate) - [select for diffs]
Thu Jun 5 18:09:36 2003 UTC (6 years, 5 months ago) by dries
Branch: MAIN
Changes since 1.14: +24 -1 lines
Diff to previous 1.14
- Bugfix: better charset support for non-ISO-8859-1 languages.  Patch 0029.charset.fixes.patch by Al.  Could East Asia test this please.

- Bugfix: made the "moderate" field behave.  Patch 0030.queue.module.help.and.settings.form.patch by Al.

- Documentation: revised a large part of the help texts / documentation!  Al's 0024.* patches.

- Documentation: added a glossary to the help module.  Patch 0025.help.module.glossary.patch by Al and Michael.

- Usability: first step towards unifying the terminology used in the cloud module.  Patch by 0028.site.cloud.rationalize.name.patch Al.

- Usability + CSS improvements: revamped the node form and removed all tables.  Patch 0027.node.form.rewrite.patch by Al.

- CSS improvements: patch 0026.admin.css.small.improvement.patch by Al.

- Updated the MAINTAINERS file.

Revision 1.14 - (view) (download) (as text) (annotate) - [select for diffs]
Thu Feb 20 22:44:51 2003 UTC (6 years, 9 months ago) by dries
Branch: MAIN
Changes since 1.13: +2 -2 lines
Diff to previous 1.13
- New menu houskeeping.  Prototyped by Zbynek.

  The following modules need updating:
    * glossary module
    * feed module (Breyten's version)
    * mailhandler module
    * notify module
    * project module
    * smileys module
    * admin module
    * style module
    * taxonomy_dhtml module

  To avoid unexpected problems menu_add() is deprecated (it will print an
  error message when used) and menu() should be used instead.

Revision 1.13 - (view) (download) (as text) (annotate) - [select for diffs]
Mon Jan 6 19:51:00 2003 UTC (6 years, 10 months ago) by dries
Branch: MAIN
Changes since 1.12: +3 -3 lines
Diff to previous 1.12
- Clean URL patch.

Revision 1.12 - (view) (download) (as text) (annotate) - [select for diffs]
Tue Dec 24 15:40:28 2002 UTC (6 years, 11 months ago) by dries
Branch: MAIN
Changes since 1.11: +3 -5 lines
Diff to previous 1.11
- Refactored the administration pages.

Revision 1.11 - (view) (download) (as text) (annotate) - [select for diffs]
Mon Dec 2 19:14:41 2002 UTC (6 years, 11 months ago) by dries
Branch: MAIN
Changes since 1.10: +2 -2 lines
Diff to previous 1.10
* Applied slightly modified version of Marco's taxonomy patch:

 - Fixed a bug with get_tree and multiple parents.
 - Fixed 3 wrong caches (this will avoid some queries).
 - Extension to taxonomy_term_count_nodes() (feature #159): "currently
   calling taxonomy_term_count_nodes() returns the amount of nodes in each
   term, would it be possible to extend this function so that it would only
   return the amount of nodes of a certain type under each term.
 - Confirm deleting a vocabulary or a term (requested by Moshe).
 - Use form_weight() in vocabulary and term forms.
 - After submitting a term, we end up at the term page (requested by Moshe).
 - Added status messages when adding, editing and deleting vocabularies and
   terms
 - Minor clean ups

* Made sure all modules use the same link delimiter; "|" for now.

Revision 1.10 - (view) (download) (as text) (annotate) - [select for diffs]
Thu Aug 15 10:24:41 2002 UTC (7 years, 3 months ago) by dries
Branch: MAIN
Changes since 1.9: +11 -2 lines
Diff to previous 1.9
- Commited kika's usability patch for the help module.

Revision 1.9 - (view) (download) (as text) (annotate) - [select for diffs]
Sat Jun 1 21:57:29 2002 UTC (7 years, 5 months ago) by kjartan
Branch: MAIN
Changes since 1.8: +6 -1 lines
Diff to previous 1.8
- adding descriptions to modules (thanks Joe + Scott).
- fixed comment flat list view missing 1 comment.
- changed update.php around a bit.
    * security check isn't in effect if the db hasn't been updated.
    * instructions re-organized.
    * fixed some minor updates.
- updated database.mysql done by UnConeD.
- changelog update.

Revision 1.8 - (view) (download) (as text) (annotate) - [select for diffs]
Sat Apr 20 11:52:49 2002 UTC (7 years, 7 months ago) by dries
Branch: MAIN
Changes since 1.7: +2 -2 lines
Diff to previous 1.7
- Applied Marco's big patch, including contributions from Moshe:

    + 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.

    + ...

Revision 1.7 - (view) (download) (as text) (annotate) - [select for diffs]
Thu Nov 1 11:00:48 2001 UTC (8 years ago) by dries
Branch: MAIN
Changes since 1.6: +2 -2 lines
Diff to previous 1.6
- A large batch of updates, amongst them a rewritten node system.  More
  information available on the mailing list.

Revision 1.6 - (view) (download) (as text) (annotate) - [select for diffs]
Sat Oct 20 18:57:07 2001 UTC (8 years, 1 month ago) by kjartan
Branch: MAIN
Changes since 1.5: +2 -1 lines
Diff to previous 1.5
- added the CVS keyword $Id$ to all files to make future version tracking
  easier. Also changed the <? tag to <?php in some cases.

Revision 1.5 - (view) (download) (as text) (annotate) - [select for diffs]
Sun Sep 16 11:29:46 2001 UTC (8 years, 2 months ago) by dries
Branch: MAIN
Changes since 1.4: +1 -1 lines
Diff to previous 1.4
- Added the new user module!

Revision 1.4 - (view) (download) (as text) (annotate) - [select for diffs]
Fri Jun 29 22:08:54 2001 UTC (8 years, 4 months ago) by dries
Branch: MAIN
Changes since 1.3: +8 -0 lines
Diff to previous 1.3
Extremely large commit:

- Fixed tiny quote problem in account.php.

- Fixed tiny bug in comment.inc.

- Fixed tiny bug in comment.module.

- Fixed tiny bug in meta.module.

- Simplified user_access() API.

- Rewrote link system: still needs fine-tuning and testing so don't
  upgrade if you are running a production site. ;)

  Updated all modules and themes to reflect this change.  All other
  themes and modules need updating too!

Revision 1.3 - (view) (download) (as text) (annotate) - [select for diffs]
Wed Jun 6 20:26:12 2001 UTC (8 years, 5 months ago) by dries
Branch: MAIN
Changes since 1.2: +6 -8 lines
Diff to previous 1.2
- Added 'help structure' for node.module.  We still need documentation
  for nodes ... anyone maybe?

- Improved help.module.

Revision 1.2 - (view) (download) (as text) (annotate) - [select for diffs]
Sat May 5 13:57:29 2001 UTC (8 years, 6 months ago) by dries
Branch: MAIN
Changes since 1.1: +5 -6 lines
Diff to previous 1.1
- Uhm.  Rewrote the module system: less code clutter, less run-time
  overhead, and a lot better (simpler) module API.  I had to edit a
  LOT of files to get this refactored but I'm sure it was worth the
  effort.

  For module writers / maintainers:

  None of the hooks changed, so 95% of the old modules should still
  work.  You can remove some code instead as "$module = array(...)"
  just became obsolete.  Also - and let's thank God for this - the
  global variable "$repository" has been eliminated to avoid modules
  relying on, and poking in drupal's internal data structures.  Take
  a look at include/module.inc to investigate the details/changes.

- Improved design of the content modules "story", "book" and "node"
  (to aid smooth integration of permisions + moderate.module).  I'm
  still working on the permissions but I got side tracked for which
  I "Oops!".

Revision 1.1 - (view) (download) (as text) (annotate) - [select for diffs]
Mon Apr 30 17:19:27 2001 UTC (8 years, 6 months ago) by dries
Branch: MAIN
Welp.  Large commit ahead.

CHANGES:

- Added "read" and "write" permissions into drupal but removed
  it again because - when finished after 3 hours of work - it
  was considered nothing but added complexity that didn't buy
  us anything. :I

  (I'll explain this in detail on the mailing list, I guess.)

- Added a very simple help.module to group all available
  documentation on a single page.

- Fixed bug in node_control(), book.module: UnConeD forgot to
  global $user when updating the combobox code.

- Removed static wishlist.module: in future, the wishlist can
  be maintained as a page in our collaborative book.

- Revised most of settings.module: tidied up the code and the
  descriptions to accompany the settings and introduced a new
  "default maximum number of nodes to display on the main page"
  variable.

- Revised most of comment.module: the administration interface
  looks better now, integrated node permissions, and -finally-
  made it possible to delete comments.

- Polished on:
   + account.module
   + structure.module
   + locale.module
   + module.module
   + forum.module

- Form-ified:
   + account.php
   + account.module
   + setting.module
   + cvs.module
   + submit.php
   + comment.module
   + forum.module
   + book.module
   + page.module
   + locale.module

- Updated CHANGELOG


INFO:

- Designed a "generic tracker system with optional backends"
  on paper.  The idea is to allow registered users to hot-list
  certain topics, individual nodes or threads (comments) and
  to "plug-in" output backends like - for instance - an e-mail
  digest.  The design requires "intelligent blocks" though.


TODO:

- I want to tidy up the headline.module and backend.class as
  well as merge in headlineRSS10.module.  Julian spent quite
  some time working on headline.module but I'm not sure what
  he changed and whether he'd contribute it back?

This form allows you to request diffs between any two revisions of this file. For each of the two "sides" of the diff, select a symbolic revision name using the selection box, or choose 'Use Text Field' and enter a numeric revision.

  Diffs between and
  Type of Diff should be a

Sort log by:

  ViewVC Help
Powered by ViewVC 1.1.2