/[drupal]/contributions/modules/draggableviews/draggableviews-view-draggabletable.tpl.php
ViewVC logotype

Log of /contributions/modules/draggableviews/draggableviews-view-draggabletable.tpl.php

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.6.2.10 - (view) (download) (as text) (annotate) - [select for diffs]
Fri Sep 4 11:25:50 2009 UTC (2 months, 3 weeks ago) by sevi
Branch: DRUPAL-6--3
CVS Tags: DRUPAL-6--3-3-BETA1, DRUPAL-6--3-3-BETA2
Changes since 1.6.2.9: +2 -2 lines
Diff to previous 1.6.2.9 , to branch point 1.6
Bug-Fix: Added variable declaration in draggableviews_info also before the handlers get loaded.
Bug-Fix: ensure theme even if style-plugin is not in use.
Added some isset() and empty() checks to get grid of "notice:" messages.
Changed position of variable-initializations to  make them have a value even if the style_plugin is not in use (the theme).
Bug-Fix: All handlers: Removed non existing $field (lny used if attributes not present; was actually never used).

Revision 1.6.2.9 - (view) (download) (as text) (annotate) - [select for diffs]
Tue Sep 1 22:24:20 2009 UTC (2 months, 3 weeks ago) by sevi
Branch: DRUPAL-6--3
Changes since 1.6.2.8: +4 -4 lines
Diff to previous 1.6.2.8 , to branch point 1.6
Important form-api changes: All form elements are now built before drupal_get_form gets called, so the drupal_render function will have all needed attributes set (PHP Notice errors).

Revision 1.6.2.8 - (view) (download) (as text) (annotate) - [select for diffs]
Wed Aug 19 12:28:38 2009 UTC (3 months, 1 week ago) by sevi
Branch: DRUPAL-6--3
CVS Tags: DRUPAL-6--3-2, DRUPAL-6--3-2-BETA6, DRUPAL-6--3-2-BETA7
Changes since 1.6.2.7: +3 -3 lines
Diff to previous 1.6.2.7 , to branch point 1.6
Bug-Fix: used strlen instead of count; Fixed coding standard issues

Revision 1.6.2.7 - (view) (download) (as text) (annotate) - [select for diffs]
Mon Aug 17 14:37:04 2009 UTC (3 months, 1 week ago) by sevi
Branch: DRUPAL-6--3
Changes since 1.6.2.6: +1 -10 lines
Diff to previous 1.6.2.6 , to branch point 1.6
Row plugin is no longer supported by draggableviews.
Grouping is no longer supported by draggableviews (and also not shown in settings).
The form id will be set to .._new if the view hasn't been safed yet.

Changed some variable names and comments.
Moved drupal_add_tabledrag from .tpl.php to _theme.inc.
Moved _draggableviews_filter_fields(..) to draggableviews.inc.
Refactored the way the view gets themed. (Regardless of grouping.)
Now tabledrag Root/Leaf settings will only be specified and shown if base_table==node.
Changed error message for sort criteria: Use "Group: Field" instead of the label of the field.

Revision 1.6.2.6 - (view) (download) (as text) (annotate) - [select for diffs]
Sat Aug 15 17:27:45 2009 UTC (3 months, 1 week ago) by sevi
Branch: DRUPAL-6--3
Changes since 1.6.2.5: +13 -13 lines
Diff to previous 1.6.2.5 , to branch point 1.6
#536846: Now all kinds of base tables are supported. All $node->nid was changed to $node->{$view->base_table}. The variable name $node represents any kind of a base-table {node, taxonomy_term, user,..}. Now the root/leaf stuff only makes sense in combination with node base_table.
#546142: Bug-Fix: Now new nodes can appear at the very bottom (if selected). Now the big number 99999999 is used instead of $view->total_rows (not always calculated).
Furthermore many comments changed. The code for the "to prevent copy->paste'ing" loop changed from for(..) to foreach(..).
The internal names of all views fields changed. So the cache must be cleared as well as all views must be reconfigured.

Revision 1.6.2.5 - (view) (download) (as text) (annotate) - [select for diffs]
Sat Apr 25 12:47:02 2009 UTC (7 months ago) by sevi
Branch: DRUPAL-6--3
Changes since 1.6.2.4: +4 -4 lines
Diff to previous 1.6.2.4 , to branch point 1.6
Changed <? to <?php.

Revision 1.6.2.4 - (view) (download) (as text) (annotate) - [select for diffs]
Sat Mar 14 19:43:01 2009 UTC (8 months, 2 weeks ago) by sevi
Branch: DRUPAL-6--3
CVS Tags: DRUPAL-6--3-2-BETA3, DRUPAL-6--3-2-BETA4, DRUPAL-6--3-2-BETA5
Changes since 1.6.2.3: +2 -2 lines
Diff to previous 1.6.2.3 , to branch point 1.6
*) New setting: Lock; The structure can be locked and hierarchy cannot be changed anymore. Expand/Collapse will be available even if user doesn't have permission or structure if locked.
The concerned fields will be hidden even if tabledrag is not applied.
*) Bug-Fix: Now collapse/expand information is available for each view seperately. The vid hasn't been saved until now. The db table changed.
*) Bug-Fix: After a click sort the view will be displayed properly.
*) Exposed fields data will be attached to form_submit. Now exposed filter are supported properly. Order fields will not be attached.

Revision 1.6.2.3 - (view) (download) (as text) (annotate) - [select for diffs]
Sun Mar 8 01:16:32 2009 UTC (8 months, 3 weeks ago) by sevi
Branch: DRUPAL-6--3
CVS Tags: DRUPAL-6--3-2-BETA2
Changes since 1.6.2.2: +0 -0 lines
Diff to previous 1.6.2.2 , to branch point 1.6
Comments rewritten. Restructured code.
Most code sections have been rewritten and have been commented.
Added more validaten checks (sort criterias).
Fixed some bugs.

Revision 1.6.2.2 - (view) (download) (as text) (annotate) - [select for diffs]
Thu Mar 5 22:02:19 2009 UTC (8 months, 3 weeks ago) by sevi
Branch: DRUPAL-6--3
Changes since 1.6.2.1: +2 -2 lines
Diff to previous 1.6.2.1 , to branch point 1.6
Many many changes to code, order of code and structure of code. Some functions were moved from .inc to .module.
Now paging is definitely implemented and supported. Nodes can be dragged from one page to an other.
Describing the single changes would end up in 30 pages of describing, so I write only this short change-log.

Revision 1.6.2.1 - (view) (download) (as text) (annotate) - [select for diffs]
Fri Jan 9 15:02:30 2009 UTC (10 months, 2 weeks ago) by sevi
Branch: DRUPAL-6--3
CVS Tags: DRUPAL-6--3-2-BETA1
Changes since 1.6: +5 -4 lines
Diff to previous 1.6
Coding standards!

Revision 1.6 - (view) (download) (as text) (annotate) - [select for diffs]
Sun Sep 21 20:36:49 2008 UTC (14 months ago) by sevi
Branch: MAIN
CVS Tags: DRUPAL-6--3-0, DRUPAL-6--3-1, HEAD
Branch point for: DRUPAL-6--3
Changes since 1.5: +0 -0 lines
Diff to previous 1.5
Now theme functions break when no order fields specified

Revision 1.5 - (view) (download) (as text) (annotate) - [select for diffs]
Sat Sep 20 10:33:22 2008 UTC (14 months, 1 week ago) by sevi
Branch: MAIN
Changes since 1.4: +0 -0 lines
Diff to previous 1.4
Recommiting

Revision 1.4 - (view) (download) (as text) (annotate) - [select for diffs]
Fri Sep 19 15:58:03 2008 UTC (14 months, 1 week ago) by sevi
Branch: MAIN
Changes since 1.3: +2 -2 lines
Diff to previous 1.3
*** empty log message ***

Revision 1.3 - (view) (download) (as text) (annotate) - [select for diffs]
Fri Sep 19 09:47:12 2008 UTC (14 months, 1 week ago) by sevi
Branch: MAIN
Changes since 1.2: +2 -2 lines
Diff to previous 1.2
Module rewritten
Rebuilding broken structures automatically

Revision 1.2
Wed Jul 16 14:59:25 2008 UTC (16 months, 1 week ago) by sevi
Branch: MAIN
Changes since 1.1: +1 -1 lines
FILE REMOVED
delete code from HEAD

Revision 1.1 - (view) (download) (as text) (annotate) - [select for diffs]
Tue Jul 15 21:07:45 2008 UTC (16 months, 1 week ago) by sevi
Branch: MAIN
CVS Tags: DRUPAL-6--1-0-BETA1, DRUPAL-6--1-2-BETA1, DRUPAL-6--1-2-BETA2
Branch point for: DRUPAL-6--1, DRUPAL-6--2
*** empty log message ***

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