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
|
Is this syntax correct? |
I don't seem to be able to include a poll in a wiki page with: {poll id=2} as indicated in this doc page. However, this does work: {POLL(pollId=>2)}{POLL} What's the difference between the two methods? |
202 |
2006-09-21 10:09:17 |
hmm... |
isn't typing just [skype:echo123?chat] doing the same and easily enough ? Result: skype:echo123?chat maybe better would be to support (instead of the external icon) an icon depending on the protocol used at the beginning of the URL |
198 |
2006-08-27 09:23:21 |
Own dogfood |
SPeaking about own dog food - perhaps a rating field in the tracker can be good |
192 |
2006-08-05 12:47:07 |
HELP with configuration |
Hi everybody. I need help with the configuration of tikiwiki and active directory. I'm using the followings: PHP Version 5.1.4 Apache/2.2.2 (Win32) running on windows server 2003 Active Directory on Microsoft sever 2003 tikiwiki-1.9.3.2. I tried to use the examples of configuration found in tikiwiki.org with no results. The configuration I'm using is the following. Host : libad1.library.nova.edu Port : 389 Scope: Sub Base DN: dc=library,dc=nova,dc=edu Ldap User DN: OU=Systems Users User Attrib: samAccountName User OC: user Group dn blank Group attrib blank Group OC blank Member Attrib blank Member is dn n LDAP Admin User: pipopo pipopo is the domain administrator Please let me know what to correct... thanks, christian |
191 |
2006-08-04 19:01:53 |
location of "Batch loading directory" not intuitive |
Sorry, there is nothing "intuitive" about where to put the "Batch loading directory." Does it go in the html directory, in the tiki directory, elsewhere? This part of the documentation needs to be updated. edalton addendum: after extensive experimentation I figured out that the batch loading directory needs to go in the tiki directory. There may be a way around this, but I didn't find one. Just thought I should share this with everyone. |
189 |
2006-08-03 12:58:59 |
Fantastico? |
Do we want to mention Fanstasico-based installs? Lots of web hosts have the Fantastico CPanel with Tiki. This makes installation VERY easy. |
187 |
2006-07-26 19:44:08 |
add link to tiki samples |
On this intro page, we should add a link to sample sites using Tiki. There used to be a directory on TW.o that folks could submit their own Tiki to. Is it still active? Or a community webring? |
186 |
2006-07-26 19:42:55 |
Re: Thanks and can we get it functional? |
I updated my chat files to 1.9.4. It behaves much better - it functions now. I had reviewed some of the files and thought that the feature was not being updated, but the new files have been worked on since 1.9.2. I am reviewing the operation of the chat now that I have it functioning on my multi-tiki install. I am going to spend some time working on the chat because I really want to use the feature. I want to see if the logging has been worked on and whether it works as well. I need to be able to log the chats for future reference. As I figure things out and attempt to fix problems as I find them, I'll try to do some work on the documentation too. I can't seem to log in on http://dev.tikiwiki.org/FeatureDev . Is there a trick? Jake > Hi Jake! > > Thanks for the state of the union on the Chat Feature. > > I would love to get this feature working even if it's basic > > Can you make that page by adding a link from here instead? > http://dev.tikiwiki.org/FeatureDev > > Can you help with the code too? > > Thanks! > > M 😉 |
185 |
2006-07-25 02:05:48 |
Thanks and can we get it functional? |
Hi Jake! Thanks for the state of the union on the Chat Feature. I would love to get this feature working even if it's basic Can you make that page by adding a link from here instead? http://dev.tikiwiki.org/FeatureDev Can you help with the code too? Thanks! M 😉 |
184 |
2006-07-23 18:32:19 |
Never obfuscate an external URL with descriptive text. |
hmmm, it seems to me we could find a wiki solution to this. Ex.: when a wiki link is used, in print mode, the URL is shown. Something like: http://tikiwiki.org/tiki-index_raw.php?page=PluginNoprint |
182 |
2006-07-12 05:45:46 |
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
|
Is this syntax correct? |
I don't seem to be able to include a poll in a wiki page with: {poll id=2} as indicated in this doc page. However, this does work: {POLL(pollId=>2)}{POLL} What's the difference between the two methods? |
wiki page: Poll Admin |
202 |
2006-09-21 10:09:17 |
hmm... |
isn't typing just [skype:echo123?chat] doing the same and easily enough ? Result: skype:echo123?chat maybe better would be to support (instead of the external icon) an icon depending on the protocol used at the beginning of the URL |
wiki page: PluginSkype |
198 |
2006-08-27 09:23:21 |
Own dogfood |
SPeaking about own dog food - perhaps a rating field in the tracker can be good |
wiki page: Features |
192 |
2006-08-05 12:47:07 |
HELP with configuration |
Hi everybody. I need help with the configuration of tikiwiki and active directory. I'm using the followings: PHP Version 5.1.4 Apache/2.2.2 (Win32) running on windows server 2003 Active Directory on Microsoft sever 2003 tikiwiki-1.9.3.2. I tried to use the examples of configuration found in tikiwiki.org with no results. The configuration I'm using is the following. Host : libad1.library.nova.edu Port : 389 Scope: Sub Base DN: dc=library,dc=nova,dc=edu Ldap User DN: OU=Systems Users User Attrib: samAccountName User OC: user Group dn blank Group attrib blank Group OC blank Member Attrib blank Member is dn n LDAP Admin User: pipopo pipopo is the domain administrator Please let me know what to correct... thanks, christian |
wiki page: LDAP authentication |
191 |
2006-08-04 19:01:53 |
location of "Batch loading directory" not intuitive |
Sorry, there is nothing "intuitive" about where to put the "Batch loading directory." Does it go in the html directory, in the tiki directory, elsewhere? This part of the documentation needs to be updated. edalton addendum: after extensive experimentation I figured out that the batch loading directory needs to go in the tiki directory. There may be a way around this, but I didn't find one. Just thought I should share this with everyone. |
wiki page: Image Gallery Config |
189 |
2006-08-03 12:58:59 |
Fantastico? |
Do we want to mention Fanstasico-based installs? Lots of web hosts have the Fantastico CPanel with Tiki. This makes installation VERY easy. |
wiki page: Requirements |
187 |
2006-07-26 19:44:08 |
add link to tiki samples |
On this intro page, we should add a link to sample sites using Tiki. There used to be a directory on TW.o that folks could submit their own Tiki to. Is it still active? Or a community webring? |
wiki page: Introduction |
186 |
2006-07-26 19:42:55 |
Re: Thanks and can we get it functional? |
I updated my chat files to 1.9.4. It behaves much better - it functions now. I had reviewed some of the files and thought that the feature was not being updated, but the new files have been worked on since 1.9.2. I am reviewing the operation of the chat now that I have it functioning on my multi-tiki install. I am going to spend some time working on the chat because I really want to use the feature. I want to see if the logging has been worked on and whether it works as well. I need to be able to log the chats for future reference. As I figure things out and attempt to fix problems as I find them, I'll try to do some work on the documentation too. I can't seem to log in on http://dev.tikiwiki.org/FeatureDev . Is there a trick? Jake > Hi Jake! > > Thanks for the state of the union on the Chat Feature. > > I would love to get this feature working even if it's basic > > Can you make that page by adding a link from here instead? > http://dev.tikiwiki.org/FeatureDev > > Can you help with the code too? > > Thanks! > > M 😉 |
wiki page: Chat |
185 |
2006-07-25 02:05:48 |
Thanks and can we get it functional? |
Hi Jake! Thanks for the state of the union on the Chat Feature. I would love to get this feature working even if it's basic Can you make that page by adding a link from here instead? http://dev.tikiwiki.org/FeatureDev Can you help with the code too? Thanks! M 😉 |
wiki page: Chat |
184 |
2006-07-23 18:32:19 |
Never obfuscate an external URL with descriptive text. |
hmmm, it seems to me we could find a wiki solution to this. Ex.: when a wiki link is used, in print mode, the URL is shown. Something like: http://tikiwiki.org/tiki-index_raw.php?page=PluginNoprint |
wiki page: Tiki Manual of Style |
182 |
2006-07-12 05:45:46 |
|