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
|
Webmail, Server Storage Space, and Multiple Accounts |
When using the webmail interface, does Tiki download the emails and email attachments to the server that is hosting the Tiki? If so, is there a way to limit the space available to each users webmail account? Also, is the webmail interface able to check multiple email addresses per user and list them in a single window? An example would be like the way that Google does with gmail. |
528 |
2007-10-11 19:35:58 |
sounds easy enough.. but |
well i must be doing something wrong then because i think the data field is automatically stripped of JS code.. i sure wish i knew how to stop this. |
525 |
2007-10-04 20:13:33 |
Keeping admin login/password safe when User Admin is assigned to a Group |
Was there going to be some changes in 1.9.8 to allow User Admin privileges to be assigned to a particular Group but somehow avoiding the risk that someone from this Group would amend the Admin login/password. I've just upgraded a test site to 1.9.8 and have been trying to find out what's new in this area. |
509 |
2007-09-18 13:04:10 |
Page not 100% relevant to Categories Admin page |
From the Administration : Category page, you click on the ? in the circle and it brings you to this page, which is cool, but some of the config options are not explained, like Show Category Path (though this one is fairly intuitive) and Show Category Objects I'm not sure the scope of those options, where they appear, and specifically what the Objects is referring to. |
508 |
2007-09-12 20:19:28 |
Perms |
In 1.9.7, you can not see a RSS on an object that is not visible as anonymous. |
507 |
2007-09-11 17:08:04 |
php/apache compilation on gentoo |
If you have to recompile php, there are a list of options Put for example in /etc/portage/package.use, the line dev-lang/php -* ctype pcre session unicode cli apache2 expat fastbuild ftp gd hash iconv memlimit mysql nls pic mcrypt pdo reflection simplexml sockets spl ssl tokenizer truetype xml xsl zlib Add to this line ldap if you need Then compile with emerge -va dev-lang/php Then restart the apache /etc/init.d/apache restart |
498 |
2007-09-05 20:48:00 |
Re: V1.9.8 tiki_p_admin_file_galleries permissions |
sounds like a bug which should be logged at dev.tikiwiki.org Thanks! M 😉 |
493 |
2007-08-17 04:52:28 |
V1.9.8 tiki_p_admin_file_galleries permissions |
It seems (running BRANCH-1-9) that tiki_p_admin_file_galleries does not include any other permissions (including view). Also when listing galleries that i do have permission to upload to the action icon for uploading on the list page is not displayed. |
492 |
2007-08-16 09:53:29 |
step 4 |
does step 4 make any sense? after all, this page is about upgrade from 1.9.x to 1.9.7. or maybe i am missing something... |
490 |
2007-08-09 03:06:50 |
Too many sgiggles |
OK, it finally bothered me enough to fix it. A non-blanking space is ~hs~ , not ~hs~~ ! The latter puts an extra ~ in the text! |
489 |
2007-08-08 19:14: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
|
Webmail, Server Storage Space, and Multiple Accounts |
When using the webmail interface, does Tiki download the emails and email attachments to the server that is hosting the Tiki? If so, is there a way to limit the space available to each users webmail account? Also, is the webmail interface able to check multiple email addresses per user and list them in a single window? An example would be like the way that Google does with gmail. |
wiki page: Webmail |
528 |
2007-10-11 19:35:58 |
sounds easy enough.. but |
well i must be doing something wrong then because i think the data field is automatically stripped of JS code.. i sure wish i knew how to stop this. |
wiki page: AdSense |
525 |
2007-10-04 20:13:33 |
Keeping admin login/password safe when User Admin is assigned to a Group |
Was there going to be some changes in 1.9.8 to allow User Admin privileges to be assigned to a particular Group but somehow avoiding the risk that someone from this Group would amend the Admin login/password. I've just upgraded a test site to 1.9.8 and have been trying to find out what's new in this area. |
wiki page: Users |
509 |
2007-09-18 13:04:10 |
Page not 100% relevant to Categories Admin page |
From the Administration : Category page, you click on the ? in the circle and it brings you to this page, which is cool, but some of the config options are not explained, like Show Category Path (though this one is fairly intuitive) and Show Category Objects I'm not sure the scope of those options, where they appear, and specifically what the Objects is referring to. |
wiki page: Category |
508 |
2007-09-12 20:19:28 |
Perms |
In 1.9.7, you can not see a RSS on an object that is not visible as anonymous. |
wiki page: PluginRSS |
507 |
2007-09-11 17:08:04 |
php/apache compilation on gentoo |
If you have to recompile php, there are a list of options Put for example in /etc/portage/package.use, the line dev-lang/php -* ctype pcre session unicode cli apache2 expat fastbuild ftp gd hash iconv memlimit mysql nls pic mcrypt pdo reflection simplexml sockets spl ssl tokenizer truetype xml xsl zlib Add to this line ldap if you need Then compile with emerge -va dev-lang/php Then restart the apache /etc/init.d/apache restart |
wiki page: Requirements |
498 |
2007-09-05 20:48:00 |
Re: V1.9.8 tiki_p_admin_file_galleries permissions |
sounds like a bug which should be logged at dev.tikiwiki.org Thanks! M 😉 |
wiki page: File Gallery User |
493 |
2007-08-17 04:52:28 |
V1.9.8 tiki_p_admin_file_galleries permissions |
It seems (running BRANCH-1-9) that tiki_p_admin_file_galleries does not include any other permissions (including view). Also when listing galleries that i do have permission to upload to the action icon for uploading on the list page is not displayed. |
wiki page: File Gallery User |
492 |
2007-08-16 09:53:29 |
step 4 |
does step 4 make any sense? after all, this page is about upgrade from 1.9.x to 1.9.7. or maybe i am missing something... |
wiki page: Upgrade 1.9.x to 1.9.7 |
490 |
2007-08-09 03:06:50 |
Too many sgiggles |
OK, it finally bothered me enough to fix it. A non-blanking space is ~hs~ , not ~hs~~ ! The latter puts an extra ~ in the text! |
wiki page: Wiki-Syntax Text |
489 |
2007-08-08 19:14:47 |
|