Many Feed API fields do not have descriptions in their schema:
- Field feedapi.feed_type has no description.
- Field feedapi.processors has no description.
- Field feedapi.parsers has no description.
- Field feedapi.checked has no description.
- Field feedapi.hash has no description.
- Field feedapi.link has no description.
- Field feedapi.settings has no description.
- Field feedapi.half_done has no description.
- Field feedapi.skip has no description.
- Field feedapi_stat.id has no description.
- Field feedapi_stat.type has no description.
- Field feedapi_stat.timestamp has no description.
- Field feedapi_stat.time has no description.
- Field feedapi_stat.value has no description.
See http://drupal.org/node/146843
See http://jaspan.com/drupal-6s-self-documenting-database-schema
| Comment | File | Size | Author |
|---|---|---|---|
| #8 | 314384-8_schema_desc.patch | 2.74 KB | aron novak |
| #6 | 314384_schema_desc.patch | 2.74 KB | aron novak |
Comments
Comment #1
MatteNoob commentedHello,
I've got CCK and Feed API installed. I'd like to create a node type where users can input their feed URL, but I need the Feed URL input field to be more flexible, so I can move it around with the other fields (made with CCK).
The "Feed URL" does not turn up under: "admin/content/node-type/[node-type-name]/fields". Is it possible to make it turn up there, or are there any fixes that will do that?
Comment #2
alex_b commentedNot a FeedAPI issue. Please refer to hook_form_alter() on http://api.drupal.org to modify the form.
Comment #3
alex_b commentedO, sorry, did not read the original issue first :( #2 goes for #1 - original issue is of course valid.
#1: please do not hijack issues but open new ones for new topics.
Comment #4
aron novakThis is such an addition what I would like to see in FeedAPI 1.9.
Comment #5
aron novakComment #6
aron novakDone
Comment #7
lyricnz commented+ 'description' => 'Timestamp of the most earlier possible next refresh time',
Suggest "Timestamp of the earliest possible next refresh time"
+ 'description' => 'Link to the source site of the feed',
Suggest "URL of the source site of the feed"
+ 'description' => 'Indicates if not of the feed items were processed at the last cron run',
Presumably you mean "not all"
Does this patch cover ALL of the fields? I am not at my dev PC, so can't provide a real patch, or check using Schema module.
Comment #8
aron novakThank you for catching these problems :)
A new patch is here. Yes, ALL of the fields have description now.
Comment #9
alex_b commentedRename:
Always XML feed. Not used -> Type of feed
Type of the data, eg. process_time, memory_increase -> Type of data
Otherwise RTBC. Thank you!
Comment #10
aron novakcommitted