ok,
It seems you are using old versions of SinglePageModePlugin [1] and
BreadcrumbsPlugin [2]. At your tw, the header info is stripped, which
is not good, because they contain links back to the "up to date"
version and (more important) links to the documentation tiddlers.
BreadcrumbsPlugin defines a toolbar command "previousTiddler", which
will create a toolbar button "back" it can be easily included into
ToolbarCommands tiddler. (just an info)
SinglePageModePlugin (latest version) imo creates a permalink for
every tiddler, so the browser back and forward buttons can be used.
(Have a look at the plugins ..Info tiddlers)
====
HistoryPlugin is kind of redundant. The only difference to breadcrumbs
is the "forward" button.
Your ViewTemplate [3] contains:
<div class='title' macro='view title'></div>
<div class='subtitle'><span macro='view modifier link'></span>, <span
macro='view modified date'></span> (<span macro='message
views.wikified.createdPrompt'></span> <span macro='view created
date'></span>)</div>
<div class='tagging' macro='tagging'></div>
where div class='subtitle' contains the modifier ..... stuff
to add the back and forward buttons you should add
<div class='myHistory clearfix'>
<span class='backButton' macro='back'></span>
<span class='forwardButton' macro='forward'></span>
</div>
it should look similar to this afterwards:
... some more lines
<div class='title' macro='view title'></div>
<div class='subtitle'><span macro='view modifier link'></span>, <span
macro='view modified date'></span> (<span macro='message
views.wikified.createdPrompt'></span> <span macro='view created
date'></span>)</div>
<div class='myHistory clearfix'> <!--new-->
<span class='backButton' macro='back'></span>
<span class='forwardButton' macro='forward'></span>
</div> <!--end new-->
<div class='tagging' macro='tagging'></div>
... some more lines
in your StyleSheet (see:right sidebar: More:Shadowed) tiddler you'll
need (or add):
/*{{{*/
.clearfix {
display: block;
overflow: auto;
}
.backButton {
float: left;
}
.forwardButton {
float: right;
}
/*}}}*/
I did test it. It should do something similar you requested.
have fun!
-mario
[1] http://www.tiddlytools.com/#SinglePageModePlugin
[2] http://www.tiddlytools.com/#BreadcrumbsPlugin
[3] http://mytemplate.tiddlyspot.com/#ViewTemplate
On Feb 12, 11:18 am, Liam and Holly <[email protected]>
wrote:
> On Feb 12, 5:22 pm, PMario <[email protected]> wrote:
>
> > It would be nice to get a link to the plugin you are talking about.
> > -m
>
> Sure, You'll find the HistoryPlugin in the TW I'm
> building:http://mytemplate.tiddlyspot.com/
--
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.