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
|
Install by hand? |
How do you install a mod by hand? |
445 |
2007-07-11 22:21:56 |
Re: documentation for editor problems |
Your screen may look different, depending on which theme you're using. Normally, the QuickLinks are not shown, by default. You'll need to click in order to show them HTH -R > I've not been able to find any documentation to explain what to do when the editor page doesn't look as described/shown on this page. After installing three times, I can't get the quicklinks to show when 'edit' page button is clicked. I don't know if this is a configuration problem or an installation problem or just a bug. Can anyone help? |
443 |
2007-07-10 19:10:04 |
HTML Pages |
I could not find any useful reference how to include / import HTML. The only thing I could do to copy-paste the HTML code to the body of the Wikipage and check the "allow HTML" checkbox. For simple HTML structures it worked, but for more complex ones the results were unstatisfactory. How to point to a local HTML file so it can be opened..? Thanks in Advance! |
437 |
2007-07-05 13:20:11 |
Re: documentation for editor problems |
> I've not been able to find any documentation to explain what to do when the editor page doesn't look as described/shown on this page. After installing three times, I can't get the quicklinks to show when 'edit' page button is clicked. I don't know if this is a configuration problem or an installation problem or just a bug. Can anyone help? I'm quite new to Wiki but the Editor looks a bit different for me as well, even if most problems were eliminated by allowing the items in the Feature list and allow to use them by the appropriate groups. |
436 |
2007-07-05 13:05:15 |
Re: wysiwyg |
> I've installed 1.9.7 too and i followed the instructions posted here: > http://tikiwiki.org/tiki-index_raw.php?page=wysiwyg > > Either way i can't enable it in the wiki admin page. No idea myself, Gelo. I never tried using wysiwyg in 1.9.x (it's very limited and not compatible with wiki markup in some other pages of the same Tiki site). In 1.10 it seems to be much better... (I'd suggest you to wait for 1.10.0 to be released...., whenever this happens - no idea when) Cheers |
423 |
2007-06-11 17:54:00 |
wysiwyg |
I've installed 1.9.7 too and i followed the instructions posted here: http://tikiwiki.org/tiki-index_raw.php?page=wysiwyg Either way i can't enable it in the wiki admin page. |
422 |
2007-06-10 15:26:06 |
documentation for editor problems |
I've not been able to find any documentation to explain what to do when the editor page doesn't look as described/shown on this page. After installing three times, I can't get the quicklinks to show when 'edit' page button is clicked. I don't know if this is a configuration problem or an installation problem or just a bug. Can anyone help? |
415 |
2007-06-08 07:41:48 |
Debug 1.9, 1.10 |
If you have problem setting webmail - in reception You can change in lib/webmail/net_pop3.php 115c115 < var $_debug = false; --- > var $_debug = true; |
401 |
2007-06-05 17:24:00 |
Re: Own dogfood |
Yes! I added rating to dev.tikiwiki.org and we can add here too soon... |
400 |
2007-06-04 00:57:49 |
Disable tiki-install.php? |
Is there no option to disable tiki-install.php after the upgrade? "Click here to disable the install script and proceed into tiki" |
397 |
2007-06-02 00:13:47 |
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
|
Install by hand? |
How do you install a mod by hand? |
wiki page: Mods User |
445 |
2007-07-11 22:21:56 |
Re: documentation for editor problems |
Your screen may look different, depending on which theme you're using. Normally, the QuickLinks are not shown, by default. You'll need to click in order to show them HTH -R > I've not been able to find any documentation to explain what to do when the editor page doesn't look as described/shown on this page. After installing three times, I can't get the quicklinks to show when 'edit' page button is clicked. I don't know if this is a configuration problem or an installation problem or just a bug. Can anyone help? |
wiki page: Wiki Page Editor |
443 |
2007-07-10 19:10:04 |
HTML Pages |
I could not find any useful reference how to include / import HTML. The only thing I could do to copy-paste the HTML code to the body of the Wikipage and check the "allow HTML" checkbox. For simple HTML structures it worked, but for more complex ones the results were unstatisfactory. How to point to a local HTML file so it can be opened..? Thanks in Advance! |
wiki page: Wiki Page Editor |
437 |
2007-07-05 13:20:11 |
Re: documentation for editor problems |
> I've not been able to find any documentation to explain what to do when the editor page doesn't look as described/shown on this page. After installing three times, I can't get the quicklinks to show when 'edit' page button is clicked. I don't know if this is a configuration problem or an installation problem or just a bug. Can anyone help? I'm quite new to Wiki but the Editor looks a bit different for me as well, even if most problems were eliminated by allowing the items in the Feature list and allow to use them by the appropriate groups. |
wiki page: Wiki Page Editor |
436 |
2007-07-05 13:05:15 |
Re: wysiwyg |
> I've installed 1.9.7 too and i followed the instructions posted here: > http://tikiwiki.org/tiki-index_raw.php?page=wysiwyg > > Either way i can't enable it in the wiki admin page. No idea myself, Gelo. I never tried using wysiwyg in 1.9.x (it's very limited and not compatible with wiki markup in some other pages of the same Tiki site). In 1.10 it seems to be much better... (I'd suggest you to wait for 1.10.0 to be released...., whenever this happens - no idea when) Cheers |
wiki page: WYSIWYG |
423 |
2007-06-11 17:54:00 |
wysiwyg |
I've installed 1.9.7 too and i followed the instructions posted here: http://tikiwiki.org/tiki-index_raw.php?page=wysiwyg Either way i can't enable it in the wiki admin page. |
wiki page: WYSIWYG |
422 |
2007-06-10 15:26:06 |
documentation for editor problems |
I've not been able to find any documentation to explain what to do when the editor page doesn't look as described/shown on this page. After installing three times, I can't get the quicklinks to show when 'edit' page button is clicked. I don't know if this is a configuration problem or an installation problem or just a bug. Can anyone help? |
wiki page: Wiki Page Editor |
415 |
2007-06-08 07:41:48 |
Debug 1.9, 1.10 |
If you have problem setting webmail - in reception You can change in lib/webmail/net_pop3.php 115c115 < var $_debug = false; --- > var $_debug = true; |
wiki page: Webmail |
401 |
2007-06-05 17:24:00 |
Re: Own dogfood |
Yes! I added rating to dev.tikiwiki.org and we can add here too soon... |
wiki page: Features |
400 |
2007-06-04 00:57:49 |
Disable tiki-install.php? |
Is there no option to disable tiki-install.php after the upgrade? "Click here to disable the install script and proceed into tiki" |
wiki page: Upgrade 1.9.x to 1.9.7 |
397 |
2007-06-02 00:13:47 |
|