Parent Directory
|
Revision Log
|
Revision Graph
Renamed all README files to README.txt, as discussed in http://drupal.org/node/11517. I have done this using some command line magic: find . -name README -exec cp '{}' '{}.txt' \; -exec cvs remove -f '{}' \; -exec cvs add '{}.txt' \; I will update all occurences of 'README' to 'README.txt' in the conrtib CVS, soon. I'll also rename LICENSE, CHANGELOG etc. files as soon as I get around to it.
| 1 | weitzman | 1.2 | This module enables importing of nodes of any type into Drupal. It accepts as input a comma separated values (CSV) file. |
| 2 | |||
| 3 | Your CSV file must contain field names in its first row. The following fields are required: | ||
| 4 | - title | ||
| 5 | - uid or name [both are ignored if current user does not have 'administer nodes' permission. if user does have this permission, name is used if available, otherwise uid, otherwise 'anonymous user' is assumed] | ||
| 6 | - type | ||
| 7 | |||
| 8 | Your CSV file should use quotes around strings that contain a comma. Parsing is handled by the fgetcsv function. See http://www.php.net/fgetcsv for details. | ||
| 9 | |||
| 10 | Field names should match columns in your database. Field values should match those usually entered into your DB. | ||
| 11 | |||
| 12 | This module adds a 'node import' link to your Navigation menu which is viewable by users who have the 'node import' permission. | ||
| 13 |
| ViewVC Help | |
| Powered by ViewVC 1.1.2 |