You might want to display all comments, and this script will retrieve them:
Wiki Output Sample Copy to clipboard {LIST(cache="n")}
{filter type="comment"}
{pagination max="10"}
{OUTPUT( template="table")}
{column field="title"}
{column field="comment_content"}
{column field="object_link" mode="raw"}
{column field="date"}
{OUTPUT}
{FORMAT( name="object_link")}
{display name="object_id" format="objectlink"}
{FORMAT}
{sort mode="date_desc"}
{LIST}
The FORMAT control block defines an object with the name object_link which is displayed in such a way that it is object_id which is displayed and formatted as objectlink; which makes the id clickable. This object reference is then used in the column control block in the body of the OUTPUT table.
This gives us the following result:
Title
|
Comment
|
Thread Id
|
Date
|
Alternative Backup Solution |
I installed phpMyBackupPro v.1.8 and modded tiki-login, including their scheduled backup script. I get my daily gziped backup delivered right into my mailbox. Included it into the Login because only logged users can post on my site - thus if nobody logs in, there's no need to update the last backup 😉 |
181 |
2006-06-11 07:59:56 |
Re: Are forums/articles etc wiki pages? |
... > At the moment I treat these as external links eg > http://tikiwiki.org/tiki-view_forum.php?forumId=6 > which doesn't feel correct. > > Should I ever merge or split a site, updating the links like this will be a nightmare! You can use just "tiki-view_forum.php?forumId=6" in links. Still appears as external, maybe, but will work at any domain the Tiki is installed at. |
180 |
2006-05-30 03:17:07 |
utf-8 encoding and for example de with char like öäüß |
utf-8 encoding and for example german (de) with char like öäüß or the witespace gets a mutation in webrowser to http://doc.tikiwiki.org/tiki-index_raw.php?page=Rewrite%20Rules&comzone=show http://doc.tikiwiki.org/page-Rewrite%20Rules result = error(404) |
179 |
2006-05-19 00:09:33 |
Re: Are forums/articles etc wiki pages? |
> How about blogs? etc > > Is there any wiki-syntax links for these? This is causing me grief as well. |
178 |
2006-05-05 18:29:36 |
How to link to a file in a File Gallery |
You could add a discussion of how to create a link in a Wiki page that links to a file in a File Gallery. While this information might probably belong here, to cover linking to this item from anywhere, it be referred to in or copied into Wiki-Syntax Links . |
176 |
2006-03-11 16:25:49 |
This should go up at the top (was Re: Navigation Difficulties) |
Update: after digging around and watching the TikiMovie "Preliminary Settings", I made some non-intuitive steps and pieced together the following: * Go to "Admin/Groups". * Click on the name of a group, i.e. "Registered" under "List of existing groups." * Click on the little "Assign permissions." link. From a usability standpoint, it would be better if the links had names that suggested "Here's how you can assign permission" ("Groups" could conceivably be guessed as where you go to edit permissions, but so could a lot of other things), and if the setting permissions page specified this, because I at least didn't quite find it obvious. ++ Jonathan Hayward, jonathan.hayward at pobox.com ** To see an award-winning website with stories, essays, artwork, ** games, and a four-dimensional maze, why not visit my home page? ** All of this is waiting for you at http://JonathansCorner.com |
175 |
2006-03-09 20:36:31 |
Navigation difficulties |
I managed once before to find the permissions page and begin to set permissions, but aside from the tikiadminusers.php and tikiadmingroups.php posted in an easy-to-overlook way, I cannot tell either from my admin menu or from this help page how to navigate to the pages that will tell me what to do. I view this as a serious usability bug: my tiki is capable of extensive customization, but I can't tell from the program or this help how to find it. How do I *navigate* to the pages that will let me set these permissions? If I can't navigate to those pages, I can't take advantage of this page. -Jonathan ( http://JonathansCorner.com ) |
174 |
2006-03-09 16:02:36 |
Typos |
There are a couple of typos: In Shout Box permissions, one permission is explained as "Can pot messages in shoutbox". (Should be "poSt".) Under User permissions, one permission has "Can create user bookmarksche user bookmarks" (should remove "sche". -Jonathan ( http://JonathansCorner.com ) |
173 |
2006-03-09 15:28:58 |
Documentation Images Missing |
Only seeing image placeholders in the Editing page. The IMG links seem to be good, so maybe the images are deleted? Anyone able to check and repost them if so? |
170 |
2006-01-05 13:45:41 |
Categories needs to point to a definition |
The difference between topics and categories was not clear to this old bear. We need to point to a definition, or glossary. |
168 |
2005-12-21 22:44:39 |
We see that this only gives us the information about the object (the comment in this case), but what if I want to have more information before visiting the comment?
One way to do this is to add a column which indicates the item being commented on. It is typically a wiki page or tracker item which is clickable and takes me there.
So let's make some changes and see what we have:
Wiki Output Sample Copy to clipboard {LIST(cache="n")}
{filter type="comment"}
{pagination max="10"}
{OUTPUT( template="table")}
{column field="contributors"}
{column field="title"}
{column field="comment_content"}
{column field="parent_object_title" mode="raw"}
{column field="object_link" mode="raw"}
{column field="date"}
{OUTPUT}
{FORMAT( name="object_link")}
{display name="object_id" format="objectlink"}
{FORMAT}
{FORMAT( name="parent_object_title")}
{display name="parent_object_type"}: {display name="wikiplugin_objectlink" format="wikiplugin" type="parent_object_type" id="parent_object_id"}
{FORMAT}
{sort mode="date_desc"}
{LIST}
Here we have just added a new column whose label is "Parent Object".
The new FORMAT control block formats the parent_object_title field, which is the title of the comment's parent object, then with {display} tag we first display the name of the parent object, which is stored in the parent_object_type field. For example, if the parent object is a trackeritem, it will display "trackeritem:", and finally we display the link to the parent object, using the wikiplugin_objectlink plugin. This plugin allows you to create a link to a Tiki object according to its type and its identifier. Here you specify the link format as "wikiplugin", the object type as parent_object_type, and the object id as parent_object_id. For example, if the parent object is a trackeritem with id 1, this will generate a link to "tiki-view_tracker_item.php?itemId=1".
So you get a field that displays the name and link of the comment's parent object. For example, if the comment is linked to an item called "This is my first item", you display "trackeritem: This is my first item".
This gives us the following result:
Title
|
Comment
|
Parent Object
|
Thread Id
|
Date
|
Alternative Backup Solution |
I installed phpMyBackupPro v.1.8 and modded tiki-login, including their scheduled backup script. I get my daily gziped backup delivered right into my mailbox. Included it into the Login because only logged users can post on my site - thus if nobody logs in, there's no need to update the last backup 😉 |
wiki page: Backup |
181 |
2006-06-11 07:59:56 |
Re: Are forums/articles etc wiki pages? |
... > At the moment I treat these as external links eg > http://tikiwiki.org/tiki-view_forum.php?forumId=6 > which doesn't feel correct. > > Should I ever merge or split a site, updating the links like this will be a nightmare! You can use just "tiki-view_forum.php?forumId=6" in links. Still appears as external, maybe, but will work at any domain the Tiki is installed at. |
wiki page: Wiki-Syntax Links |
180 |
2006-05-30 03:17:07 |
utf-8 encoding and for example de with char like öäüß |
utf-8 encoding and for example german (de) with char like öäüß or the witespace gets a mutation in webrowser to http://doc.tikiwiki.org/tiki-index_raw.php?page=Rewrite%20Rules&comzone=show http://doc.tikiwiki.org/page-Rewrite%20Rules result = error(404) |
wiki page: Apache Clean URLs |
179 |
2006-05-19 00:09:33 |
Re: Are forums/articles etc wiki pages? |
> How about blogs? etc > > Is there any wiki-syntax links for these? This is causing me grief as well. |
wiki page: Wiki-Syntax Links |
178 |
2006-05-05 18:29:36 |
How to link to a file in a File Gallery |
You could add a discussion of how to create a link in a Wiki page that links to a file in a File Gallery. While this information might probably belong here, to cover linking to this item from anywhere, it be referred to in or copied into Wiki-Syntax Links . |
wiki page: File Gallery User |
176 |
2006-03-11 16:25:49 |
This should go up at the top (was Re: Navigation Difficulties) |
Update: after digging around and watching the TikiMovie "Preliminary Settings", I made some non-intuitive steps and pieced together the following: * Go to "Admin/Groups". * Click on the name of a group, i.e. "Registered" under "List of existing groups." * Click on the little "Assign permissions." link. From a usability standpoint, it would be better if the links had names that suggested "Here's how you can assign permission" ("Groups" could conceivably be guessed as where you go to edit permissions, but so could a lot of other things), and if the setting permissions page specified this, because I at least didn't quite find it obvious. ++ Jonathan Hayward, jonathan.hayward at pobox.com ** To see an award-winning website with stories, essays, artwork, ** games, and a four-dimensional maze, why not visit my home page? ** All of this is waiting for you at http://JonathansCorner.com |
wiki page: Permissions |
175 |
2006-03-09 20:36:31 |
Navigation difficulties |
I managed once before to find the permissions page and begin to set permissions, but aside from the tikiadminusers.php and tikiadmingroups.php posted in an easy-to-overlook way, I cannot tell either from my admin menu or from this help page how to navigate to the pages that will tell me what to do. I view this as a serious usability bug: my tiki is capable of extensive customization, but I can't tell from the program or this help how to find it. How do I *navigate* to the pages that will let me set these permissions? If I can't navigate to those pages, I can't take advantage of this page. -Jonathan ( http://JonathansCorner.com ) |
wiki page: Permissions |
174 |
2006-03-09 16:02:36 |
Typos |
There are a couple of typos: In Shout Box permissions, one permission is explained as "Can pot messages in shoutbox". (Should be "poSt".) Under User permissions, one permission has "Can create user bookmarksche user bookmarks" (should remove "sche". -Jonathan ( http://JonathansCorner.com ) |
wiki page: Permissions |
173 |
2006-03-09 15:28:58 |
Documentation Images Missing |
Only seeing image placeholders in the Editing page. The IMG links seem to be good, so maybe the images are deleted? Anyone able to check and repost them if so? |
wiki page: Tutorial - Editing Wiki Pages |
170 |
2006-01-05 13:45:41 |
Categories needs to point to a definition |
The difference between topics and categories was not clear to this old bear. We need to point to a definition, or glossary. |
wiki page: Articles |
168 |
2005-12-21 22:44:39 |
|