Are there any examples of usage of module - qadrawdi - "Quick and Dirty Raw Data Import"
http://drupal.org/project/qadrawdi ... but no D7 version yet released ..
This module provides the functionality to import raw data into drupal nodes. It offers an customizable path that can be queried with a HTTP POST request to store the desired data into a node. The path can be protected by a key that must be passed along at each POST request.
The quick and dirty raw data import module does by far not provide advanced methods but it gives the possibility to quickly import node entries into an existing drupal installation. I used it to convert a pligg website with round about 6000 pages into a drupal one with the help of this module and a ruby script reading the database and firing the post requests within 20 minutes.
Here are the functions in qadrawdi.module
but where/how are they invoked?
function qadrawdi_init()
function qadrawdi_menu()
function qadrawdi_admin
function qadrawdi_callback
function qadrawdi_create_node
function qadrawdi_create_node($type, $username, &$title, &$body, $vocabulary = 1, $tags = array())
In fact does this module work in drupal-7.0? I've changed the *.info header from "6.x" to "7.x" but I'm not sure if that is enough to make it work in drupal-7.0.