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
|
Not in my install |
I've just done a clean install of v1.9.8.3, and there is no WYSIWYG editor in the features, no FCKeditor dir in lib/ 🙁 |
546 |
2007-11-29 16:42:54 |
Which Version of Tiki? |
Which version of Tiki do the screenshots and such apply to? |
544 |
2007-11-27 02:58:51 |
Re: 404 Error on images |
> 🙁 All images on this page show this error message: > "Not Found > > The requested URL /tmp/_htaccess_subdir was not found on this server. > > Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request." Thanks, maryluke for reporting: fixed. 😉 Cheers |
543 |
2007-11-24 15:15:36 |
agreed |
"Why? You guys do not realize how difficult it is for a newbie to get into Wiki. (You have forgotten?)" I agree. How can we get your help? |
542 |
2007-11-24 13:22:12 |
serious problem |
Following this thread I see the details of my problem. But nothing tells me where to find the Smarty php code I need to change (fix) ??? |
541 |
2007-11-22 16:26:52 |
Executive Summary and newbie support |
As a newbie, I find becoming familiar with Tiki daunting. I suggest an executive summary (for newbies). It would answer some of the following questions(with links): Where can I find a brief but comprehensive description of Tikiwiki and available features? I am an experienced professional editor but cannot figure out where or how to edit the documentation (without messing something up). The question marks (in the author documentation invitation) do not work (link?)for me. Solution: Assign a "councilor" to each newbie to answer quetions. Why? You guys do not realize how difficult it is for a newbie to get into Wiki. (You have forgotten?) By listening to newbies you will come to realizer how obscure current help documentation is (and can therefore fix it. I will help as soon as I figure out how. I also suggest a "newbie dumb question forum", where newbies can describe the difficulties that they are encountering. (I could fill many pages right now.) This would inform the documentation team. donz minor points: Why is there no edit help here in the comments section? Why is Tikiwiki underlined as misspelled? Why does it not correct? Where can I find answers to questions like these? Where can I post questions like these? |
539 |
2007-11-17 15:11:42 |
Who is "User?" |
Is this page for Joe User, who just wants to type a word or two into the search box and find what he's looking for? If so, shouldn't this be where the Boolian search terms, etc., are found? I think Joe wants to know what to put into the search box and what he can expect out of it. I've been VERY frustrated by the results of the search module and have been looking all over tw.o sites unsuccessfully for some help. The feature needs BIG help if my experience is what others also experience. |
538 |
2007-10-30 22:46:04 |
Case insensitive search |
The search is performed in case-insensitive fashion. It means that if you look for "tiki", you will find objects than contain the word "Tiki" and not "tiki". If it is case insensitive, it will find BOTH "Tiki" and "tiki." Which is it? Sensitive or insensitive? And,of course, "that contain" not "than contain." |
537 |
2007-10-30 22:36:37 |
Linking within a page |
I can't find the markup for linking within a page. Headings very nicely create a name anchor, but how do I call it out? The old pound sign (#) in front of the name of the location doesn't work. Thanks, Bill |
534 |
2007-10-27 01:33:18 |
404 Error on images |
🙁 All images on this page show this error message: "Not Found The requested URL /tmp/_htaccess_subdir was not found on this server. Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request." |
530 |
2007-10-13 03:23:56 |
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
|
Not in my install |
I've just done a clean install of v1.9.8.3, and there is no WYSIWYG editor in the features, no FCKeditor dir in lib/ 🙁 |
wiki page: Wysiwyg Editor Admin |
546 |
2007-11-29 16:42:54 |
Which Version of Tiki? |
Which version of Tiki do the screenshots and such apply to? |
wiki page: Forum Admin |
544 |
2007-11-27 02:58:51 |
Re: 404 Error on images |
> 🙁 All images on this page show this error message: > "Not Found > > The requested URL /tmp/_htaccess_subdir was not found on this server. > > Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request." Thanks, maryluke for reporting: fixed. 😉 Cheers |
wiki page: Apache Clean URLs |
543 |
2007-11-24 15:15:36 |
agreed |
"Why? You guys do not realize how difficult it is for a newbie to get into Wiki. (You have forgotten?)" I agree. How can we get your help? |
wiki page: Editorial Board Meeting 2007 09 |
542 |
2007-11-24 13:22:12 |
serious problem |
Following this thread I see the details of my problem. But nothing tells me where to find the Smarty php code I need to change (fix) ??? |
wiki page: Login |
541 |
2007-11-22 16:26:52 |
Executive Summary and newbie support |
As a newbie, I find becoming familiar with Tiki daunting. I suggest an executive summary (for newbies). It would answer some of the following questions(with links): Where can I find a brief but comprehensive description of Tikiwiki and available features? I am an experienced professional editor but cannot figure out where or how to edit the documentation (without messing something up). The question marks (in the author documentation invitation) do not work (link?)for me. Solution: Assign a "councilor" to each newbie to answer quetions. Why? You guys do not realize how difficult it is for a newbie to get into Wiki. (You have forgotten?) By listening to newbies you will come to realizer how obscure current help documentation is (and can therefore fix it. I will help as soon as I figure out how. I also suggest a "newbie dumb question forum", where newbies can describe the difficulties that they are encountering. (I could fill many pages right now.) This would inform the documentation team. donz minor points: Why is there no edit help here in the comments section? Why is Tikiwiki underlined as misspelled? Why does it not correct? Where can I find answers to questions like these? Where can I post questions like these? |
wiki page: Editorial Board Meeting 2007 09 |
539 |
2007-11-17 15:11:42 |
Who is "User?" |
Is this page for Joe User, who just wants to type a word or two into the search box and find what he's looking for? If so, shouldn't this be where the Boolian search terms, etc., are found? I think Joe wants to know what to put into the search box and what he can expect out of it. I've been VERY frustrated by the results of the search module and have been looking all over tw.o sites unsuccessfully for some help. The feature needs BIG help if my experience is what others also experience. |
wiki page: Search User |
538 |
2007-10-30 22:46:04 |
Case insensitive search |
The search is performed in case-insensitive fashion. It means that if you look for "tiki", you will find objects than contain the word "Tiki" and not "tiki". If it is case insensitive, it will find BOTH "Tiki" and "tiki." Which is it? Sensitive or insensitive? And,of course, "that contain" not "than contain." |
wiki page: Search Details |
537 |
2007-10-30 22:36:37 |
Linking within a page |
I can't find the markup for linking within a page. Headings very nicely create a name anchor, but how do I call it out? The old pound sign (#) in front of the name of the location doesn't work. Thanks, Bill |
wiki page: Wiki-Syntax Links |
534 |
2007-10-27 01:33:18 |
404 Error on images |
🙁 All images on this page show this error message: "Not Found The requested URL /tmp/_htaccess_subdir was not found on this server. Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request." |
wiki page: Apache Clean URLs |
530 |
2007-10-13 03:23:56 |
|