Difference between revisions of "IntergrateWiki"
(4 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
+ | {{Historical}} |
||
+ | |||
== Intergrate this wiki into the filmsoc website == |
== Intergrate this wiki into the filmsoc website == |
||
There two parts to this. |
There two parts to this. |
||
+ | ==Intergrating the logon system== |
||
− | Firstly, intergrating the logon system. Links to the wiki need to set a cookie and session data that makes it look like the user is still logged in. Usernames need to be copied or linked. |
||
+ | Options: |
||
− | 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. |
||
+ | * 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 |
||
[[Category:ToDo]] |
[[Category:ToDo]] |
Latest revision as of 23:16, 9 February 2019
This page is obsolete. It is kept for historical interest only. It may document extensions or features that are obsolete and/or no longer supported. Do not rely on the information here being up-to-date. |
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