[tw5] Re: copy button in each code block

2018-05-03 Thread Rustem
I managed to do it with just macros and CSS. One thing I could not avoid is 
copying line breaks before and after the code. Hope there will be a plugin 
someday that will overcome that, as well as do away with the table wrapper. 
Here is a self-contained demo tiddler.

\define code(tx)


```$tx$
```
<$button class="tc-btn-invisible" message="tm-copy-to-clipboard" 
param=<<__tx__>> tooltip={{$:/language/Buttons/CopyToClipboard/Hint}}>{{$:
/core/images/copy-clipboard}}
\end


table.mycodeblock {
  border:   none;
  margin:   7px 0 11px;
}
table.mycodeblock pre {
  margin:   0;
}
table.mycodeblock td {
  border:   none;
  padding:  0;
  position: relative;
}
table.mycodeblock button {
  position: absolute;
  left: -30px;
  top:  2px;
}
table.mycodeblock button svg.tc-image-button {
  height:   2em;
  width:2em;
  fill: none;
}
table.mycodeblock:hover button svg.tc-image-button {
  fill: <<color tiddler-controls-foreground>>;
  animation: 0.35s cubic-bezier(.35, 0, .35, 1) 2 alternate;
  animation-name: breathe,blink;
}
table.mycodeblock button:hover svg.tc-image-button {
  fill: <<color orange>>;
}

@keyframes blink {
  from { opacity: 1; }
  to   { opacity: .35; }
}
@keyframes breathe {
  from { transform: scale(1); }
  to   { transform: scale(1.5); }
}



in your tiddlers just write :

<>



On Saturday, April 28, 2018 at 5:17:04 PM UTC-7, Rustem wrote:
>
> That works, thanks. Would be great though, to have the button appear 
> inside the block, on hover.
>
> On Saturday, April 28, 2018 at 2:31:13 AM UTC-7, BurningTreeC wrote:
>>
>> hi @Rustem 
>>
>> you could just create a macro in a tiddler say $:/_macros tagged with 
>> $:/tags/Macro with the content:
>>
>> \define code(text)
>> <>
>> ```
>> $text$
>> ```
>> \end
>>
>> in your tiddlers just write:
>>
>> <>
>> code here
>>
>> more code
>>
>> """>>
>>
>

-- 
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 https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/54a1e890-71d9-4862-a87b-a730a239e5d5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: copy button in each code block

2018-04-28 Thread Rustem
That works, thanks. Would be great though, to have the button appear inside 
the block, on hover.

On Saturday, April 28, 2018 at 2:31:13 AM UTC-7, BurningTreeC wrote:
>
> hi @Rustem 
>
> you could just create a macro in a tiddler say $:/_macros tagged with 
> $:/tags/Macro with the content:
>
> \define code(text)
> <>
> ```
> $text$
> ```
> \end
>
> in your tiddlers just write:
>
> <
> code here
>
> more code
>
> """>>
>

-- 
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 https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/c6fb87e7-6f54-4043-baae-4939c8e43d8d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: copy button in each code block

2018-04-28 Thread Rustem
Yes, I mean code blocks, of course. 
I think the place to add the button is inside 
`CodeBlockWidget.prototype.render`, 
but not sure how to do it exactly.


On Wednesday, March 14, 2018 at 5:27:47 AM UTC-7, Matthew Lauber wrote:
>
> Pretty sure he means everything enclosed in triple backticks, per 
> https://tiddlywiki.com/#Code%20Blocks%20in%20WikiText
> ```
>
> 
>
> ```
>
>
>
> On Tuesday, March 13, 2018 at 8:39:53 PM UTC-4, TonyM wrote:
>>
>> Rustem,
>>
>> What do you define as a Code Block?
>>
>> How does it differ from the Text or other field?
>>
>> Regards
>> Tony
>>
>>
>> On Wednesday, March 14, 2018 at 11:10:42 AM UTC+11, Rustem wrote:
>>>
>>> Now that there is a `copy-to-clipboard` macro in the pre-release, could 
>>> someone figure out a way to have a "copy" button in a corner of each code 
>>> block, please? :) I used to have it in TW Classic, it was extremely useful.
>>>
>>

-- 
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 https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/0d919cbb-cb72-482f-8653-50ffde7d6ce5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] copy button in each code block

2018-03-13 Thread Rustem
Now that there is a `copy-to-clipboard` macro in the pre-release, could 
someone figure out a way to have a "copy" button in a corner of each code 
block, please? :) I used to have it in TW Classic, it was extremely useful.

-- 
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 https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/a51c6471-c035-4035-bd13-8b4f27a81ad2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] iframe height

2018-03-12 Thread Rustem
Why is iframe height set to 600px in $:/themes/tiddlywiki/vanilla/base, and 
why if I try to set it to auto in my stylesheet, it becomes 150px high?

-- 
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 https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/81b8050d-2e01-4927-a990-83539bcafdae%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] use field inside link

2017-08-11 Thread Rustem
How to display a link using a URL stored in a field? I'm thinking something 
like this, except it doesn't work: `[[go here|{{!!field}}]]`

-- 
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 https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/65ed5c48-d9d1-43a5-9637-d05d8116ae97%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] [TW5] tip: preserving linebreaks

2017-08-02 Thread Rustem
This comes up now and again as a major gripe with TW5 - people want their 
linebreaks to stay.
I discovered this recently, and have not encountered any downside so far: 
use (new in HTML5)  tag, and style it as

article {
white-space: pre-wrap;
}

The text inside the tag will have linebreaks as you entered them. All other 
formatting inside … works as usual, as far as I can see.

Note, this won't let you have linebreaks inside list bullets and such.

--R.

-- 
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 https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/624f82c1-2d2e-4fdf-bc42-e9fe3bc86291%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: How to macro > var > macro ??

2017-07-25 Thread Rustem
It works with <$wikify> widget. Thanks everyone!

On Tuesday, July 25, 2017 at 1:20:52 AM UTC-7, Eric Shulman wrote:
>
> On Monday, July 24, 2017 at 6:57:39 PM UTC-7, Rustem wrote:
>>
>> I have these macros defined
>>
> ... 
>
>> It works if I specify the color directly
>> <$vars _c=red><>
>>
>> But how do I specify the color using a macro? This doesn't work:
>> <$vars _c=<>><>
>>
>>  
> The problem with using the <> macro as a parameter value in the 
> <$vars> widget is that the macro doesn't return a color value directly. 
>  Instead, it returns transclusion widgets that, if subsequently rendered, 
> results in a color value.  Here's the core definitions (from 
> $:/core/macros/CSS):
>
> \define colour(name)
> <$transclude tiddler={{$:/palette}} index="$name$"><$transclude 
> tiddler="$:/palettes/Vanilla" index="$name$"/>
> \end
>
> \define color(name)
> <>
> \end
>
> To retrieve the actual color *value*, you can use the <$wikify> widget, 
> which "captures" the rendered output from the macro and stores that in a 
> variable, like this:
>
> <$wikify name="_c" text=<>><>
>
> Note: in this example, "tiddler-background" produces "invisible" text, 
> since the foreground text color is the same as the background tiddler 
> color.  I assume that was your intention.
>
> Let me know how it goes.
>
> enjoy,
> -e
> Eric Shulman
> TiddlyTools.com: "Small Tools for Big Ideas!" (tm)
> InsideTiddlyWiki: The Missing Manuals
>

-- 
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 https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/21fd2f65-f95c-493f-9fe6-b45b428be612%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: How to macro > var > macro ??

2017-07-25 Thread Rustem
Tried with set widget, same, didn't work.

On Monday, July 24, 2017 at 8:02:33 PM UTC-7, Mat wrote:
>
> Try with the setwidget, or perhaps wikifywidget instead. The varswidget is 
> not as powerful and I don't think it can handle macrocalls as arguments. 
> Not sure.
>
> <:-)
>

-- 
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 https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/38cca27a-3980-4f34-b1c8-bb09c34c753f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] How to macro > var > macro ??

2017-07-24 Thread Rustem
I have these macros defined

\define colorize() color:$(_c)$

\define cn()
  >>
some text
  
\end


It works if I specify the color directly

<$vars _c=red><>

But how do I specify the color using a macro? This doesn't work:

<$vars _c=<>><>

Is it possible?

Thanks.

--R

-- 
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 https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/27582014-5db4-4705-861b-189fe27ecdda%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] The RICHNESS is awesomely overwhelming ...

2017-02-10 Thread Rustem
I see a pattern emerging. A post about not having all the documentation 
conveniently available in one place usually results in someone creating 
another place for documentation. Invariably, that place fails to gain 
traction,and is maintained almost solely by it's creator.

A good way to proceed would be to *agree* on a place that would (1) be easy 
to contribute to (2) have some self-organizing features. IMO StackExchange 
can be it. The best content gets voted up, you can mark questions as 
favorites, as well as see a list of all your upvotes. It also has a 
"Documentation" feature - http://stackoverflow.com/documentation, but I 
don't know if enabling that would involve additional hurdles, once the Q 
site has graduated from the proposal status.

--R.

On Friday, February 10, 2017 at 2:33:03 PM UTC-8, Arlen Beiler wrote:
>
> Interesting idea. After seeing your email, I created a repository where we 
> can all collaborate and collect information concerning the documentation of 
> TiddlyWiki. I thought it might give us a central place to start working 
> until we find a good solution to our current dilemma :)
>
> https://github.com/Arlen22/TW5Docs/wiki
>
> On Tue, Feb 7, 2017 at 8:28 AM, Josiah  
> wrote:
>
>> In the past few months there has been a LOT of innovation with TW. Some 
>> of it quite radical. Most of it interesting. A lot of it may get lost in 
>> the advancing, perpetual fog of Goggle that eclipses anything not currently 
>> active.
>>
>> There has been SO MUCH innovation its been very difficult to keep up.
>>
>> I should perhaps revisit the long recent thread on "Documentation" needs 
>> I started to re-explain that part of the problem as I now see it ...
>>
>> ... is HAVING FLAGS of SIGNIFICANT EVOLVING INITIATIVES so you can keep up
>>
>> Whilst the initiative for StackOverflow is excellent, I don't think its 
>> gonna address that particular BIG issue.
>>
>> Best wishes
>> Josiah
>>
>> -- 
>> 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+...@googlegroups.com .
>> To post to this group, send email to tiddl...@googlegroups.com 
>> .
>> Visit this group at https://groups.google.com/group/tiddlywiki.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/tiddlywiki/241cfa75-e59c-44be-a9e8-1d281b88bd92%40googlegroups.com
>>  
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>

-- 
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 https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/9eee2b74-4b3f-48e9-b2c2-2cc43468ab0e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Conveying: Moans about poor documentation

2016-12-22 Thread Rustem
+1 for stackexchange sub-domain. Would work really well for knowledge 
accumulation. Would we be able to have the Documentation (beta) feature on 
it as well?

On Saturday, December 17, 2016 at 7:40:08 PM UTC-8, Marica Odagaki wrote:
>
> Re: StackOverflow..
>
> I don't know if Tobias originally meant this with "dedicated" (though 
> guessing yes), but it's possible to create a whole new StackOverflow-style 
> Q site under the stackexchange.com domain: something like 
> http://tiddlywiki.stackexchange.com/, if we go through a multi-phase 
> proposal and acceptance process.
>
> Proposal example: 
> http://area51.stackexchange.com/proposals/86758/django-cms
> Q site example: http://drupal.stackexchange.com/
>
> Benefits over stackoverflow.com:
> - We can build up a tagging taxonomy within the context of TiddlyWiki
> - We can welcome non-coding questions as well as coding questions
>
> Benefits of a StackOverflow-style Q site in general:
> - The most useful answer is shown at the top, which isn't the case with 
> Google Groups; past Q can serve as a useful resource for future visitors
> - Comes with moderation tooling like closing as off-topic, voting to 
> indicate usefulness of questions and answers, and ability to mark an answer 
> as "correct" / "helpful"
> - Tags can each have an associated documentation page (not to say it 
> should be the home of documentation of all things TiddlyWiki)
> - Comes with real-time chat rooms
>
> I believe this won't be a good place for announcements of new plugins and 
> such; Reddit or Google Groups seem more suitable as a place for content 
> bound to a specific time.
>
> In any case, if there's interest, we can make it happen. The process 
> involves defining the scope of the site (this seems straightforward), and 
> having at least two hundred people sign up and say "I commit to be active 
> in this site" (there's a bit more to the acceptance criteria though).
>
> (Personal context: I've been using TiddlyWiki5 as my personal notebook for 
> a while now, and I've been active on some of the StackExchange network 
> sites)
>
> Cheers,
> Marica
>
>

-- 
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 https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/2ebe50fe-b52f-4714-995b-ea58b4d46a87%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [tw5]find tidderls between two dates

2016-10-27 Thread Rustem

>
> is there a easy way to find tiddlers (with tag x) in a date span / between 
> two dates?
>

That is exactly what days operator is for. Please have a look here 
 for 
more explanation and examples.

--R
 

-- 
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 https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/b0b49ff2-11fe-44d1-85e7-71ae1f53ed83%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] tag: native browser support for "reveal"-like functionality

2016-08-24 Thread Rustem
HTML5 has a new tag details. Works in desktop Chrome, didn't check on 
anythng else. Example here: https://codepen.io/anon/pen/rLEmyr.

-- 
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 https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/61d269dd-dd77-452a-9eaa-107bc30c6028%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [tw5] tm-new-tiddler. How to ge full tag from title with space?

2016-08-13 Thread Rustem
Or have a look inside this tiddler: 
http://tiddlywiki.com/#%24%3A%2Fcore%2Fui%2FButtons%2Fnew-here

On Saturday, August 13, 2016 at 1:12:14 PM UTC-7, Mark S. wrote:
>
> Try this version:
>
> \define tagme() [[$(tagx)$]]
> <$set name=tagx value={{!!title}}>
> <$button>
> <$action-sendmessage $message="tm-new-tiddler" title="This is newly 
> created tiddler" tags=<> text=<>/>
> New Tiddler
> 
> 
>
>
>
>
>
> On Saturday, August 13, 2016 at 7:42:54 AM UTC-7, sini-Kit wrote:
>>
>> Hi! I have my tiddler title "Hello wiki!" and button in it
>>
>> <$button>
>> <$action-sendmessage $message="tm-new-tiddler" title="This is newly 
>> created tiddler" tags={{!!title}} text=<
>> >/>
>> New Tiddler
>> 
>>
>>  but when I press this button I get tiddler with two tags "Hello" 
>> and "wiki", but I want to get one tag "Hello wiki" is it possible?
>>
>

-- 
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 https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/27cf2b49-f4c6-4056-a6e1-07fe42d6e165%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: help with filter please

2016-08-09 Thread Rustem
It's not tagging though. The lowest level is not tagged, but linked via a 
field called "when".

On Tuesday, August 9, 2016 at 12:19:47 AM UTC-7, Jed Carty wrote:
>
> Try '[tag[UV]tagging[]]', I think that should work.
>

-- 
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 https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/904b9013-25d5-4573-8ba8-f473d2cfbe1a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] adding comments after global macros

2016-08-08 Thread Rustem
Is it ok to have text at the end of a tiddler that has the tag 
"$:/tags/Macro"?

Also, is there a way to have text that is ignored, other than enclose it as 
HTML comment?

And while I'm at it, is there a way to have text displayed as is, not 
wikified and not monospaced?

Thanks!

--R


-- 
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 https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/344f160f-019e-45c0-b98a-6ee68dc92cde%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] help with filter please

2016-08-08 Thread Rustem
Tiddlers have a field "when" that is a space separated list of tiddler 
titles.

Tiddler A has "when" set to `morning [[day time]] evening`

Tidddler B has "when" set to `morning`

Tiddler C has "when" set to `[[day time]]`

Tiddler D has "when" set to `evening`

Tiddlers "morning" and "day time" have a tag "UV"

Given a string "UV" and knowing there is a field called "when", how do I 
write a filter that would return A,B,C, but not D?

-- 
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 https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/7c438d94-cd43-4b34-95a7-eb79bfc0caff%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: Keyboard shortcuts for Tagging and moving from Tag to Body text?

2016-08-04 Thread Rustem
This will save you time and mouse mileage when entering new tiddlers (or 
adding tags to tiddlers without many pre-existing tags):
https://groups.google.com/d/msg/tiddlywiki/eB-t2kK620o/_fYlsfsKJQAJ

On Tuesday, July 26, 2016 at 6:31:07 AM UTC-7, Marcus Baw wrote:
>
> @eric - thanks! - that is very helpful. Perhaps not the most intuitive 
> shortcuts, but they get the job done and will definitely save me time.
> M
>
> On 26 July 2016 at 14:21, 'Mark S.' via TiddlyWiki <
> tiddl...@googlegroups.com > wrote:
>
>> There's also the problem of navigating from the tags down into the text. 
>> If you have hundreds of tags, you have to tab hundreds of times. And, once 
>> you're in the text box, the tab list is still open, blocking your view!
>>
>> Thanks!
>> Mark
>>
>>
>> On Tuesday, July 26, 2016 at 2:16:53 AM UTC-7, Eric Shulman wrote:
>>>
>>> On Tuesday, July 26, 2016 at 1:16:25 AM UTC-7, Marcus Baw wrote:

 Just re-asking the question: Is there any way to select tags using the 
 keyboard? I've tried various things and don't seem to be able to find a 
 way 
 to select them via keyboard.

 After typing the title of the tiddler, I can `tab` into the next input 
 (to enter a tag name). If I start typing here I can narrow the list of 
 tags, but I can't select from the list using `up-arrow / down-arrow` or 
 any 
 other key combination I can find. Creating a new tag is also not possible 
 via keyboard.

>>>
>>> The steps for entering or selecting a tag using only the keyboard are 
>>> not obvious, and is regrettably awkward.
>>>
>>> To create a new tag:
>>>
>>> 1) Move the focus to the tag input field
>>> 2) Enter the desired tag text
>>> 3) Press TAB 2 times... the 1st tab moves to the downarrow button, the 
>>> 2nd tab moves to the "add" button
>>> 4) Press ENTER to push the button... the tag is added to the tiddler.
>>> 5) To return to the tag input field, use SHIFT-TAB 2 times.
>>>
>>> To select an existing tag:
>>>
>>> 1) Move the focus to the tag input field... the list of tags (if any) 
>>> appears.
>>> 2) Press TAB 3 times... the 1st tab moves to the downarrow button, the 
>>> 2nd tab moves to the "add" button, the 3rd tab moves to the top of the list 
>>> of tags.)
>>> 3) Continue to press TAB to move down the list until the desired tag is 
>>> highlighted.
>>> 4) Press ENTER to add the tag.
>>> 5) To return to the tag input field, use SHIFT-TAB 3 times.
>>>
>>> Of course, this process would be MUCH smoother if you could use ENTER 
>>> directly from the tag input field to add the tag, and DOWN/UP ARROWS to 
>>> move focus from the input field to the list, as well as moving through the 
>>> list.
>>>
>>> For the first part, perhaps the core <$edit-text> widget handling could 
>>> be extended so that the *contents* of the widget (which are currently 
>>> ignored) could be used to specify *action-widgets* that would be triggered 
>>> when the ENTER key is pressed.  In this particular use-case, the action 
>>> would be the same as when the "add" button is pressed (i.e., the tag is 
>>> added to the tiddler).  As an extra bonus, this functionality (triggering 
>>> actions when ENTER is pressed in an input field) might also be useful for 
>>> other edit fields, not just the tab input.
>>>
>>> For the second part (DOWN/UP ARROWS), it might be possible to extend the 
>>> tag 'pill' keyboard event handling so that DOWN/UP arrow is treated as if 
>>> TAB/SHIFT-TAB was pressed, so that the existing navigation handling would 
>>> be triggered (i.e., moving the focus/selection between items in the tab 
>>> list).
>>>
>>> Jeremy: what do you think?  Is this do-able?
>>>
>>> enjoy,
>>> -e
>>> Eric Shulman
>>> TiddlyTools / ELS Design Studios
>>> InsideTiddlyWiki: The Missing Manuals
>>>
>>> -- 
>> You received this message because you are subscribed to a topic in the 
>> Google Groups "TiddlyWiki" group.
>> To unsubscribe from this topic, visit 
>> https://groups.google.com/d/topic/tiddlywiki/pExEbkc6e6c/unsubscribe.
>> To unsubscribe from this group and all its topics, send an email to 
>> tiddlywiki+...@googlegroups.com .
>> To post to this group, send email to tiddl...@googlegroups.com 
>> .
>> Visit this group at https://groups.google.com/group/tiddlywiki.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/tiddlywiki/9a2bec9d-7c4a-493a-846a-035228424cb6%40googlegroups.com
>>  
>> 
>> .
>>
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>

-- 
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 

Re: [tw] [TW5] very strange styles of text area in 5.1.12

2016-07-20 Thread Rustem
sini-Kit,

You also have an option to disable the new editor and go back to the 
previous simple textarea-based editor. I insisted on this option being 
included, just like an option to hide foldbars a while back :). 

Originally, the code just copied the styles when the textarea was created, 
> but I received feedback that it was confusing that the background colour of 
> textareas thus didn’t change dynamically during a palette change, so I 
> changed things to re-copy the computed styles on every refresh cycle.
>

Jeremy,
How often does one change the palette? It might be confusing the first 
time. Then you learn to just reload the wiki after a palette change.

--R

On Monday, July 18, 2016 at 12:25:50 PM UTC-7, sini-Kit wrote:
>
> Hi Jeremy! I use IE 11.494.10586.0 
> editor toolbar works good in IE, but I write // !! '' __ manual by habit :)
>
> I have update my tiddlywiki shop demo with my modification of framed.js  
> http://heeg.ru/test/heeg_4_1.html  http://heeg.ru/heeg4.1.zip and 
>  plan to make YouTube lesson about new 
> toolbar and {{ [[ <<  and how to make your own design in TW5 using CSS and 
> color palettes  :) 
>
>  
>
> понедельник, 18 июля 2016 г., 17:19:16 UTC+3 пользователь Jeremy Ruston 
> написал:
>
>> Hi sini-Kit
>>
>> > I try to understand why 5.1.12 works slower in edit mode than older 
>> versions. 
>> > In doom tree I see this style of the text area
>> > I think think that old variant is better.
>>
>> The reason for the copied styles is that with the new editor, the 
>> textarea element is embedded in an iframe. This is done so that it has 
>> independent focus handling from the rest of the page, but it has the 
>> side-effect that styles are not inherited, hence the copying.
>>
>> Originally, the code just copied the styles when the textarea was 
>> created, but I received feedback that it was confusing that the background 
>> colour of textareas thus didn’t change dynamically during a palette change, 
>> so I changed things to re-copy the computed styles on every refresh cycle.
>>
>> I guess there are several things to investigate:
>>
>> * Whether you’d get acceptable performance with the original behaviour of 
>> only copying the styles during widget creation
>> * Whether the style copying itself can be made more efficient. It may be 
>> that there is a particular style property that is very slow to assign, for 
>> example.
>>
>> What version of IE are you using? Do the editor toolbar buttons work as 
>> expected?
>>
>> Best wishes
>>
>> Jeremy
>>
>> I have removed this line from framed.js
>>  // Copy all styles
>>  $tw.utils.copyStyles(this.dummyTextArea,this.domNode); 
>>
>>
>> and now IE woks fast :)
>>
>> textarea style becomes 
>>
>> 
>>
>>
>>
>> -- 
>> 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+...@googlegroups.com.
>> To post to this group, send email to tiddl...@googlegroups.com.
>> Visit this group at https://groups.google.com/group/tiddlywiki.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/tiddlywiki/e3d5d04c-86dd-4dac-ab4e-c57669e18d8e%40googlegroups.com
>>  
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>>
>>

-- 
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 https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/5079ae95-1bf2-4aa7-89d7-a513a3c54932%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] [TW5] syntax [img[imagefile.jpg]] in node.js

2016-07-14 Thread Rustem
I was about to volunteer creating an issue for this, but turns out there is 
already one: #1000 ! 
:)

On Thursday, July 14, 2016 at 4:54:07 AM UTC-7, Jeremy Ruston wrote:
>
> Hi Martin
>
> Any update on this? What would be the current best way to manage images in 
> a nodejs TW? Thanks! 
>
>
> There’s no update at the moment, I’m afraid.
>
> Best wishes
>
> Jeremy
>
> Martin
>
> On Thursday, October 16, 2014 at 5:23:20 AM UTC+2, Michele Zaffalon wrote:
>>
>> Hi Kyrylo,
>>
>> The answer is not yet for node.js. I am also waiting for it.
>> michele
>>
>> On Wed, Oct 15, 2014 at 6:47 PM, Jeremy Ruston  
>> wrote:
>>
>>> Hi Kyrylo
>>>
>>> > Hi! Have things changed? It seems like I still cannot reference local 
>>> images, which is annoying.
>>>
>>> The [img[url]] syntax has indeed been implemented:
>>>
>>> http://tiddlywiki.com/#Images%20in%20WikiText
>>>
>>> Best wishes
>>>
>>> Jeremy
>>>
>>>
>>> On Wed, Oct 15, 2014 at 5:43 PM, Kyrylo Silin  
>>> wrote:
>>>
 Hi! Have things changed? It seems like I still cannot reference local 
 images, which is annoying.

 % tiddlywiki --version
 5.1.2


 On Tuesday, June 3, 2014 3:14:45 PM UTC+3, Jeremy Ruston wrote:
>
> Hi Michele
>
>
>> I take it that "(yet)" means there is the plan to support it in the 
>> future. Will it be near future? Will the syntax be 
>> [img[path/to/local/file]]?
>>
>
> Yes, it should be working in the next couple of months. The syntax 
> will definitely use [img[]], and the plan would be to set up the base 
> path 
> so that images can be referenced directly by their tiddler title.
>
> Best wishes
>
> Jeremy
>
>  
>
>> By the way for me also the link syntax > href="file:///home/michele/imagefile.jpg">image 
 is not working for me (see https://groups.google.com/d/
 msg/tiddlywiki/EmJFLV1XAD0/ZL7_W8Jsa18J)

>>>
>>> Does it work if you link to a http:// website?
>>>
>>
>> Yes, http://...;>link works on 5.0.12 for me.
>>
>> Best regards,
>> michele
>>
>>
>> -- 
>> 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+...@googlegroups.com.
>> To post to this group, send email to tiddl...@googlegroups.com.
>> Visit this group at http://groups.google.com/group/tiddlywiki.
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>
>
> -- 
> Jeremy Ruston
> mailto:jeremy...@gmail.com
>

>>>
>>>
>>> -- 
>>> Jeremy Ruston
>>> mailto:jeremy...@gmail.com
>>>
>>> -- 
>>> 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+...@googlegroups.com.
>>> To post to this group, send email to tiddl...@googlegroups.com.
>>> Visit this group at http://groups.google.com/group/tiddlywiki.
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>>
>>
> -- 
> 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+...@googlegroups.com .
> To post to this group, send email to tiddl...@googlegroups.com 
> .
> Visit this group at https://groups.google.com/group/tiddlywiki.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/tiddlywiki/66026372-e24c-488d-b7d3-b8dc8b9b13d4%40googlegroups.com
>  
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>
>
>

-- 
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 https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/e9a8967b-80d1-4bc9-a0cf-71aa0987b9a5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Presenting: StretchText - an alternative to links or popups

2016-07-13 Thread Rustem


> http://www.telescopictext.com/
>>
>
Wow. I need a plugin for Microsoft Outlook. :D

-- 
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 https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/a3689c31-944a-4bb3-9787-870d3668a208%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] [TW5] Is it possible to make a Copy2Clipboard widget?

2016-06-28 Thread Rustem
Andrew, did you check this out? https://clipboardjs.com/
Not that I know what I'm talking about, but I did not notice any visible 
selection taking place as I click Copy or Cut buttons.
Cheers
--R.

On Monday, June 27, 2016 at 5:38:51 PM UTC-7, Andrew wrote:
>
> Regretably, due to browser security, the execCommand copy only seems to 
> work on visibly selected content. So, a hidden div won't work.
>
>

-- 
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 https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/a225bfef-fba4-477c-b5cb-87e5a5f20497%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] [TW5] Is it possible to make a Copy2Clipboard widget?

2016-06-24 Thread Rustem
There is a JS library for that already. Demo at https://clipboardjs.com/ 
and it's on guthub <https://github.com/zenorocha/clipboard.js.git> as well.

On Friday, June 24, 2016 at 6:03:48 PM UTC-7, Rustem wrote:
>
> Is it time to revisit the issue? Seems to be supported by all major 
> browsers. http://caniuse.com/#feat=clipboard
> Would be nice to have a "copy" button appear on hover over any  
> piece.
>
> On Tuesday, January 6, 2015 at 11:26:22 AM UTC-8, Jeremy Ruston wrote:
>>
>> Hi Andrew
>>
>> I'd also love to have a "copy to clipboard" button. The HTML5 Clipboard 
>> API is proceeding very slowly, with very patchy browser support. There's no 
>> implementation of copy to clipboard that I know of.
>>
>> Right now the best prospect for an implementation is within 
>> TiddlyDesktop, where we can rise above browser limitations.
>>
>> Best wishes
>>
>> Jeremy
>>
>>
>> On Mon, Jan 5, 2015 at 7:05 AM, andrew harrison <andrew.j@gmail.com> 
>> wrote:
>>
>>> Everyone else online is using ZeroClipboard because of security 
>>> restraints but that is a hack in itself and I expect will stop working 
>>> eventually. In addition, it only works online.
>>> The W3C is going to be implementing the Clipboard API for HTML 5 (
>>> http://dev.w3.org/2006/webapi/clipops/clipops.html) but it still 
>>> doesn't seem to work yet. I can't find any working examples online.
>>> The following code is what I have been using in TWC but it only seems to 
>>> work in Internet Explorer but not in Tiddlywiki 5 because Javascript is 
>>> stripped. I could spend time writing a widget for just IE but is it worth 
>>> it?
>>> Can anyone tell me what direction I should go? The alternative is 
>>> painstakingly selecting text and hitting Ctrl + C or right click to copy, 
>>> or in the case of touch screen by long pressing and messing with those 
>>> selector arrows. 3 or more steps vs 1 step. I am trying to aim for 
>>> something that copies to clipboard online, offline, server side, client 
>>> side, mouse, touch screen, and browser independent. Is that to much to wish 
>>> for?
>>>
>>> Copy
>>>
>>> -- 
>>> 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+...@googlegroups.com.
>>> To post to this group, send email to tiddl...@googlegroups.com.
>>> Visit this group at http://groups.google.com/group/tiddlywiki.
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>>
>>
>>
>> -- 
>> Jeremy Ruston
>> mailto:jeremy...@gmail.com
>>
>

-- 
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 https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/c1bd8376-72f9-485b-873e-1dc3195252a7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] [TW5] Is it possible to make a Copy2Clipboard widget?

2016-06-24 Thread Rustem
Is it time to revisit the issue? Seems to be supported by all major 
browsers. http://caniuse.com/#feat=clipboard
Would be nice to have a "copy" button appear on hover over any  piece.

On Tuesday, January 6, 2015 at 11:26:22 AM UTC-8, Jeremy Ruston wrote:
>
> Hi Andrew
>
> I'd also love to have a "copy to clipboard" button. The HTML5 Clipboard 
> API is proceeding very slowly, with very patchy browser support. There's no 
> implementation of copy to clipboard that I know of.
>
> Right now the best prospect for an implementation is within TiddlyDesktop, 
> where we can rise above browser limitations.
>
> Best wishes
>
> Jeremy
>
>
> On Mon, Jan 5, 2015 at 7:05 AM, andrew harrison  > wrote:
>
>> Everyone else online is using ZeroClipboard because of security 
>> restraints but that is a hack in itself and I expect will stop working 
>> eventually. In addition, it only works online.
>> The W3C is going to be implementing the Clipboard API for HTML 5 (
>> http://dev.w3.org/2006/webapi/clipops/clipops.html) but it still doesn't 
>> seem to work yet. I can't find any working examples online.
>> The following code is what I have been using in TWC but it only seems to 
>> work in Internet Explorer but not in Tiddlywiki 5 because Javascript is 
>> stripped. I could spend time writing a widget for just IE but is it worth 
>> it?
>> Can anyone tell me what direction I should go? The alternative is 
>> painstakingly selecting text and hitting Ctrl + C or right click to copy, 
>> or in the case of touch screen by long pressing and messing with those 
>> selector arrows. 3 or more steps vs 1 step. I am trying to aim for 
>> something that copies to clipboard online, offline, server side, client 
>> side, mouse, touch screen, and browser independent. Is that to much to wish 
>> for?
>>
>> Copy
>>
>> -- 
>> 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+...@googlegroups.com .
>> To post to this group, send email to tiddl...@googlegroups.com 
>> .
>> Visit this group at http://groups.google.com/group/tiddlywiki.
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>
>
> -- 
> Jeremy Ruston
> mailto:jeremy...@gmail.com 
>

-- 
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 https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/1b3a6b91-f007-459d-8175-daa7a93a8093%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] [tw5] Final tests for 5.1.12 before release

2016-05-12 Thread Rustem
Jeremy,

Sorry it came out too harsh. As a user of a bleeding-edge version, I 
appreciate the off switch immensely, while we work out the kinks.

--R.

On Thursday, May 12, 2016 at 9:21:55 AM UTC-7, Jeremy Ruston wrote:
>
> Hi Rustem
>
> I wanted to like the new editor, but it messes with browser keyboard 
> shortcuts, for example Ctrl-T to open a new tab. I see those can be 
> reconfigured, I might try that later. 
>
>
> TiddlyWiki is a community development. I can’t personally keep track of 
> every interaction on every platform. I use TiddlyWiki every day on the Mac 
> and on iOS. I’m really dependent on feedback from Windows and Linux users 
> to improve the experience there.
>
> You’ve phrased it as “I don’t like the toolbar because it doesn’t work 
> properly for me in these situations”. But really it’s up to you to help me 
> improve it so that it does work properly for as many situations as possible.
>
> So, perhaps it would be useful if you could review the default keyboard 
> shortcuts and provide some feedback so that we can improve them together.
>
> Also, Shift-Ins (paste) is not working. I prefer that over Ctrl-V. So, 
> thank you for the off switch as well :)
>
>
> Again, I think this is a bug, but you are reporting it as if it is an 
> intrinsic problem with the editor toolbar.
>
> Best wishes
>
> Jeremy.
>
>
> --R.
>
>
> On Monday, May 9, 2016 at 1:16:02 PM UTC-7, Jeremy Ruston wrote:
>>
>> Hi Rustem 
>>
>> > In Firefox, both Windows and Linux, I get this. Tested with a new 
>> profile, as well as on another person's machine - same result. 
>>
>> Great, thank you. Fixed here: 
>>
>>
>> https://github.com/Jermolene/TiddlyWiki5/commit/e54cc7b211e10df5048b85a30ebea42e6f885a54
>>  
>>
>> I’ve uploaded a new prerelease too, 
>>
>> Best wishes 
>>
>> Jeremy. 
>>
>>
> -- 
> 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+...@googlegroups.com .
> To post to this group, send email to tiddl...@googlegroups.com 
> .
> Visit this group at https://groups.google.com/group/tiddlywiki.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/tiddlywiki/6440adfa-bcbe-481a-8043-aae5b9c05578%40googlegroups.com
>  
> <https://groups.google.com/d/msgid/tiddlywiki/6440adfa-bcbe-481a-8043-aae5b9c05578%40googlegroups.com?utm_medium=email_source=footer>
> .
> For more options, visit https://groups.google.com/d/optout.
>
>
>

-- 
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 https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/60c3e6e8-0038-4bb6-b7ff-d64407c8bfc6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] [tw5] Final tests for 5.1.12 before release

2016-05-09 Thread Rustem
Actually, why not invoke the preview type dropdown from the preview button 
itself? Just add "none" to the list of choices.

The open eye icon could remain the same for any preview type except "none".

--R

On Monday, May 9, 2016 at 5:01:35 PM UTC-7, Rustem wrote:
>
> This seems to be the thread to go for anything new-editor-related. So…
>
> *Wish:* Relocate preview button (and accompanying dropdown) to inside (or 
> next to) , so it could be used with the simple 
> editor as well.
> *Bug:* Upon pressing Alt-P to open/close preview, the editor loses focus 
> and needs a mouse click inside to continue editing.
>
> --R.
>
> On Monday, May 9, 2016 at 4:04:05 PM UTC-7, Rustem wrote:
>
> Thanks for the quick fix.
>>
>> I wanted to like the new editor, but it messes with browser keyboard 
>> shortcuts, for example Ctrl-T to open a new tab. I see those can be 
>> reconfigured, I might try that later. 
>>
>> Also, Shift-Ins (paste) is not working. I prefer that over Ctrl-V. So, 
>> thank you for the off switch as well :)
>>
>> --R.
>>
>>
>> On Monday, May 9, 2016 at 1:16:02 PM UTC-7, Jeremy Ruston wrote:
>>>
>>> Hi Rustem 
>>>
>>> > In Firefox, both Windows and Linux, I get this. Tested with a new 
>>> profile, as well as on another person's machine - same result. 
>>>
>>> Great, thank you. Fixed here: 
>>>
>>>
>>> https://github.com/Jermolene/TiddlyWiki5/commit/e54cc7b211e10df5048b85a30ebea42e6f885a54
>>>  
>>>
>>> I’ve uploaded a new prerelease too, 
>>>
>>> Best wishes 
>>>
>>> Jeremy. 
>>>
>>> ​
>

-- 
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 https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/159e603c-a482-4569-938c-a94d828a40d5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] [tw5] Final tests for 5.1.12 before release

2016-05-09 Thread Rustem


This seems to be the thread to go for anything new-editor-related. So…

*Wish:* Relocate preview button (and accompanying dropdown) to inside (or 
next to) , so it could be used with the simple 
editor as well.
*Bug:* Upon pressing Alt-P to open/close preview, the editor loses focus 
and needs a mouse click inside to continue editing.

--R.

On Monday, May 9, 2016 at 4:04:05 PM UTC-7, Rustem wrote:

Thanks for the quick fix.
>
> I wanted to like the new editor, but it messes with browser keyboard 
> shortcuts, for example Ctrl-T to open a new tab. I see those can be 
> reconfigured, I might try that later. 
>
> Also, Shift-Ins (paste) is not working. I prefer that over Ctrl-V. So, 
> thank you for the off switch as well :)
>
> --R.
>
>
> On Monday, May 9, 2016 at 1:16:02 PM UTC-7, Jeremy Ruston wrote:
>>
>> Hi Rustem 
>>
>> > In Firefox, both Windows and Linux, I get this. Tested with a new 
>> profile, as well as on another person's machine - same result. 
>>
>> Great, thank you. Fixed here: 
>>
>>
>> https://github.com/Jermolene/TiddlyWiki5/commit/e54cc7b211e10df5048b85a30ebea42e6f885a54
>>  
>>
>> I’ve uploaded a new prerelease too, 
>>
>> Best wishes 
>>
>> Jeremy. 
>>
>> ​

-- 
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 https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/865da341-bb96-40ff-9cc0-df8b41a17098%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] [tw5] Final tests for 5.1.12 before release

2016-05-09 Thread Rustem
Thanks for the quick fix.

I wanted to like the new editor, but it messes with browser keyboard 
shortcuts, for example Ctrl-T to open a new tab. I see those can be 
reconfigured, I might try that later. 

Also, Shift-Ins (paste) is not working. I prefer that over Ctrl-V. So, 
thank you for the off switch as well :)

--R.


On Monday, May 9, 2016 at 1:16:02 PM UTC-7, Jeremy Ruston wrote:
>
> Hi Rustem 
>
> > In Firefox, both Windows and Linux, I get this. Tested with a new 
> profile, as well as on another person's machine - same result. 
>
> Great, thank you. Fixed here: 
>
>
> https://github.com/Jermolene/TiddlyWiki5/commit/e54cc7b211e10df5048b85a30ebea42e6f885a54
>  
>
> I’ve uploaded a new prerelease too, 
>
> Best wishes 
>
> Jeremy. 
>
>

-- 
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 https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/6440adfa-bcbe-481a-8043-aae5b9c05578%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] [tw5] Final tests for 5.1.12 before release

2016-05-09 Thread Rustem
Works in Chrome. 

In Firefox, both Windows and Linux, I get this. Tested with a new profile, 
as well as on another person's machine - same result.




On Monday, May 9, 2016 at 9:15:26 AM UTC-7, Jeremy Ruston wrote:
>
> Hi Rustem
>
> I use a theme that is not white (Solar Flare), and a bigger font in the 
> editor. In my opinioin, the new editor needs the following before it’s 
> released: a possibility of styling it, and an opt-out switch that reverts 
> to the old plain textarea editor.
>
>
> Taking the style question first, that should work. In my tests, the “Solar 
> Flare” theme works OK (see the screenshot below). What browser/OS are you 
> using?
>
>
> I’ll look at adding a configuration option to revert to the non-framed 
> editor without a toolbar.
>
> I looked briefly at the code. Maybe I misundestood, but I thought 
> copyStyles is supposed to copy styles from dummy text area, that has a 
> class .tc-edit-texteditor assigned to it, to the textarea inside the 
> iframe. It does not do so currently, and the only styles the textarea has 
> are display, height, margin, and width - those are assigned explicitly in 
> the code.
>
> As I say, this is a different result than I’m seeing.
>
> Out of curiosity, I inspected GitHub comments editor - it manages without 
> an iframe, and selection preservation is there
>
> They’ve got a much easier case: there is only a single editor on the page, 
> so they can just stash the selection globally during event handling. The 
> issue for TW5 is that the editor might be torn down and recreated at any 
> time by the refresh mechanism.
>
> Best wishes
>
> Jeremy.
>
> —R.
>
> On Sunday, April 24, 2016 at 1:22:07 AM UTC-7, Jeremy Ruston wrote:
>
>
> Hi Stephen
>>
>> I use very dark themes and palettes with my Tiddlywikis. In the previous 
>> pre-release I could style the editor but this one I seem to get glaring 
>> white with black characters no matter what I do. Perhaps it is something 
>> very simple but I'm missing it.
>>
>>
>> I think you’ll find that after changing the palette you need to cancel 
>> and re-edit tiddlers to make the editor update to the new palette. The 
>> issue is that the textarea in the editor is embedded in an iframe in order 
>> to allow us to preserve the selection, but a side effect is that the main 
>> page styles are not visible within the iframe, so have to be manually 
>> copied across.
>>
>> Best wishes
>>
>> Jeremy
>>
>>
>> Mark S has pointed out that the Undo/Redo arrows don't work in Firefox or 
>> Firefox derivatives. Unfortunately, Mark, that is the Firefox design and 
>> not a mistake in Tiddlywiki.
>>
>> Other than that, everything works as anticipated. 
>>
>>
>> -- 
>> 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+...@googlegroups.com.
>> To post to this group, send email to tiddl...@googlegroups.com.
>> Visit this group at https://groups.google.com/group/tiddlywiki.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/tiddlywiki/373aa4e8-765a-4091-8e12-6ee3ec3f9f98%40googlegroups.com
>>  
>> <https://groups.google.com/d/msgid/tiddlywiki/373aa4e8-765a-4091-8e12-6ee3ec3f9f98%40googlegroups.com?utm_medium=email_source=footer>
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>>
>>
>
> ​
>
> -- 
> 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+...@googlegroups.com .
> To post to this group, send email to tiddl...@googlegroups.com 
> .
> Visit this group at https://groups.google.com/group/tiddlywiki.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/tiddlywiki/15291c6a-4497-469f-80c9-45cca375914a%40googlegroups.com
>  
> <https://groups.google.com/d/msgid/tiddlywiki/15291c6a-4497-469f-80c9-45cca375914a%40googlegroups.com?utm_medium=email_source=footer>
> .
> For more options, visit https://groups.google.com/d/optout.
>
>
>

-- 
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 https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/de5af35a-fe4e-4c32-ba45-12b053e1806b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: [tw5] Final tests for 5.1.12 before release

2016-05-07 Thread Rustem


I use a theme that is not white (Solar Flare), and a bigger font in the 
editor. In my opinioin, the new editor needs the following before it’s 
released: a possibility of styling it, and an opt-out switch that reverts 
to the old plain textarea editor. 

I looked briefly at the code. Maybe I misundestood, but I thought copyStyles 
is supposed to copy styles from dummy text area, that has a class 
.tc-edit-texteditor assigned to it, to the textarea inside the iframe. It 
does not do so currently, and the only styles the textarea has are display, 
height, margin, and width - those are assigned explicitly in the code.

Out of curiosity, I inspected GitHub comments editor - it manages without 
an iframe, and selection preservation is there.

—R.

On Sunday, April 24, 2016 at 1:22:07 AM UTC-7, Jeremy Ruston wrote:

Hi Stephen
>
> I use very dark themes and palettes with my Tiddlywikis. In the previous 
> pre-release I could style the editor but this one I seem to get glaring 
> white with black characters no matter what I do. Perhaps it is something 
> very simple but I'm missing it.
>
>
> I think you’ll find that after changing the palette you need to cancel and 
> re-edit tiddlers to make the editor update to the new palette. The issue is 
> that the textarea in the editor is embedded in an iframe in order to allow 
> us to preserve the selection, but a side effect is that the main page 
> styles are not visible within the iframe, so have to be manually copied 
> across.
>
> Best wishes
>
> Jeremy
>
>
> Mark S has pointed out that the Undo/Redo arrows don't work in Firefox or 
> Firefox derivatives. Unfortunately, Mark, that is the Firefox design and 
> not a mistake in Tiddlywiki.
>
> Other than that, everything works as anticipated. 
>
>
> -- 
> 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+...@googlegroups.com .
> To post to this group, send email to tiddl...@googlegroups.com 
> .
> Visit this group at https://groups.google.com/group/tiddlywiki.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/tiddlywiki/373aa4e8-765a-4091-8e12-6ee3ec3f9f98%40googlegroups.com
>  
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>
>
> ​

-- 
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 https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/15291c6a-4497-469f-80c9-45cca375914a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Filter tiddlers by date: today and in the past

2016-04-06 Thread Rustem


Hi,

I authored the days filter operator. Haven’t been here for a while, and 
came back to find several threads all revolving around more or less the 
same thing - an inability to produce a range of days that ends yesterday 
(past days) or starts tomorrow (days in the future). I submitted a patch 
#2364  to address the 
issue. Following is a description of the days filter operator, most of it 
is applicable now, but cases involving a start day of tomorrow or an end 
day of yesterday will only be possible after the patch.
Parameter 

The parameter (let’s call it D) is a number of days from today. It marks a 
begining or an end of a time interval. 0 is today only. 1 is tomorrow and 
everything before, -1 is yesterday and everything after, etc.
Suffix 

3 days in the future may not make sense for a field like “modified”. That’s 
where the suffix comes in handy.
Say you have a field “due” in your tiddlers. days:due[3] will return 
tiddlers that are due within 3 days from today, and all past due.
Negation (logical NOT) 

This is where the patch will change the behavior a bit.

If days:due[3] is everything that is due within the next 3 days, then, 
strictly speaking, !days:due[3] should mean anything that is NOT due due 
within the next 3 days, or , in other words, anything that is due in 4 days 
or more. That’s how the operator works now, and that makes it impossible to 
specify a period starting tomorrow or ending yesterday, since !days:due[1] 
means “due in 2 days or more”, and !days:due[-1] means “was due 2 days ago 
or before”.

After the patch, !days:due[1] will mean anything that is due in *1* days or 
more, !days:due[-1] will mean anything that was due yesterday or before.
Specifying a range of days (finite number of days) 

Everything we’ve looked at so far was open-ended intervals. To get a closed 
interval, you simply combine two days operator steps in a filter run 
, and sometimes add a third one in a 
filter 
expression 
Examples (after the patch) 

today:
<>
4 days ago:
<>
<>
last 5 days:
<>
next 5 days:
<>
day before yesterday:
<>
yesterday:
<>
<>
tomorrow:
<>
<>
day after tomorrow:
<>

On Saturday, March 12, 2016 at 7:54:25 AM UTC-8, Julian Kniephoff wrote:

Sorry for the late reply, I was trying to figure out the best way to share 
> this, but I didn't have that much time on my hands, so I'm just going to 
> attach the js files; you should still be able to just drag and drop them 
> into your TiddlyWiki.
>
> To answer your questions:
>
>- The two filters take the field they are operating on as their 
>operand. So to get everything that is scheduled today or in the past, you 
>would write [past[scheduled]].
>- The filters don't take any other arguments, i.e. they also don't use 
>the suffix. They *do* however work with the usual ! prefix: 
>[!past[scheduled]] should give you everything that is scheduled in the 
>future, explicitly excluding today.
>- Unfortunately at this point there is no documentation other than 
>this post.
>
> Note that these filters only handle the cases that can't be done with days, 
> hence the lack of further flexibility (taking integer arguments and the 
> like). Specifically these are: Get everything with a given date field set 
> in the past/future including/excluding today. You will still have to use 
> days to achieve any other configuration.
>
>
> On Tuesday, March 8, 2016 at 11:20:06 AM UTC+1, CL wrote:
>>
>> Thank you for sharing your TW-dating code!
>> I am end-user who does not really know how to code. My hotfix was best I 
>> could do :)
>> Those new filters look promsing. However I coudn't figure out how to use 
>> your filter. I want to ask,
>>
>>- Does this filter take suffix for name of date field like days 
>>operator ?
>>- Does this filter take integer as parameter?
>>- Is there any other documentation for instruction?
>>
>> I would be super nice if you could make that into tiddler and attach as 
>> .tid file or
>> you could put it in wiki file and attach wiki file here so people can 
>> simply drag and drop the tiddlers
>>
>> ​

-- 
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 https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/0d899550-4187-42bb-ac9f-61d13f48c944%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] TW5 list filter that returns tiddlers with both of two tags

2015-10-29 Thread Rustem
Matabele's way works. Thanks everyone.

On Wednesday, October 28, 2015 at 10:07:59 PM UTC-7, Tobias Beer wrote:
>
> Hi Rustem, 
>
>> My “prefilter” is rather complex, I’d like to avoid repeating it unless 
>> there is no other way.
>>
> I think your only option to streamline might be to use a macro(/variable)
> into which you stuff your prefilter so as to not repeat it:
>
> \define fx(pre, a, b, post) [$pre$$a$] [$pre$$b$] $post$
>
> <$list filter=< "+[sort[title]]">>/>
>
> Best wishes,
>
> — tb
>

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/420bb2b3-ff91-4766-97c1-2ac81c8f4eb7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] TW5 list filter that returns tiddlers with both of two tags

2015-10-28 Thread Rustem

>
> [tag[x]] [tag[y]] --> all tiddlers tagged either x or y
>

(Old thread, I know, but ...)  How do I filter SOME tiddlers tagged either 
x or y?

Two runs separated by a space, as shown above, both take the list of all 
tiddlers as their input.

But what if I want to pre-filter on some other criteria first, and then 
return only those of the pre-filtered that are tagged either x or y?

Is this the only way:
```
[prefilter[]tag[x]] [prefilter[]tag[y]]
```
My "prefilter" is rather complex, I'd like to avoid repeating it unless 
there is no other way.

Thanks!

--R

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/acb1ba6f-34ec-49d7-beef-9300b9e89223%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: do you think it's time for a "bare bones" edition?

2015-09-21 Thread Rustem

On Saturday, September 19, 2015 at 4:21:37 AM UTC-7, Jeremy Ruston wrote:
>
> ... I worry that this discussion will devolve into a long debate about 
> which shadow tiddlers to omit ...
> 
>
You had no idea :)

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/52816c55-637f-4af8-83df-30f701c08658%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: do you think it's time for a "bare bones" edition?

2015-09-18 Thread Rustem
LOL and wow! And thank you ;) I agree with that last observation.

On Friday, September 18, 2015 at 3:51:06 PM UTC-7, Hegart Dmishiv wrote:
>
> OMG, that's just what I said in GitHub 
> <https://github.com/Jermolene/TiddlyWiki5/issues/1727#issuecomment-141584816>,
>  
> as you were posting here in the discussion forums. Great minds think alike!
>
> On Saturday, September 19, 2015 at 10:24:19 AM UTC+12, Rustem wrote:
>>
>> I've had a bit of a discussion over at GitHub 
>> <https://www.google.com/url?q=https%3A%2F%2Fgithub.com%2FJermolene%2FTiddlyWiki5%2Fissues%2F1908=D=1=AFQjCNFMTEp9VYXLtnkZmSkRvGxHZ2myYQ>,
>>  
>> that made me think...
>>
>> Right now TiddlyWiki is still failrly basic as it is. But with the influx 
>> of new features, there will be more and more people wanting things to look 
>> one way or the other.
>>
>> I am comfortable with customizing the interface of my wiki on my own, 
>> plus I don't feel like arguing my point of view to death. But when it comes 
>> to modifying/adding the deeper internals of TiddlyWiki, I still completely 
>> rely on what is delivered by Jeremy.
>>
>> So, I thought it would be nice if there was a "bare-bones" edition of 
>> TiddlyWiki. It would let me enjoy all the latest improvements to the "core 
>> core", without having to struggle with the ever-increasing number of "bells 
>> and whistles" in order to keep my wiki looking just the way I like it.
>>
>> --R.
>>
>

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/11f27e66-1c24-4feb-8289-f6b5f569de71%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] do you think it's time for a "bare bones" edition?

2015-09-18 Thread Rustem
I've had a bit of a discussion over at GitHub 
, that made me 
think...

Right now TiddlyWiki is still failrly basic as it is. But with the influx 
of new features, there will be more and more people wanting things to look 
one way or the other.

I am comfortable with customizing the interface of my wiki on my own, plus 
I don't feel like arguing my point of view to death. But when it comes to 
modifying/adding the deeper internals of TiddlyWiki, I still completely 
rely on what is delivered by Jeremy.

So, I thought it would be nice if there was a "bare-bones" edition of 
TiddlyWiki. It would let me enjoy all the latest improvements to the "core 
core", without having to struggle with the ever-increasing number of "bells 
and whistles" in order to keep my wiki looking just the way I like it.

--R.

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/7aae907c-5cc1-4cd4-bc5d-8074a066febc%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: TiddlyMap Feature Preview (Video)

2015-09-09 Thread Rustem


> The coolest part will be that you can use this feature in combination with 
> Rustem's days filter in 5.1.10 to say "display all tiddlers with a due date 
> in 2 days as nodes in circular form, red color and very large". This will 
> make a great organizer tool!
>
> -Felix
>
>
Felix, thanks for the mention.

The "days" filter operator is currently in the pull requests queue. Hope it 
will make it into 5.1.10. Here's the link, if anyone wants to try it right 
now:

https://github.com/Jermolene/TiddlyWiki5/pull/1909

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/9ba9fddf-72f9-4640-b8c0-a02b2b9f1b2c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: tip: copying chunks of code to clipboard

2015-08-29 Thread Rustem
BJ,

I think you misunderstood. I was describing a way to copy a fragment of 
code from a wiki to clipboard, for when you actually need to reuse it. The 
entire contents of a code.../code tag, without having to drag your 
mouse across it to highlight everything. (If you want only a part of it, 
you'd still have to do the usual highlight+copy way.)

Rather than having a multitude of small scripts, I keep them in my wiki, 
commented and tagged, and just copy and paste them into command line when I 
need to run them.  I guess it's a somewhat specific use case, not everyone 
will find this useful enough to bother.

--R

On Saturday, August 29, 2015 at 4:01:57 AM UTC-7, BJ wrote:

 HI Rustem,
 it is also possible to use tiddlyclip to copy hightlighted chuck of a web 
 page as html and have them appear in a tiddler, just replace @text with 
 @web in the snip rule:-

 http://tiddlyclip.tiddlyspot.com#defaultSnip

 cheers
 BJ


 On Saturday, August 29, 2015 at 3:11:33 AM UTC+1, Rustem wrote:

 I keep a TiddlyWiki for documenting bits of code, scripts etc. In TWC, I 
 had a homegrown plugin that added a “Copy All to Clipboard” button to every 
 code block. (Eventually, it degraded to “Select All”, when manipulating the 
 clipboard from a web page became impossible, with tightened security in a 
 newer version of Firefox.)

 I was missing that functionality in TW5, but didn’t want to rewrite the 
 plugin since I would not be able to make it copy to clipboard anyways. 
 Finally, it occured to me that there might be a browser add-on that could 
 do the same. All that is required is copy inner HTML from an element on a 
 right click. It wasn’t easy to find, but there it is: 
 https://addons.mozilla.org/en-US/firefox/addon/texttotag/

 After installing it, right click on your piece of code, select 
 “TextToTag” from the menu and voila - the code is in your clipboard.

 When clicking, make sure you are pointing to the text, and not to the 
 whitespace between the lines or on the right-hand side in a block of code. 
 And if you find that limitation inconvenient, you can click anywhere within 
 the block of code if you add this to your stylesheet:

 pre code, pre.hljs code { display: table; }

 Enjoy!

 —R
 ​



-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/fb17889d-3659-4d31-a99b-a33e42040bac%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] tip: copying chunks of code to clipboard

2015-08-28 Thread Rustem


I keep a TiddlyWiki for documenting bits of code, scripts etc. In TWC, I 
had a homegrown plugin that added a “Copy All to Clipboard” button to every 
code block. (Eventually, it degraded to “Select All”, when manipulating the 
clipboard from a web page became impossible, with tightened security in a 
newer version of Firefox.)

I was missing that functionality in TW5, but didn’t want to rewrite the 
plugin since I would not be able to make it copy to clipboard anyways. 
Finally, it occured to me that there might be a browser add-on that could 
do the same. All that is required is copy inner HTML from an element on a 
right click. It wasn’t easy to find, but there it is: 
https://addons.mozilla.org/en-US/firefox/addon/texttotag/

After installing it, right click on your piece of code, select “TextToTag” 
from the menu and voila - the code is in your clipboard.

When clicking, make sure you are pointing to the text, and not to the 
whitespace between the lines or on the right-hand side in a block of code. 
And if you find that limitation inconvenient, you can click anywhere within 
the block of code if you add this to your stylesheet:

pre code, pre.hljs code { display: table; }

Enjoy!

—R
​

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/54af78c1-fac2-4c92-b2d9-c9b2acb87651%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: filter operator days

2015-08-04 Thread Rustem
Submitted #1898 https://github.com/Jermolene/TiddlyWiki5/pull/1898.

Filter operator days can be used for all sorts of dated lists: old 
tiddlers, recent tiddlers, overdue tasks, upcoming tasks and so on.

On Sunday, August 2, 2015 at 4:48:27 PM UTC-7, Rustem wrote:

 I wrote a new filter operator days to replace (or maybe in addition to) 
 the recent operator that was merged into pre-release some time ago.

 Could you test it and let me know if the logic makes sense. Thank you. 
 (Sharing it from my Copy account, the link may go dead at any time.)

 https://copy.com/pO624sG8Y6TRVAjP


-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/d6b012ea-303e-47b9-8f27-93bff8b6e674%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: List of tiddlers with clickable tags formated as links

2015-08-03 Thread Rustem
The bullets and such sort of work inside list widget, you just need to add 
a newline:


$list filter=[!tag[hidden]tag[contact]sort[]]
* $link to={{!!title}}$view field=title//$link $view field=tags/
/$list


The result has lines spaced wider, so if that bothers you, then yes, use 
li.



On Monday, August 3, 2015 at 10:43:59 AM UTC-7, Mark S. wrote:

 Here's what I have:

 ul$list filter=[!tag[hidden]tag[Contacts]sort[]]
 li $link to={{!!title}}$view field=title//$link :
  $list filter=[all[current]tags[]]$link to={{!!title}} $view 
 field=title//$link/$list
 /li/$list
 /ul

 You need to make a sub-list within the main list. I switched html for the 
 bullets code, which AFAIK doesn't work inside $list.

 I think that should get you started.
 HTH
 Mark

 On Monday, August 3, 2015 at 8:54:17 AM UTC-7, Tom wrote:

 Hi!


 I want to display a list of tiddlers with a specific tags. Each 
 item/tiddler should be displayed with a list of clickable tags (its tags 
 formatted as hyperlinks). How do I have to modify the following code (which 
 displays the tags as plain text) in order to achieve this?


 $list filter=[!tag[hidden]tag[contact]sort[]]
 * $link to={{!!title}}$view field=title//$link $view 
 field=tags/
 /$list
 Regards,
 Tom



-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/66e74227-bb98-493f-8c98-043829c9b8b4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] filter operator days

2015-08-02 Thread Rustem
I wrote a new filter operator days to replace (or maybe in addition to) 
the recent operator that was merged into pre-release some time ago.

Could you test it and let me know if the logic makes sense. Thank you. 
(Sharing it from my Copy account, the link may go dead at any time.)

https://copy.com/pO624sG8Y6TRVAjP

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/6c02b364-ba04-4bb3-b9a5-39b3e7ac8917%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] tip: entering tags quicker

2015-07-30 Thread Rustem
Not sure if this is common knowledge, but I just realized I can add a bunch 
of tags to the tiddler I'm editing by simply adding a field tags. The 
value will replace the existing tags, so it's only practical for a 
new/untagged tiddler.

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/e6f015f4-45ea-4120-ae1c-dc11782c0b0d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: external link in same tab/window

2015-07-22 Thread Rustem
You may want to check out Session Manager 
https://addons.mozilla.org/en-US/firefox/addon/session-manager/ instead. 
For everything else tab-related, I use keyconfig 
http://forums.mozillazine.org/viewtopic.php?t=72994. Keyconfig is the 
reason I am with FF all the way. No other browser for me.

On Wednesday, July 22, 2015 at 1:53:07 AM UTC-7, PMario wrote:


 On Wednesday, July 22, 2015 at 10:47:26 AM UTC+2, PMario wrote:

 On Wednesday, July 22, 2015 at 10:28:25 AM UTC+2, Rustem wrote:

 Mario, my question is how to open one in the *same* tab where my TW is. 
 External links open in a *new* tab by default, because of this line in 
 extlink.js 
 http://tiddlywiki.com/#%24%3A%2Fcore%2Fmodules%2Fparsers%2Fwikiparser%2Frules%2Fextlink.js
 :

 That's exactly what my link does (the fixed one). At least with my 
 browser settings. 

 Which browser do you use? Do you use any addOn, extension, that changes 
 default browser behaviour for external links clicks?


 I'm wrong, you are right. ... I'm using an addOn myself, that changes the 
 browser behaviour. But I mainly use it because of its session backup 
 features. So I forgot about the click behaviour change :) 

 I'm using FF with Tab Mix Plus addOn. ... This may be an option, for you 
 too, if you use FF

 -mario



-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/2a499850-4e9f-42c5-9570-e6e736134456%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: external link in same tab/window

2015-07-22 Thread Rustem


Mario, my question is how to open one in the *same* tab where my TW is. 
External links open in a *new* tab by default, because of this line in 
extlink.js 
http://tiddlywiki.com/#%24%3A%2Fcore%2Fmodules%2Fparsers%2Fwikiparser%2Frules%2Fextlink.js
:


target: {type: string, value: _blank}

I suspect there is no way, but maybe I missed it…

Your example, BTW, produces a strange result - an empty tab.

—R

On Wednesday, July 22, 2015 at 1:12:09 AM UTC-7, PMario wrote:

Hi,

 [ext[tiddlywiki.com]]

 see: http://tiddlywiki.com/#Linking%20in%20WikiText

 -m

​

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/087374a2-e6a7-49d2-9937-f94940ac8058%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] external link in same tab/window

2015-07-21 Thread Rustem
I can make an external link open in the same tab using a element. But is 
there a native TW syntax to make an external link open in the same tab?

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/960f3fd7-7268-4e0b-94c6-c5bbee5c8c09%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: homegrown speed test

2015-07-10 Thread Rustem
I wanted to see which one is faster. They produce the same output. Not sure 
why you don't see a list in the second example. I just copied it from your 
reply into a new tiddler and it shows New Tiddler, as expected.

On Friday, July 10, 2015 at 2:35:02 AM UTC-7, PMario wrote:

 Hi, 
 I'm not sure, what you try to achieve but it you test this:

 $list filter=[all[current]]$view field=title/$list

 $list filter=[currentTiddler] $view field=title/$list

 imo the second example isn't a valid filter, since it never produces a 
 list. 


 -


 If you want to enable speed measuring in your TW, you can enable it like 
 this: 

 open: http://tiddlywiki.com/#%24%3A%2Fcore%2Fmodules%2Fstartup.js

 at line 20 set

 // Set to `true` to enable performance instrumentation
 var PERFORMANCE_INSTRUMENTATION = false;

 to 

 // Set to `true` to enable performance instrumentation
 var PERFORMANCE_INSTRUMENTATION = true;

 Save and reload the TW. 

 The browser console [f12] will show you some performance info. 
 -m


-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/fce8fe27-f365-46ff-9aa2-841802a17e28%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: homegrown speed test

2015-07-10 Thread Rustem


Also,

$list filter=[all[current]tagging[]]./$list is about 25% faster than 
$list 
filter=[tagcurrentTiddler]./$list , and {{!!title}} is 10 times 
faster than currentTiddler! Not sure if the time grows linearly, I used 
100,000 copies for the latter comparison.

—R 

On Friday, July 10, 2015 at 2:42:54 AM UTC-7, Rustem wrote:

I wanted to see which one is faster. They produce the same output. Not sure 
 why you don't see a list in the second example. I just copied it from your 
 reply into a new tiddler and it shows New Tiddler, as expected.

 On Friday, July 10, 2015 at 2:35:02 AM UTC-7, PMario wrote:

 Hi, 
 I'm not sure, what you try to achieve but it you test this:

 $list filter=[all[current]]$view field=title/$list

 $list filter=[currentTiddler] $view field=title/$list

 imo the second example isn't a valid filter, since it never produces a 
 list. 


 -


 If you want to enable speed measuring in your TW, you can enable it like 
 this: 

 open: http://tiddlywiki.com/#%24%3A%2Fcore%2Fmodules%2Fstartup.js

 at line 20 set

 // Set to `true` to enable performance instrumentation
 var PERFORMANCE_INSTRUMENTATION = false;

 to 

 // Set to `true` to enable performance instrumentation
 var PERFORMANCE_INSTRUMENTATION = true;

 Save and reload the TW. 

 The browser console [f12] will show you some performance info. 
 -m

 ​

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/a1ed1486-d4f3-40a9-8e9e-9c7b5ce717f3%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] reference to template's field

2015-07-10 Thread Rustem
I'd like to have a field in a template tiddler, and use it's value when 
rendering a tiddler via the template. I know I can get currentTiddler's 
fields, or any tiddler's fields using the title of that tiddler. But is 
there a way to get template's fields without referring to it by title 
literally?


--R.

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/7bff49c9-c4e9-450d-9397-78323447acc5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: homegrown speed test

2015-07-10 Thread Rustem
Closing slash is missing from the view widget in your example, that's why 
the second list doesn't work. This works:
```
$list filter=[all[current]] 1 $view field=title//$list
$list filter=[currentTiddler] 2 $view field=title//$list
```

On Friday, July 10, 2015 at 2:35:02 AM UTC-7, PMario wrote:

 Hi, 
 I'm not sure, what you try to achieve but it you test this:

 $list filter=[all[current]]$view field=title/$list

 $list filter=[currentTiddler] $view field=title/$list

 imo the second example isn't a valid filter, since it never produces a 
 list. 


 -


 If you want to enable speed measuring in your TW, you can enable it like 
 this: 

 open: http://tiddlywiki.com/#%24%3A%2Fcore%2Fmodules%2Fstartup.js

 at line 20 set

 // Set to `true` to enable performance instrumentation
 var PERFORMANCE_INSTRUMENTATION = false;

 to 

 // Set to `true` to enable performance instrumentation
 var PERFORMANCE_INSTRUMENTATION = true;

 Save and reload the TW. 

 The browser console [f12] will show you some performance info. 
 -m


-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/31ed3339-942a-4d7c-bde9-14574539734c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] homegrown speed test

2015-07-09 Thread Rustem


Not sure how useful this is, but seeing that there are some 
performance-related commits in GitHub lately, I compared the two filters by 
simply copying each if the two lists below 20,000 times in a tiddler. 
all[current] is almost double the speed of currentTiddler, 1min 15sec vs. 
2 min 20 sec on my Core-i7. There is probably some datatype conversion 
happening with the latter.

$list filter=[all[current]]#xfeff;/$list
$list filter=[currentTiddler]#xfeff;/$list

​

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/c1bfbaf7-cd04-4f16-959a-eee8db46def0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: enclose string in [[...]] only if contains spaces

2015-07-06 Thread Rustem
Actually, I realized `set` widget will do it for me, as described in 
http://tiddlywiki.com/static/SetWidget (see Filtered List Variable 
Assignment).

However, can anybody explain why this does not work as expected (wrap in 
[[...]])

```
$set name=myVariable filter=[[$(currentTiddler)$]]
$text text=myVariable/
/$set
```

but this does:

```
$set name=myVariable filter=[all[current]]
$text text=myVariable/
/$set
```


On Monday, July 6, 2015 at 12:52:36 AM UTC-7, Jeremy Ruston wrote:

 Hi Rustem

 The core already contains a function stringifyList() that does what you 
 want:

 https://github.com/Jermolene/TiddlyWiki5/blob/master/boot/boot.js#L253-L263

 You could wrap it into a JS macro,

 Best wishes

 Jeremy


 On Mon, Jul 6, 2015 at 7:58 AM, Rustem 8pa...@gmail.com javascript: 
 wrote:

 I agree. I think this problem is commonly referred to as OCD. Can't live 
 with extraneous brackets. :D

 On Sunday, July 5, 2015 at 11:53:20 PM UTC-7, Danielo Rodríguez wrote:

 What is the problem about enclosing a string without spaces in double 
 square brackets? it will work the same and it is easier.

  -- 
 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+...@googlegroups.com javascript:.
 To post to this group, send email to tiddl...@googlegroups.com 
 javascript:.
 Visit this group at http://groups.google.com/group/tiddlywiki.
 To view this discussion on the web visit 
 https://groups.google.com/d/msgid/tiddlywiki/3d73c032-c94d-4f55-914b-5b9e4cba856d%40googlegroups.com
  
 https://groups.google.com/d/msgid/tiddlywiki/3d73c032-c94d-4f55-914b-5b9e4cba856d%40googlegroups.com?utm_medium=emailutm_source=footer
 .

 For more options, visit https://groups.google.com/d/optout.




 -- 
 Jeremy Ruston
 mailto:jeremy...@gmail.com javascript:
  

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/e387455d-a434-4b8f-a5ae-8b5d6dcac0b9%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: enclose string in [[...]] only if contains spaces

2015-07-06 Thread Rustem


I should have just used [currentTiddler] instead of [[$(currentTiddler)$]]. 
Not sure what the deal with the latter is. Used in a list filter, it causes too 
much recursion.

On Monday, July 6, 2015 at 1:05:06 PM UTC-7, Rustem wrote:

Actually, I realized set widget will do it for me, as described in 
 http://tiddlywiki.com/static/SetWidget (see “Filtered List Variable 
 Assignment”).

 However, can anybody explain why this does not work as expected (assuming 
 currentTiddler title contains spaces)

 $set name=myVariable filter=[[$(currentTiddler)$]] [[another one]]
 $text text=myVariable/
 /$set

 but this does:

 $set name=myVariable filter=[all[current]] [[another one]]
 $text text=myVariable/
 /$set

 On Monday, July 6, 2015 at 12:52:36 AM UTC-7, Jeremy Ruston wrote:

 Hi Rustem

 The core already contains a function stringifyList() that does what you 
 want:


 https://github.com/Jermolene/TiddlyWiki5/blob/master/boot/boot.js#L253-L263

 You could wrap it into a JS macro,

 Best wishes

 Jeremy


 On Mon, Jul 6, 2015 at 7:58 AM, Rustem 8pa...@gmail.com wrote:

 I agree. I think this problem is commonly referred to as OCD. Can't live 
 with extraneous brackets. :D

 On Sunday, July 5, 2015 at 11:53:20 PM UTC-7, Danielo Rodríguez wrote:

 What is the problem about enclosing a string without spaces in double 
 square brackets? it will work the same and it is easier.

  -- 
 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+...@googlegroups.com.
 To post to this group, send email to tiddl...@googlegroups.com.
 Visit this group at http://groups.google.com/group/tiddlywiki.
 To view this discussion on the web visit 
 https://groups.google.com/d/msgid/tiddlywiki/3d73c032-c94d-4f55-914b-5b9e4cba856d%40googlegroups.com
  
 https://groups.google.com/d/msgid/tiddlywiki/3d73c032-c94d-4f55-914b-5b9e4cba856d%40googlegroups.com?utm_medium=emailutm_source=footer
 .

 For more options, visit https://groups.google.com/d/optout.




 -- 
 Jeremy Ruston
 mailto:jeremy...@gmail.com
  
 ​

​

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/b6c29ee0-7e8c-486d-956d-83a572130ad9%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: enclose string in [[...]] only if contains spaces

2015-07-06 Thread Rustem
I agree. I think this problem is commonly referred to as OCD. Can't live 
with extraneous brackets. :D

On Sunday, July 5, 2015 at 11:53:20 PM UTC-7, Danielo Rodríguez wrote:

 What is the problem about enclosing a string without spaces in double 
 square brackets? it will work the same and it is easier.


-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/3d73c032-c94d-4f55-914b-5b9e4cba856d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] enclose string in [[...]] only if contains spaces

2015-07-05 Thread Rustem
I'm looking for a macro or something that would enclose a string containing 
spaces in double-square brackets, but leave a single-word string as is. 
Any hints?

--R

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/1560b9e0-cc8e-42b4-a7f1-220cdfa9aa6c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] [TW5] One TW to Rule Them All

2015-07-02 Thread Rustem
Mat,

Please have a look at http://solar-flair.tiddlyspot.com/, drill down to 
Features  Filtered Publish button. My example has only one Publish 
button, but you can setup multiple buttons (and a different filter for each 
one) in your central wiki, allowing you to save different single-html 
wikis from it. You'd have to also modify TiddlySpot information in Control 
Panel, if you want to publish to different TidddlySpot sites.

--R.

On Saturday, May 23, 2015 at 1:03:23 PM UTC-7, Jeremy Ruston wrote:

 Hi Mat

 As I mentioned on the other thread, the obstacle to this plan at the 
 moment is that it isn't possible to specify which saver and parameters are 
 used for a publish operation.

 https://groups.google.com/d/msg/tiddlywiki/1S348N3rsAc/b3rDMyCSsZsJ

 Best wishes

 Jeremy.


 On Fri, May 22, 2015 at 6:05 PM, Mat matia...@gmail.com javascript: 
 wrote:

 The recent information from Jeremy on filtered saving 
 https://groups.google.com/d/msg/tiddlywiki/1S348N3rsAc/rbXjCZRB9HYJ 
 has given me hope to fulfill a long time dream; To be able to use one TW as 
 a publishing central for my other TWs. You should probably read that linked 
 post before the following.

 I always imagined a central TW with receiving surrouunding ones as 
 exporting *individual* tiddlers from the central TW. While this, I 
 guess, would be the optimal workflow, the filtered saving instead can 
 allow to have several Publish buttons in the central TW, one for each of 
 the peripheral TWs. It is IMO not perfect in that you fully overwrite the 
 previous version of the peripherals which means you can't edit them 
 individually (you *must* use the central one) and it probably makes it 
 trickier (but still doable) to use different layouts etc for them. (It 
 should be doable by including all layouts (CSS?) in the central one and 
 then filter to save only the relevant one).

 Despite the drawbacks, I think a central TW could be very cool and I 
 hope to do this for some TWs on *tiddlyspot*! I.e so that a tiddlyspot 
 has multiple Publish buttons that to directly upload filtered variants to 
 other tiddlyspots of mine. For instance you could run parallel blogs in 
 this way, turning to different audiences and in the central TW simply tag 
 posts with the relevant blogname.

 AFAI understand, this means combining the filtered saving 
 https://groups.google.com/d/msg/tiddlywiki/1S348N3rsAc/rbXjCZRB9HYJ 
 Publish button with the content in the save to tiddlyspot in 
 Controlpanel, i.e: $:/core/ui/ControlPanel/Saving 
 http://tiddlywiki.com/#%24%3A%2Fcore%2Fui%2FControlPanel%2FSaving 


 ...but I have little clue how to do this and would really appreciate help.


 :-)




 -
 Below follows some code for the publish button and the save to 
 tiddlyspot tiddler.


 The filtered saving Publish button

 $button
 $action-sendmessage $message=tm-download-file 
 $param=title-of-your-template filename=index.html/
 Publish
 /$button




 Content of the save to tiddlyspot in Ctrlpanel;

 \define lingo-base() $:/language/ControlPanel/Saving/
 \define backupURL()
 http://$(userName)$.tiddlyspot.com/backup/
 \end
 \define backupLink()
 $reveal type=nomatch state=$:/UploadName text=
 $set name=userName value={{$:/UploadName}}
 $reveal type=match state=$:/UploadURL text=
 backupURL
 /$reveal
 $reveal type=nomatch state=$:/UploadURL text=
 $macrocall $name=resolvePath source={{$:/UploadBackupDir}} 
 root={{$:/UploadURL}}
 /$reveal
 /$set
 /$reveal
 \end
 ! lingo TiddlySpot/Heading
 lingo TiddlySpot/Description
 |lingo TiddlySpot/UserName |$edit-text tiddler=$:/UploadName 
 default= tag=input/ |
 |lingo TiddlySpot/Password |$password name=upload/ |
 |lingo TiddlySpot/Backups |backupLink |
 ''lingo TiddlySpot/Advanced/Heading''
 |lingo TiddlySpot/ServerURL  |$edit-text tiddler=$:/UploadURL 
 default= tag=input/ |
 |lingo TiddlySpot/Filename |$edit-text tiddler=$:/UploadFilename 
 default=index.html tag=input/ |
 |lingo TiddlySpot/UploadDir |$edit-text tiddler=$:/UploadDir 
 default=. tag=input/ |
 |lingo TiddlySpot/BackupDir |$edit-text tiddler=$:/UploadBackupDir 
 default=. tag=input/ |
 lingo TiddlySpot/Hint


  -- 
 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+...@googlegroups.com javascript:.
 To post to this group, send email to tiddl...@googlegroups.com 
 javascript:.
 Visit this group at http://groups.google.com/group/tiddlywiki.
 To view this discussion on the web visit 
 https://groups.google.com/d/msgid/tiddlywiki/10add882-f5d2-44f9-9d1e-7b194a59a9b5%40googlegroups.com
  
 https://groups.google.com/d/msgid/tiddlywiki/10add882-f5d2-44f9-9d1e-7b194a59a9b5%40googlegroups.com?utm_medium=emailutm_source=footer
 .
 For more options, visit https://groups.google.com/d/optout.




 -- 
 Jeremy 

[tw] New label for recently modified tiddlers

2015-06-30 Thread Rustem
I'd like to list some tiddlers alphabetically, and have tiddlers created, 
say, in the last 2 weeks, labeled as New. Has someone solved this already?

Thanks
--R

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/67fb1d56-d215-4943-835e-2317c8f0f3ab%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: New label for recently modified tiddlers

2015-06-30 Thread Rustem


 The Recent tab on your sidebar ... shows just the 50 (or other number) 
 most recently modified: 


Thanks, I'm aware of that, not what I want. 

I haven't yet had to build a macro to do date related math but I will need 
 to fairly soon. If noone else has one I'll post it here when its built


I would be very interested to see how it can be implemented using only TW5 
syntax. I had to write a new filter to solve this, have a look at GitHub 
https://github.com/nameanyone/TiddlyWiki5/blob/master/core/modules/filters/recent.js
 
if interested. Will submit once I document it. 

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/c883387c-976e-43d4-9357-4a7bf6e826a5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Disabling browser cache

2015-06-22 Thread Rustem
Here it is: https://github.com/Jermolene/TiddlyWiki5/issues/1839

On Friday, June 19, 2015 at 1:00:09 AM UTC-7, Jeremy Ruston wrote:

 Hi Rustem

 Interesting, I've not encountered this before. It may be worth making a 
 github ticket for a more flexible solution: to modify server.js to enable 
 cache headers to be explicitly specified in tiddlywiki.info.

 Best wishes

 Jeremy.



 On Fri, Jun 19, 2015 at 7:05 AM, Rustem 8pa...@gmail.com javascript: 
 wrote:

 My setup: 

- Firefox on Windows desktop 
- Node.js 
- Content wikis “work” and “home”, each includes a “base” edition 
wiki which contains all my customizations. 
- I don’t serve the base edition separately. When I need to modify 
any customizations, I just do it from “work” or “home”, and then restart 
the other one so it picks up the changes. 

 I was noticing that even after a restart of tiddlywiki and a page refresh 
 in the browser, I would still see a previous version of a tiddler that I 
 edited in the other wiki. A second page refresh would then bring up the 
 updated version.

 Here’s a tiddler I created to disable caching and it seems to have helped:

 tags: $:/tags/RawMarkup
 title: HTTPHeaders
 type: text/vnd.tiddlywiki

 meta http-equiv=cache-control content=no-cache /
 meta http-equiv=cache-control content=no-store /
 meta http-equiv=pragma content=no-cache /
 meta http-equiv=expires content=0 /

 ​

 -- 
 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+...@googlegroups.com javascript:.
 To post to this group, send email to tiddl...@googlegroups.com 
 javascript:.
 Visit this group at http://groups.google.com/group/tiddlywiki.
 To view this discussion on the web visit 
 https://groups.google.com/d/msgid/tiddlywiki/52dff807-72dc-4d9f-a2c0-09aec894ec05%40googlegroups.com
  
 https://groups.google.com/d/msgid/tiddlywiki/52dff807-72dc-4d9f-a2c0-09aec894ec05%40googlegroups.com?utm_medium=emailutm_source=footer
 .
 For more options, visit https://groups.google.com/d/optout.




 -- 
 Jeremy Ruston
 mailto:jeremy...@gmail.com javascript:
  

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/792fb38e-6ced-43ae-96a4-8e2192c1e7a3%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Disabling browser cache

2015-06-19 Thread Rustem


My setup: 

   - Firefox on Windows desktop 
   - Node.js 
   - Content wikis “work” and “home”, each includes a “base” edition wiki 
   which contains all my customizations. 
   - I don’t serve the base edition separately. When I need to modify any 
   customizations, I just do it from “work” or “home”, and then restart the 
   other one so it picks up the changes. 

I was noticing that even after a restart of tiddlywiki and a page refresh 
in the browser, I would still see a previous version of a tiddler that I 
edited in the other wiki. A second page refresh would then bring up the 
updated version.

Here’s a tiddler I created to disable caching and it seems to have helped:

tags: $:/tags/RawMarkup
title: HTTPHeaders
type: text/vnd.tiddlywiki

meta http-equiv=cache-control content=no-cache /
meta http-equiv=cache-control content=no-store /
meta http-equiv=pragma content=no-cache /
meta http-equiv=expires content=0 /

​

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/52dff807-72dc-4d9f-a2c0-09aec894ec05%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] How-to: Delete a tiddler without confirmation!

2015-06-12 Thread Rustem

   
   1. Gleaned from the source code
  - If the text field does not exist or is empty, there will be no 
  confirmation. 
  - See 
  
http://tiddlywiki.com/prerelease/#%24%3A%2Fcore%2Fmodules%2Fwidgets%2Fnavigator.js,
 
  under // Seek confirmation. 
2. Found experimentally
  - Button widget can execute two actions - child action first, then 
  integrated action. 
  - See http://tiddlywiki.com/prerelease/#ButtonWidget for definitions 

So, to delete a tiddler without confirmation, remove the text field first.

$button message=tm-delete-tiddler param=sliderState '$tiddler$' 
class=sliderButtonClasses
$action-deletefield $tiddler=sliderState '$tiddler$' 
$field=text/-/$button

Enjoy!

—*R*—
​

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/4ec9be77-609c-42d4-867b-44978241de3e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Transclude first paragraph or similar

2015-06-03 Thread Rustem


This is a bit late, but here’s my solution that returns the first line (not 
paragraph), using nothing but core functionality. Copy it literally 
(including new line as splitbefore’s parameter) into a test tiddler.

$list filter=[{$:/ControlPanel}splitbefore[
]] variable=firstLine$text text=firstLine//$list

—R

On Tuesday, May 12, 2015 at 4:41:40 AM UTC-7, Mat wrote:

@Mike - thank you for your input and sorry for late reply.

 With your pointers it does work now; http://match.tiddlyspot.com/

 But I do suspect the use of $tw is inappropriate and he also comments that 
 /*global $tw: false */ which may be an indiction of this? I also get 
 the surrounding brackets, which I'm guessing is a failed attempt att 
 creating a link from the output?

 It seems like a very useful Filter operator for picking parts out of 
 fields using regular expressions  so hopefully someone will create a 
 fully satisfying version eventually.

 FYI, I intended to use it to transclude the first paragraph for the ToDo 
 list http://fastnewtiddler.tiddlyspot.com/#Todo%20(please%20help) in 
 fastnewtiddler but instead went with using a solution from Tobias to 
 transclude a field into the text that then appears to be the first 
 paragraph in the tiddler text and is reused in the ToDo-list. A bit 
 backward but...

 :-)

​

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/a87302d3-ef37-452b-8596-9a78d83f0d99%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] selected tab highlighting in pre-release

2015-05-13 Thread Rustem
Jeremy,

I'm running pre-release under node.js. In the last couple of days it 
stopped highlighting the active tab on page reload. Initially the open tab 
has the same look as all other background tabs. Content is shown correctly, 
but the tab is not highlighted. The highlight appears when I switch tabs. 

Firefox and Chrome. When I switch to 5.1.8 engine, all is back to normal.

--R.

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/bcb077f6-f857-426f-bba8-f0a0078c544b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] selected tab highlighting in pre-release

2015-05-13 Thread Rustem
Thanks! 

Another thing I noticed, in sticky titles mode, if a tiddler is short 
enough, More info dropdown gets obscured under the below tiddler's title. 
Would you like me to open a ticket for that?

On Wednesday, May 13, 2015 at 4:17:23 PM UTC-7, Jeremy Ruston wrote:

 Hi Rustem

 It's fixed now. I've uploaded a new prerelease to 
 http://tiddlywiki.com/prerelease

 Many thanks,

 Jeremy.

 On Thu, May 14, 2015 at 12:00 AM, Jeremy Ruston jeremy...@gmail.com 
 javascript: wrote:

 Hi Rustem

 Thanks, funnily enough I had just spotted that too. I'll investigate.

 Best wishes

 Jeremy.


 On Wed, May 13, 2015 at 11:58 PM, Rustem 8pa...@gmail.com javascript: 
 wrote:

 Jeremy,

 I'm running pre-release under node.js. In the last couple of days it 
 stopped highlighting the active tab on page reload. Initially the open tab 
 has the same look as all other background tabs. Content is shown correctly, 
 but the tab is not highlighted. The highlight appears when I switch tabs. 

 Firefox and Chrome. When I switch to 5.1.8 engine, all is back to normal.

 --R.

 -- 
 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+...@googlegroups.com javascript:.
 To post to this group, send email to tiddl...@googlegroups.com 
 javascript:.
 Visit this group at http://groups.google.com/group/tiddlywiki.
 To view this discussion on the web visit 
 https://groups.google.com/d/msgid/tiddlywiki/bcb077f6-f857-426f-bba8-f0a0078c544b%40googlegroups.com
  
 https://groups.google.com/d/msgid/tiddlywiki/bcb077f6-f857-426f-bba8-f0a0078c544b%40googlegroups.com?utm_medium=emailutm_source=footer
 .
 For more options, visit https://groups.google.com/d/optout.




 -- 
 Jeremy Ruston
 mailto:jeremy...@gmail.com javascript:
  



 -- 
 Jeremy Ruston
 mailto:jeremy...@gmail.com javascript:
  

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/48c64b3a-3145-4b07-b293-6d9dac933325%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: collapse tiddler

2015-05-13 Thread Rustem
Mario,

You got the behaviour right, it's to keep the edit textarea within the 
viewport. Only has effect in edit mode, when the tiddler is long. 
I agree, these pencil icons are not the best choice. Can you suggest a 
better pair of icons? I'd prefer it they were from Font Awesome. 
http://fortawesome.github.io/Font-Awesome/icons/
I'll add the tooltips.
http://fortawesome.github.io/Font-Awesome/icons/
On Tuesday, May 12, 2015 at 11:56:03 PM UTC-7, PMario wrote:

 Hi Rustem,

 Well done!

 I like your icons, but I don't understand the Limit editor height 
 combination. .. 

  - For me the pencil means: If I click it something gets edited. 
- But in view mode, it does nothing. Even in edit mode, the behaviour 
 is only visible if you have a long tiddler. 
- So imo those 2 are confusing. 

  - The other icons are clear.
- Tooltips would be nice.

 have fun!
 mario


-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/d989214f-7f0c-4251-9672-6f18ef0ec046%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: collapse tiddler

2015-05-13 Thread Rustem
Thank you, everybody. This is quite unexpected. I was doing it for myself, 
to add some small conveniences. There isn't any code supporting TodoHere 
even, yet. More like a proof of concept. But if you create a few todos and 
assign priorities to them, and set the status field to one of not 
started, progress and completed, you'll see them having different 
checkboxes (empty, grayed and checked) and sorted by status and priority.

No, I'm not moving the river into a table. Mans was asking about a table he 
has inside a tiddler. In that case, the tiddler gets widened beyond 49% 
limit and so two tiddlers don't fit side by side. Good idea about moving 
sidebar to the top, but I don't want to make that a default behaviour. 
Instead, it should be driven by min-width of the river, i.e. as you said, 
like it happens by default. I'll introduce a separate min-width setting for 
two columns layout, so everyone could tweak it to their liking.

On Tuesday, May 12, 2015 at 11:27:19 PM UTC-7, Danielo Rodríguez wrote:


 It's the table content itself, not table css. Even with word wrapping, 
 the table is still as wide as a sum of the widest word in each column. 
 Maybe wrapping the table in another div would help? I'd have to try...


 Do you move tiddler river into a table of two columns when that button is 
 clicked?
 What about moving the sidebar to the top? Like it happens when the window 
 is not big enough. That way you will have the full width of the page.

 I really like your ideas and your improvements to TW. Very well done!!


-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/72145dea-e760-4f89-a632-6b5650b85c9c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: collapse tiddler

2015-05-12 Thread Rustem


 Well done, it's great to see you producing so much.

Thank you!
 

 I'd really like to include your Solarised palette in the core, would you 
 be happy to contribute it?

Sure, I'll PM you some questions.
 

 My other tiny request would be that I would be very grateful if you could 
 set a site title and subtitle for your site so that I can more easily 
 identify it in my open tabs.

Done.
 

 Best wishes

 Jeremy.




 On Tue, May 12, 2015 at 12:10 PM, Måns huma...@gmail.com javascript: 
 wrote:

 Hi Rustem

 Very nice - congratulations and thank you very much for sharing your 
 buttons :-)

 I was wondering:

 Collapse button:
 Is it possible *not* to edit the modification field of the current 
 tiddler when you collapse it?
 Is it possible to make the height of the collapsed tiddler even smaller?

 Limit text editor's heigth button:
 Where/how do you set the limited height of the edit text frame?

 Two columns layout button:
 When we invoke the two columns layout - some of the tiddlers (those which 
 have a table) seem to get wider that the others - and push them over the 
 left menu.
 How do we control this behaviour? Is it the table css which takes 
 precedence over the story width?

 Cheers Måns Mårtensson


 Den tirsdag den 12. maj 2015 kl. 12.09.45 UTC+2 skrev Rustem:

 Collapse tiddler (effectively, hide body) and other buttons added, see 
 http://solar-flair.tiddlyspot.com/.

 On Sunday, May 10, 2015 at 11:55:46 PM UTC-7, Rustem wrote:

 I'd like to make a Collapse button for the ViewToolbar, that will 
 hide the body, leaving only the tiddler title in the story. Does anyone 
 already have it? What do you think is the best way to go about it?

 Here's what I'm considering.

 Possible ways:
 * Inject a class in the current tiddler. (Don't know how, any 
 pointers?)
 * Wrap the current (every?) tiddler in a RevealWidget.
 * Have a separate ViewTemplate, tag-based. Add/remove a Collapsed tag.

 --R.

  -- 
 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+...@googlegroups.com javascript:.
 To post to this group, send email to tiddl...@googlegroups.com 
 javascript:.
 Visit this group at http://groups.google.com/group/tiddlywiki.
 To view this discussion on the web visit 
 https://groups.google.com/d/msgid/tiddlywiki/20138f60-fa0b-46cd-a4a0-6b5d93d14cba%40googlegroups.com
  
 https://groups.google.com/d/msgid/tiddlywiki/20138f60-fa0b-46cd-a4a0-6b5d93d14cba%40googlegroups.com?utm_medium=emailutm_source=footer
 .

 For more options, visit https://groups.google.com/d/optout.




 -- 
 Jeremy Ruston
 mailto:jeremy...@gmail.com javascript:
  

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/c287407b-c435-46f9-8896-3302e6dcd21c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: collapse tiddler

2015-05-12 Thread Rustem


 Very nice - congratulations and thank you very much for sharing your 
 buttons :-)


Thank you, my pleasure. I did it just to show how it can be done, not as a 
finished product.

Collapse button:
 Is it possible *not* to edit the modification field of the current tiddler 
 when you collapse it?
 Is it possible to make the height of the collapsed tiddler even smaller?


I'm just using what's already available now in TW, to hide the body of the 
tiddler. It's beyond my skill to answer these questions. If I do find out 
one day, I will modify my code.

Limit text editor's heigth button:
 Where/how do you set the limited height of the edit text frame?


In $:/_ra/config/Configurables data tiddler.
 

 Two columns layout button:
 When we invoke the two columns layout - some of the tiddlers (those which 
 have a table) seem to get wider that the others - and push them over the 
 left menu.
 How do we control this behaviour? Is it the table css which takes 
 precedence over the story width?


It's the table content itself, not table css. Even with word wrapping, the 
table is still as wide as a sum of the widest word in each column. Maybe 
wrapping the table in another div would help? I'd have to try...
 


 Cheers Måns Mårtensson

 Den tirsdag den 12. maj 2015 kl. 12.09.45 UTC+2 skrev Rustem:

 Collapse tiddler (effectively, hide body) and other buttons added, see 
 http://solar-flair.tiddlyspot.com/.

 On Sunday, May 10, 2015 at 11:55:46 PM UTC-7, Rustem wrote:

 I'd like to make a Collapse button for the ViewToolbar, that will hide 
 the body, leaving only the tiddler title in the story. Does anyone already 
 have it? What do you think is the best way to go about it?

 Here's what I'm considering.

 Possible ways:
 * Inject a class in the current tiddler. (Don't know how, any 
 pointers?)
 * Wrap the current (every?) tiddler in a RevealWidget.
 * Have a separate ViewTemplate, tag-based. Add/remove a Collapsed tag.

 --R.



-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/35fbd7fd-b808-4544-a088-58334347e66d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: collapse tiddler

2015-05-12 Thread Rustem
Collapse tiddler (effectively, hide body) and other buttons added, see 
http://solar-flair.tiddlyspot.com/.

On Sunday, May 10, 2015 at 11:55:46 PM UTC-7, Rustem wrote:

 I'd like to make a Collapse button for the ViewToolbar, that will hide 
 the body, leaving only the tiddler title in the story. Does anyone already 
 have it? What do you think is the best way to go about it?

 Here's what I'm considering.

 Possible ways:
 * Inject a class in the current tiddler. (Don't know how, any pointers?)
 * Wrap the current (every?) tiddler in a RevealWidget.
 * Have a separate ViewTemplate, tag-based. Add/remove a Collapsed tag.

 --R.


-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/7872bdcb-638d-4315-b758-1e7eb13fc57e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Significantly slower since update to 5.1.8

2015-05-12 Thread Rustem
Didn't notice any slowdown any time recently. Running latest pre-release 
from Github under node.js.

On Tuesday, May 12, 2015 at 12:47:44 AM UTC-7, Danielo Rodríguez wrote:

 Hello everyone,

 Since I have updated all my TWs to 5.1.8 version I feel all of them 
 significantly slower. There are scenarios where it is more noticeable. I'm 
 the only one that is experiencing this? It is more noticeable on chrome 
 browser. Previously I was using 5.1.8 pre-release and 5.1.7.

 Regards


-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/f2e10eaf-5a8f-47a8-a771-bf1476103f89%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] collapse tiddler

2015-05-11 Thread Rustem
I'd like to make a Collapse button for the ViewToolbar, that will hide 
the body, leaving only the tiddler title in the story. Does anyone already 
have it? What do you think is the best way to go about it?

Here's what I'm considering.

Possible ways:
* Inject a class in the current tiddler. (Don't know how, any pointers?)
* Wrap the current (every?) tiddler in a RevealWidget.
* Have a separate ViewTemplate, tag-based. Add/remove a Collapsed tag.

--R.

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/395831ed-1698-4dfb-a827-5094407cc832%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: Display tiddlers in two columns

2015-05-10 Thread Rustem
Ok I've posted it, no instructions, just see the button next to Save 
changes. Switching is done by adding/removing a tag on the stylesheet 
tiddler.

Please, somebody help me get the link right in the $:/_ra/buttons 
tiddler, the last one - if I point to the story, the URL is correct, 
otherwise it points to a cut-off name (nonexistent, so rendered in italics).

--R

 
On Sunday, May 10, 2015 at 11:22:45 AM UTC-7, Måns wrote:

 Hi Rustem and Jed

 I'm fiddling with a button/link to toggle the layout of two columns - it 
 works - I don't think my solution is anywhere near a right way of doing it 
 though...

 I've used Hradek's and Tobias' ToggleContent macro to toggle the css from 
 a field value into the stylesheet tiddler. I was thinking that it would be 
 neat if the css had variables which were stored in tields and choosen from 
 a select box... Next I would see if I could make the tiddler tagged with 
 aboveStory be untouched by the css

 The last two things I haven't tried out yet...

 Check it out here: 
 http://flownotes.tiddlyspot.com/#ToggleRowsButtons:ToggleRowsButtons%20StoryStylesheet

 The interesting bit of my experiment is that it proves that it is possible 
 to use macro in a stylesheet tiddler and have a remote link to make text 
 show up in it - and that it will affect the stylesheet layout... I hadn't 
 dreamed that it could work that way when I started playing with it... It 
 was just me fooling around..

 I'm sure you'll come up with a better way to do a toggle button for 
 tiddler rows..

 Cheers Måns Mårtensson

 Den søndag den 10. maj 2015 kl. 19.59.10 UTC+2 skrev Rustem:

 No,no, you go ahead and do the demo. Please. Mine is just a working 
 example, I'm too lazy to properly demo everything I've put in there. It's 
 this one (not updated yet): http://solar-flair.tiddlyspot.com/. It's 
 better suited for people who know how to dig into internals to see how the 
 appearance was achieved.
 You will certainly get all the credit. If you have a demo site I will 
 just link to that instead of putting up one of my own. If you have one what 
 is the address?

 -- 
 You received this message because you are subscribed to a topic in the 
 Google Groups TiddlyWiki group.
 To unsubscribe from this topic, visit 
 https://groups.google.com/d/topic/tiddlywiki/lVRs1qfXEsc/unsubscribe.
 To unsubscribe from this group and all its topics, send an email to 
 tiddlywiki+...@googlegroups.com.
 To post to this group, send email to tiddl...@googlegroups.com.
 Visit this group at http://groups.google.com/group/tiddlywiki.
 To view this discussion on the web visit 
 https://groups.google.com/d/msgid/tiddlywiki/51c0fb74-29b5-4697-8860-67f522f3eb96%40googlegroups.com
  
 https://groups.google.com/d/msgid/tiddlywiki/51c0fb74-29b5-4697-8860-67f522f3eb96%40googlegroups.com?utm_medium=emailutm_source=footer
 .
 For more options, visit https://groups.google.com/d/optout.
  


-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/3ab0320a-b3e2-4568-9ffd-c119cad2c400%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: Display tiddlers in two columns

2015-05-10 Thread Rustem
I fixed that link, never mind. This is the right way to link to tiddlers, 
so the spaces in the title are ok:

$link to=currentTiddler$view field=title//$link

I think I tried it with transclude before, and the space was rendering the 
link invalid.

Please, somebody help me get the link right in the $:/_ra/buttons 
 tiddler, the last one - if I point to the story, the URL is correct, 
 otherwise it points to a cut-off name (nonexistent, so rendered in italics).



-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/045d3daf-745f-4054-aedb-f91aec75fa29%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: Display tiddlers in two columns

2015-05-10 Thread Rustem
Another thing bugging me is if I change list-before in 
$:/_ra/buttons/BookmarkHere to $:/_ra/buttons/TodoHere, the button jump 
all the way back.

Is this a bug or I don't understand something about 
http://tiddlywiki.com/#Order%20of%20Tagged%20Tiddlers? 


On Sunday, May 10, 2015 at 1:39:20 PM UTC-7, Rustem wrote:

 Ok I've posted it, no instructions, just see the button next to Save 
 changes. Switching is done by adding/removing a tag on the stylesheet 
 tiddler.

 Please, somebody help me get the link right in the $:/_ra/buttons 
 tiddler, the last one - if I point to the story, the URL is correct, 
 otherwise it points to a cut-off name (nonexistent, so rendered in italics).

 --R

  
 On Sunday, May 10, 2015 at 11:22:45 AM UTC-7, Måns wrote:

 Hi Rustem and Jed

 I'm fiddling with a button/link to toggle the layout of two columns - it 
 works - I don't think my solution is anywhere near a right way of doing it 
 though...

 I've used Hradek's and Tobias' ToggleContent macro to toggle the css from 
 a field value into the stylesheet tiddler. I was thinking that it would be 
 neat if the css had variables which were stored in tields and choosen from 
 a select box... Next I would see if I could make the tiddler tagged with 
 aboveStory be untouched by the css

 The last two things I haven't tried out yet...

 Check it out here: 
 http://flownotes.tiddlyspot.com/#ToggleRowsButtons:ToggleRowsButtons%20StoryStylesheet

 The interesting bit of my experiment is that it proves that it is 
 possible to use macro in a stylesheet tiddler and have a remote link to 
 make text show up in it - and that it will affect the stylesheet layout... 
 I hadn't dreamed that it could work that way when I started playing with 
 it... It was just me fooling around..

 I'm sure you'll come up with a better way to do a toggle button for 
 tiddler rows..

 Cheers Måns Mårtensson

 Den søndag den 10. maj 2015 kl. 19.59.10 UTC+2 skrev Rustem:

 No,no, you go ahead and do the demo. Please. Mine is just a working 
 example, I'm too lazy to properly demo everything I've put in there. It's 
 this one (not updated yet): http://solar-flair.tiddlyspot.com/. It's 
 better suited for people who know how to dig into internals to see how the 
 appearance was achieved.
 You will certainly get all the credit. If you have a demo site I will 
 just link to that instead of putting up one of my own. If you have one what 
 is the address?

 -- 
 You received this message because you are subscribed to a topic in the 
 Google Groups TiddlyWiki group.
 To unsubscribe from this topic, visit 
 https://groups.google.com/d/topic/tiddlywiki/lVRs1qfXEsc/unsubscribe.
 To unsubscribe from this group and all its topics, send an email to 
 tiddlywiki+...@googlegroups.com.
 To post to this group, send email to tiddl...@googlegroups.com.
 Visit this group at http://groups.google.com/group/tiddlywiki.
 To view this discussion on the web visit 
 https://groups.google.com/d/msgid/tiddlywiki/51c0fb74-29b5-4697-8860-67f522f3eb96%40googlegroups.com
  
 https://groups.google.com/d/msgid/tiddlywiki/51c0fb74-29b5-4697-8860-67f522f3eb96%40googlegroups.com?utm_medium=emailutm_source=footer
 .
 For more options, visit https://groups.google.com/d/optout.
  


-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/db178e62-1b2b-458b-8d38-59029cc4e503%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: Display tiddlers in two columns

2015-05-10 Thread Rustem


I’m on a roll today.

.tc-story-river {   display: flex;   flex-wrap: wrap; }
.tc-tiddler-frame { max-width: 49%; margin-right: 1%; }

On Saturday, May 9, 2015 at 9:07:59 AM UTC-7, Charlie Brown wrote:

I see, so I can change the layout through css. I'll checkout the examples 
 when I'm less sleepy:).

 Sincerely,
 王文鑫
 Charlie

 On Sat, May 9, 2015 at 9:59 PM, Måns huma...@gmail.com javascript: 
 wrote:

 Hi Charlie

 I am not currently aware of any specialized theme for showing tiddlers in 
 a side-by-side column fashion. 

 There are however ways to show tiddlers in generated lists or sub stories 
 (correct me if I'm wrong) and that allows you to show them side by side by 
 defining columns via css.

 @Jeremy uses flexbox http://learnlayout.com/flexbox.html on 
 tiddlywiki.com. Check out http://tiddlywiki.com/#%24%3A%2F_tw5.com-styles 
 for 
 his tc-link-info class, which is used in : 
 Articles
 Examples
 Latest
 Resources
 Tutorials

 Eric Shulmann has created StyleSheetShortCuts 
 http://www.TiddlyTools.com/#StyleSheetShortcuts (for TW classic) which 
 uses columns http://learnlayout.com/column.html (not supported in 
 Internet Explorer). You can import his stylesheet tweaks tiddler into a TW5 
 and tag it with $:/tags/Stylesheet

 Cheers Måns Mårtensson

 Den lørdag den 9. maj 2015 kl. 15.20.21 UTC+2 skrev Charlie Brown:

 Hi, I'm new to tiddlewiki (three days) but I'm really happy with it. 
 Thanks a lot!
 Right now my tiddlers are short and thin, and display them in only one 
 column wastes too much spaces. Is there a theme or something so that I 
 could list them in two columns? I did some searching but found no result.

  -- 
 You received this message because you are subscribed to a topic in the 
 Google Groups TiddlyWiki group.
 To unsubscribe from this topic, visit 
 https://groups.google.com/d/topic/tiddlywiki/lVRs1qfXEsc/unsubscribe.
 To unsubscribe from this group and all its topics, send an email to 
 tiddlywiki+...@googlegroups.com javascript:.
 To post to this group, send email to tiddl...@googlegroups.com 
 javascript:.
 Visit this group at http://groups.google.com/group/tiddlywiki.
 To view this discussion on the web visit 
 https://groups.google.com/d/msgid/tiddlywiki/897449c2-ac20-4f96-bfda-246eeed394e0%40googlegroups.com
  
 https://groups.google.com/d/msgid/tiddlywiki/897449c2-ac20-4f96-bfda-246eeed394e0%40googlegroups.com?utm_medium=emailutm_source=footer
 .

 For more options, visit https://groups.google.com/d/optout.


  ​

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/260d4e08-419f-45e6-841f-1abd14afd0c0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: generate tiddler name for transclusion

2015-05-10 Thread Rustem


It's possible! After thorough RTFM:

$list 
filter=[[$:/_ra/styles/highlight.js/solarized_]addsuffix{$:/_ra/styles/configurables##code-palette}addsuffix[.css]]$transclude//$list

On Monday, May 4, 2015 at 10:10:24 PM UTC-7, Rustem wrote:

I'm trying to transclude one stylesheet or another based on an index value. 
 This is the closest I could get:
 ```
 \define p(name) $:/styles/$name$.css 
 {{$macrocall $name=p name={{$:/configurables##filename}}/}} 
 ```
 The string is formed as desired, but the transclusion is not performed, 
 all I see is
 ```
 {{$:/styles/dark.css}} 
 ```
 which is exactly what I would enter if I just wanted to simply 
 transclude...

​

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/da572550-371a-4f69-96f9-cfb75e8932f8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: Display tiddlers in two columns

2015-05-10 Thread Rustem


One-up ;)

   - Use max-height, no wasted space for smaller tiddlers 
   - Put that in .tc-tiddler-body, that way the heading part won’t scroll 
   (title,etc,tags) 

.tc-tiddler-body { max-height: 24em; overflow: auto; }

On Sunday, May 10, 2015 at 1:41:23 AM UTC-7, Måns wrote:

Hi Rustem

 Great stuff :-)

 Thank you for sharing!

 Add a height and overflow auto - and you've got small tiddler windows in 
 two rows...:


 .tc-story-river {   display: flex;   flex-wrap: wrap; }

 .tc-tiddler-frame { max-width: 49%; margin-right: 1%;height:24em;overflow: 
 auto;} 


 Cheers Måns Mårtensson

 Den søndag den 10. maj 2015 kl. 09.05.20 UTC+2 skrev Rustem:

 I’m on a roll today.

 .tc-story-river {   display: flex;   flex-wrap: wrap; }
 .tc-tiddler-frame { max-width: 49%; margin-right: 1%; }

 On Saturday, May 9, 2015 at 9:07:59 AM UTC-7, Charlie Brown wrote:

 I see, so I can change the layout through css. I'll checkout the examples 
 when I'm less sleepy:).

 Sincerely,
 王文鑫
 Charlie

 On Sat, May 9, 2015 at 9:59 PM, Måns huma...@gmail.com wrote:

 Hi Charlie

 I am not currently aware of any specialized theme for showing tiddlers 
 in a side-by-side column fashion. 

 There are however ways to show tiddlers in generated lists or sub 
 stories (correct me if I'm wrong) and that allows you to show them side by 
 side by defining columns via css.

 @Jeremy uses flexbox http://learnlayout.com/flexbox.html on 
 tiddlywiki.com. Check out 
 http://tiddlywiki.com/#%24%3A%2F_tw5.com-styles for his tc-link-info 
 class, which is used in : 
 Articles
 Examples
 Latest
 Resources
 Tutorials

 Eric Shulmann has created StyleSheetShortCuts 
 http://www.TiddlyTools.com/#StyleSheetShortcuts (for TW classic) 
 which uses columns http://learnlayout.com/column.html (not supported 
 in Internet Explorer). You can import his stylesheet tweaks tiddler into a 
 TW5 and tag it with $:/tags/Stylesheet

 Cheers Måns Mårtensson

 Den lørdag den 9. maj 2015 kl. 15.20.21 UTC+2 skrev Charlie Brown:

 Hi, I'm new to tiddlewiki (three days) but I'm really happy with it. 
 Thanks a lot!
 Right now my tiddlers are short and thin, and display them in only one 
 column wastes too much spaces. Is there a theme or something so that I 
 could list them in two columns? I did some searching but found no result.

  -- 
 You received this message because you are subscribed to a topic in the 
 Google Groups TiddlyWiki group.
 To unsubscribe from this topic, visit 
 https://groups.google.com/d/topic/tiddlywiki/lVRs1qfXEsc/unsubscribe.
 To unsubscribe from this group and all its topics, send an email to 
 tiddlywiki+...@googlegroups.com.
 To post to this group, send email to tiddl...@googlegroups.com.
 Visit this group at http://groups.google.com/group/tiddlywiki.
 To view this discussion on the web visit 
 https://groups.google.com/d/msgid/tiddlywiki/897449c2-ac20-4f96-bfda-246eeed394e0%40googlegroups.com
  
 https://groups.google.com/d/msgid/tiddlywiki/897449c2-ac20-4f96-bfda-246eeed394e0%40googlegroups.com?utm_medium=emailutm_source=footer
 .

 For more options, visit https://groups.google.com/d/optout.


  ​

 ​

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/02ddfa88-d304-4695-91de-5072af0acaa6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] reveal widget accepts text reference for state

2015-05-10 Thread Rustem
Never been so happy to find an error in TW. :D

Not sure if it's an omission in documentation, or, as Eric recently said, 
It is possible your implementation is just so good that it handles a case 
you didn't expect.

https://github.com/Jermolene/TiddlyWiki5/pull/1721

--R

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/46d0203a-8798-4bb3-9a58-752cc00a53af%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] add custom class to tm-modal div

2015-05-08 Thread Rustem
Is it possible to assign an additional class to the main modal window 
(div.tc-modal), either by passing it via action-sendmessage, or any other 
way?

Also, what can I pass in tm-modal's paramObject?

Thanks!

--R

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/e7bcdc23-627e-4297-94a5-8b571435d6c2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: SolarFlair

2015-05-07 Thread Rustem
Thanks Jeremy. 

Do you see any problem with the use of indentation and comments (starting a 
line with colon) in a dictionary tiddler?

On Thursday, May 7, 2015 at 11:15:55 AM UTC-7, Jeremy Ruston wrote:

 Hi Rustem

 Great stuff. I like the palette. You might want to set the SiteTitle and 
 SiteSubtitle.

 Best wishes

 Jeremy

 On Wed, May 6, 2015 at 12:24 AM, Jed Carty inmy...@gmail.com 
 javascript: wrote:

 It is always good to have more examples and tutorials for reference, 
 especially from different authors so each one can include the parts that 
 stand out to them. In the end it will result in better documentation 
 overall.
 Putting together inmysocks.tiddlyspot.com was very helpful for learning 
 tiddlywiki, so hopefully making yours will have the same effect for you and 
 we can all look forward to seeing what you come up with.


 My suggestions are:

 Since you are starting from scratch, try to maintain a consistent 
 organization scheme, either through a table of contents or tagging or 
 search terms or whatever other way you think would be useful. It both makes 
 it easy for other people to use (if you are intending it for public 
 consumption), and it helps keep you from covering the same thing multiple 
 times. I have had that problem over on my site very often and I am still 
 trying to come up with a good way to organize everything. It looks like you 
 have a good start.

 Don't worry if you are duplicating something someone else has explained 
 elsewhere, multiple explanations/examples make it more likely that the 
 community will end up with good documentation


 I look forward to seeing what you make.

 -- 
 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+...@googlegroups.com javascript:.
 To post to this group, send email to tiddl...@googlegroups.com 
 javascript:.
 Visit this group at http://groups.google.com/group/tiddlywiki.
 To view this discussion on the web visit 
 https://groups.google.com/d/msgid/tiddlywiki/65743776-ceee-4b5a-8711-97a13d551da7%40googlegroups.com
  
 https://groups.google.com/d/msgid/tiddlywiki/65743776-ceee-4b5a-8711-97a13d551da7%40googlegroups.com?utm_medium=emailutm_source=footer
 .

 For more options, visit https://groups.google.com/d/optout.




 -- 
 Jeremy Ruston
 mailto:jeremy...@gmail.com javascript:
  

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/764ca61b-aab4-4e4a-9f31-0cee8f784967%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: reordering tiddlers

2015-05-07 Thread Rustem
Eric, I already have that setup, and the story comes up as it was before, 
no problem. However, the edit widget is gone from the body of the 
$:/StoryList. Maybe the body just does not get loaded on startup?

On Thursday, May 7, 2015 at 2:51:09 PM UTC-7, Eric Shulman wrote:

 On Thursday, May 7, 2015 at 2:10:35 PM UTC-7, Rustem wrote:

 How does everybody deal with reordering tiddlers within the story? Close 
 and reopen in the right sequence? I've been doind that for a while, then I 
 started editing the list field in $:/StoryList, then I got the idea (from 
 FastNewTiddler discussion) to add the edit control to $:/StoryList.

 $edit field=list class=tc-edit-texteditor/

 All is well, but the tiddler text gets initialized back to empty on 
 restart. (Running on nodejs).

 @Jeremy, would it be possible to leave the body of $:/StoryList untouched 
 on startup?


 The $:/StoryList tiddler is saved with the rest of the changes, so it is 
 still present at startup.  However, the startup handling uses 
 $:/DefaultTiddlers to define which tiddlers are initially displayed.  As a 
 result, when the $:/DefaultTiddlers are shown the previous contents of 
 $:/StoryList are overwritten.

 To bypass this, simply change the $:/DefaultTiddlers definition to:
 [list[$:/StoryList]]
 This will cause the startup handling to re-display the existing StoryList. 
  Q.E.D

 Note: this technique is documented here:
http://tiddlywiki.com/#Preserving%20open%20tiddlers%20at%20startup

 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


-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/2c91a24d-2d61-472a-ada3-435e71121b78%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] wikitext-macros

2015-05-07 Thread Rustem


Discovered something useful: 
http://tiddlywiki.com/#%24%3A%2Feditions%2Ftw5.com%2Fwikitext-macros

I’m going to turn that into “ViewSource” button.

But what is this triple-dollar syntax???

$$$text/vnd.tiddlywikitext/html
$src$
$$$

​

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/58c9aac2-e485-48de-8738-54c59bd0ac73%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] reordering tiddlers

2015-05-07 Thread Rustem
How does everybody deal with reordering tiddlers within the story? Close 
and reopen in the right sequence? I've been doind that for a while, then I 
started editing the list field in $:/StoryList, then I got the idea (from 
FastNewTiddler discussion) to add the edit control to $:/StoryList.

$edit field=list class=tc-edit-texteditor/

All is well, but the tiddler text gets initialized back to empty on 
restart. (Running on nodejs).

@Jeremy, would it be possible to leave the body of $:/StoryList untouched 
on startup?

--R


-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/99b932b2-9871-45dd-a028-7a87cd5033ef%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Bitbucket Snippets

2015-05-06 Thread Rustem
Bitbucket has a new feature, 
http://blog.bitbucket.org/2015/03/18/snippets-for-teams-are-here-with-a-rich-set-of-apis/

Interestingly, TiddlyWiki is one of the choices in the dropdown for a file 
type. Nothing happens yet, it simply reverts to plain text. Hopefully, it 
will support some subset of WikiText eventually, enough to replace Markdown.

I wonder if this could work for keeping community snippets. The number of 
contributors would have to be limited to 5 (to remain free), but everyone 
could read public snippets...?


--R.

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/ae478f48-afa9-4137-b0f6-ac225d9b5c99%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] SolarFlair

2015-05-05 Thread Rustem
I though it would be a good exercise to have my TW5 customizations 
documented and published. Here is what I've come up with so far, which is 
ridiculously little compared to the time I've spent trying to grok TW5.

http://solar-flair.tiddlyspot.com/

Let me know what you think.

--R

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/28e47a7f-d312-4490-9795-7241bf0c4516%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] currentTiddler as a macro parameter default

2015-05-05 Thread Rustem
How can I pass `currentTiddler` or a field as a default value for a macro 
parameter? 

Thanks.
--R

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/e17fbd6b-985c-4acb-a960-ef58f3b67b57%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] currentTiddler as a macro parameter default

2015-05-05 Thread Rustem
Gladly! I have a tree macro, I made it parameterized on purpose, so I could 
display any tree from any tiddler. Then I thought it wold be nice if I 
could invoke it without a parameter, when I want to display the tree 
originating from the current tiddler.

```
\define _ra_treeN(node) 
 
;[[$node$]] 
:$macrocall $name=_ra_tree node=$node$/ 
\end 
 
\define _ra_tree(node) 
$tiddler tiddler=$node$ 
 
$list 
filter=[currentTiddlertagging[]!currentTiddler!tag[$:/_ra/tags/Bookmark]!tag[$:/_ra/tags/Archive]!nsort[score]]
 

 
  $macrocall $name=_ra_treeN node={{!!title}}/ 
 
/$list 
\end
```

On Tuesday, May 5, 2015 at 11:00:02 AM UTC-7, Jeremy Ruston wrote:

 Hi Rustem

 The default values for macro parameters can only be specified as literal 
 strings, I'm afraid. Can you expand on the situation, perhaps I can advise 
 on alternatives?

 Best wishes

 Jeremy.


 On Tue, May 5, 2015 at 9:10 AM, Rustem 8pa...@gmail.com javascript: 
 wrote:

 How can I pass `currentTiddler` or a field as a default value for a 
 macro parameter? 

 Thanks.
 --R

 -- 
 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+...@googlegroups.com javascript:.
 To post to this group, send email to tiddl...@googlegroups.com 
 javascript:.
 Visit this group at http://groups.google.com/group/tiddlywiki.
 To view this discussion on the web visit 
 https://groups.google.com/d/msgid/tiddlywiki/e17fbd6b-985c-4acb-a960-ef58f3b67b57%40googlegroups.com
  
 https://groups.google.com/d/msgid/tiddlywiki/e17fbd6b-985c-4acb-a960-ef58f3b67b57%40googlegroups.com?utm_medium=emailutm_source=footer
 .
 For more options, visit https://groups.google.com/d/optout.




 -- 
 Jeremy Ruston
 mailto:jeremy...@gmail.com javascript:
  

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/bd3f1390-3354-4589-b887-a7a85cb1ce3f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] currentTiddler as a macro parameter default

2015-05-05 Thread Rustem
@Eric: Yes, that works. But if I put the same default into my tree macro, 
there is still no tree unless I provide the parameter. So, must be 
something inside the macros that needs adjusting...

On Tuesday, May 5, 2015 at 11:40:13 AM UTC-7, Eric Shulman wrote:

 On Tuesday, May 5, 2015 at 11:00:02 AM UTC-7, Jeremy Ruston wrote:

 The default values for macro parameters can only be specified as literal 
 strings, I'm afraid. Can you expand on the situation, perhaps I can advise 
 on alternatives?


 I just tried this on TiddlyWiki.com:
 \define x(y:currentTiddler)
 $y$
 \end
 x 
 .. and it WORKS!

 and just to be sure it wasn't some magic involving curerntTiddler, I 
 also tried

 \define z()
 This is some text
 \end
 \define x(y:z)
 $y$
 \end
 x
 and it works also.

 @Jeremy: It is possible your implementation is just so good that it 
 handles a case you didn't expect?

 -e





-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/1e4ed5ea-f0e3-4905-a101-7f1905a5d2fe%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] generate tiddler name for transclusion

2015-05-04 Thread Rustem
I'm trying to transclude one stylesheet or another based on an index value. 
This is the closest I could get:
```
\define p(name) $:/styles/$name$.css 
{{$macrocall $name=p name={{$:/configurables##filename}}/}} 
```
The string is formed as desired, but the transclusion is not performed, all 
I see is
```
{{$:/styles/dark.css}} 
```
which is exactly what I would enter if I just wanted to simply transclude...

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/980f370d-23d8-4b34-862a-9b2513bf364f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] story and sidebar width

2015-05-01 Thread Rustem
In the current default TW5, the story is of fixed width and the sidebar 
occupies all the available space to the right. Is the opposite possible, 
where the sidebar is fixed width and the story expands automatically to the 
available space to the left? (While keeping the sidebar jumping to top if 
the space is too narrow, like it does now.)

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/f79f2c3f-1211-4523-b17a-7155c5630d96%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: [TW5] Is there a template or CSS to expand editing space

2015-05-01 Thread Rustem
Did anybody manage to achieve this layout? Not necessarily as a switchable 
theme, just a piece of CSS would be great!

On Friday, April 17, 2015 at 6:01:36 AM UTC-7, Jeremy Ruston wrote:

 Things like a ... layout with a fixed sidebar and a fluid story river, are 
 pretty straightforward to make as switchable themes.


Thanks.
--R. 

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/e39d6231-69d8-4e4f-801b-0add0edd0e8a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: saving Node.js-served wiki to Tiddlyspot directly

2015-04-30 Thread Rustem
Yes, it works! I was putting the full URL into the Wiki Name field, so it 
was failing silently. Some message would be helpful, like Tiddlyspot wiki 
does not exist, check the name. When a password is wrong, the message is 
very clear.

thanks!

R.

On Thursday, April 30, 2015 at 8:26:54 AM UTC-7, Jeremy Ruston wrote:

 Hi Rustem

  What would be the most direct way to upload my node.js-served wiki to 
 Tiddlyspot? 

 It's actually really easy: run your Node.js wiki in the usual way. Visit 
 Control Panel Saving tab and enter your TiddlySpot wiki name. When you 
 want to save a snapshot to TiddlySpot just click the save changes button 
 in the sidebar. A snapshot of the wiki (without the client-server plugins) 
 will be saved to TiddlySpot. Tiddlers are still synced to the server in the 
 usual way, too. I tested the procedure in Chrome; I'd expect Firefox to 
 complain about the cross-origin form post (but there's probably a flag you 
 can use to suppress that).

 Best wishes

 Jeremy




 On Wed, Apr 29, 2015 at 9:21 AM, PMario pmar...@gmail.com javascript: 
 wrote:

 Hi Rustem,

 On Wednesday, April 29, 2015 at 4:11:23 AM UTC+2, Rustem wrote:

 What would be the most direct way to upload my node.js-served wiki to 
 Tiddlyspot? 


 As you found out. Direct save is not possible 

 If you served your TW from your nodejs installation you get it from 
 http://localhost which is a domain. http://tiddlyspot.com is a different 
 domain. .. So due to browser security restrictions, this isn't allowed.
  

 Do I need to save my wiki as a single file first, before I can 
 successfully upload it to Tiddlyspot? Or can I somehow switch to the 
 appropriate saver temporarily, just for the upload?


 IMO 2 possibilities: 

  - You create a single file TW from your local copy. .. With nodejs. Just 
 build it. It's relatively easy. ... 
 - Then upload this fire as described. 

  - It would be also possible to create a tiddlers.json file that contains 
 just your recent changes. 
- Serve your TW from tiddlyspot.com and import your tiddlers. .. If 
 TW is served from tiddlyspot.com it can be saved back. 
  

 To be clear, I am not interested in any kind of back-and-forth 
 synchronization. Strictly one-way publishing to TS. I'm happy maintaining 
 the wiki using node.js.



 If someone has better ideas. ... Just let us know :)

 have fun!
 mario

 -- 
 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+...@googlegroups.com javascript:.
 To post to this group, send email to tiddl...@googlegroups.com 
 javascript:.
 Visit this group at http://groups.google.com/group/tiddlywiki.
 To view this discussion on the web visit 
 https://groups.google.com/d/msgid/tiddlywiki/dabd5eaa-13da-4210-8f1c-d6232b2e7179%40googlegroups.com
  
 https://groups.google.com/d/msgid/tiddlywiki/dabd5eaa-13da-4210-8f1c-d6232b2e7179%40googlegroups.com?utm_medium=emailutm_source=footer
 .

 For more options, visit https://groups.google.com/d/optout.




 -- 
 Jeremy Ruston
 mailto:jeremy...@gmail.com javascript:
  

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/706b0674-5c72-4f9d-a1c4-452f7eb2f49c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] saving Node.js-served wiki to Tiddlyspot directly

2015-04-28 Thread Rustem
What would be the most direct way to upload my node.js-served wiki to 
Tiddlyspot? Do I need to save my wiki as a single file first, before I can 
successfully upload it to Tiddlyspot? Or can I somehow switch to the 
appropriate saver temporarily, just for the upload?

I tried to follow the instructions 
(http://tiddlywiki.com/#Saving%20on%20TiddlySpot) directly, nothing 
happens. It says saving, but tiddlyspot remains unchanged, presenting a 
default TWC.

To be clear, I am not interested in any kind of back-and-forth 
synchronization. Strictly one-way publishing to TS. I'm happy maintaining 
the wiki using node.js.

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/5fc99269-0fcd-4ea6-943e-9696f6f0e32c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Palette causing TypeError: rgbColourA is null

2015-04-21 Thread Rustem


Firefox/Windows. Here’s how to reproduce: edit Vanilla shadow tiddler and 
replace

background: #ff

with 

bgr: #ff
background: colour bgr

On Tuesday, April 21, 2015 at 7:58:43 AM UTC-7, Jeremy Ruston wrote:

Hi Rustem

 What browser/OS are you using? I'm guessing that the palette isn't 
 properly formed, perhaps with missing entries; did you start by cloning one 
 of the existing palettes? Can you post an example for me to look at?

 Best wishes

 Jeremy.


 On Sun, Apr 19, 2015 at 9:32 PM, Rustem 8pa...@gmail.com javascript: 
 wrote:

 When I switch to a custom palette, TiddlyWiki starts throwing TypeError: 
 rgbColourA is null. What am I missing, or is this a bug?

 Thanks.

 R.

 -- 
 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+...@googlegroups.com javascript:.
 To post to this group, send email to tiddl...@googlegroups.com 
 javascript:.
 Visit this group at http://groups.google.com/group/tiddlywiki.
 To view this discussion on the web visit 
 https://groups.google.com/d/msgid/tiddlywiki/b678d92f-3fda-4b85-89ab-40fd361739b2%40googlegroups.com
  
 https://groups.google.com/d/msgid/tiddlywiki/b678d92f-3fda-4b85-89ab-40fd361739b2%40googlegroups.com?utm_medium=emailutm_source=footer
 .
 For more options, visit https://groups.google.com/d/optout.




 -- 
 Jeremy Ruston
 mailto:jeremy...@gmail.com javascript:
  
​

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/1a1885c5-d72b-457a-8d64-c3edebe65341%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Palette causing TypeError: rgbColourA is null

2015-04-21 Thread Rustem
Jeremy,


 Even with the fix, tag pill rendering will be improved by using literal 
 colours for the foreground and background colours.

 that's because it's a workaround, not a fix, correct? The macro still 
doesn't understand clolour ... syntax, it just learned to handle the 
situation more gracefully?

Also, you probably want to swap A and B in lines 41-42.

Cheers.

R.

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/6fec665a-51e9-48c9-8bff-b3f4ab7b54b1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] buid a tree

2015-04-20 Thread Rustem
I have a macro that outputs a tree of tiddlers, but it only works when 
invoked from the root node tiddler. If I put it in a tiddler with a 
different name, there is no tree. Basically, the parameter is ignored, it 
just picks up the current tiddler's title and goes from there.

I spent all day trying to make it work from any tiddler, to no avail. I 
looked at the toc macros, but wasn't able to adapt them. I just need a 
simple tree. I cannot use one of the toc macros - unlike toc, mine 
doesn't go into infinite recursion when a tiddler is tagged with itself.

Please help! Thanks!

```
\define tree_macro(node)
;[[$node$]]
:$list filter=[currentTiddlertagging[]!currentTiddler]

  $macrocall $name=tree_macro node={{!!title}}/

/$list
\end
```

-R.

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/5f3f5c11-4322-48de-922a-953cd0965d77%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Announcing TiddlyWiki version 5.1.8

2015-04-19 Thread Rustem
What's a proper use of this Mark as complete feature that appears in 
every post? I tried to mark a certain reply I just answered as complete, 
but it marked the whole thread...

On Sunday, April 19, 2015 at 1:48:10 PM UTC-7, Rustem wrote:

 The power of TiddlyWiki! Can get very confusing at first.
 [[GettingStarted - Node.js]] is just a wrapper around [[Installing 
 TiddlyWiki on Node.js]]. It's purpose is to make the latter appear in 
 [[GettingStarted]] as one of the tabs. The list of tabs is auto-generated 
 by a filter that includes [prefix[GettingStarted - ]] operator. 


 On Sunday, April 19, 2015 at 6:23:02 AM UTC-7, Ed wrote:

 Many Thanks to Jeremy  All the Contributors!!

 Little thing I found. Two identical tiddlers on TiddlyWiki.com?
 There is still a tiddler called: GettingStarted - Node.js (8 month old)
 Isn't this superseded by a newer tiddler: Installing TiddlyWiki on 
 Node.js (24 days old)
 Only title seems different and oldert one is untagged.
 Salut! Ed.
 ===


 Op vrijdag 17 april 2015 19:00:30 UTC+2 schreef Jeremy Ruston:

 I'm delighted to announce that TiddlyWiki version 5.1.8 has finally been 
 released to:

 http://tiddlywiki.com/

 Remember to keep careful backups before upgrading existing wikis at:

 http://tiddlywiki.com/upgrade.html

 This has turned out to be a fairly major new release, with many bug 
 fixes and new features, and many improvements to the documentation:

 * New online plugin library
 * New warning banner when a reload is needed after adding plugins
 * New railroad plugin
 * Eight new languages
 * New facility for setting a page background image
 * Updated KaTeX plugin with improved symbol support
 * New full edition with all new languages and plugins

 See the release note at http://tiddlywiki.com/#Release%205.1.8 for more 
 details.

 I'd like to personally thank everyone who has helped with this release - 
 more individuals than ever before. It's been a difficult time with illness 
 and work, and the gap between releases has stretched far too far, but I'm 
 very happy with the progress we've made with this release. TiddlyWiki seems 
 to be getting better and better.

 As usual, feedback is gratefully received!

 Best wishes

 -- 
 Jeremy Ruston
 mailto:jeremy...@gmail.com
  


-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/ef9833bb-091b-47cf-b996-ad8b5b1e31e6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Announcing TiddlyWiki version 5.1.8

2015-04-19 Thread Rustem
The power of TiddlyWiki! Can get very confusing at first.
[[GettingStarted - Node.js]] is just a wrapper around [[Installing 
TiddlyWiki on Node.js]]. It's purpose is to make the latter appear in 
[[GettingStarted]] as one of the tabs. The list of tabs is auto-generated 
by a filter that includes [prefix[GettingStarted - ]] operator. 


On Sunday, April 19, 2015 at 6:23:02 AM UTC-7, Ed wrote:

 Many Thanks to Jeremy  All the Contributors!!

 Little thing I found. Two identical tiddlers on TiddlyWiki.com?
 There is still a tiddler called: GettingStarted - Node.js (8 month old)
 Isn't this superseded by a newer tiddler: Installing TiddlyWiki on 
 Node.js (24 days old)
 Only title seems different and oldert one is untagged.
 Salut! Ed.
 ===


 Op vrijdag 17 april 2015 19:00:30 UTC+2 schreef Jeremy Ruston:

 I'm delighted to announce that TiddlyWiki version 5.1.8 has finally been 
 released to:

 http://tiddlywiki.com/

 Remember to keep careful backups before upgrading existing wikis at:

 http://tiddlywiki.com/upgrade.html

 This has turned out to be a fairly major new release, with many bug fixes 
 and new features, and many improvements to the documentation:

 * New online plugin library
 * New warning banner when a reload is needed after adding plugins
 * New railroad plugin
 * Eight new languages
 * New facility for setting a page background image
 * Updated KaTeX plugin with improved symbol support
 * New full edition with all new languages and plugins

 See the release note at http://tiddlywiki.com/#Release%205.1.8 for more 
 details.

 I'd like to personally thank everyone who has helped with this release - 
 more individuals than ever before. It's been a difficult time with illness 
 and work, and the gap between releases has stretched far too far, but I'm 
 very happy with the progress we've made with this release. TiddlyWiki seems 
 to be getting better and better.

 As usual, feedback is gratefully received!

 Best wishes

 -- 
 Jeremy Ruston
 mailto:jeremy...@gmail.com
  


-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/f7ba5e5d-1b4c-4ece-a5a8-aeeaaf9f0bdc%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Palette causing TypeError: rgbColourA is null

2015-04-19 Thread Rustem
When I switch to a custom palette, TiddlyWiki starts throwing TypeError: 
rgbColourA is null. What am I missing, or is this a bug?

Thanks.

R.

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/b678d92f-3fda-4b85-89ab-40fd361739b2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


  1   2   >