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
|
Indent block of text |
Is there a way to indent a block of text? ;:This text is indented ;:this is also indented, but there are extra linefeeds between |
351 |
2007-05-26 04:41:13 |
How integrated is PHPBBS with WikiTiki? |
I see that clicking on the "discuss" button takes you to a general forum. Are there other ways in which the forum is integrated? And can it be accessed directly, that is, without clicking a "discuss" button? |
336 |
2007-05-24 01:22:36 |
importedFiles.tpl and metadata / metadonnées |
Bonjour, Hello (English down there), Je cherche à utiliser tikiwiki comme système de GED (Gestion Electronique de Documents, DAM ou DMS en anglais). Je sais qu'existe ranchBE mais son application semble très spécifique. Parmi les besoins de notre organisation (50 salariés), nous avons besoins de classer nos documents et cela passe par l'attribution de métadonnées à nos fichiers. Est-ce qu'il suffit de modifier les Templates (comme importedFiles.tpl) pour que les variables correspondant aux champs ajoutés soient enregistrées dans la base de donnée? Les recherches prendront-elles en compte ces nouvelles variables? - Merdi de vos réponses I plan to use tikiwiki as a Document Management System (GED in French). I know that ranchBE exists but it seems to be set for a very specific use. Among the needs of our organisation (50 employees), we have to sort our files, and that means assigning them metadata. Do I just need to edit the Templates (like importedFiles.tpl) for the news fields corresponding variables to be storde in the database? Will the searches then include them? What else should I do? - Thanks for your answers Arsène My future tikiwiki id will be doc2. |
334 |
2007-05-23 14:26:43 |
Re: Upgrade to 1.9 forces users to change password |
AFAICT, this just gives user the permission to change their password. Your problem maybe comes from the setting "Password invalid after days:" in tiki-admin.php?page=login Increase that value and users will not be required to update their password. |
333 |
2007-05-22 21:15:43 |
Upgrade to 1.9 forces users to change password |
Executing db/tiki_1.8to1.9.sql enables the change_password preference, making the upgrade non-transparent. You may want to manually turn change_password off after running the upgrade script to avoid unnecessarily inconveniencing users. See Changeset 10853 . |
332 |
2007-05-22 18:39:16 |
Re: Help |
> I'm curious how to go about using this site. I can't seem to find my way around. Use the "Documentation Menu" links to find info on specific Tiki features, etc. If you have questions, the best places to ask are the forums at tikiwiki.org, or on IRC. |
300 |
2007-05-16 02:39:51 |
How to create page inside new module? |
help Please provide documentation on how to create a new wiki page that appears inside a new menu module. Alternately, once someone creates a new menu module, how do you create an actual page that links to this menu heading? |
297 |
2007-05-15 15:53:19 |
Clarification of descriptions |
"If you would like to add a description, type the link like this: * The Wiki Way " Its not very clear here which is the Wiki link and which is the description |
296 |
2007-05-14 12:32:34 |
SPecific Host System Guides |
What's up with all these nonsense comments? Is someone abusing this site for encoded message passing on some clandestine project? I'm a doc newbie. I'd like to add a few pages from my blog related to siteground.com installation. I've had no problems and it makes it much more convenient for newbie admins who have enough to learn about. |
294 |
2007-05-13 16:28:30 |
Help |
I'm curious how to go about using this site. I can't seem to find my way around. |
252 |
2007-05-09 21:59:04 |
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
|
Indent block of text |
Is there a way to indent a block of text? ;:This text is indented ;:this is also indented, but there are extra linefeeds between |
wiki page: Wiki-Syntax Text |
351 |
2007-05-26 04:41:13 |
How integrated is PHPBBS with WikiTiki? |
I see that clicking on the "discuss" button takes you to a general forum. Are there other ways in which the forum is integrated? And can it be accessed directly, that is, without clicking a "discuss" button? |
wiki page: Forums |
336 |
2007-05-24 01:22:36 |
importedFiles.tpl and metadata / metadonnées |
Bonjour, Hello (English down there), Je cherche à utiliser tikiwiki comme système de GED (Gestion Electronique de Documents, DAM ou DMS en anglais). Je sais qu'existe ranchBE mais son application semble très spécifique. Parmi les besoins de notre organisation (50 salariés), nous avons besoins de classer nos documents et cela passe par l'attribution de métadonnées à nos fichiers. Est-ce qu'il suffit de modifier les Templates (comme importedFiles.tpl) pour que les variables correspondant aux champs ajoutés soient enregistrées dans la base de donnée? Les recherches prendront-elles en compte ces nouvelles variables? - Merdi de vos réponses I plan to use tikiwiki as a Document Management System (GED in French). I know that ranchBE exists but it seems to be set for a very specific use. Among the needs of our organisation (50 employees), we have to sort our files, and that means assigning them metadata. Do I just need to edit the Templates (like importedFiles.tpl) for the news fields corresponding variables to be storde in the database? Will the searches then include them? What else should I do? - Thanks for your answers Arsène My future tikiwiki id will be doc2. |
wiki page: Meta Elements |
334 |
2007-05-23 14:26:43 |
Re: Upgrade to 1.9 forces users to change password |
AFAICT, this just gives user the permission to change their password. Your problem maybe comes from the setting "Password invalid after days:" in tiki-admin.php?page=login Increase that value and users will not be required to update their password. |
wiki page: Upgrade 1.8 to 1.9 |
333 |
2007-05-22 21:15:43 |
Upgrade to 1.9 forces users to change password |
Executing db/tiki_1.8to1.9.sql enables the change_password preference, making the upgrade non-transparent. You may want to manually turn change_password off after running the upgrade script to avoid unnecessarily inconveniencing users. See Changeset 10853 . |
wiki page: Upgrade 1.8 to 1.9 |
332 |
2007-05-22 18:39:16 |
Re: Help |
> I'm curious how to go about using this site. I can't seem to find my way around. Use the "Documentation Menu" links to find info on specific Tiki features, etc. If you have questions, the best places to ask are the forums at tikiwiki.org, or on IRC. |
wiki page: MyAccount |
300 |
2007-05-16 02:39:51 |
How to create page inside new module? |
help Please provide documentation on how to create a new wiki page that appears inside a new menu module. Alternately, once someone creates a new menu module, how do you create an actual page that links to this menu heading? |
wiki page: Using Wiki Pages |
297 |
2007-05-15 15:53:19 |
Clarification of descriptions |
"If you would like to add a description, type the link like this: * The Wiki Way " Its not very clear here which is the Wiki link and which is the description |
wiki page: Wiki-Syntax Links |
296 |
2007-05-14 12:32:34 |
SPecific Host System Guides |
What's up with all these nonsense comments? Is someone abusing this site for encoded message passing on some clandestine project? I'm a doc newbie. I'd like to add a few pages from my blog related to siteground.com installation. I've had no problems and it makes it much more convenient for newbie admins who have enough to learn about. |
wiki page: Installation |
294 |
2007-05-13 16:28:30 |
Help |
I'm curious how to go about using this site. I can't seem to find my way around. |
wiki page: MyAccount |
252 |
2007-05-09 21:59:04 |
|