/[drupal]/contributions/modules/directory/directory.module
ViewVC logotype

Log of /contributions/modules/directory/directory.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.35 - (view) (download) (as text) (annotate) - [select for diffs]
Tue Sep 30 09:16:27 2008 UTC (13 months, 4 weeks ago) by augustin
Branch: MAIN
CVS Tags: HEAD
Changes since 1.34: +5 -4 lines
Diff to previous 1.34
 * Fixed hook_uninsall() to cover all variable that may be set in the future.
  * update_6001() remove one obsolete variable.

Revision 1.34 - (view) (download) (as text) (annotate) - [select for diffs]
Wed Aug 13 12:25:42 2008 UTC (15 months, 2 weeks ago) by augustin
Branch: MAIN
Changes since 1.33: +10 -2 lines
Diff to previous 1.33
Add collapsible setting.

Revision 1.33 - (view) (download) (as text) (annotate) - [select for diffs]
Wed Jul 16 08:18:16 2008 UTC (16 months, 2 weeks ago) by augustin
Branch: MAIN
Changes since 1.32: +2 -10 lines
Diff to previous 1.32
60 line patch.
 * Remove the setting item to exclude node types from directory pages:
   This setting had no effect anymore since we don't select nodes.
 * Fix one E_ALL notice.

Revision 1.32 - (view) (download) (as text) (annotate) - [select for diffs]
Wed Jul 16 07:37:34 2008 UTC (16 months, 2 weeks ago) by augustin
Branch: MAIN
Changes since 1.31: +145 -144 lines
Diff to previous 1.31
#276033.
Reorganizing the code, to group functions by type (hooks, themeable functions, menu callbacks, etc.)
No code change done.

Revision 1.31 - (view) (download) (as text) (annotate) - [select for diffs]
Wed Jul 16 06:08:25 2008 UTC (16 months, 2 weeks ago) by augustin
Branch: MAIN
CVS Tags: DRUPAL-6--1-0-alpha1
Changes since 1.30: +11 -305 lines
Diff to previous 1.30
394 line patch.
 * Removed a huge chunk of code which used to display nodes and taxonomy terms according to the first letter of the term.
   The code was completely broken, and
   since we don't directly deal with node selection and teaser display anymore (we use taxonomy.module for that),
   almost all of the theming functions could be discarded.

Revision 1.30 - (view) (download) (as text) (annotate) - [select for diffs]
Wed Jul 16 04:35:44 2008 UTC (16 months, 2 weeks ago) by augustin
Branch: MAIN
Changes since 1.29: +29 -8 lines
Diff to previous 1.29
67 line patch.
 * Show subterms for all terms in pages like taxonomy/term/23+67 and taxonomy/term/23,67.

Revision 1.29 - (view) (download) (as text) (annotate) - [select for diffs]
Wed Jul 16 03:56:32 2008 UTC (16 months, 2 weeks ago) by augustin
Branch: MAIN
Changes since 1.28: +3 -2 lines
Diff to previous 1.28
Turn the vocabulary names in the main directory into links to the per-vocabulary page.

Revision 1.28 - (view) (download) (as text) (annotate) - [select for diffs]
Wed Jul 16 03:52:05 2008 UTC (16 months, 2 weeks ago) by augustin
Branch: MAIN
Changes since 1.27: +17 -26 lines
Diff to previous 1.27
85 line patch.

Revert changes to hook_menu(): keep the foreach() loop that will dynamically create
menu items for each vocabulary.
See http://drupal.org/node/283198

Revision 1.27 - (view) (download) (as text) (annotate) - [select for diffs]
Wed Jul 16 02:25:44 2008 UTC (16 months, 2 weeks ago) by augustin
Branch: MAIN
Changes since 1.26: +29 -1 lines
Diff to previous 1.26
70 line patch.
 * Added a list of subterms for any term on a taxonomy/term/$tid page.

Revision 1.26 - (view) (download) (as text) (annotate) - [select for diffs]
Wed Jul 16 01:03:01 2008 UTC (16 months, 2 weeks ago) by augustin
Branch: MAIN
Changes since 1.25: +25 -25 lines
Diff to previous 1.25
93 line patch.
 * Fixed the directory/vocabulary/$vid pages. (fixed part of hook_menu() to be D6 compliant).

Revision 1.25 - (view) (download) (as text) (annotate) - [select for diffs]
Wed Jul 16 00:19:43 2008 UTC (16 months, 2 weeks ago) by augustin
Branch: MAIN
Changes since 1.24: +9 -133 lines
Diff to previous 1.24
278 line patch.
 * The big code cleanup has started.
 -> removed directory/random callback (which redirected to a random selected node).
 -> removed the directory/term/$tid+$tid callback, which originally was a copy of taxonomy_term_page().
    We now want to reuse as much of taxonomy.module's display as possible.
 -> removed directory/$tid pages. We now use core taxonomy/term/$vid.

Revision 1.24 - (view) (download) (as text) (annotate) - [select for diffs]
Sun Jun 29 06:44:34 2008 UTC (17 months ago) by augustin
Branch: MAIN
Changes since 1.23: +8 -3 lines
Diff to previous 1.23
Add the javascript only once.

Revision 1.23 - (view) (download) (as text) (annotate) - [select for diffs]
Sun Jun 29 05:58:31 2008 UTC (17 months ago) by augustin
Branch: MAIN
Changes since 1.22: +3 -3 lines
Diff to previous 1.22
Useability improvement.

Revision 1.22 - (view) (download) (as text) (annotate) - [select for diffs]
Sun Jun 29 04:00:06 2008 UTC (17 months ago) by augustin
Branch: MAIN
Changes since 1.21: +18 -8 lines
Diff to previous 1.21
Fix E_ALL warnings in directory_taxonomy_term_count(),
plus a couple of minor code style fixes.

Revision 1.21 - (view) (download) (as text) (annotate) - [select for diffs]
Sun Jun 29 02:33:33 2008 UTC (17 months ago) by augustin
Branch: MAIN
Changes since 1.20: +7 -1 lines
Diff to previous 1.20
Output warning when the module is not configured yet and /directory is empty.

Revision 1.20 - (view) (download) (as text) (annotate) - [select for diffs]
Sat Jun 28 12:03:37 2008 UTC (17 months ago) by augustin
Branch: MAIN
Changes since 1.19: +3 -2 lines
Diff to previous 1.19
Fix bug in hook_theme declaration, and fix E_ALL notice.

Revision 1.19 - (view) (download) (as text) (annotate) - [select for diffs]
Sat Jun 28 11:43:55 2008 UTC (17 months ago) by augustin
Branch: MAIN
Changes since 1.18: +2 -1 lines
Diff to previous 1.18
Commenting code.

Revision 1.18 - (view) (download) (as text) (annotate) - [select for diffs]
Sat Jun 28 11:24:17 2008 UTC (17 months ago) by augustin
Branch: MAIN
Changes since 1.17: +2 -2 lines
Diff to previous 1.17
Drupal SQL query standard: user db_query_range, instead of relying on LIMIT in SQL query.

Revision 1.17 - (view) (download) (as text) (annotate) - [select for diffs]
Sat Jun 28 11:19:12 2008 UTC (17 months ago) by augustin
Branch: MAIN
Changes since 1.16: +17 -15 lines
Diff to previous 1.16
fix commenting to suit standards.

Revision 1.16 - (view) (download) (as text) (annotate) - [select for diffs]
Sat Jun 28 11:04:54 2008 UTC (17 months ago) by augustin
Branch: MAIN
Changes since 1.15: +62 -62 lines
Diff to previous 1.15
More code style fixes, with coder set at minor severity.

Revision 1.15 - (view) (download) (as text) (annotate) - [select for diffs]
Sat Jun 28 10:47:40 2008 UTC (17 months ago) by augustin
Branch: MAIN
Changes since 1.14: +35 -35 lines
Diff to previous 1.14
More coding standard fixes, found with coder / normal severity setting.

Revision 1.14 - (view) (download) (as text) (annotate) - [select for diffs]
Sat Jun 28 05:46:57 2008 UTC (17 months ago) by augustin
Branch: MAIN
Changes since 1.13: +105 -104 lines
Diff to previous 1.13
Coding guidelines for Drupal 6: new string concatenation rule.

Revision 1.13 - (view) (download) (as text) (annotate) - [select for diffs]
Sat Jun 28 05:30:39 2008 UTC (17 months ago) by augustin
Branch: MAIN
Changes since 1.12: +88 -59 lines
Diff to previous 1.12
Module upgrade to Drupal 6, using coder and checking critical changes only.

Revision 1.12 - (view) (download) (as text) (annotate) - [select for diffs]
Fri Jun 27 07:39:45 2008 UTC (17 months ago) by augustin
Branch: MAIN
Changes since 1.11: +488 -246 lines
Diff to previous 1.11
Import files from the DRUPAL-5 branch. Reopening head for D6 development.

Revision 1.11.2.30 - (view) (download) (as text) (annotate) - [select for diffs]
Fri Jun 27 07:21:04 2008 UTC (17 months ago) by augustin
Branch: DRUPAL-5
Changes since 1.11.2.29: +65 -13 lines
Diff to previous 1.11.2.29 , to branch point 1.11 , to next main 1.35
Update README.txt, and add information in setting page.

Revision 1.11.2.29 - (view) (download) (as text) (annotate) - [select for diffs]
Mon Jul 16 08:54:49 2007 UTC (2 years, 4 months ago) by augustin
Branch: DRUPAL-5
CVS Tags: DRUPAL-5--2-0
Changes since 1.11.2.28: +52 -5 lines
Diff to previous 1.11.2.28 , to branch point 1.11
#147412 implement per-vocabulary directories.
1) there is a menu item you can enable for each vocabulary.
2) all invalid values of $tid and $vid are redirected to the main directory page
3) the js collapsed setting is not used if we are only listing one vocabulary.
4) the listing for each vocabulary uses the same theming function as for the main page.

Revision 1.11.2.28 - (view) (download) (as text) (annotate) - [select for diffs]
Sun Jul 8 08:00:17 2007 UTC (2 years, 4 months ago) by augustin
Branch: DRUPAL-5
Changes since 1.11.2.27: +3 -2 lines
Diff to previous 1.11.2.27 , to branch point 1.11
minor bugfix: remove E_ALL notice

Revision 1.11.2.27 - (view) (download) (as text) (annotate) - [select for diffs]
Mon Jun 11 06:34:58 2007 UTC (2 years, 5 months ago) by augustin
Branch: DRUPAL-5
Changes since 1.11.2.26: +3 -4 lines
Diff to previous 1.11.2.26 , to branch point 1.11
bugfix: forgot to use the new theme function to display nb of nodes in subterms.

Revision 1.11.2.26 - (view) (download) (as text) (annotate) - [select for diffs]
Fri Jun 8 12:00:41 2007 UTC (2 years, 5 months ago) by augustin
Branch: DRUPAL-5
Changes since 1.11.2.25: +22 -3 lines
Diff to previous 1.11.2.25 , to branch point 1.11
#106114: add javascript collapsible form + setting for each vocab, on the main page.

Revision 1.11.2.25 - (view) (download) (as text) (annotate) - [select for diffs]
Sun Jun 3 06:00:58 2007 UTC (2 years, 5 months ago) by augustin
Branch: DRUPAL-5
Changes since 1.11.2.24: +26 -5 lines
Diff to previous 1.11.2.24 , to branch point 1.11
Make it possible to individually theme the node count area (printed after the term name),
without having to modify the whole theme function.
This shouldn't affect in anyway other sites which are happy with the default presentation.

Revision 1.11.2.24 - (view) (download) (as text) (annotate) - [select for diffs]
Sat Jun 2 10:32:50 2007 UTC (2 years, 5 months ago) by augustin
Branch: DRUPAL-5
Changes since 1.11.2.23: +18 -8 lines
Diff to previous 1.11.2.23 , to branch point 1.11
Code style fixes in _settings() form.

Revision 1.11.2.23 - (view) (download) (as text) (annotate) - [select for diffs]
Fri Jun 1 23:54:48 2007 UTC (2 years, 5 months ago) by augustin
Branch: DRUPAL-5
Changes since 1.11.2.22: +3 -3 lines
Diff to previous 1.11.2.22 , to branch point 1.11
#148598: untranslatable string. Thanks Takafumi.

Revision 1.11.2.22 - (view) (download) (as text) (annotate) - [select for diffs]
Fri Jun 1 10:24:45 2007 UTC (2 years, 5 months ago) by augustin
Branch: DRUPAL-5
Changes since 1.11.2.21: +3 -3 lines
Diff to previous 1.11.2.21 , to branch point 1.11
Small theming bugfix: the <em> is redundant. (one is already added by core for variables with the @)

Revision 1.11.2.21 - (view) (download) (as text) (annotate) - [select for diffs]
Fri Jun 1 08:14:38 2007 UTC (2 years, 5 months ago) by augustin
Branch: DRUPAL-5
CVS Tags: DRUPAL-5--1-0
Changes since 1.11.2.20: +4 -4 lines
Diff to previous 1.11.2.20 , to branch point 1.11
#147063 SQL errors created by db_rewrite_sql when there are other node access modules.

Revision 1.11.2.20 - (view) (download) (as text) (annotate) - [select for diffs]
Wed May 30 12:40:49 2007 UTC (2 years, 6 months ago) by augustin
Branch: DRUPAL-5
Changes since 1.11.2.19: +22 -5 lines
Diff to previous 1.11.2.19 , to branch point 1.11
hook_menu: fix code style.

Revision 1.11.2.19 - (view) (download) (as text) (annotate) - [select for diffs]
Mon May 28 17:41:13 2007 UTC (2 years, 6 months ago) by augustin
Branch: DRUPAL-5
Changes since 1.11.2.18: +2 -37 lines
Diff to previous 1.11.2.18 , to branch point 1.11
#92912 remove debugging code.

Revision 1.11.2.18 - (view) (download) (as text) (annotate) - [select for diffs]
Wed May 23 13:07:33 2007 UTC (2 years, 6 months ago) by augustin
Branch: DRUPAL-5
Changes since 1.11.2.17: +4 -51 lines
Diff to previous 1.11.2.17 , to branch point 1.11
Remove obsolete function.
+ small bugfix: subcategories were not displayed if term had no nodes of its own.

Revision 1.11.2.17 - (view) (download) (as text) (annotate) - [select for diffs]
Tue May 22 06:28:39 2007 UTC (2 years, 6 months ago) by augustin
Branch: DRUPAL-5
Changes since 1.11.2.16: +8 -3 lines
Diff to previous 1.11.2.16 , to branch point 1.11
Added module development sponsor information.

Revision 1.11.2.16 - (view) (download) (as text) (annotate) - [select for diffs]
Tue May 22 06:11:58 2007 UTC (2 years, 6 months ago) by augustin
Branch: DRUPAL-5
Changes since 1.11.2.15: +21 -5 lines
Diff to previous 1.11.2.15 , to branch point 1.11
#144696 We now can configure two helptexts:
one for the directory home page,
and one for each term page.

Also made some FIXME notes about some redundant code that is not used anywhere, to investigate later.

Revision 1.11.2.15 - (view) (download) (as text) (annotate) - [select for diffs]
Mon May 21 13:08:01 2007 UTC (2 years, 6 months ago) by augustin
Branch: DRUPAL-5
Changes since 1.11.2.14: +5 -61 lines
Diff to previous 1.11.2.14 , to branch point 1.11
#144958, comment # 3.
I tried to retain the presentation in two columns on the main page despite the fact that I use <ul> elements to theme the list of nested terms, but it is going to cause even more problems later (especially if we add - as I have been asked to do - some javascript to collapse some sections on the main page: how to have two evenly distributed columns?).

I am removing this two column presentation now.

See also #106114 about adding the javascript which is now possible to do.

Revision 1.11.2.14 - (view) (download) (as text) (annotate) - [select for diffs]
Mon May 21 12:31:26 2007 UTC (2 years, 6 months ago) by augustin
Branch: DRUPAL-5
Changes since 1.11.2.13: +200 -100 lines
Diff to previous 1.11.2.13 , to branch point 1.11
#144958: Improve theming of sub-categories,
use <ul> to nest sub-categories on the main page and on the term pages.

Revision 1.11.2.13 - (view) (download) (as text) (annotate) - [select for diffs]
Sun May 20 12:26:08 2007 UTC (2 years, 6 months ago) by augustin
Branch: DRUPAL-5
Changes since 1.11.2.12: +108 -11 lines
Diff to previous 1.11.2.12 , to branch point 1.11
#145023: taxonomy_term_count_nodes() returns wrong value in certain situations.
This patch includes a temporary replacement function for what actually is a bug in Drupal core.
See issues for details: http://drupal.org/node/145023 and http://drupal.org/node/144969.

Revision 1.11.2.12 - (view) (download) (as text) (annotate) - [select for diffs]
Fri May 18 10:24:45 2007 UTC (2 years, 6 months ago) by augustin
Branch: DRUPAL-5
Changes since 1.11.2.11: +11 -8 lines
Diff to previous 1.11.2.11 , to branch point 1.11
#143272 to be consistent with earlier changes,
function directory_display_resource() becomes function theme_directory_resource().
I also improve a bit the internal documentation.

Revision 1.11.2.11 - (view) (download) (as text) (annotate) - [select for diffs]
Fri May 18 07:42:21 2007 UTC (2 years, 6 months ago) by augustin
Branch: DRUPAL-5
Changes since 1.11.2.10: +18 -16 lines
Diff to previous 1.11.2.10 , to branch point 1.11
#143272 comment # 1.

theme_directory_display_resource_section() renamed theme_directory_resource_section()
 ('display' is redundant with 'theme').
 --> make upgrade note for those who where theming this function.
 Theme call is now: theme('directory_resource_section', $node_by_term, $term);

 We now have a function theme_directory_home_section($vid) {} meaning that the directory home can be themed.

Revision 1.11.2.10 - (view) (download) (as text) (annotate) - [select for diffs]
Fri May 18 07:10:29 2007 UTC (2 years, 6 months ago) by augustin
Branch: DRUPAL-5
Changes since 1.11.2.9: +46 -48 lines
Diff to previous 1.11.2.9 , to branch point 1.11
#144925. Follow up to previous commit:
adjusting the indent of the only remaining block of code from the previous if...else statement.
No code change.

Revision 1.11.2.9 - (view) (download) (as text) (annotate) - [select for diffs]
Fri May 18 07:06:58 2007 UTC (2 years, 6 months ago) by augustin
Branch: DRUPAL-5
Changes since 1.11.2.8: +5 -14 lines
Diff to previous 1.11.2.8 , to branch point 1.11
#144925 Remove some useless chunks of code.

Revision 1.11.2.8 - (view) (download) (as text) (annotate) - [select for diffs]
Fri May 18 06:35:36 2007 UTC (2 years, 6 months ago) by augustin
Branch: DRUPAL-5
Changes since 1.11.2.7: +3 -3 lines
Diff to previous 1.11.2.7 , to branch point 1.11
Follow up to previous commit (Remove the constant DIRECTORY_ENABLE_EMPTY_TERM_SUPPRESSION):
removing 'experimental' notification.

Revision 1.11.2.7 - (view) (download) (as text) (annotate) - [select for diffs]
Fri May 18 05:55:31 2007 UTC (2 years, 6 months ago) by augustin
Branch: DRUPAL-5
Changes since 1.11.2.6: +11 -20 lines
Diff to previous 1.11.2.6 , to branch point 1.11
Remove the constant DIRECTORY_ENABLE_EMPTY_TERM_SUPPRESSION :
This was meant for the development version only, while it was not 'ready for prime-time'.
By removing it, we are making the code more readable.

Revision 1.11.2.6 - (view) (download) (as text) (annotate) - [select for diffs]
Thu May 17 16:02:17 2007 UTC (2 years, 6 months ago) by augustin
Branch: DRUPAL-5
Changes since 1.11.2.5: +18 -5 lines
Diff to previous 1.11.2.5 , to branch point 1.11
Improves a little the code-level documentation.

Revision 1.11.2.5 - (view) (download) (as text) (annotate) - [select for diffs]
Thu May 17 13:22:38 2007 UTC (2 years, 6 months ago) by augustin
Branch: DRUPAL-5
Changes since 1.11.2.4: +6 -6 lines
Diff to previous 1.11.2.4 , to branch point 1.11
#104269 Sorting the nodes listed on the 2nd level page by sticky, changed.

Revision 1.11.2.4 - (view) (download) (as text) (annotate) - [select for diffs]
Thu May 17 10:57:15 2007 UTC (2 years, 6 months ago) by augustin
Branch: DRUPAL-5
Changes since 1.11.2.3: +4 -4 lines
Diff to previous 1.11.2.3 , to branch point 1.11
Minor code style fixes.

Revision 1.11.2.3 - (view) (download) (as text) (annotate) - [select for diffs]
Thu May 17 10:12:35 2007 UTC (2 years, 6 months ago) by augustin
Branch: DRUPAL-5
Changes since 1.11.2.2: +3 -3 lines
Diff to previous 1.11.2.2 , to branch point 1.11
Bugfix: redundant 'AND' is sql query.

Revision 1.11.2.2 - (view) (download) (as text) (annotate) - [select for diffs]
Thu May 17 09:47:00 2007 UTC (2 years, 6 months ago) by augustin
Branch: DRUPAL-5
Changes since 1.11.2.1: +18 -20 lines
Diff to previous 1.11.2.1 , to branch point 1.11
#93031 Drupal-5 upgrade. Patch by jmiccolis, bpocanada and beginner.

Revision 1.11.2.1 - (view) (download) (as text) (annotate) - [select for diffs]
Thu May 17 09:30:55 2007 UTC (2 years, 6 months ago) by augustin
Branch: DRUPAL-5
Changes since 1.11: +3 -3 lines
Diff to previous 1.11
#111790 Fix query. Port of patch by yched.

Revision 1.7.2.6 - (view) (download) (as text) (annotate) - [select for diffs]
Fri May 11 16:51:07 2007 UTC (2 years, 6 months ago) by inactivist
Branch: DRUPAL-4-7
CVS Tags: DRUPAL-4-7--2-1
Changes since 1.7.2.5: +61 -6 lines
Diff to previous 1.7.2.5 , to branch point 1.7 , to next main 1.35
Moving 4-7-2 files to DRUPAL-4-7 branch

Revision 1.7.2.5 - (view) (download) (as text) (annotate) - [select for diffs]
Fri May 11 16:13:57 2007 UTC (2 years, 6 months ago) by inactivist
Branch: DRUPAL-4-7
CVS Tags: DRUPAL-4-7--1-2
Changes since 1.7.2.4: +3 -3 lines
Diff to previous 1.7.2.4 , to branch point 1.7
Commit patch found in http://drupal.org/node/111790

Revision 1.11 - (view) (download) (as text) (annotate) - [select for diffs]
Thu Dec 28 03:03:45 2006 UTC (2 years, 11 months ago) by inactivist
Branch: MAIN
CVS Tags: DRUPAL-4-7--2-0
Branch point for: DRUPAL-5
Changes since 1.10: +3 -3 lines
Diff to previous 1.10
directory_settings: Fix for http://drupal.org/node/105510
 - (allow deselect of all content types in exclude list)

Revision 1.7.2.4 - (view) (download) (as text) (annotate) - [select for diffs]
Thu Dec 28 03:03:04 2006 UTC (2 years, 11 months ago) by inactivist
Branch: DRUPAL-4-7
CVS Tags: DRUPAL-4-7--1-0
Changes since 1.7.2.3: +3 -3 lines
Diff to previous 1.7.2.3 , to branch point 1.7
directory_settings: Fix for http://drupal.org/node/105510
 - (allow deselect of all content types in exclude list)

Revision 1.10 - (view) (download) (as text) (annotate) - [select for diffs]
Sun Nov 5 17:19:43 2006 UTC (3 years ago) by inactivist
Branch: MAIN
Changes since 1.9: +55 -9 lines
Diff to previous 1.9
directory.module:  Adding options to enhance directory display.  More formatting cleanup.
 - Option to suppress display of taxonomy terms having no
   children in top-level view.
 - Option to add child node count (in parens) to each term,
   in top-level view.

directory.css: More display cleanup, as required by and
   implemented in directory.module
 - Support for display of child node counts
 - Enhance formatting and layout of partial node listing
   when # of child nodes exceeds limit

Revision 1.9 - (view) (download) (as text) (annotate) - [select for diffs]
Sun Nov 5 05:06:00 2006 UTC (3 years ago) by inactivist
Branch: MAIN
Changes since 1.8: +13 -4 lines
Diff to previous 1.8
directory_menu:
 - Add code to automatically inject directory.css file

directory_display_home_category:
 - close <div> properly - was breaking theme.

Revision 1.7.2.3 - (view) (download) (as text) (annotate) - [select for diffs]
Sun Nov 5 04:47:08 2006 UTC (3 years ago) by inactivist
Branch: DRUPAL-4-7
Changes since 1.7.2.2: +3 -3 lines
Diff to previous 1.7.2.2 , to branch point 1.7
directory_display_home_category: close <div> properly - was breaking theme.

Revision 1.8 - (view) (download) (as text) (annotate) - [select for diffs]
Sun Nov 5 01:56:20 2006 UTC (3 years ago) by inactivist
Branch: MAIN
Changes since 1.7: +78 -26 lines
Diff to previous 1.7
General:
 - cleaning up css classnames (use - rather than _ and prefix all with 'directory-')
 - Adding diagnostic code (for future use)

directory_help:
 - Added version info and links to maintainer site.
 - Rewording settings text to help clarify proper usage.

directory_page:
 - Fixed problem where empty categories was not displaying "nothing in this category" text.

Revision 1.7.2.2 - (view) (download) (as text) (annotate) - [select for diffs]
Sun Nov 5 00:39:36 2006 UTC (3 years ago) by inactivist
Branch: DRUPAL-4-7
Changes since 1.7.2.1: +3 -3 lines
Diff to previous 1.7.2.1 , to branch point 1.7
directory_help(): Now indicates that this module requires taxonomy module in order to work

Revision 1.7.2.1 - (view) (download) (as text) (annotate) - [select for diffs]
Sat Nov 4 21:38:07 2006 UTC (3 years ago) by inactivist
Branch: DRUPAL-4-7
Changes since 1.7: +77 -25 lines
Diff to previous 1.7
General:
 - cleaning up css classnames (use - rather than _ as a separator and prefix all css ids and classnames with 'directory-')
 - Adding diagnostic code (for future use)

directory_help:
 - Added version info and links to maintainer site.
 - Rewording settings text to help clarify proper usage.

directory_page:
 - Fixed problem where empty categories was not displaying "nothing in this category" text.

General:
 - cleaning up css classnames (use - rather than _ and prefix all with 'directory-')
 - Adding diagnostic code (for future use)

directory_help:
 - Added version info and links to maintainer site.
 - Rewording settings text to help clarify proper usage.

directory_page:
 - Fixed problem where empty categories was not displaying "nothing in this category" text.

Revision 1.7 - (view) (download) (as text) (annotate) - [select for diffs]
Sat Oct 21 15:30:37 2006 UTC (3 years, 1 month ago) by inactivist
Branch: MAIN
Branch point for: DRUPAL-4-7
Changes since 1.6: +39 -14 lines
Diff to previous 1.6
directory.module
  - directory_display_resource() : Fixes for 4.7.x  where no nodes were being shown.
  - directory_display_resource() : Optimization: Hoisted variable_get() out of loop
  - Added helper functions _first() and _last() to get first and last array elements

Revision 1.6 - (view) (download) (as text) (annotate) - [select for diffs]
Thu Feb 2 01:42:18 2006 UTC (3 years, 9 months ago) by drumm
Branch: MAIN
Changes since 1.5: +53 -22 lines
Diff to previous 1.5
Updates for 4.7, mostly formapi.

Revision 1.5 - (view) (download) (as text) (annotate) - [select for diffs]
Mon Sep 26 18:05:31 2005 UTC (4 years, 2 months ago) by mathias
Branch: MAIN
Changes since 1.4: +164 -251 lines
Diff to previous 1.4
* Updated to HEAD.

Revision 1.4 - (view) (download) (as text) (annotate) - [select for diffs]
Fri Jul 1 06:09:54 2005 UTC (4 years, 4 months ago) by mathias
Branch: MAIN
Changes since 1.3: +6 -2 lines
Diff to previous 1.3
* Patch by RobRoy - Fixes incorrect hierarchical display

Revision 1.3 - (view) (download) (as text) (annotate) - [select for diffs]
Wed Jun 1 21:42:06 2005 UTC (4 years, 5 months ago) by mathias
Branch: MAIN
Changes since 1.2: +2 -2 lines
Diff to previous 1.2
* pager_detail() -> theme('pager_detail')

Revision 1.2 - (view) (download) (as text) (annotate) - [select for diffs]
Thu Apr 21 21:09:56 2005 UTC (4 years, 7 months ago) by mathias
Branch: MAIN
Changes since 1.1: +168 -32 lines
Diff to previous 1.1
* Still in beta mode, but works with Drupal 4.6.

Revision 1.1 - (view) (download) (as text) (annotate) - [select for diffs]
Wed Feb 16 20:59:23 2005 UTC (4 years, 9 months ago) by mathias
Branch: MAIN
* Using vocabularies, create a directory-style listing of content, or even overlay vocabularies for a drill-down effect.  It needs some work, but you can see it in action at http://www.ent.iastate.edu/list/

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