[tw] Re: [TW5] How to create accountability board?

2014-07-08 Thread Jimmy Liew
Hi all,
I finally got what I want!  Thanks everyone for your response and 
information.


On Monday, 7 July 2014 13:33:01 UTC+8, Jimmy Liew wrote:
>
> Hi All,
>
> I would like to create something like "
> http://tiddlywiki.com/#Latest:Latest"; which it looks like an 
> accountability board or pin-board to me.  Can anyone guide me on how to do 
> it?
> Thanks.
>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] How to create accountability board?

2014-07-07 Thread Richard Smith
Hi,

Just to add that to make your list render just like [[Latest]], you will 
need to drag across or re-create the stylesheet called $:/_tw5.com-styles 
from tiddlywiki.com. You can rename it if you want to. The settings in this 
file are fairly self-explanatory, for example, you can change the number of 
columns or the background color.

Regards,
Richard

On Monday, July 7, 2014 3:33:01 PM UTC+10, Jimmy Liew wrote:
>
> Hi All,
>
> I would like to create something like "
> http://tiddlywiki.com/#Latest:Latest"; which it looks like an 
> accountability board or pin-board to me.  Can anyone guide me on how to do 
> it?
> Thanks.
>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] How to create accountability board?

2014-07-07 Thread Eric Shulman
On Sunday, July 6, 2014 10:33:01 PM UTC-7, Jimmy Liew wrote:
>
> I would like to create something like "
> http://tiddlywiki.com/#Latest:Latest"; which it looks like an 
> accountability board or pin-board to me.  Can anyone guide me on how to do 
> it?
>

I assume that what you want is to keep the same layout and appearance as 
the [[Latest]] tiddler, but use your own tiddlers to provide the content. 
 First, start by looking at the *source* of the [[Latest]] tiddler.  I've 
pasted it here for convenience:
The latest news, articles, resources and examples.

<$list filter="[tag[articles]] [tag[examples]] [tag[resources]] 
+[!sort[modified]limit[7]]">

! <$link><$view field="title"/>
!!! <$text text={{!!url}}/>
Updated <$view field="modified" format=
"relativedate"/>
<$transclude/>


note: the original source is actually double-spaced, with a blank line 
between each line of source.  Those lines are important, but I removed them 
from the pasted code above for compactness in this message.

To create your own "accountability board", you might only need to focus on 
one line from the above source.
<$list filter="[tag[articles]] [tag[examples]] [tag[resources]] 
+[!sort[modified]limit[7]]">

This line selects all tiddlers tagged with "articles", "examples", or 
"resources", and then sorts in descending order by modification date (i.e., 
newest first), and limits the results to 7 tiddlers.  To select your own 
content tiddlers, you could simply change the tags within this line 
(adding/removing individual tag selection syntax, i.e,. "[tag[...]]"), as 
well as changing (or even removing) the "limit[...]" syntax to allow for a 
different number of items to be displayed.

The remainder of the [[Latest]] definition (everything in between the 
<$list ...> and ) is used to generate the output for each tiddler 
that is selected by the filter.

In the above code, the output begins with a 'wrapper' element using CSS 
class "tw-link-info-item" to provide the styling for the individual item. 
 Next, a link to the source tiddler for the item is displayed, followed by an 
external link to any "url" field defined in that tiddler.  Then, a 
"tw-subtitle" element is output, containing the tiddler's modification 
information (using a 'relativedate' format), after which the 
"<$transclude/>" syntax is used to display the full content of the source 
tiddler.

That should give you the basic "lay of the land" for what the [[Latest]] 
tiddler is doing, and should hopefully be enough for you to get started 
with your own customized output.  If there's more specific details of the 
output that you want to address, just ask questions here.

Let me know how is goes...

enjoy,
-e
Eric Shulman
TiddlyTools / ELS Design Studios

YOUR DONATIONS ARE VERY IMPORTANT!
HELP ME TO HELP YOU - MAKE A CONTRIBUTION TO MY "TIP JAR"...
   http://TiddlyTools.github.com/fundraising.html#MakeADonation

Professional TiddlyWiki Consulting Services...
Analysis, Design, and Custom Solutions:
   http://www.TiddlyTools.com/#Contact

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] How to create accountability board?

2014-07-07 Thread Stephan Hradek
The best advise is, to click the Edit-Button, inspect the tiddler's code 
and to try and understand it. Then change the code and see whether you 
understood correctly.

Sorry for not giving you a turnkey-ready all-in-one get-happy solution ;) 
but the nice thing about TiddlyWiki is that you can easily try everything 
out without installing anything.

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.