/[drupal]/contributions/modules/taxonomy_user/README.txt
ViewVC logotype

Contents of /contributions/modules/taxonomy_user/README.txt

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


Revision 1.4 - (show annotations) (download)
Sat Dec 16 17:02:13 2006 UTC (2 years, 11 months ago) by alexb
Branch: MAIN
CVS Tags: HEAD
Changes since 1.3: +3 -8 lines
File MIME type: text/plain
taxonomy_user/term page allows to list only nodes tagged by the current user
1
2 TAXONOMY_USER MODULE
3
4 alex_b, Development Seed
5
6 INSTALLATION:
7
8 Drop taxonomy_user files into your modules directory, go to admin/modules and
9 turn it on. Go to admin/taxonomy and enable user taxonomy AND free tagging for a vocabulary of your choice.
10
11 IMPORTANT:
12
13 It is recommended to use a fresh vocabulary for taxonomy_user. On a
14 taxonomy_user enabled vocabulary, previous node-term relations could be lost if
15 a node is edited.
16
17 If you want to convert consisting term - node relations to taxonomy_user term
18 relations, use the following SQL script after installation:
19
20 INSERT INTO term_node_user( uid, tid, nid )
21 SELECT <uid> , tn.tid, tn.nid
22 FROM term_node tn
23 JOIN term_data td ON td.tid = tn.tid
24 WHERE td.vid = <vid>;
25
26 <uid> ... the user id you want to associate the legacy terms to
27 <vid> ... the vocabulary that will be user taxonomy enabled
28
29 NOTES:
30
31 * Only mysql databases are supported so far.

  ViewVC Help
Powered by ViewVC 1.1.2