Re: [twdev] @@ rendering issue (bug?)

2011-07-13 Thread Arlen Beiler
The colon in the path appears to be the culprit since it is also used with
CSS. I got it to work by enclosing each path with 3 double quotes (nowiki)

I use Chrome

On Wed, Jul 13, 2011 at 11:59 AM, Russ Thomas  wrote:

> Hi guys
>
> Not sure if this is a bug... the following does not render properly:
>
> @@font:normal 10pt monospace;C:\this\is\a\path\@@ and @@font:normal 10pt
> monospace;C:\this\is\a\path\too\@@
>
> while this DOES render properly:
>
> @@font:normal 10pt monospace;C:\this\is\a\path\@@
> and
> @@font:normal 10pt monospace;C:\this\is\a\path\too\@@
>
> In the problem case, (first case), depending on something I haven't yet
> determined, I either see the first path, or the second - but not both.
>
> Regards
> Russ
>
>
>  --
> You received this message because you are subscribed to the Google Groups
> "TiddlyWikiDev" group.
> To post to this group, send email to tiddlywikidev@googlegroups.com.
> To unsubscribe from this group, send email to
> tiddlywikidev+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/tiddlywikidev?hl=en.
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWikiDev" group.
To post to this group, send email to tiddlywikidev@googlegroups.com.
To unsubscribe from this group, send email to 
tiddlywikidev+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tiddlywikidev?hl=en.



[twdev] @@ rendering issue (bug?)

2011-07-13 Thread Russ Thomas
Hi guys

Not sure if this is a bug... the following does not render properly:

@@font:normal 10pt monospace;C:\this\is\a\path\@@ and @@font:normal 10pt
monospace;C:\this\is\a\path\too\@@

while this DOES render properly:

@@font:normal 10pt monospace;C:\this\is\a\path\@@
and
@@font:normal 10pt monospace;C:\this\is\a\path\too\@@

In the problem case, (first case), depending on something I haven't yet
determined, I either see the first path, or the second - but not both.

Regards
Russ

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWikiDev" group.
To post to this group, send email to tiddlywikidev@googlegroups.com.
To unsubscribe from this group, send email to 
tiddlywikidev+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tiddlywikidev?hl=en.



[twdev] Re: GitHub best practices and recommendations

2011-07-13 Thread PMario
@Tobias,

I am creating some intro documents, how to create a dev environment.

(Hopefully) Usefull for future core contributors and for plugin
contributors.
It may be usefull for existing trac contributors too. I hope, that
most "split.recipe" files are compatible with the new workflow.

github TiddlyWiki repo is needed anyway.

Workflow:
===
an existing eg: TiddlySpot presentation TW -> will be downloaded

ginsu .. will split things apart and make single tiddlers available
for the dev.

cook .. can create tests.html files, that are used for "fast local"
testing without rebuilding the TW again and again.

Just a browser reload is needed to activate a changed plugin.

You can use your favorite editor for all editing, that is done.
It should be compatible with new "cloud9 IDE" but without the
cooking ...

The development of the doc is done using ubuntu, but since the
directory structure doesn't rely on the OS, Windows should be fine
too. Only using git and make wasn't convenient for me, so I switched
to linux.

If you are interested in beta testing the docu send me a "pm" :)

-m

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWikiDev" group.
To post to this group, send email to tiddlywikidev@googlegroups.com.
To unsubscribe from this group, send email to 
tiddlywikidev+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tiddlywikidev?hl=en.



[twdev] Re: GitHub best practices and recommendations

2011-07-13 Thread PMario
Tobias,
Which OS do you use?

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWikiDev" group.
To post to this group, send email to tiddlywikidev@googlegroups.com.
To unsubscribe from this group, send email to 
tiddlywikidev+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tiddlywikidev?hl=en.



[twdev] Re: tagsearch plugin stops working with 2.6.3 (alpha 9)

2011-07-13 Thread PMario
I'll put togehter a post. Since the github repo, doesn't work out of
the box.
May be include it into the TiddlyWiki github wiki for contributors.
-m

On 13 Jul., 09:51, Tobias Beer  wrote:
> Thanks, Mario, for the notification, will make an update soon... and
> probably use jQuere from now on as much as possible. I guess, I should
> start using GitHub as well, to manage sourcecode and stuff like this.
> Are you working on GitHub yet and how would you set it up in terms of
> repo's, file structure, etc?
>
> Cheers, Tobias.

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWikiDev" group.
To post to this group, send email to tiddlywikidev@googlegroups.com.
To unsubscribe from this group, send email to 
tiddlywikidev+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tiddlywikidev?hl=en.



Re: [twdev] GitHub best practices and recommendations

2011-07-13 Thread Martin Budden
If you want to make core contributions, then its probably best if you
fork the main tiddlywiki repro. Then you can make pull requests for
you contributions (along with your test code).

If you are doing a lot of development then, as a general rule, I would
say it is better to have more smaller repositories rather than fewer
larger repositories (or one big repository), providing you can keep
the repositories independent of each other.

Other than that I don't have specific recommendations on how things
should be set up. Do feel free to experiment and don't be afraid of
making mistakes - with git mistakes can easily be fixed or reverted.
Look at what other projects do, and don't necessarily regard
TiddlyWiki as exemplary - we are learning about what works well as
well.

Martin

On 13 July 2011 09:05, Tobias Beer  wrote:
> I would like to start using GitHub to manage sources and presumably
> workflows around my contributions to the TiddlyWorld... are there any
> recommendations for setting up a repo/repos, file structures,
> contents, etc... when it comes to TiddlyWiki core contributions,
> plugin extensions, transclusions, tiddler sources or even complete
> adaptations (=wiki's)?
>
> If you already use GitHub for TiddlyWiki contributions ...are there
> any lessons you learned from the process ...anything special about
> your way of sharing or managing TW related code?
>
> Your shared knowledge is very welcome ...even if - or especially if -
> you think of it as most basic fundamentals, know-how and watch-outs.
>
> Thanks, Tobias.
>
> --
> You received this message because you are subscribed to the Google Groups 
> "TiddlyWikiDev" group.
> To post to this group, send email to tiddlywikidev@googlegroups.com.
> To unsubscribe from this group, send email to 
> tiddlywikidev+unsubscr...@googlegroups.com.
> For more options, visit this group at 
> http://groups.google.com/group/tiddlywikidev?hl=en.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWikiDev" group.
To post to this group, send email to tiddlywikidev@googlegroups.com.
To unsubscribe from this group, send email to 
tiddlywikidev+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tiddlywikidev?hl=en.



[twdev] GitHub best practices and recommendations

2011-07-13 Thread Tobias Beer
I would like to start using GitHub to manage sources and presumably
workflows around my contributions to the TiddlyWorld... are there any
recommendations for setting up a repo/repos, file structures,
contents, etc... when it comes to TiddlyWiki core contributions,
plugin extensions, transclusions, tiddler sources or even complete
adaptations (=wiki's)?

If you already use GitHub for TiddlyWiki contributions ...are there
any lessons you learned from the process ...anything special about
your way of sharing or managing TW related code?

Your shared knowledge is very welcome ...even if - or especially if -
you think of it as most basic fundamentals, know-how and watch-outs.

Thanks, Tobias.

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWikiDev" group.
To post to this group, send email to tiddlywikidev@googlegroups.com.
To unsubscribe from this group, send email to 
tiddlywikidev+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tiddlywikidev?hl=en.



[twdev] Re: tagsearch plugin stops working with 2.6.3 (alpha 9)

2011-07-13 Thread Tobias Beer
Thanks, Mario, for the notification, will make an update soon... and
probably use jQuere from now on as much as possible. I guess, I should
start using GitHub as well, to manage sourcecode and stuff like this.
Are you working on GitHub yet and how would you set it up in terms of
repo's, file structure, etc?

Cheers, Tobias.

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWikiDev" group.
To post to this group, send email to tiddlywikidev@googlegroups.com.
To unsubscribe from this group, send email to 
tiddlywikidev+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tiddlywikidev?hl=en.