[tw] Re: remoteStorage syncadaptor plugin

2018-02-21 Thread Tristan Kohl
Hi Giovanni,

this is awesome! Just when I came into problems with my many small wikis 
using up all my storage and started digging into some TiddlyWeb setup for 
myself to solve this you came as my saviour :)

I heard of remoteStorage before but never used it to be honest since there 
were not so many apps that brought me any benefits.

I will definitely check this out and finally use my years old 5apps account 
for something useful. Thank you so much for this.

Cheers,
Tristan

-- 
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/40ef95e5-0d68-4706-a535-bab654dc1bfc%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Broken with macro calls

2018-02-21 Thread 'Mark S.' via TiddlyWiki
As a starter, there's an error in your macro. It should be "$i$", not "$i".

Good luck!

-- Mark

On Wednesday, February 21, 2018 at 7:17:50 PM UTC-8, Iain wrote:
>
> I'm trying to construct a tabulated listing of tiddlers using the 
> following template. In the  element, "order" is an attribute, and it's 
> value XXX is the tiddler's position in the title list (not shown in 
> example).
>
> <$list filter="filter goes here">
>   
> 
>   
> 
>
> As I've discovered, tiddlywiki macros don't do simple text substituion at 
> all, so doing something obvious like
>
> \define makerow(i) 
>
> <$list filter="filter goes here">
>   <$macrocall $name="makerow" i=<> />
> 
>   
> 
>
> doesn't work because the substition works fine, but the macro output then 
> seems to be rendered into the DOM tree as  a , but NOT 
> wrapped around my row contents (and the  in the source is now an 
> orphaned end element).
>
> Can anyone instruct me on how I can produce  elements so they get the 
> correct attribute value and wrap my row contents - the row contents in the 
> sample is quite complicated, so I suspect it'll break tiddlywiki if the 
> answer is to move the lot up into the macro.
>
> Cheers, Iain
>

-- 
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/d75c8b2f-b3db-486f-a483-c9350d48fea7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] How to concatenate < and a tiddler field value for use as a new tiddler title

2018-02-21 Thread markhylton2
I've two things I want to do:

1) I want to use the current date/time as part of a concatenated string for 
a new tiddler title.
2) I want to use the value of a field from the host tiddler as part of a 
concatentated string for a new tiddler title.
3) I want to use 1) and 2) at the same time for the same new tiddler.

E.g.:

A host tiddler has a field "projectnumber" and that tiddler also hosts a 
transcluded tiddler "newProjectEntry". "newProjectEntry" holds <$button>
code to create a new tiddler. Clicking the newProjectEntry button from the 
host tiddler is intended to generate a new tiddler with a title "2018-02-01 
09:57:04, 12345, Project entry:" where:

   1. "2018-02-01 09:57:04" is the value from <> when the button 
   is clicked.
  1. Issue 1: I can get a date/time string, but it is the date/time AT 
  THE TIME that tiddler "newProjectEntry" is rendered in the host tiddler, 
  not at the time the button was pressed.
  2. Issue 2: Otherwise, I get the text string "<>" instead of 
  the rendered version for <>.
  3. Issue 3. Or otherwise, I get the proper date/time, but am unable 
  to concatenate a looked-up project number.
   2. "12345" is the value of host tiddler's projectnumber field.
  1. Issue 1: I can get the host tidder's title ("<>"), 
  but the construct "<>" doesn't seem to work.
   3. "Project entry:" (and the other spaces and commas) are text literals.
  1. No issues here. I've mostly had sufficient guidance on how to 
  concatenate things. So far. I think.
   

What I've written:

Tiddler 1 fields:

> Title:hostTiddler
> projectnumber:12345
> Text:{{newProjectEntryPB}}
>

Tiddler 2 fields:

> Title:newProjectEntryPB
> Text:\define projecttitle() $(todaynow)$, $(projectnum)$, Project entry:
>
> <$set name="todaynow" value=<>>
> <$set name="projectnum" value={{<>}}>
>
> Need a new project entry? Click this button and a project tiddler will be 
> created:
> <$button>
>   New project entry
>   <$action-sendmessage
>  $message="tm-new-tiddler"
>  title=<>
>   />
> 
>
> 
>

When the button is clicked from within hostTiddler, it generates a new 
tiddler with the title:
2018-02-21 18:36:34, , Project entry:

1) Issue: The date/time is not current with the button press.
2) Issue: Unable to get the project number value from the host tiddler.

Thanks much for your help!

Mark Hylton

-- 
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/c93fd420-8fd0-4c20-a968-12ed3dc0ec23%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] self-made macro is inconsistent... why?

2018-02-21 Thread Darin Wick
I defined a macro "tasklist" (well, heavily modified a macro I found 
elsewhere) in a tiddler called $:/macros/tasklist and tagged it 
$:/tags/Macro.  I call <> in several other tiddlers.  At first, 
the task list displays as expected.  But every time I close my wiki and 
re-open it, the calls to <> produce nothing... until I open 
$:/macros/tasklist, and then everything works perfectly.  

Am I doing something wrong?  I'm using NoteSelf rather than plain TW5 - 
could that be the cause, since $:/macros/tasklist is stored in PouchDB 
rather than the file?  

Any advice/suggestions would be much appreciated...

Thanks!

Darin Wick

-- 
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/209fd5ef-35e0-4473-9f0d-81fe7c6980d0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Broken with macro calls

2018-02-21 Thread Iain
I'm trying to construct a tabulated listing of tiddlers using the following 
template. In the  element, "order" is an attribute, and it's value XXX 
is the tiddler's position in the title list (not shown in example).

<$list filter="filter goes here">
  

  


As I've discovered, tiddlywiki macros don't do simple text substituion at 
all, so doing something obvious like

\define makerow(i) 

<$list filter="filter goes here">
  <$macrocall $name="makerow" i=<> />

  


doesn't work because the substition works fine, but the macro output then 
seems to be rendered into the DOM tree as  a , but NOT 
wrapped around my row contents (and the  in the source is now an 
orphaned end element).

Can anyone instruct me on how I can produce  elements so they get the 
correct attribute value and wrap my row contents - the row contents in the 
sample is quite complicated, so I suspect it'll break tiddlywiki if the 
answer is to move the lot up into the macro.

Cheers, Iain

-- 
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/e93f79fd-ceb6-42fb-96b3-9f9d89016aad%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: Online/Offline Sync & Version Control

2018-02-21 Thread Darin Wick
Danielo,



I think I posted this shortly before the new release - which resolved one of 
the issues I opened, too!  I'm interested in working to resolve the "delete 
local database"/authentication enhancement but have little free time and lots 
to learn, so it might be a while.  



Thanks again for the recent release!  



-Darin





 On Wed, 21 Feb 2018 00:26:29 -0800 Danielo Rodríguez 
rdani...@gmail.com wrote 








El viernes, 5 de enero de 2018, 23:17:58 (UTC+1), Darin Wick escribió:

Right now NoteSelf seems to have all the features I want, but I don't see any 
activity in the github repository in the last six months.  I'm a little 
hesitant to start using something that isn't actively maintained.  



That is weird.

I made a release very recently,  I answer all the issues that got open on the 
github repository and  I've been fixing bugs recently. How can you see no 
activity ?



In the other hand, not making a commit on six months does not mean a project is 
abandoned or not maintained. It means that the HUMANS that are behind it does 
not have time to work on that.



And even if it is not maintained, it is an open source project, so potentially 
anyone can take the challenge of maintaining it or even forking it. But people 
prefer to open issues instead of pull requests.



Another thing to think about is that people have been using TW for more than 
ten years without problem, and most of them are using a very old unmaintained 
version.



The summary is: NoteSelf is being maintained, and with the current 
functionality, based on open standards it should work for many years.



Regards




--

 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/9JH1V0Ms4zs/unsubscribe.

 To unsubscribe from this group and all its topics, 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/6e9c99bd-d83e-4ac4-8d25-a7ec3d503fd4%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/161bb30f7bd.119da1c1412815.4384532998666433606%40gmail.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Wikipedia, Text Slicer Edition & Pandoc

2018-02-21 Thread TonyM
As much as I like tiddlywiki to be self sufficent, including its wikitext rules 
in a utility makes sence because it enables conversion between many different 
formats. 
Tony

-- 
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/a09a8752-fd02-4477-ae7e-1f8468e23923%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Tech Query: Pecularities of Non-Copying Copy!!

2018-02-21 Thread @TiddlyTweeter
Thanks Mark S.

I didn't understand. I do now. YES. It could be quite easy for me as I now 
understand what you saying. Decent text editors support "vertical paste" so 
it would be easy to get a number on each line and then in TW regex it into 
position.

BUT I'm still playing with "how to do this without leaving TW". Yesterday I 
was playing with transcluding a list of the 1000 numbers vertically next to 
a transclusion of content that needs enumerating to see if one could 
generate a (surface level) copyable text to go back into processing. So far 
no good as the selection is columnised.

Best wishes
Josiah 

Mark S. wrote:
>
> What I'm suggesting is that you don't need the counters -- you create a 
> 1000 rules to apply a 1000 counts, one after the other. Building up those 
> rules shouldn't take long in a good text editor (especially one's like 
> Emacs that have column modes).
>
> On Wednesday, February 21, 2018 at 7:28:15 AM UTC-8, @TiddlyTweeter wrote:
>>
>> Thank you Mark S & coda coder
>>
>> For your further ideas -- molto grazie.
>>
>> coda coder wrote:
>>
>>> I'm not sure if I've understood correctly, but, that draft seems to 
>>> suggest that in Firefox you *may* be able to set user-select, either in 
>>> the parent element or in the before/after pseudo element itself:
>>
>>
>> Right. There is a lot of ambiguity and no clear outcome. Its clear its an 
>> issue.
>>
>> I tried a few different tests on user-select. Got it to work but not 
>> (yet) on any generated pseudo bits. I try a bit more before giving up.
>>
>> Mark S. wrote:
>>>
>>> I'm not familiar with how your regex tools work. Do they re-iterate 
>>> until there are no more changes to be made?
>>>
>>
>> I'm using BJ's Flexity plugin that allows sequences of RegEx to be run 
>> before the main parser kicks in. Iteration continues freely if you want, 
>> until done. Basically its raw access to JS regex in its full form.
>>  
>>
>>> If so, then I'm thinking that rules like this at the very end:
>>>
>>> /(.*?)#startmarker#/$1 0001#endmarker#/
>>> /(.*?)#startmarker#/$1 0002#endmarker#/
>>>  etc.
>>>
>>> Might brute force what you want. 
>>>
>>
>> The problem is getting the counters. Whilst some JS (edit: I meant Regex) 
>> implementations when you get a capturing group you can return both the 
>> string and the match index (i.e. return the match count value as well as 
>> the string content) in JS, as far as I know, you can return the string 
>> matched with the captured group, but you can't access the COUNT of the 
>> match, even though you can use it. IF you could then I could use that to 
>> build the indices I need.
>>
>> 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+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/2958c3f4-fa68-4f52-8984-f978943eab5a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: remoteStorage syncadaptor plugin

2018-02-21 Thread BurningTreeC
Thank you, Giovanni!

Now it's much more clear to me - and it confirms that it does what I wished 
it would!

Could it also handle more storages than one? let's say 
$:/tiddlers/like/this -> storage1, $:/tiddlers/like/that -> storage2 ?
It's just an idea, I think it's already very cool what you've made!

BTC

-- 
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/ddfc480d-7fc0-42d8-aa04-ee8f45b6019a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: remoteStorage syncadaptor plugin

2018-02-21 Thread Giovanni P
The idea behind remoteStorage is to decouple the app provider from the
storage provider.

In a normal app today, Google Sheets, for example, Google provides both the
app (the actual spreadsheet app) and the storage (the content you type into
the spreadsheet is stored on Google servers), the app is thus hopelessly
tangled with the store.

remoteStorage is a protocol (really just some data formats and endpoints)
that storage providers and app providers can adhere to so the app becomes
untangled from the store, enalbing the end-users to use the same app with
different storage providers and/or pass the stored data from one app to a
different app that will use it somewhat differently.

How close this was to an explanation a non-developer can understand?
Let me try again with an example:

In this case the APP is TiddlyWiki + remoteStorage plugin.
The DATA is the collection of tiddlers you produce.
The STORES are any server that talks the remoteStorage protocol, 5apps.com,
CozyCloud, IndieHosters or a server you can run yourself.

Separatedly, there's my https://tiddly.alhur.es//
server. We could say it is a different APP that uses the same DATA,
fetching it from the one of STORES the user wants.

Later, someone can write a different APP that will use the same DATA, for
example, an app that will download all the tiddlers from a remoteStorage
namespace and produce a single TiddlyWiki HTML file, or a bunch of HTML
files in static fashion like https://tiddlywiki.com/static/TiddlyWiki, or
something else entirely.

(TiddlyWiki already supports multiple types of storage, but since they
aren't remoteStorage-compliant we aren't concerned with them right now.)

On Wed, Feb 21, 2018 at 5:20 PM, BurningTreeC 
wrote:

> There you go with your first star on your GitHub repo! :)
>
> I think I haven't understood all the possibilities your plugin adds, but
> it sounds and looks very cool!
>
> Would you mind to explain in non-developer words a little bit of what you
> can do with remoteStorage?
>
> all the best,
>
> BTC
>
> --
> 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/e-sUhUYBUOk/unsubscribe.
> To unsubscribe from this group and all its topics, 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/9b772a39-e201-4857-bf61-649786a50b55%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/CAEjd%3DrouFY1dHd-%2BHTAPfWofQ0vkgJrPQdL3xagypQ%2BrUfrDcw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: How to add buttons if tiddler has a tag

2018-02-21 Thread Joe Armstrong


On Wednesday, 21 February 2018 18:43:32 UTC+1, Matthew Lauber wrote:
>
> *Background color by tag*:  See 
> https://tiddlywiki.com/#How%20to%20apply%20custom%20styles%20by%20tag
>
> *Buttons on tagged tiddlers*.  You're going to want to use a 
> ViewTemplate.  A ViewTemplate is a tiddler tagged with 
> $:/tags/ViewTemplate.  It gets used as a template for every tiddler in the 
> story river, so you probably want to start it with something like 
> <$list filter="[is[current]tag[Now]]">
> ...button code goes here...
> 
>
> *Buttons that add and remove tags*.  You're probably going to want to use 
> action widgets.  Something along the line of
> <$button>
> <$action-sendmessage $message="tm-add-tag" $param="Later" />
> <$action-sendmessage $message="tm-remove-tag" $param="Now" />
> Move to Later
> 
> Refer to  https://tiddlywiki.com/#ActionSendMessageWidget  and 
> https://tiddlywiki.com/#Messages for more info about that.  
>
>
Ok so now I have created exactly two tiddlers

FeedTheCats
   has two tags 'Now' and '$:/tags/ViewTemplate'
   and content
  I must feed the cats

$:/tags/ViewTemplate
   has the following content

<$list filter="[is[current]tag[Now]]">
  <$button>
   <$action-sendmessage $message="tm-add-tag" $param="Later" />
  <$action-sendmessage $message="tm-remove-tag" $param="Now" /> 
   Move to later
   

 
The result of this is that the tiddler FeedTheCats now says

  I must feed the cats
 
  I must feed the cats

ie the text is repeated - not exactly though, the lower line is in a 
slightly smaller font than the
first line

So I'm tad confused.

Incidentally the initial value of ViewTemplate was empty - I'm not sure why

What can I try next?

/Joe


>
>
> On Wednesday, February 21, 2018 at 12:24:33 PM UTC-5, Joe Armstrong wrote:
>>
>> I want to make a triage system in TW5 - tasks are tagged 'now' 'later' 
>> and 'done'
>>
>> My simple minded approach is as follows:
>>
>>1. A tiddler can be tagged 'now' 'later' or 'done'
>>2. if a tiddler has the tag 'now' its background should be red and it 
>>should have two buttons 'Move to Later' and 'Move to Done'
>>3. if I press 'Move to Later' the tag 'now' should be removed and a 
>>'later' tag should be added. If I press 'Move to done' the 'now' tag 
>> should 
>>be removed and a 'done' tag should be added.
>>4. Similar rules for treatment of the 'later' and 'done' tags.
>>
>> How should I proceed?
>>
>> Cheers
>>
>> /Joe
>>
>

-- 
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/c80a11dc-e879-4eac-8fa8-f7c59f214515%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] presenting TWRocketDock

2018-02-21 Thread @TiddlyTweeter
BTC

Don't try this at home: https://www.youtube.com/watch?v=0g9ssQSV6UA

@TiddlyTweeter :-)

-- 
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/2ddad9ae-e3fe-47b1-b41b-e98c522a3ab1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: How to add buttons if tiddler has a tag

2018-02-21 Thread Matthew Lauber
Ok, coming back to this and fleshing it out, there's a piece I missed, the 
field mangler.   you should be able to use the attached .tid file to 
transition from now to later.

Matt

On Wednesday, February 21, 2018 at 2:37:17 PM UTC-5, Joe Armstrong wrote:
>
>
>
> On Wednesday, 21 February 2018 18:43:32 UTC+1, Matthew Lauber wrote:
>>
>> *Background color by tag*:  See 
>> https://tiddlywiki.com/#How%20to%20apply%20custom%20styles%20by%20tag
>>
>> *Buttons on tagged tiddlers*.  You're going to want to use a 
>> ViewTemplate.  A ViewTemplate is a tiddler tagged with 
>> $:/tags/ViewTemplate.  It gets used as a template for every tiddler in the 
>> story river, so you probably want to start it with something like 
>> <$list filter="[is[current]tag[Now]]">
>> ...button code goes here...
>> 
>>
>> *Buttons that add and remove tags*.  You're probably going to want to 
>> use action widgets.  Something along the line of
>> <$button>
>> <$action-sendmessage $message="tm-add-tag" $param="Later" />
>> <$action-sendmessage $message="tm-remove-tag" $param="Now" />
>> Move to Later
>> 
>> Refer to  https://tiddlywiki.com/#ActionSendMessageWidget  and 
>> https://tiddlywiki.com/#Messages for more info about that.  
>>
>>
> Ok so now I have created exactly two tiddlers
>
> FeedTheCats
>has two tags 'Now' and '$:/tags/ViewTemplate'
>and content
>   I must feed the cats
>
> $:/tags/ViewTemplate
>has the following content
>
> <$list filter="[is[current]tag[Now]]">
>   <$button>
><$action-sendmessage $message="tm-add-tag" $param="Later" />
>   <$action-sendmessage $message="tm-remove-tag" $param="Now" /> 
>Move to later
>
> 
>  
> The result of this is that the tiddler FeedTheCats now says
>
>   I must feed the cats
>  
>   I must feed the cats
>
> ie the text is repeated - not exactly though, the lower line is in a 
> slightly smaller font than the
> first line
>
> So I'm tad confused.
>
> Incidentally the initial value of ViewTemplate was empty - I'm not sure why
>
> What can I try next?
>
> /Joe
>
>
>>
>>
>> On Wednesday, February 21, 2018 at 12:24:33 PM UTC-5, Joe Armstrong wrote:
>>>
>>> I want to make a triage system in TW5 - tasks are tagged 'now' 'later' 
>>> and 'done'
>>>
>>> My simple minded approach is as follows:
>>>
>>>1. A tiddler can be tagged 'now' 'later' or 'done'
>>>2. if a tiddler has the tag 'now' its background should be red and 
>>>it should have two buttons 'Move to Later' and 'Move to Done'
>>>3. if I press 'Move to Later' the tag 'now' should be removed and a 
>>>'later' tag should be added. If I press 'Move to done' the 'now' tag 
>>> should 
>>>be removed and a 'done' tag should be added.
>>>4. Similar rules for treatment of the 'later' and 'done' tags.
>>>
>>> How should I proceed?
>>>
>>> Cheers
>>>
>>> /Joe
>>>
>>

-- 
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/98523b80-ea45-4aba-8765-12755c27b1b9%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Example.tid
Description: Binary data


[tw] Re: remoteStorage syncadaptor plugin

2018-02-21 Thread BurningTreeC
There you go with your first star on your GitHub repo! :)

I think I haven't understood all the possibilities your plugin adds, but it 
sounds and looks very cool!

Would you mind to explain in non-developer words a little bit of what you 
can do with remoteStorage?

all the best,

BTC

-- 
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/9b772a39-e201-4857-bf61-649786a50b55%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Positive Assertions In One Sentence ... (aka Saying Succinctly What TW Is About ...)

2018-02-21 Thread @TiddlyTweeter
"... writing articles using transclusion is an eye opener -- it changes how 
I think." -- @joeerl on Twitter 


-- 
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/e779-a669-4e8b-8a5b-16a04d4ce0dd%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: How to add buttons if tiddler has a tag

2018-02-21 Thread BurningTreeC
Hi Joe,

all Tiddlers tagged with $:/tags/ViewTemplate get used AS A VIEWTEMPLATE

so the content of your newly tagged tiddler will also be shown on any other 
tiddler when not in "edit-mode"

that's the purpose of the tag $:/tags/ViewTemplate

Simon

-- 
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/8e9dfa46-4e52-476c-a57a-2fb94c69ff92%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: How to add buttons if tiddler has a tag

2018-02-21 Thread 'Surya' via TiddlyWiki
Ohhh, never forget or move feeding your fur-monsters AND making the cats 
toilet to "later"  ;-)))
https://www.youtube.com/watch?v=RZq3_mASEbo

Miauu, Surya

-- 
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/0712851a-16c1-4b46-adb4-a00e2c27a0a1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] remoteStorage syncadaptor plugin

2018-02-21 Thread Giovanni Parra
I've just created this remoteStorage plugin 
 that 
autosaves individual tiddlers to a remoteStorage server 
 and would like to get some feedback and perhaps 
some people using it.

I'm just starting to use TiddlyWiki myself (I wrote the plugin before 
starting to use it), so please forgive me if I've misunderstood anything 
about the principles that guide this community.

The basic idea is that your tiddlers will be saved on 
/public/tiddlers//, but you can make it non-public (so 
/tiddlers//) and change  to anything in the 
config tiddler. By default it is "main".

Along with the plugin, I've made available a server on 
https://tiddly.alhur.es/ that will serve you with an empty TiddlyWiki with 
just that plugin installed. After you connect your remoteStorage account 
you'll get your tiddlers downloaded automatically and on-demand from your 
remoteStorage and will be able to browse and edit them normally.

If your remoteStorage account is mys...@5apps.com and your tiddlers are 
saved under /public/tiddlers/something/ you can also point people to 
https://tiddly.alhur.es/mys...@5apps.com/something/ and they'll be browsing 
*your* wiki in no time.

See, for example, https://tiddly.alhur.es/fiat...@5apps.com/main/#Hello

For more information (probably nothing that I haven't written here), see the 
GitHub repository .

-- 
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/ca5f860b-eb4c-4300-b1d8-a37bc3df0aaa%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: How to add buttons if tiddler has a tag

2018-02-21 Thread Joe Armstrong
Goodness you're right I'd missed that -- now it says I have to feed the 
cats on every single tiddler - not what I wanted.

So the rule

 <$list filter="[is[current]tag[Now]]">

is applied to every tiddler - How do I say (In pseudo code)
 
if currentTiddler has tag 'Now' then
   add a button at the top of the tiddler
   and display the tiddler
else
   display the tiddler
   end

Cheers

/Joe


On Wednesday, 21 February 2018 20:50:26 UTC+1, BurningTreeC wrote:
>
> Hi Joe,
>
> all Tiddlers tagged with $:/tags/ViewTemplate get used AS A VIEWTEMPLATE
>
> so the content of your newly tagged tiddler will also be shown on any 
> other tiddler when not in "edit-mode"
>
> that's the purpose of the tag $:/tags/ViewTemplate
>
> Simon
>

-- 
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/e9f20340-c7a7-47c0-926e-c38f8747df4c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] presenting TWRocketDock

2018-02-21 Thread BurningTreeC
@TiddlyTweeter,

Take a look here: https://www.youtube.com/watch?v=wbSwFU6tY1c

It shows that:


   - rocketlaunchs need about 20 minutes of preparation
   - they start with a bang
   - everybody gets excited 'cause rockets are cool
   - someone has to press that button
   - I'm living in Innsbruck and the guy at 4:10 is John Insprucker
   - that's a coincidence



-- 
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/1a11af64-f125-4eae-8c94-e2b26d1775f9%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] presenting TWRocketDock

2018-02-21 Thread @TiddlyTweeter
Why do we need a launcher?  I mean what is the advantage of having the 
"rocket" tiddler when all it does is replace it with the rocket in action? 
Lets get too it directly :-)

Now IF a TW could LAUNCH THE ROCKET in a separate woìindow/tab that might 
be more exciting. Like you have a Rocket tiddler that invoked rocket... 
You'd just need a tiddler that knew where to find it.

Lovely stuff.

J.

-- 
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/a640a47d-d2d0-487c-bd96-9d218eebae4e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] How to add buttons if tiddler has a tag

2018-02-21 Thread TonyM
Hi,

A quick pointer

See https://tiddlywiki.com/#How%20to%20apply%20custom%20styles%20by%20tag

For changing the look of tiddlers for each tag

Then search for cycletags there are solutions to help.

Regards Tony

-- 
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/596deded-a215-4bed-8630-3307a66dd857%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: How to add buttons if tiddler has a tag

2018-02-21 Thread Matthew Lauber
*Background color by tag*:  
See https://tiddlywiki.com/#How%20to%20apply%20custom%20styles%20by%20tag

*Buttons on tagged tiddlers*.  You're going to want to use a ViewTemplate.  
A ViewTemplate is a tiddler tagged with $:/tags/ViewTemplate.  It gets used 
as a template for every tiddler in the story river, so you probably want to 
start it with something like 
<$list filter="[is[current]tag[Now]]">
...button code goes here...


*Buttons that add and remove tags*.  You're probably going to want to use 
action widgets.  Something along the line of
<$button>
<$action-sendmessage $message="tm-add-tag" $param="Later" />
<$action-sendmessage $message="tm-remove-tag" $param="Now" />
Move to Later

Refer to  https://tiddlywiki.com/#ActionSendMessageWidget  
and https://tiddlywiki.com/#Messages for more info about that.  




On Wednesday, February 21, 2018 at 12:24:33 PM UTC-5, Joe Armstrong wrote:
>
> I want to make a triage system in TW5 - tasks are tagged 'now' 'later' and 
> 'done'
>
> My simple minded approach is as follows:
>
>1. A tiddler can be tagged 'now' 'later' or 'done'
>2. if a tiddler has the tag 'now' its background should be red and it 
>should have two buttons 'Move to Later' and 'Move to Done'
>3. if I press 'Move to Later' the tag 'now' should be removed and a 
>'later' tag should be added. If I press 'Move to done' the 'now' tag 
> should 
>be removed and a 'done' tag should be added.
>4. Similar rules for treatment of the 'later' and 'done' tags.
>
> How should I proceed?
>
> Cheers
>
> /Joe
>

-- 
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/58db707f-82ce-405e-bdb7-c2c32f649634%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] How to add buttons if tiddler has a tag

2018-02-21 Thread Joe Armstrong


I want to make a triage system in TW5 - tasks are tagged 'now' 'later' and 
'done'

My simple minded approach is as follows:

   1. A tiddler can be tagged 'now' 'later' or 'done'
   2. if a tiddler has the tag 'now' its background should be red and it 
   should have two buttons 'Move to Later' and 'Move to Done'
   3. if I press 'Move to Later' the tag 'now' should be removed and a 
   'later' tag should be added. If I press 'Move to done' the 'now' tag should 
   be removed and a 'done' tag should be added.
   4. Similar rules for treatment of the 'later' and 'done' tags.

How should I proceed?

Cheers

/Joe

-- 
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/7ba3db51-519c-46f4-86f7-1141f2fe3e3f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: How to build a tag list for comsuption by <$action-sendmessage $message="tm-new-tiddler" ... />?

2018-02-21 Thread markhylton2
Stephan, this worked perfectly. My Javascript chops are practically 
non-existant. As my TW needs grow, I'm starting to learn more, but I'm 
still basically a TW script-kiddie.

BTW, two tags in the list.

Thanks much!

~Mark

On Wednesday, February 21, 2018 at 2:07:42 AM UTC-5, Stephan Hradek wrote:
>
> Do I understand correct, that the main question is, how to concatenate 
> $:/state/project-number with the word "project"?
>
> Should it be one tag or 2?
>
> For concatenation you usually require a macro. Try this
>
> \define projecttags() project $(projectnumber)$
>
> <$set name="projectnumber" value={{$:/state/project-number}}>
> <$button>
><$action-sendmessage
>   $message="tm-new-tiddler"
>   title={{$:/state/project-number}}
>   tags=<>
>/>
>New project
> 
> 
>
> use
>
> \define projecttags() [[project $(projectnumber)$]]
>
> if "project 123" should be just one tag
>
>
>

-- 
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/812656f6-9f85-45d0-9a9a-e72a39174efc%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Tech Query: Pecularities of Non-Copying Copy!!

2018-02-21 Thread 'Mark S.' via TiddlyWiki
What I'm suggesting is that you don't need the counters -- you create a 
1000 rules to apply a 1000 counts, one after the other. Building up those 
rules shouldn't take long in a good text editor (especially one's like 
Emacs that have column modes).

-- Mark

On Wednesday, February 21, 2018 at 7:28:15 AM UTC-8, @TiddlyTweeter wrote:
>
> Thank you Mark S & coda coder
>
> For your further ideas -- molto grazie.
>
> coda coder wrote:
>
>> I'm not sure if I've understood correctly, but, that draft seems to 
>> suggest that in Firefox you *may* be able to set user-select, either in 
>> the parent element or in the before/after pseudo element itself:
>
>
> Right. There is a lot of ambiguity and no clear outcome. Its clear its an 
> issue.
>
> I tried a few different tests on user-select. Got it to work but not (yet) 
> on any generated pseudo bits. I try a bit more before giving up.
>
> Mark S. wrote:
>>
>> I'm not familiar with how your regex tools work. Do they re-iterate until 
>> there are no more changes to be made?
>>
>
> I'm using BJ's Flexity plugin that allows sequences of RegEx to be run 
> before the main parser kicks in. Iteration continues freely if you want, 
> until done. Basically its raw access to JS regex in its full form.
>  
>
>> If so, then I'm thinking that rules like this at the very end:
>>
>> /(.*?)#startmarker#/$1 0001#endmarker#/
>> /(.*?)#startmarker#/$1 0002#endmarker#/
>>  etc.
>>
>> Might brute force what you want. 
>>
>
> The problem is getting the counters. Whilst some JS (edit: I meant Regex) 
> implementations when you get a capturing group you can return both the 
> string and the match index (i.e. return the match count value as well as 
> the string content) in JS, as far as I know, you can return the string 
> matched with the captured group, but you can't access the COUNT of the 
> match, even though you can use it. IF you could then I could use that to 
> build the indices I need.
>
> 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+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/56672a53-03f9-4035-86d8-f350be142854%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] [Plugin] Sortan: For sorting alpha-numericals

2018-02-21 Thread BurningTreeC


> I wanted to have a discussion first before making a pull request. It is 
> painfully easy to convert the existing sort filter to acquire this 
> behavior. Case being that, should we have it as a new filter, or modify the 
> existing sort. Right now I feel like we ll have to add it as a new filter, 
> as modifying existing sort might break the work flow of those who depended 
> on the current way of its behavior. If somebody tells me different, Either 
> way I would be happy to oblige.
>
> Yes, as I understood it, this is how it is - to assure compatibility for 
those filters you appear to need to add yours as a new one

I would like to have both - compatibility and your new filter, that's why I 
personally don't bother if it's almost the same as the original sort filter

-- 
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/6d6a3d73-e267-449e-afd7-f43ea8b91f2d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] [Plugin] Sortan: For sorting alpha-numericals

2018-02-21 Thread Riz
I wanted to have a discussion first before making a pull request. It is 
painfully easy to convert the existing sort filter to acquire this 
behavior. Case being that, should we have it as a new plugin, or modify the 
existing sort. Right now I feel like we ll have to add it as a new filter, 
as modifying existing sort might break the work flow of those who depended 
on the current way of its behavior. If somebody tells me different, Either 
way I would be happy to oblige.

On Wednesday, 21 February 2018 20:04:32 UTC+5:30, BurningTreeC wrote:
>
> this is great!
>
> can't we try to make a pull request to add it to the core as a new filter?
>
> BTC
>

-- 
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/77756e91-82f1-4113-95d8-fafa4e472df5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Tech Query: Pecularities of Non-Copying Copy!!

2018-02-21 Thread @TiddlyTweeter
Thank you Mark S & coda coder

For your further ideas molto grazie.

coda coder wrote:

> I'm not sure if I've understood correctly, but, that draft seems to 
> suggest that in Firefox you *may* be able to set user-select, either in 
> the parent element or in the before/after pseudo element itself:


Right. There is a lot of ambiguity and no clear outcome. Its clear its an 
issue.

I tried a few different tests on user-select. Gotit to work but not (yet) 
on any generated pseudo bits. I try a bit more before giving up.

Mark S. wrote:
>
> I'm not familiar with how your regex tools work. Do they re-iterate until 
> there are no more changes to be made?
>

I'm using BJ's Flexity plugin that allows sequences of RegEx to be run 
before the main parser kicks in. Iteration continues freely if you want, 
until done. Basically its raw access to JS regex in its full form.
 

> If so, then I'm thinking that rules like this at the very end:
>
> /(.*?)#startmarker#/$1 0001#endmarker#/
> /(.*?)#startmarker#/$1 0002#endmarker#/
>  etc.
>
> Might brute force what you want. 
>

The problem is getting the counters. Whilst some JS implementations when 
you get a capturing group you can return both the string and the match 
index (i.e. return the match count value as well as the string content) in 
JS, as far as I know, you can return the string matched with the captured 
group, but you can't access the COUNT of the match, even though you can use 
it. IF you could then I could use that to build the indices I need.

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+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/89b7be37-a35b-432f-9409-75e960a14753%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Wikipedia, Text Slicer Edition & Pandoc

2018-02-21 Thread BurningTreeC
Hi Steve,

I recently took a look at the pandoc github repository to see what's needed 
to maybe include tiddlywiki syntax
I didn't have that much time to get into it...

I think in a collaborative effort we could gather informations at one place 
that help make it clear a) if it's possible and if then b) how it can be 
done

We could then, if possible, see if we can make a pull request there to 
include tiddlywiki syntax

I think that would be a great thing, like 
https://www.youtube.com/watch?v=R3O--B-3R3E that great


-- 
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/605e5d9d-31fe-4ab3-9d7f-9dd5993d3242%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Wikipedia, Text Slicer Edition & Pandoc

2018-02-21 Thread @TiddlyTweeter
Steve

Footnotes to last.

1 - You could use Text-Slicer or TiddlyClip for the first step. Then 
finesse with Flexity?

2 - I believe BJ is working on a new version of TiddlyClip that will 
include greater scope as a customised "screen-scraper". I don't know the 
details.

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+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/a63a49ab-73f4-46f4-b79a-e31ede9cac22%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Introducing TW5 to a beginner

2018-02-21 Thread Steven Schneider
Hi Joe,

I've struggled with this through several iterations of my class at SUNY 
Poly (old name: SUNYIT). I've moved students through various versions, 
including what is now TiddlyWiki Classic, TiddlySpace, TiddlyWiki5 via 
Updog/Google Drive, and now primarily TiddlyWiki5 using 
tiddlywiki5.tiddlyspot.html as a wiki creator.

This year, with some success, I've pushed students to just learn how to do 
basic things in TiddlyWiki, and then slowly come to an understanding of 
what it is. So we create a new wiki, make a new tiddler, write links using 
[[square brackets]], add tags to tiddlers, begin to write lists using 
<> and then <$list>, write transclusions of {{!!fields}} and 
{{tiddlers}}, and then surprisingly quickly move into using templates. 

After that immersion, we step back and begin to identify other aspects of 
the tiddlywiki such as "title" and sidebars etc. But they've got a solid 
foundation to build on.  Of course, I have captive students who are 
committed to investing 4-10 hours per week. And they struggle.

You might find some insight by looking at the exercises I've created in 
DesignWriteStudio 

//steve.




On Monday, February 19, 2018 at 8:09:09 AM UTC-5, Joe Armstrong wrote:
>
>
> Suppose I was trying to explain the TW to a complete beginner who is
> *not* a programmer.
>
> In the old TW, if I remember rightly, there was a tiddler called
> 'Title' - if you changed the content of the 'Title' tiddler to 'Joes
> Blog' - then the TW would magically be named 'Joe Blog'.
>
> This is easily to explain and demonstrate - but even this might be
> perceived as difficult by a total beginner - taking the first step is
> always the most difficult.
>
> In TW5 'Title' is called '/$SiteTitle' - I can imagine very good
> reasons for this - one might accidentally choose the word 'Title' and
> change it with rather puzzling results (if you didn't know what you
> were doing)
>
> It wasn't exactly obvious to me that the tiddler '/$SiteTile' was the
> thing to change. So this needs some explanation.
>
> I want to make an explanation that starts with empty.html (the empty
> TW from https://tiddlywiki.com/
>
> I was thinking about introducing the TW as follows:
>
> Step 1)
>
> How to create a page. This is easy. Click on "+"
> make the page and store it. I'll call it 'JoesPage'
>
> Step 2)
>
> Find the page we just created.
>
> This is easy if I don't close the first page - it appears in the menu
> under the Open Tab.
>
> But If I close it it vanishes.
>
> So click on the 'Recent' tab.
>
> Is this *obvious* to a total beginner?
>
> Step 3)
>
> Make the page I just created appear in a 'Contents' tab
> as in https://tiddlywiki.com/
>
> How do I do this
>
> Step 4)
>
> Create a page from a page.
>
> This time we edit an existing page and add a link, which when clicked
> will create the page
>
> Step 5)
>
> Show the amazing power of list transclusion (is this the correct term)
>
> Step 5a) Create a page called ToDo
>
> Add the single line
>
> <>
>
> Step 5b) Create any page and add the tab 'todo'
>
> Step 5c) Go to the ToDo page and magically the page you just added
> appears
>
> Step 6)
>
> Talk about tags and filters. We two tags 'todo' and 'done'
> we can change the ToDo page to
>
> <>
>
> And make a 'CompletedTasks' page with
>
> <>
>
> Is this a good order? - Is there an event simpler ordering of concepts
>
> Now to the subject of "magic" (shadow tiddlers)
>
> I want to introduce TW5 to a complete beginner who is not a programmer
>
> Certain tiddlers (like '/$SiteTitle') have an immediate effect on the
> site and are easy to understand. Others are far more difficult to 
> understand.
>
> So in what order would you introduce the shadow tiddlers - I'm assuming
> '$/SiteTitle' is #1 - or is there an even easier and more direct tiddler
> (say to change the background color)
>
> How about tags with side effects. I discovered the tag 'TableOfContents'
> caused the tiddler in question to appear in the 'Contents' tab
> of the sidebar - What are the most important tags that one would introduce 
> to
> a beginner
>
> Cheers
>
> /Joe
>
>

-- 
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/a918b4e4-28be-4dbc-8031-cb7b643211ec%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Wikipedia, Text Slicer Edition & Pandoc

2018-02-21 Thread @TiddlyTweeter
Steve

IMO here you are talking about a specificity of import. Text slicer alone 
is unlikely to be able to do that as its a generic tool for effective slice 
on normal universally repeated elements.

But a specific Wikipedia page de-reconstructor needs pay attention to its 
*specific 
layout*. I think it would need to be A bespoke solution. 

Pandoc is one route. Probably over complex(?). Another route is to use 
Regular Expressions within TW. 

BJs FLEXITY plugin I have been crapping on about for months. It is 
excellent. It provides a new Content Type that allows you to run raw 
JavaScript regex over a Tiddler before the main parser kicks in. Its a 
possible solution within TW for this issue. It takes a while to grasp how 
it works. And to get the best from it you'd need understand basic regex 
syntax.

Anyway here it is: http://flexibility.tiddlyspot.com/

Best wishes
Josiah 

On Wednesday, 21 February 2018 15:18:27 UTC+1, Steven Schneider wrote:
>
> Hi folks,
>
> I wanted to open / revive a conversation about using TiddlyWiki to add 
> functionality to other types of documents, in this case, Wikipedia pages. 
> In the DesignWriteStudio  class, we are 
> currently working on importing wikipedia tables through google sheets 
> , as well as 
> "tiddlywiki-fying" wikipedia pages by excising and tagging paragraphs, but 
> that will only get us so far.
>
> I'm interested in being able to take a wikipedia page like the timeline 
> of Russia interference in the 2016 United States elections 
> 
>  and 
> create tagged tiddlers for each of the, say, 100+ individuals 
> 
>  
> and 100+ events.
>
> To that end: I was wondering if anyone has experimented with or mastered 
> the art of ingesting Wikipedia pages (perhaps using text slicer edition 
>  or perhaps using pandoc 
>  as an intermediary) into TiddlyWiki?
>
> Along those lines: has there been any movement to create a Tiddlywiki 
> import/export for pandoc, or to write a custom pandoc filter for wikitext? 
> Pandoc currently supports "Markdown (including CommonMark and 
> GitHub-flavored Markdown), reStructuredText, AsciiDoc, Emacs Org-Mode, 
> Emacs Muse, Textile, txt2tags, MediaWiki markup, DokuWiki markup, TikiWiki 
> markup, TWiki markup, Vimwiki markup, and ZimWiki markup," but not 
> tiddlywiki/wikitext.
>
> Thanks!
>
> //steve.
>

-- 
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/15d9bdd8-881c-4d74-8404-892b32f175b7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Presentation ...a little help needed

2018-02-21 Thread Steven Schneider
Hello all, 

Here is my latest attempt 
 to solve the 
challenge of presenting from a tiddlywiki: this is built on Jeremy's 
talkytalky , but adds the functionality 
of setting the bg color of slides from the palette, and also shows the 
slides as tiddlers in a more familiar way. there is a small bug right now 
that I haven't figured out so the last slide is the focus slide, rather 
than the first slide. And someday I'll put this into a plugin for ease of 
use.

//steve.



>

-- 
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/f12ce596-fdbb-4d03-934e-6b93eb01c4b2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] [Plugin] Sortan: For sorting alpha-numericals

2018-02-21 Thread BurningTreeC
this is great!

can't we try to make a pull request to add it to the core as a new filter?

BTC

-- 
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/53d17b97-96d7-4d3f-86c8-0f7d6b6d4747%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Wikipedia, Text Slicer Edition & Pandoc

2018-02-21 Thread Steven Schneider
Hi folks,

I wanted to open / revive a conversation about using TiddlyWiki to add 
functionality to other types of documents, in this case, Wikipedia pages. 
In the DesignWriteStudio  class, we are 
currently working on importing wikipedia tables through google sheets 
, as well as 
"tiddlywiki-fying" wikipedia pages by excising and tagging paragraphs, but 
that will only get us so far.

I'm interested in being able to take a wikipedia page like the timeline of 
Russia interference in the 2016 United States elections 

 and 
create tagged tiddlers for each of the, say, 100+ individuals 

 
and 100+ events.

To that end: I was wondering if anyone has experimented with or mastered 
the art of ingesting Wikipedia pages (perhaps using text slicer edition 
 or perhaps using pandoc 
 as an intermediary) into TiddlyWiki?

Along those lines: has there been any movement to create a Tiddlywiki 
import/export for pandoc, or to write a custom pandoc filter for wikitext? 
Pandoc currently supports "Markdown (including CommonMark and 
GitHub-flavored Markdown), reStructuredText, AsciiDoc, Emacs Org-Mode, 
Emacs Muse, Textile, txt2tags, MediaWiki markup, DokuWiki markup, TikiWiki 
markup, TWiki markup, Vimwiki markup, and ZimWiki markup," but not 
tiddlywiki/wikitext.

Thanks!

//steve.

-- 
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/618b6653-729a-4434-962a-1f959efe0d0f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] [Plugin] Sortan: For sorting alpha-numericals

2018-02-21 Thread @TiddlyTweeter
Ciao Riz

My feeling is YES regarding sort orders in core, if viable backwards 
compatible.

IMO its currently a serious hassle in TW we lumbered with a 
counter-intuitive, cumbersome sort order.

Best wishes
Josiah 

Riz: I was very tempted to make a pull request to modify the current sort 
> filter instead of creating a plugin. I had a feeling that such a change 
> will not be backward compatible. 
>

Riz wrote, fully:
>
> plugin and demo 
> 
>
> Currently available sort filters in the core either sorts alphabetically 
> or sorts numerically. It creates an issue when both alphabets and numbers 
> appear in the titles.
>
> For eg: Apple 8, Apple 9, Apple 10 will be sorted as
>
> Apple 10
> Apple 8
> Apple 9
>
> With *sortan*, you can sort them as 
>
> Apple 8
> Apple 9
> Apple 10
>
> As usual, there is a *sortancs filter *too for case-sensitive option, and 
> both are negatable (ie, using them as !sortan will sort them in decreasing 
> order) 
>
>
> I was very tempted to make a pull request to modify the current sort 
> filter instead of creating a plugin. I had a feeling that such a change 
> will not be backward compatible. 
>
> Anyhow, let me know what you feel,
>

-- 
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/fad7b0cd-af81-454d-8b7c-b608d4886b4d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] [Plugin] Sortan: For sorting alpha-numericals

2018-02-21 Thread David Gifford
Added to the 'Lists and filters' section of the TiddlyWiki ToolMap 
https://dynalist.io/d/zUP-nIWu2FFoXH-oM7L7d9DM

On Wednesday, February 21, 2018 at 7:44:35 AM UTC-6, Riz wrote:
>
> plugin and demo 
> 
>
>
> Currently available sort filters in the core either sorts alphabetically 
> or sorts numerically. It creates an issue when both alphabets and numbers 
> appear in the titles.
>
> For eg: Apple 8, Apple 9, Apple 10 will be sorted as
>
> Apple 10
> Apple 8
> Apple 9
>
>
> With *sortan*, you can sort them as 
>
> Apple 8
> Apple 9
> Apple 10
>
>
>
> As usual, there is a *sortancs filter *too for case-sensitive option, and 
> both are negatable (ie, using them as !sortan will sort them in 
> decreasing order) 
>
>
> I was very tempted to make a pull request to modify the current sort 
> filter instead of creating a plugin. I had a feeling that such a change 
> will not be backward compatible. 
>
> Anyhow, let me know what you feel,
>
> sincerely,
> Riz
>

-- 
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/7182bf15-8072-47d8-a256-e7f5ee535475%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] [Plugin] Sortan: For sorting alpha-numericals

2018-02-21 Thread David Gifford
I second this, or an adaptation of this, becoming core.

On Wednesday, February 21, 2018 at 8:02:51 AM UTC-6, Stephan Hradek wrote:
>
> VERY COOL!
>
> I like it. Should be part of the core.
>

-- 
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/4ada44d9-43d5-44ad-aff5-509507e84ded%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] [Plugin] Sortan: For sorting alpha-numericals

2018-02-21 Thread Stephan Hradek
VERY COOL!

I like it. Should be part of the core.

-- 
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/37a6a626-9d9c-43c7-ae6a-b72883df7f82%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: [TW5] presenting TWRocketDock

2018-02-21 Thread David Gifford
Very nice! Thanks for the added instructions for visitors. Much clearer.

David Gifford
Mexico team leader, Mexico City

*Resonate Global Mission*
*Engaging People. Embracing Christ.*
A Ministry of the Christian Reformed Church
resonateglobalmission.org


On Wed, Feb 21, 2018 at 3:16 AM, BurningTreeC 
wrote:

> I know how to use it, and you know how to use it, but you might want to at
>> least explain on your site what the Rocket is for, and how to use it.
>>
>
> You're right, I've updated the page
>
>>
>> I added it to the TiddlyWiki toolmap under "Writing and editing -
>> bookmarking".
>>
>
> Thank you :) - your dynalist is great!
>
>
>> Hi, I'm making this little TW companion that let's you edit tiddlers
>>> while browsing on other websites, dragging stuff into your wiki and more
>>>
>>> I hope you like it, and find it useful!
>>>
>>
>> If you would tell potential users, what it should do and how to use it.
>>
>> You're right, too
>
> TWRocketDock is a new browser window opened from within a tiddlywiki
>
> It is meant to enable you to add notes to your wiki, drag content into
> your wiki, while you're away from your tiddlywiki browser tab
>
> http://rocketdock.tiddlyspot.com
>
> The page now contains more details
>
> --
> 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/Qw5sjePXfr0/unsubscribe.
> To unsubscribe from this group and all its topics, 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/b01f2df8-82fe-4a41-8b6d-da3c05aa3f28%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/CANE%3DBFKQQ8WY0%3DFSG8mQeAAgVZ9e2gXMChCkpnoMUDZkJJ%3DZAw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Positive Assertions In One Sentence ... (aka Saying Succinctly What TW Is About ...)

2018-02-21 Thread @TiddlyTweeter
#TiddlyWiki remakes itself on every save.

-- 
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/16afd9b3-894d-414c-a34e-3d369baccd57%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Issue: Auto-Enumeration. I have no idea how.

2018-02-21 Thread Riz
Just to ice the cake a bit, I made a filter that sorts the titles in the 
natural order.

Link to thread: 
https://groups.google.com/forum/#!topic/tiddlywiki/fJ-kKaxRwy0

Plugin and demo 


-- 
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/8544b68e-e287-4b43-8525-757ef36d4ced%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] [TW5] [Plugin] Sortan: For sorting alpha-numericals

2018-02-21 Thread Riz
plugin and demo 



Currently available sort filters in the core either sorts alphabetically or 
sorts numerically. It creates an issue when both alphabets and numbers 
appear in the titles.

For eg: Apple 8, Apple 9, Apple 10 will be sorted as

Apple 10
Apple 8
Apple 9


With *sortan*, you can sort them as 

Apple 8
Apple 9
Apple 10



As usual, there is a *sortancs filter *too for case-sensitive option, and 
both are negatable (ie, using them as !sortan will sort them in decreasing 
order) 


I was very tempted to make a pull request to modify the current sort filter 
instead of creating a plugin. I had a feeling that such a change will not 
be backward compatible. 

Anyhow, let me know what you feel,

sincerely,
Riz

-- 
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/3b3d93b0-285e-460f-998f-ddafaccca1e7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] A slider which closes itself when clicking elsewhere or closing tiddler

2018-02-21 Thread stefct4
Hi Andreas,

On Wednesday, February 21, 2018 at 11:45:59 AM UTC+1, Andreas Hahn wrote:
>
> Hi,
>
> just to add onto all the tips you have already gotten: The info tab uses 
> the button popup mechanism to get the behaviour that you want, so an 
> example would be this (taken from the documentation at [1]):
>
>
>
This, of course, makes much more sense than my suggestions (at least in 
this particular case). For some reason, I hadn't been aware of this feature 
of the reveal widget.

Cheers,

Stef

-- 
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/3673b5c3-40db-4a46-b96c-723d4d56479e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] A slider which closes itself when clicking elsewhere or closing tiddler

2018-02-21 Thread 'Andreas Hahn' via TiddlyWiki

Hi,

just to add onto all the tips you have already gotten: The info tab uses 
the button popup mechanism to get the behaviour that you want, so an 
example would be this (taken from the documentation at [1]):


|<$button popup="$:/SamplePopupState">Open Answer <$reveal 
type="nomatch" text="" state="$:/SamplePopupState"> ! This is the Answer 
1+1 = 2 most of the time :o |


/Andreas

[1] https://tiddlywiki.com/#RevealWidget

--
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/8000ad7b-9785-f5b4-6548-ec5856dd6f88%40googlemail.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] presenting TWRocketDock

2018-02-21 Thread BurningTreeC

>
> I know how to use it, and you know how to use it, but you might want to at 
> least explain on your site what the Rocket is for, and how to use it.
>

You're right, I've updated the page 

>
> I added it to the TiddlyWiki toolmap under "Writing and editing - 
> bookmarking".
>

Thank you :) - your dynalist is great!
 

> Hi, I'm making this little TW companion that let's you edit tiddlers while 
>> browsing on other websites, dragging stuff into your wiki and more
>>
>> I hope you like it, and find it useful!
>>
>
> If you would tell potential users, what it should do and how to use it.
>
> You're right, too

TWRocketDock is a new browser window opened from within a tiddlywiki

It is meant to enable you to add notes to your wiki, drag content into your 
wiki, while you're away from your tiddlywiki browser tab

http://rocketdock.tiddlyspot.com

The page now contains more details

-- 
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/b01f2df8-82fe-4a41-8b6d-da3c05aa3f28%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: A slider which closes itself when clicking elsewhere or closing tiddler

2018-02-21 Thread Stephan Hradek
I do not know, how far you followed my exampl, but an easy trick, with 
HTML5 enabled browser is:

1. instead of @.answer @ put around the answers


answerhere


2. change the "hover" in the CSS to "focus"

Now when you click on the anwer, it will get focus, and will be displayed.

You will be able to edit the answer, but this won't be stored. after 
closing and reopening the tiddler, the correct answer will reappear.

-- 
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/31d36632-64ec-4f3b-96fb-f11cd312e732%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Online/Offline Sync & Version Control

2018-02-21 Thread Danielo Rodríguez


El viernes, 5 de enero de 2018, 23:17:58 (UTC+1), Darin Wick escribió:
>
> Right now NoteSelf  seems to have all the 
> features I want, but I don't see any activity in the github repository in 
> the last six months.  I'm a little hesitant to start using something that 
> isn't actively maintained.  
>

That is weird.
I made a release very recently,  I answer all the issues that got open on 
the github repository and  I've been fixing bugs recently. How can you see 
no activity ?

In the other hand, not making a commit on six months does not mean a 
project is abandoned or not maintained. It means that the HUMANS that are 
behind it does not have time to work on that.

And even if it is not maintained, it is an open source project, so 
potentially anyone can take the challenge of maintaining it or even forking 
it. But people prefer to open issues instead of pull requests.

Another thing to think about is that people have been using TW for more 
than ten years without problem, and most of them are using a very old 
unmaintained version.

The summary is: NoteSelf is being maintained, and with the current 
functionality, based on open standards it should work for many years.

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 https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/6e9c99bd-d83e-4ac4-8d25-a7ec3d503fd4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [Noteself] load error using empty.html ($tw.boot.boot is not a function)

2018-02-21 Thread Danielo Rodríguez
Hello again Lost Admin,

This kind of problems have been long solved. Could you try it again and let 
me know if you still experiencing this problems ?

Regards

El jueves, 21 de septiembre de 2017, 16:00:49 (UTC+2), Lost Admin escribió:
>
>
>
> On Thursday, September 21, 2017 at 7:09:26 AM UTC-4, Danielo Rodríguez 
> wrote:
>>
>> Hello everyone,
>>
>> This is very inconvenient, and very hard to trace.
>> Lost Admin, If I open the link you have provided it reloads the page a 
>> couple of times, but after that it then starts to work and from that point 
>> the page no longer crashes or reloads. The page crashes randomly at first 
>> because it has to create the required environment, and it creates a part of 
>> it each time it reloads. This is NOT by design, but it happens, and it only 
>> happens on the offline version.
>>
>
> Likewise, it only happened to me on the version I got from your download 
> button. To reproduce it I had to clear all data from Firefox, which is 
> surprisingly difficult.
>  
>
>> As time passes, it is getting harder and harder to keep both versions 
>> (the online and offline ones) on sync, and sometimes it takes time that I 
>> would better invest in developing NoteSelf itself.
>>
>> The fact that I can't reproduce the issue on any of my computers or 
>> mobile devices does not help neither: for me it always works, an it's quite 
>> frustrating. I'm thinking about hidding the offline version a bit more and 
>> put a disclamer about it's beta stage.
>>
>
> That is your choice and I respect it. But if I can't host everything on my 
> own system(s), I will look for something else. Self-hosting is part of what 
> got me looking at TiddlyWiki and the offline/online mode(s) of NoteSelf 
>  combined with the per-tiddler conflict resolution got me very interested 
> in NoteSelf.
>
>

-- 
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/4e63cc76-4c5f-4b65-b209-e5bc7823f6bc%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.