Difference between revisions of "IntergrateWiki"
Line 12: | Line 12: | ||
Secondly, items in the ToDo category need to be indexed in the todo list page on the main website. Todo items can easily be found from the category_links table in the wikidb. Username info may be a little more complicated. It should be possible to identify the person that created the page and who editied it last, however I havn't thought of a way to determine who the item is assigned to. |
Secondly, items in the ToDo category need to be indexed in the todo list page on the main website. Todo items can easily be found from the category_links table in the wikidb. Username info may be a little more complicated. It should be possible to identify the person that created the page and who editied it last, however I havn't thought of a way to determine who the item is assigned to. |
||
*Why bother pulling stuff from the wiki to the to-do list? If we still want the todo list on the simplest thing would be to just replace the description field with a short title that automatically links to the wiki page with the same name, and this would allow all the custom information to be stored as it is currently. mattrix |
*Why bother pulling stuff from the wiki to the to-do list? If we still want the todo list on the simplest thing would be to just replace the description field with a short title that automatically links to the wiki page with the same name, and this would allow all the custom information to be stored as it is currently. mattrix |
||
+ | **ToDo items get created by adding the todo item on the website then following the created link to the wiki |
||
+ | **ToDo items get created on the wiki and people have to manually enter the page title into the todo page |
||
+ | **ToDo items can be created either on the wiki or the todo page and the todo page checks the titles on the wiki with a simple SELECT cl_from FROM category_links WHERE cl_to=ToDo |
||
[[Category:ToDo]] |
[[Category:ToDo]] |
Revision as of 18:10, 14 October 2006
Intergrate this wiki into the filmsoc website
There two parts to this.
Intergrating the logon system
Options:
- Use the same method as the ForumIntergration
- A similar method would be useful for allowing display names
Intergrating the content
Secondly, items in the ToDo category need to be indexed in the todo list page on the main website. Todo items can easily be found from the category_links table in the wikidb. Username info may be a little more complicated. It should be possible to identify the person that created the page and who editied it last, however I havn't thought of a way to determine who the item is assigned to.
- Why bother pulling stuff from the wiki to the to-do list? If we still want the todo list on the simplest thing would be to just replace the description field with a short title that automatically links to the wiki page with the same name, and this would allow all the custom information to be stored as it is currently. mattrix
- ToDo items get created by adding the todo item on the website then following the created link to the wiki
- ToDo items get created on the wiki and people have to manually enter the page title into the todo page
- ToDo items can be created either on the wiki or the todo page and the todo page checks the titles on the wiki with a simple SELECT cl_from FROM category_links WHERE cl_to=ToDo