Log of /contributions/modules/cmt/cmt.module
Parent Directory
|
Revision Log
|
Revision Graph
Revision
1.33.2.17 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Tue Aug 28 22:47:58 2007 UTC
(2 years, 3 months ago)
by
agaric
Branch:
DRUPAL-5
Changes since
1.33.2.16: +15 -8 lines
Diff to
previous 1.33.2.16
, to
branch point 1.33
ladder values, too. Currently the array provided by this function is serialized and used as the key in an options array for checkbox-style forms. OK, that's questionable practice using a bunch of data as a key, but I'm wondering if it would be better to use explode/implode-- it would look cleaner, but would it be faster?
Revision
1.33.2.11 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Mon Aug 27 18:08:06 2007 UTC
(2 years, 3 months ago)
by
agaric
Branch:
DRUPAL-5
Changes since
1.33.2.10: +1 -2 lines
Diff to
previous 1.33.2.10
, to
branch point 1.33
fixed the no root parents problem, but the bad news is the insert statement seems to have ignored the 0 and put in the next tid. It worked with an update, but this probably means the cmt.install file will need a hack like adding auto_increment after the first insert, or doing an update immediately after the insert
Revision
1.33.2.3 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Thu Aug 23 14:42:43 2007 UTC
(2 years, 3 months ago)
by
agaric
Branch:
DRUPAL-5
Changes since
1.33.2.2: +3 -1 lines
Diff to
previous 1.33.2.2
, to
branch point 1.33
made it an option to display CMT term managing forms on node teasers, by node type (for now this has to be done at Administer > Content > Content Types and pick your content type, but it will be added to the CMT settings page as a checklist also).. with the admin include file updated
Revision
1.33.2.2 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Thu Aug 23 14:23:35 2007 UTC
(2 years, 3 months ago)
by
agaric
Branch:
DRUPAL-5
Changes since
1.33.2.1: +37 -21 lines
Diff to
previous 1.33.2.1
, to
branch point 1.33
made it an option to display CMT term managing forms on node teasers, by node type (for now this has to be done at Administer > Content > Content Types and pick your content type, but it will be added to the CMT settings page as a checklist also)
Revision
1.33.2.1 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Wed Aug 22 15:21:57 2007 UTC
(2 years, 3 months ago)
by
agaric
Branch:
DRUPAL-5
Changes since
1.33: +8 -8 lines
Diff to
previous 1.33
added spaces to a couple control structures that were missing them, for full consistency with Drupal coding standards
Revision
1.29 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Mon Aug 20 17:57:49 2007 UTC
(2 years, 3 months ago)
by
agaric
Branch:
MAIN
Changes since
1.28: +38 -2 lines
Diff to
previous 1.28
abondoned work on the hierarchy timesink. Ability to vote on free tagging, and to make hierarchical vocabulary on the fly, still goes where no module has gone before. Hierarchy and fanciness come in post-production.
Revision
1.22 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Sun Aug 19 23:01:45 2007 UTC
(2 years, 3 months ago)
by
agaric
Branch:
MAIN
Changes since
1.21: +1 -18 lines
Diff to
previous 1.21
actually this commit is cleanup/reorganization and the LAST commit was implementation of CMTs very own version of Drupal 6's db_last_insert_id
Revision
1.19 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Sun Aug 19 18:53:03 2007 UTC
(2 years, 3 months ago)
by
agaric
Branch:
MAIN
Changes since
1.18: +26 -26 lines
Diff to
previous 1.18
many changes have been made and not documented while cvs.drupal.org was down. The previous commit message was quite out of date. Latest change is tightening up the .info file text.
Revision
1.18 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Sun Aug 19 16:21:56 2007 UTC
(2 years, 3 months ago)
by
agaric
Branch:
MAIN
Changes since
1.17: +84 -27 lines
Diff to
previous 1.17
reversed and in cmt_term_attribute_set and cmt_vote and the like: it's far more likely we'll want to override the vote count than the user, and easier to throw a 1 in there for value than to get the current users ID anyway
Revision
1.15 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Sun Aug 19 11:40:39 2007 UTC
(2 years, 3 months ago)
by
agaric
Branch:
MAIN
Changes since
1.14: +10 -6 lines
Diff to
previous 1.14
undid the array_reverse, counting up instead, on traversing through an angle-bracket delimited term set (path)
Revision
1.14 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Sun Aug 19 08:28:01 2007 UTC
(2 years, 3 months ago)
by
agaric
Branch:
MAIN
Changes since
1.13: +26 -70 lines
Diff to
previous 1.13
generalized cmt_term_attribute_set to also take nod nid instead of term tid for setting the cmt_term_node table (which would have been better named node_term, but hey-- this way the function can stay cmt_term_attribute_set and not be a misnomer. Happy accident.)
Revision
1.12 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Sat Aug 18 23:44:52 2007 UTC
(2 years, 3 months ago)
by
agaric
Branch:
MAIN
Changes since
1.11: +93 -79 lines
Diff to
previous 1.11
Full chain of events following a vote defined up to cmt_term_*_push (renamed functions from cmt_push_term_* for consistency with cmt_term_*_set and the Drupal Way)... also, cvs commits work a lot better than svn commits when dealing with a cvs repository ;-)
Revision
1.9 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Sat Aug 18 13:07:04 2007 UTC
(2 years, 3 months ago)
by
agaric
Branch:
MAIN
Changes since
1.8: +25 -25 lines
Diff to
previous 1.8
fixed SQL in cmt_get_vocabularies so cmt_enabled matches > 0 -- which in SQL is not the same as = TRUE
Revision
1.7 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Sat Aug 18 12:37:11 2007 UTC
(2 years, 3 months ago)
by
agaric
Branch:
MAIN
Changes since
1.6: +10 -40 lines
Diff to
previous 1.6
fixed silly logic error - missing exclamation point - in form_alter that checked if a vocab was CMT or not, for the create/convert to cmt option. This error was introduced by the move away from using vocabulary 'ownership' (eg overwriting taxonomy, forum, image etc. indication of whose vocabulary) in favor of inner joining CMT to taxonomy vocab tables. - ben for agaric http://drupal.org/project/cmt
Revision
1.6 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Sat Aug 18 12:08:14 2007 UTC
(2 years, 3 months ago)
by
agaric
Branch:
MAIN
Changes since
1.5: +32 -33 lines
Diff to
previous 1.5
that was so strange. The whole cmt_admin.inc file was refusing to run; best I could determine PHP was not interpreting its spaces as spaces but running everything together. A Mac-Unix file exchange screw-up? Anyway, wasted a lot of time, used the content_types.inc from node module as an emptied out file and pasted my content into TextEdit, and then SubEthaEdit (TextWrangler may be the thing screwing it all up) and it works. Other fixes part of this, most significantly listing multiple new term forms if multiple vocabularies are CMT-enabled.
Revision
1.3 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Fri Aug 17 19:34:36 2007 UTC
(2 years, 3 months ago)
by
agaric
Branch:
MAIN
Changes since
1.2: +62 -310 lines
Diff to
previous 1.2
Division of code into module main functionality and admin pages (cmt_admin.inc), some code cleanup, functionality coming along
Revision
1.2 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Sat Jul 21 22:27:01 2007 UTC
(2 years, 4 months ago)
by
agaric
Branch:
MAIN
Changes since
1.1: +34 -33 lines
Diff to
previous 1.1
a number of fixes so if some fool downloads and installs this pre-alpha module, the administration pages will work (I'd broken everything by changing the basis of a vocabulary being community managed from if the module name assigned to it is cmt, to checking if there's a vid in the cmt_vocabulary table)
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.