> I use DiscussionPlugin and CommentPlugin together, everything works > fine except that I can´t find out how to delete posted items? I found > them in edit mode when just using CommentPlugin but after importing > DiscussionPlugin I cant find it. A silly question maybe but i Really > can´t find it. > First of all I just want to delete items but secondly I wonder if > there is a way to add a "delete-button" somewhere so that users can > delete their posts if they want to?
DiscussionPlugin puts each comment into a separate tiddler, tagged with both 'comment' and 'excludeList' (i.e., a 'hidden tiddler'). You can use <<tag comment>> to quickly view a popup list of these tiddlers. To remove a comment from the discussion, delete the corresponding comment tiddler and then refresh the discussion view. from DiscussionPluginInfo: -------------------- config.macros.discussion.titlefmt="_%UTC%%random%"; When comments are entered, they are written into separate target tiddlers whose titles are constructed by appending a generated suffix to the title of the tiddler containing the <<discussion>> macro. By default, this suffix contains the current UTC timestamp (e.g., YYYYMMDD.HHMMSSMMM) plus a randomly generated number (e.g., . 123456789) to ensure that all target tiddlers have unique titles while also associating each comment with the specific discussion summary. The suffix is specified by using substitution markers, where: %UTC %=the UTC timestamp, %random%=a random decimal number, %who%=username, and %subject% is the subject text entered into the comment form. -------------------- enjoy, -e Eric Shulman TiddlyTools / ELS Design Studios --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/tiddlywiki?hl=en -~----------~----~----~----~------~----~------~--~---

