--
You received this message because you are subscribed to the Google Groups "TiddlyWikiDev" group.
To view this discussion on the web visit https://groups.google.com/d/msg/tiddlywikidev/-/CLRGFzSFuqoJ.
To post to this group, send email to tiddly...@googlegroups.com.
To unsubscribe from this group, send email to tiddlywikide...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/tiddlywikidev?hl=en.
I did create a gist with the tests.html. created from master
> On the other hand, I don't know why 76 o is problematic? Adding spaces to
> slice names is somewhat useful for more human-readable tables, especially
> those generated by the GridPlugin (from TiddlyTools). Does anyone know any
> background, reason for this restriction? Any core functions relying on
> this? Of'course I can just forbid spaces, but that's a major restriction..
I think it is because of
output = slices["foo bar"] is valid. At least js can handle it.
output = slices.foo bar ... won't work.
I think anybody creating plugins, that deal with slices, should use
the 1st notation. It is more obvious, that there is something special
going on.
So
+1 from me to accept spaces in slices, if they really work. (I didn't
test it). I think there is no backwards compatibility problem.
Because, TW just didn't work if slices did contain spaces. So users
did change them to get it working. Slices that have spaces but are not
used aren't problems anyway.
Ah, quite nicely, thanks :) The highest mark.
воскресенье, 27 января 2013 г., 15:46:47 UTC+4 пользователь PMario написал:On 8 Jan., 20:36, Yakov <yakov.litvin.publi...@gmail.com> wrote:
> Thanks guys for the answers and for the test assemblies. Most probably,
> I'll continue my investigation after the 17th of Jan (after my Master's
> degree exam).
How was your exam going ?:)
--
You received this message because you are subscribed to the Google Groups "TiddlyWikiDev" group.
To post to this group, send email to tiddly...@googlegroups.com.
To unsubscribe from this group, send email to tiddlywikide...@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywikidev?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.
I very much like to see blanks in slice names.
I currently see no benefits in catering for...
a) tabs in slice names
b) leading white space characters for slice names
If b) is viable, then at least let both of...
var: val
var: val
...be interpreted as:
slice-name="var"
slice-value="val"
Cheers, Tobias.
--
You received this message because you are subscribed to the Google Groups "TiddlyWikiDev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to tiddlywikide...@googlegroups.com.
[\t\x20]*([^\|\n]*)[\t\x20]*[\t\x20]*([^\|\n]*)
[\t\x20]*
Hi Yakov,I would agree by now that stripping out css is a classical case of over-engineering, i.e. if you want to define slices using tables, don't use TiddlyWikis cell styling options.When it comes to text-aignment using spaces, I'm not so sure though. I would always remove any blanks preceeding or following slice-names as well as a first blank at the beginning and a last blank at the end of a slice value... as they are there for text-alignment. If you actually need that beginning blank for your value, then add another blank that won't be stripped.
This issue seems to be closed in my implementation, isn't it?
Hi Yakov,This issue seems to be closed in my implementation, isn't it?How would I go about testing / verifying that assertation? Copying your slices reg into a vanilla TW and test it?
Cheers, Tobias.
There's of'course one more thing: creating extra tests for core (mechanism Mario mentioned) but I have no idea where to start.