Thank you

//Tobbr

On 27 Sep, 02:16, Anthony Muscio <anthony.mus...@gmail.com> wrote:
> NewHere Operates from the tiddler - in it's edit menu. If you have a custom
> view template it may need to be updated or added to the toolbar.
> To get a full example download the wholehttp://mptw.tiddlyspot.com/and
> experiment. there is more in it, that will help with family trees. Also
> search for special adaptions for family trees.
>
>  Regards Tony
>
> TonyM
>
> If you have not found an easy way to do it with TiddlyWiki, you have missed
> something.www.tiddlywiki.com
>
> On Sat, Sep 26, 2009 at 17:52, Tobbe <torbjorn.tornqv...@gmail.com> wrote:
>
> > Ok,
>
> > And how do I get that "newHere" in the Sidebar menu? I installed it,
> > and the what? It doesn't say anything how I "enable" it.
>
> > Thanks again Anthony, I see now what you mean and I think this could
> > be very easy and timesaving
>
> > //Tobbe
>
> > On 26 Sep, 06:08, Anthony Muscio <anthony.mus...@gmail.com> wrote:
> > > Tobbe,
>
> > > If the person tiddler is tagged with a date, of course another person
> > > tiddler can be tagged with the same date. You only put person information
> > in
> > > the person tiddler and date information (if any) in the date tiddler
> > (that
> > > matches the tag).
>
> > > If you use the new here tiddler you can go to a person tiddler and add
> > all
> > > their "children here", The children will then be tagged with the parent.
> > You
> > > can then copy the Children tags and add them to the other parent. So a
> > child
> > > will be tagged with its parents, and there children tagged by there name.
>
> > > Good luck with it all.
>
> > > TonyM
>
> > > If you have not found an easy way to do it with TiddlyWiki, you have
> > missed
> > > something.www.tiddlywiki.com
>
> > > On Fri, Sep 25, 2009 at 16:06, Tobbe <torbjorn.tornqv...@gmail.com>
> > wrote:
>
> > > > Aha,
>
> > > > Thanks for the tip Anthony, I try that. One question though, several
> > > > persons can have the same birthday, can that cauce a problem? I mean I
> > > > can't have 2 tiddlers with the same topic/title.
>
> > > > PS: I was just kidding with "nuts and bolt" expression. I saw Måns
> > > > once used it and I thought it was funny :)
>
> > > > //Tobbe
>
> > > > > A Question for Tobbe though. When you enter the persons name or
> > birthdate
> > > > > why dont you put it in [[square brackets]] - then when you click on
> > it it
> > > > > will create the tiddler eg; [[1908-02-17]] (It would be smart to tag
> > the
> > > > new
> > > > > tiddler as a "Date". Using default tiddlywiki you can see the orphans
> > > > (Named
> > > > > but un-created tiddlers) and once created you can use the tiddler
> > menu
> > > > > References to see all occasions in which that data is referenced.
> > That is
> > > > > you build these links into your wiki so you don't need to search. You
> > can
> > > > > also list all tiddlers tagged "Date" in name order to see a time line
> > > > etc...
>
> > > > > What I am suggesting can also work well with Erics suggestion.
>
> > > > > If you want to go further, look at the NewHerePlugin.
>
> > > > > PS In english we dont say I "totally nuts and bolts", just "totally
> > nuts"
> > > > or
> > > > > "am I a nut?" , But I like "totally nuts and bolts" :-)
>
> > > > > Tony
>
> > > > > TonyM
>
> > > > > If you have not found an easy way to do it with TiddlyWiki, you have
> > > > missed
> > > > > something.www.tiddlywiki.com
>
> > > > > On Thu, Sep 24, 2009 at 16:52, Tobbe <torbjorn.tornqv...@gmail.com>
> > > > wrote:
>
> > > > > > Thanks Eric,
>
> > > > > > Nice, I'll try that.
>
> > > > > > //Tobbe
>
> > > > > > On 24 Sep, 08:13, Eric Shulman <elsdes...@gmail.com> wrote:
> > > > > > > > I'm thinking of making a TW into a geneology database. The
> > title in
> > > > > > > > every tiddle gonna be the persons name. The I'm gonna put in
> > the
> > > > > > > > display area this information:
> > > > > > > > Firstname Lastname was born 1854-04-01 in Ghosttown, Spokane,
> > USA
> > > > son
> > > > > > > > of [[Big Lastname]] and [[Mrs Lastname]]
> > > > > > > ...
> > > > > > > > So I wanna be able so make a search in every tiddler and
> > looking
> > > > for a
> > > > > > > > certain birthdate and the result should be a new tiddler with
> > the
> > > > > > > > birthdate as the title and in the display area all the people
> > that
> > > > are
> > > > > > > > born that certain date I search for
>
> > > > > > > Instead of using free-form text to enter your content into each
> > > > > > > tiddler, if you use some special formatting for the content, then
> > > > they
> > > > > > > can be used programmatically as 'tiddler slices' (addressable
> > name-
> > > > > > > value pairs, stored in the tiddler's text content).  For example,
> > in
> > > > a
> > > > > > > tiddler named [[John Smith]], you could write:
>
> > > > > > > First: John
> > > > > > > Last: Smith
> > > > > > > Born: 1854-04-01
> > > > > > > Place: Ghosttown, Spokane, USA
> > > > > > > Father: Big Lastname
> > > > > > > Mother: Mrs Lastname
>
> > > > > > > Then, you can use macros like:
> > > > > > >    <<tiddler [[JohnSmith::Place]]>>
> > > > > > > which displays:
> > > > > > >    Ghosttown, Spokane, USA
>
> > > > > > > and, you can programmatically access slice values, too.  For
> > example,
> > > > > > > using ForEachTiddlerPlugins's <<forEachTiddler>> macro, you can
> > > > write:
>
> > > > > > > <<forEachTiddler
> > > > > > >  where
> > > > > > >     'store.getTiddlerText(tiddler.title+"::Born","").startsWith
> > > > > > > ("1854")'
> > > > > > >  sortBy
> > > > > > >    'store.getTiddlerText(tiddler.title+"::Last","")'
> > > > > > >    ascending
> > > > > > >  write
> > > > > > >    '"|"+store.getTiddlerText(tiddler.title+"::First","")
> > > > > > > +"|"+store.getTiddlerText(tiddler.title+"::Last","")
> > > > > > > +"|"+store.getTiddlerText(tiddler.title+"::Born","")
> > > > > > > +"|\n"'
>
> > > > > > > enjoy,
> > > > > > > -e
>
> > > > > > > note: for a discussion/explanation of slices, see:
>
> >http://groups.google.com/group/tiddlywiki/browse_frm/thread/e1ec74a3f.
> > > > ..
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To post to this group, send email to tiddlywiki@googlegroups.com
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to