[tw5] Re: 'page turning' facility

2020-07-22 Thread Eric Shulman
On Wednesday, July 22, 2020 at 10:19:08 PM UTC-7, Bob Jansen wrote:
>
> I have a tiddlywiki file with 170 'pages' of information. Each tiddler 
> corresponds to a physical page in a book. I would like a button to allow 
> the user to 'turn the page', next or previous, without having to type its 
> title into the search bar. Pages have a title of 'Page 001', 'Page 002', 
> etc.
>
>
> http://cultconv.com/English/Conversations/MacQueen_Mary/TiddlyWiki/index.html
>

OK... here you go...

1) Create a tiddler named "PageTurner"
2) Give it a tag of "$:/tags/ViewTemplate"
3) Create a field named "list-after" with a value of 
"$:/core/ui/ViewTemplate/title"
4) Enter the following content and save the tiddler
<$list filter="[tag[Pages]]">

   <$vars prev={{{ [tag[Pages]sort[]before] }}}>
   <$vars next={{{ [tag[Pages]sort[]after] }}}>
   <$reveal default=<> type="nomatch" text="">
   <$button tooltip=<>> {{$:/core/images/chevron-left}}
  <$action-sendmessage $message="tm-close-tiddler" param=<
> />
  <$action-navigate $to=<>/>
   
   
   <$reveal default=<> type="nomatch" text="">
   <$button tooltip=<>> {{$:/core/images/chevron-right}}
  <$action-sendmessage $message="tm-close-tiddler" param=<
> />
  <$action-navigate $to=<>/>
   
   
   
   



What it does:
1) Tagging it with $:/tags/ViewTemplate automatically adds the PageTurner 
content to every tiddler
2) Giving it a "list-after" field with value 
"$:/core/ui/ViewTemplate/title" places the PageTurner content after the 
tiddler title

Then, the PageTurner content does the following:
3) The $list widget checks to see if the current tiddler is tagged with 
"Pages".  This limits the output so it will only appear on tiddlers with 
that tag.
4)  puts the content on the right side of the 
tiddler so it appears just below the regular tiddler toolbar.
5) The two $vars get the list of all tiddlers tagged with "Pages" and finds 
the one before and after the currentTiddler.
6) The first $reveal ensures that the "previous" button will only appear if 
there is a previous tiddler (i.e., not on the first page)
7) The first $button shows a "chevron-left" (double arrow), and a tooltip 
with the title of the previous tiddler.
8) When the "previous" $button is clicked, it closes the currentTiddler, 
and navigates to the previous tiddler.
9) The second $reveal ensures that the "next" button will only appear if 
there is a next tiddler (i.e, not on the last page)
10 The second $button shows a "chevron-right" (double arrow), and a tooltip 
with the title of the next tiddler.
11) When the "next" $button is clicked, it closes the currentTiddler, and 
navigates to the next tiddler.

That's it.  I've tested this on the TiddlyWiki that you posted online, and 
it works nicely.

Let me know how it goes...

enjoy,
-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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/c9aaad99-3a06-444b-a7db-0c9c3c3d5694o%40googlegroups.com.


[tw5] 'page turning' facility

2020-07-22 Thread Bob Jansen
I have a tiddlywiki file with 170 'pages' of information. Each tiddler 
corresponds to a physical page in a book. I would like a button to allow the 
user to 'turn the page', next or previous, without having to type its title 
into the search bar. Pages have a title of 'Page 001', 'Page 002', etc.

I have been searching for how to do this but can not find a way at present. I 
have gone through the info on macros, Lists, Mathematical functions and each 
offers a glimpse which quickly peters out.

Any one got any pointers?

http://cultconv.com/English/Conversations/MacQueen_Mary/TiddlyWiki/index.html

bobj

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/d9fe8288-e7ff-49b2-895f-129715bc0d49o%40googlegroups.com.


[tw5] Re: Time Tracking in TiddlyWiki?

2020-07-22 Thread Eric Shulman

Another update: http://TiddlyTools.com/timer.html

* Now provides both DigitalClock *AND* AnalogClock displays
* When no clocks are displayed, the interrupt-driven timeouts are stopped 
so there's no wasted overhead

I'm particularly pleased with the new AnalogClock feature which is rendered 
using just CSS!!

http://tiddlytools.com/timer.html#TiddlyTools%2FTimer%2FAnalogClock

enjoy,
-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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/45907ec9-fd40-44dd-8e7f-bafe5f308ae3o%40googlegroups.com.


[tw5] New Location on Tiddlers?

2020-07-22 Thread TW Tones
Folks,

If you use the Fold bar button, selected inside the View Toolbar settings. 
The fold icon appear in a left hand column of each folded tiddler. In fact 
it is vertically centred and the whole column is clickable.

I am asking for help because my css and page layout skills are not strong. 

I would like to introduce buttons in a right right had column on each 
tiddler in a similar manner to the fold bar, but I would like to be able to 
place them at the top, middle or bottom of this column. Can anyone guide me 
to creating such a column? ideally in both view and edit modes.

It may also be useful to create buttons that stay in place in this column 
as the tiddler is scrolled.

Why,

   - I see a lot of opportunities to add buttons to jump to the top or 
   bottom of the current tiddler, or top of bottom of the current story and 
   this seems a nice place to have them, saving screen real estate, and making 
   them "ever visible".
   - This may be a suitable place for introducing other conditional 
   "buttons" like allowing one to conditionally display buttons to change the 
   tiddler view 

Thanks in advance
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/2d4148e8-89b0-4a0f-a2fc-7e2d49164f34o%40googlegroups.com.


[tw5] Re: Plugin prototype: Command Palette

2020-07-22 Thread TW Tones
Souk21,

This is a great contribution from a new tiddlywiki user, thank you. 

I do like its standalone independence behind ctrl-p, We are getting so many 
advances in quick access to advanced features in a few directions right now 
so don't be surprised if adoption is slower than normal, users may be being 
overwhelmed. Floating editor toolbars, editor context responsive and other 
tools are "in the works". Yours is a serious contributor to tiddlywiki 
flourishing. 

In a new thread for EditorMagic in Development 
https://groups.google.com/forum/?hl=en#!topic/tiddlywikidev/HeYGf24BSTE I 
am developing a method to extract programaticaly macro and widget info from 
tiddlywiki.com or empty.html to build a library of sorts that can be fed 
into such tools, 

Perhaps Command Palette can be part of this? allowing such content to be 
accessed from a shared resource?

If interested please join that thread.

Regards
Tony


On Monday, June 29, 2020 at 6:09:40 PM UTC+10, Souk21 wrote:
>
> New version 0.0.5 is up :) 
> This time it's a small one with a couple bugfixes:
>
> - Fixed themes tiddlers being modified unexpectedly (Thanks to @linonetwo) 
> 
> - Fixed "Save Wiki" bug (Thanks to @Saq Imtiaz) 
> 
>
> Let me know :)
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/e9752dff-c00a-4197-9cff-be519a5b29a6o%40googlegroups.com.


[tw5] Re: [ Demo ] : floating draggable resizable tiddlers

2020-07-22 Thread TW Tones
Saq,

I agree a generic solution is needed, I can imagine floats could be 
immediately used on the Murri plugin for multi screen tiddlywiki "desktops".

Before I comment on this design please drop the attached Draft design for 
new window buttons that do something similar, but uses new browser windows 
instead which is great for multi-screen desktops and they can be moved 
outside the browser tab. The View and edit buttons work, with view/edit 
templates active in windows, the code button looks wrong and is non 
operative.

As you have already suggested though as soon as you get a "window handling" 
feature, in this case popup handling, some thought has to be given to 
window management. You are suggesting snap and drag to side etc... 

A float this tiddler button like the new window button would be nice.

I would think that the following would be useful ultimately within the 
float tool

   - Close all
   - Minimise all (to a tray ) like current drafts.
   - Open, Close or minimise individual floats
   - Respond the a background colour on the tiddler since they are almost 
   post it notes

Other ideas may include allowing them to be brought forward or pushed 
backward. However I see value in the underlying features being deployed 
with more advanced features built independently to handle floating tiddlers.

   - Actually this is where an alternate story view could use a empty 
   background and all tiddlers are opened into a popup
   - A long kept in pre-release beta of stackable windows 

You can see from my open in new window solutions that the same window 
handling would be useful and recent discussion about closing such spawned 
windows also helps.

Speculation,

   - A set of window/popup tiddler management tools that could be used for 
   popups and new windows alike would be a useful tool that could be leverage 
   to do other tiddler window and story methods.
   - This would need further abstraction to find a way to treat floats and 
   external windows in a similar way. 
   - Bringing modals or modal like operations into a float where the User 
   may be forced to respond before they regain access to the rest of the wiki, 
   heading and subheading and close options may be a nice option.

Regards
Tony


On Thursday, July 23, 2020 at 6:29:55 AM UTC+10, Saq Imtiaz wrote:
>
> So what's interesting is that the demo is actually a lot more generic. The 
> base component of the Floats demo is a <$float> widget that can be used to 
> make any tiddler draggable and resizable, along with a tm-float message to 
> easily create floats.
>
> What this identifies is the need for standardized re-usable components 
> that can be used to make draggable, resizable containers, which can then be 
> used to create UI's like mentat.
>
> Though if the desire were to replace the storyriver with such a UI I would 
> definitely look in the direction of a custom storyview.
>
> On Wednesday, July 22, 2020 at 10:04:22 PM UTC+2, Birthe C wrote:
>>
>> Joshua,
>>
>> Oh I hope you will refactor Mentat. It is wonderful.
>>
>> Saq,
>>
>> When I saw your floats, I also thought in Mentat direction but mostly of 
>> Volant. Tiddlers to be moved around and resized.
>>
>> J.D also had a go here: http://j.d.volantis.tiddlyspot.com/
>>
>> Birthe
>>
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/11881c49-f1dc-443f-8186-96313c9dcfdao%40googlegroups.com.


new-windows.json
Description: application/json


[tw5] Re: Question - Searching for Widget use?

2020-07-22 Thread TW Tones
Mat,

Good call thanks. Wrapping the filter on tripple quotes seems to have 
solved it
<$list filter="""[all[]search:text[<$]]""">


Come to think of it the parser may be trying to identify the widget that it 
delineates

Thanks
Mark

On Thursday, July 23, 2020 at 12:00:52 AM UTC+10, Mat wrote:
>
> On phone so cant test but that code should work. You probably just made 
> some small error. See if triple quotes helps.
>
> <:-)
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/4fdafb8b-bfab-4a5d-8194-89d4bdcbe326o%40googlegroups.com.


[tw5] Re: Question - Searching for Widget use?

2020-07-22 Thread TW Tones
I mean thanks MAT

On Thursday, July 23, 2020 at 9:14:44 AM UTC+10, TW Tones wrote:
>
> Mat,
>
> Good call thanks. Wrapping the filter on tripple quotes seems to have 
> solved it
> <$list filter="""[all[]search:text[<$]]""">
>
> 
> Come to think of it the parser may be trying to identify the widget that 
> it delineates
>
> Thanks
> Mark
>
> On Thursday, July 23, 2020 at 12:00:52 AM UTC+10, Mat wrote:
>>
>> On phone so cant test but that code should work. You probably just made 
>> some small error. See if triple quotes helps.
>>
>> <:-)
>>
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/2e2d1f7e-3007-4767-a41b-5fd3b248e0a1o%40googlegroups.com.


[tw5] Re: Plugin prototype: Command Palette

2020-07-22 Thread Diego Mesa
Hey Souk21,

Thanks for this! Do you think this is ready to use in production? Also, any 
plans to try and make this into the core/official plugin? I think its 
great! 

On Monday, June 29, 2020 at 3:09:40 AM UTC-5, Souk21 wrote:
>
> New version 0.0.5 is up :) 
> This time it's a small one with a couple bugfixes:
>
> - Fixed themes tiddlers being modified unexpectedly (Thanks to @linonetwo) 
> 
> - Fixed "Save Wiki" bug (Thanks to @Saq Imtiaz) 
> 
>
> Let me know :)
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/04a2ff08-6d4a-4a22-b0af-d8ff9baeffa0o%40googlegroups.com.


[tw5] Re: How to get tc-popup-keep to "stick" ?

2020-07-22 Thread 'Mark S.' via TiddlyWiki
Hi Eric,

I'm definitely putting this into my notes. It seems like something that 
will come up more than once.

I'm wondering if a longer term solution would be a change to the reveal 
widget so that you can prevent it from creating it's own style attribute. 
Then the resulting code could be a lot simpler. Maybe.

Thanks!

On Wednesday, July 22, 2020 at 12:46:59 PM UTC-7, Eric Shulman wrote:
>
> Here's another version that allows you to *completely bypass the 
> type="popup" positioning and "cook your own"*
>
> 
> <$button popup=<
> >>{{$:/core/images/options-button}}
> <$reveal state=<> type="nomatch" 
> text="" class="tc-popup-handle" style="position:relative;">
>
>   enter stuff here: <$edit-text tiddler="whatever" tag="input" 
> default="" placeholder="" />
>
> 
> 
>
> 1) The outermost div controls the position of the $button/$reveal 
> combination so it will appear in the margin and won't affect any other 
> content
> 2) The $button uses popup="..." to toggle the popup state between 
> blank/non-blank.
> 3) The $reveal uses class="tc-popup-handle" to 'eat' any clicks inside it 
> without dismissing the popup
> 4) The $reveal also uses style="position:relative;" to establish a new 
> (0,0) origin for it's contents
> 5) The div uses class="tc-drop-down" to get the box around the content and 
> style="position:absolute;right:0;" to set the location of the tc-drop-down, 
> relative to the origin established by the $reveal
> 7) The div also uses style="min-width:fit-content;padding:0.5em;" to 
> adjust the appearance of the tc-drop-down
>
> I prefer the above approach over using "float" and "margin" styles, as it 
> is more explicit in how things should be placed and will never affect 
> anything else around it.
>
> -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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/ca092e4d-f9f9-4ea2-b511-16016779990eo%40googlegroups.com.


[tw5] Re: [ Demo ] : floating draggable resizable tiddlers

2020-07-22 Thread Saq Imtiaz
So what's interesting is that the demo is actually a lot more generic. The 
base component of the Floats demo is a <$float> widget that can be used to 
make any tiddler draggable and resizable, along with a tm-float message to 
easily create floats.

What this identifies is the need for standardized re-usable components that 
can be used to make draggable, resizable containers, which can then be used 
to create UI's like mentat.

Though if the desire were to replace the storyriver with such a UI I would 
definitely look in the direction of a custom storyview.

On Wednesday, July 22, 2020 at 10:04:22 PM UTC+2, Birthe C wrote:
>
> Joshua,
>
> Oh I hope you will refactor Mentat. It is wonderful.
>
> Saq,
>
> When I saw your floats, I also thought in Mentat direction but mostly of 
> Volant. Tiddlers to be moved around and resized.
>
> J.D also had a go here: http://j.d.volantis.tiddlyspot.com/
>
> Birthe
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/467c2635-b85f-445d-8bb5-c205922be87bo%40googlegroups.com.


[tw5] Re: [ Demo ] : floating draggable resizable tiddlers

2020-07-22 Thread Birthe C
Joshua,

Oh I hope you will refactor Mentat. It is wonderful.

Saq,

When I saw your floats, I also thought in Mentat direction but mostly of 
Volant. Tiddlers to be moved around and resized.

J.D also had a go here: http://j.d.volantis.tiddlyspot.com/

Birthe

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/e40c563c-34a4-41fc-b7ee-a76d36cb3b9ao%40googlegroups.com.


[tw5] Re: NotoWritey -- Editor/Outliner for TiddlyWiki, v0.0.9 ++ (thread #3)

2020-07-22 Thread 'Mark S.' via TiddlyWiki

Ok, vsn 0.0.10a is out, and hopefully actually works!

Thanks everyone for your patience! Special thanks to Saq for help with the 
broken popup!

https://marxsal.github.io/various/notowritey.html

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/4be6c04e-2d41-4fb5-8538-cfed23fe7181o%40googlegroups.com.


[tw5] Re: How to get tc-popup-keep to "stick" ?

2020-07-22 Thread Eric Shulman
Here's another version that allows you to *completely bypass the 
type="popup" positioning and "cook your own"*


<$button popup=<
>>{{$:/core/images/options-button}}
<$reveal state=<> type="nomatch" 
text="" class="tc-popup-handle" style="position:relative;">
   
  enter stuff here: <$edit-text tiddler="whatever" tag="input" 
default="" placeholder="" />
   



1) The outermost div controls the position of the $button/$reveal 
combination so it will appear in the margin and won't affect any other 
content
2) The $button uses popup="..." to toggle the popup state between 
blank/non-blank.
3) The $reveal uses class="tc-popup-handle" to 'eat' any clicks inside it 
without dismissing the popup
4) The $reveal also uses style="position:relative;" to establish a new 
(0,0) origin for it's contents
5) The div uses class="tc-drop-down" to get the box around the content and 
style="position:absolute;right:0;" to set the location of the tc-drop-down, 
relative to the origin established by the $reveal
7) The div also uses style="min-width:fit-content;padding:0.5em;" to adjust 
the appearance of the tc-drop-down

I prefer the above approach over using "float" and "margin" styles, as it 
is more explicit in how things should be placed and will never affect 
anything else around it.

-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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/ae22e7e1-a94a-4a5d-8591-8dd1da716769o%40googlegroups.com.


[tw5] Re: How to get tc-popup-keep to "stick" ?

2020-07-22 Thread Saq Imtiaz
No worries. CSS has its own convoluted logic :) 

A negative margin in practice does for floats what a negative right value was 
doing for position absolute, moving outside of the bounding box of the parent.

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/83bb2ef1-b114-4a9b-a24f-79359574718ao%40googlegroups.com.


[tw5] [ Demo ] : floating draggable resizable tiddlers

2020-07-22 Thread Saq Imtiaz
Hi Joshua,

Mentat looks interesting. Though to be clear what I'm looking for is to create 
draggable Tiddler containers (that I refer to as floats) independent of the 
StoryList. More like a floating popup that can be moved around and so that you 
can have an editor, reference docs or other tools at hand while working.

One of the things I did consider was to implement the floats as a separate 
story with their own StoryList and a custom storyview to make them appear over 
other content and draggable, resizable etc.

Regarding popups disappearing off the edge of the screen: it's intentional in 
the demo that you can drag past the edge of the screen but not entirely off the 
screen. And I think it would be handy to be able to optionally snap to screen 
corners. What needs handling is window resize, which could leave a float open 
but not visible.

Cheers,
Saq

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/a784e539-6730-424a-a558-3da7e503226ao%40googlegroups.com.


[tw5] Re: How to get tc-popup-keep to "stick" ?

2020-07-22 Thread 'Mark S.' via TiddlyWiki

I apologize  -- somehow I missed that. That seems to do the trick. I worked 
out that the text editor wanted 100% of the space, but giving the control 
elements -2em right-margin seems to allow the float to work as expected. 
It's not something I can quite make sense of. CSS! Arrgh!

Many thanks!

On Wednesday, July 22, 2020 at 11:54:35 AM UTC-7, Saq Imtiaz wrote:
>
> @Mark did you try setting a negative margin as I suggested?
>
> .nw-edit-control {
>
>1. float: right;
>2. margin-right: -2em;
>3. xborder: solid 2px;
>4. top: 0.1em;
>5. z-index: 1;
>
> }
>
> Updated: https://saqimtiaz.github.io/sq-tw/notowritey.html
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/e9408012-bfd1-4cdb-b119-f0569e1b12d6o%40googlegroups.com.


[tw5] [ Demo ] : floating draggable resizable tiddlers

2020-07-22 Thread Joshua Fontany
Saq, I have been sitting on it until some of the other base level work for my 
wikis (like the new Oembed plugin) are in beta, but I have been really wanting 
to refactor the really excellent Mentat plugin. This UI hack of TW is one of 
the most impressive I've seen si far, but unfortunately doesn't use some of the 
core StoryList logic. These mods could be better integrated (& one of the 
Mentat sub plugins has a fix for popups disappearing offscreen when tho close 
to an edge).

https://thesherwood.github.io/Mentat/

https://github.com/theSherwood/Mentat

Best,
Joshua F

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/8f5b6705-220e-4820-b20e-f4a5888f136ao%40googlegroups.com.


[tw5] Re: How to get tc-popup-keep to "stick" ?

2020-07-22 Thread Saq Imtiaz
@Mark did you try setting a negative margin as I suggested?

.nw-edit-control {

   1. float: right;
   2. margin-right: -2em;
   3. xborder: solid 2px;
   4. top: 0.1em;
   5. z-index: 1;

}

Updated: https://saqimtiaz.github.io/sq-tw/notowritey.html

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/f9fe07a6-0a60-4a72-b6b5-db41a0082481o%40googlegroups.com.


[tw5] Re: Help for vis.js Timeline (emkay plugin, reloaded)

2020-07-22 Thread Paul Boughner
Forget that, it works. The red triangle seems to be saying there are tagged 
tiddlers that can't be rendered. The real problem is that the events on the 
timeline are off by 4 hours from the start/end time. I didn't see any 
UTC/Local offsets in any config file though.

On Wednesday, June 24, 2015 at 12:41:14 PM UTC-4, Sylvain Naudin wrote:
>
> Hello,
>
> I have tested the vis.js Timeline plugin (emkay plugin, reloaded) : 
> http://kixam.github.io/TW5-visjsTimeline/
> (I've found discussion on Google Groups about Emkay plugin but seem to be 
> not compatible with latest version of TiddlyWiki).
> If I play online with the plugin (
> http://kixam.github.io/TW5-visjsTimeline/), it works (even I've found a 
> little complicate to clearly understand howto create correctly tiddler and 
> show a timeline).
>
> But if I import the 3 plugins on an empty TW file, I've got JavaScript 
> error like "Error with vis.js Timeline : Not a startDate () on 
> MySubStoryList.created".
>
> Do you have some advices or other example to help me ?
>
>
> Thanks,
> Sylvain
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/257d4236-3cb1-4975-a7d5-afb5ada7eeb1o%40googlegroups.com.


[tw5] Re: How to get tc-popup-keep to "stick" ?

2020-07-22 Thread 'Mark S.' via TiddlyWiki
Hi Saq,

That's pretty amazing -- only two little changes and it basically works.

The main difference is the positioning. The original position for the 
controls would have been over in the margin and would not have affected the 
wrapping of the items on the toolbar.  But the real problem is that the 
"float right" isn't honoured if the toolbar is suppressed (which you can do 
down in the settings)

So then it ends up looking like (there should be two screenshots here) :






Even though the toolbar has been set to "display: none", the cog controls 
are acting like they're still there. 

Thanks!



On Wednesday, July 22, 2020 at 11:10:19 AM UTC-7, Saq Imtiaz wrote:
>
> Hi Mark,
>
> OK I just tested those modifications I mentioned above on Noto and I 
> believe they accomplish what you need, unless I have misunderstood the 
> visual design you want.
>
> Have a look:
> https://saqimtiaz.github.io/sq-tw/notowritey.html
>
> To move the gear icon etc more to the right use 
> margin-right: -1em;
> on the parent.
>
> I'm not sure what you mean by "popup handle", but the launch button is in 
>> a div that uses absolute positioning, and the "popup" box uses absolute 
>> positioning.  Are you saying that the absolute positioning interferes with 
>> "tc-popup-keep" ?
>
>
> Yes, use float:right instead of position:absolute on the div containing 
> the button that triggers the popup. Then type=popup will position the popup 
> correctly.
>
> If you then use the reveal widget with the attributes I posted, the popup 
> should appear just underneath the button, and to the left. It also will not 
> close when clicked upon.
>
> Saq
>
> On Wednesday, July 22, 2020 at 7:55:57 PM UTC+2, Mark S. wrote:
>>
>> Hi Saq,
>>
>> The problem with type="popup" is that it puts the box offscreen and to 
>> the right. I needed to control where the box goes. Attempting to use 
>> "aboveright" didn't do anything -- it still put the box "belowleft".  The 
>> problem is that the reveal widget with type="popup" hardcodes the position 
>> in the style attribute. The technique Eric suggested fixed the problem of 
>> positioning by not using type="popup"
>>  
>>
> I want my popup icon to float in the margin between the tiddler content 
>> and the edge of the tiddler river. Absolute positioning seemed to be the 
>> only way I could achieve this. The popup then floats just to the left of 
>> that. Everything looks nice (well, I'm not very fussy re UI), but now the 
>> popup wants to close as soon as I enter an edit field inside it.
>>
>> Thanks!
>>
>> On Wednesday, July 22, 2020 at 10:12:34 AM UTC-7, Saq Imtiaz wrote:
>>>
>>> Edited to highlight that you need to use type="popup"
>>>
>>> <$reveal type="popup" state=<> text=""  
>>> class="tc-popup-keep" 
>>> position="belowleft">
>>>
>>>
>>> On Wednesday, July 22, 2020 at 7:11:28 PM UTC+2, Saq Imtiaz wrote:

 @Mark try this:

 <$reveal type="popup" state=<> text=""  
 class="tc-popup-keep" 
 position="belowleft">

 Make sure the popup handle or its parent div, meaning button in this, 
 is not using position:absolute.
 You can probably use float:right instead.

>>>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/56a418a7-96c5-48bc-894d-cc1bb9849c27o%40googlegroups.com.


[tw5] Node.js and iOS

2020-07-22 Thread Tim Lockridge
I'm searching for a way to use my Node.js TiddlyWiki installation on iOS. 
I'd like to sync it through Github, and I'm comfortable using the Working 
Copy app to commit and push changes. But I don't know how to launch a local 
server on iOS to view the wiki in Safari. Does anyone have an app and 
process for launching Node (and the tiddlywiki --listen command) on iOS?

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/9f4d5b11-883c-4e63-933c-40ea88ee14a3o%40googlegroups.com.


[tw5] [ Demo ] : floating draggable resizable tiddlers

2020-07-22 Thread Saq Imtiaz
So here is the next round of conference call background fiddling from 
earlier this week.

There is a very rough and quick proof of concept that I have probably spent 
at most an hour on in bits and pieces. Therefore please do not distribute 
or use for anything as it may spawn a Dalek and lead to the extermination 
of your wikis.

*Concept: *
- be able to open tiddlers in floating "windows" that can be dragged, 
resized and still allow interaction with the content underneath. A bit like 
a hybrid between popups and modals.
- personally I want something like this for my Notation editor, as while it 
is really convenient in a modal that can be triggered with a keyboard 
shortcut, at times I wish to be able to access tiddlers in the river at the 
same time.

*Video:*
https://drive.google.com/file/d/1opCBSNl9yRK8dJuV5BLjN8KGE_-myLwl/view?usp=sharing

*Demo:*
https://saqimtiaz.github.io/sq-tw/floats.html

Further development notes and ideas are in the "notes" tiddler.

Cheers,
Saq

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/59e44999-50b0-4d6c-8231-e615af174545o%40googlegroups.com.


[tw5] Re: How to get tc-popup-keep to "stick" ?

2020-07-22 Thread Saq Imtiaz
Hi Mark,

OK I just tested those modifications I mentioned above on Noto and I 
believe they accomplish what you need, unless I have misunderstood the 
visual design you want.

Have a look:
https://saqimtiaz.github.io/sq-tw/notowritey.html

To move the gear icon etc more to the right use 
margin-right: -1em;
on the parent.

I'm not sure what you mean by "popup handle", but the launch button is in a 
> div that uses absolute positioning, and the "popup" box uses absolute 
> positioning.  Are you saying that the absolute positioning interferes with 
> "tc-popup-keep" ?


Yes, use float:right instead of position:absolute on the div containing the 
button that triggers the popup. Then type=popup will position the popup 
correctly.

If you then use the reveal widget with the attributes I posted, the popup 
should appear just underneath the button, and to the left. It also will not 
close when clicked upon.

Saq

On Wednesday, July 22, 2020 at 7:55:57 PM UTC+2, Mark S. wrote:
>
> Hi Saq,
>
> The problem with type="popup" is that it puts the box offscreen and to the 
> right. I needed to control where the box goes. Attempting to use 
> "aboveright" didn't do anything -- it still put the box "belowleft".  The 
> problem is that the reveal widget with type="popup" hardcodes the position 
> in the style attribute. The technique Eric suggested fixed the problem of 
> positioning by not using type="popup"
>  
>
I want my popup icon to float in the margin between the tiddler content and 
> the edge of the tiddler river. Absolute positioning seemed to be the only 
> way I could achieve this. The popup then floats just to the left of that. 
> Everything looks nice (well, I'm not very fussy re UI), but now the popup 
> wants to close as soon as I enter an edit field inside it.
>
> Thanks!
>
> On Wednesday, July 22, 2020 at 10:12:34 AM UTC-7, Saq Imtiaz wrote:
>>
>> Edited to highlight that you need to use type="popup"
>>
>> <$reveal type="popup" state=<> text=""  
>> class="tc-popup-keep" 
>> position="belowleft">
>>
>>
>> On Wednesday, July 22, 2020 at 7:11:28 PM UTC+2, Saq Imtiaz wrote:
>>>
>>> @Mark try this:
>>>
>>> <$reveal type="popup" state=<> text=""  
>>> class="tc-popup-keep" 
>>> position="belowleft">
>>>
>>> Make sure the popup handle or its parent div, meaning button in this, is 
>>> not using position:absolute.
>>> You can probably use float:right instead.
>>>
>>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/b498bf35-89ee-4aeb-a5bc-b133e9e018a5o%40googlegroups.com.


[tw5] Re: How to get tc-popup-keep to "stick" ?

2020-07-22 Thread 'Mark S.' via TiddlyWiki
Hi Saq,

The problem with type="popup" is that it puts the box offscreen and to the 
right. I needed to control where the box goes. Attempting to use 
"aboveright" didn't do anything -- it still put the box "belowleft".  The 
problem is that the reveal widget with type="popup" hardcodes the position 
in the style attribute. The technique Eric suggested fixed the problem of 
positioning by not using type="popup"

I'm not sure what you mean by "popup handle", but the launch button is in a 
div that uses absolute positioning, and the "popup" box uses absolute 
positioning.  Are you saying that the absolute positioning interferes with 
"tc-popup-keep" ?

I want my popup icon to float in the margin between the tiddler content and 
the edge of the tiddler river. Absolute positioning seemed to be the only 
way I could achieve this. The popup then floats just to the left of that. 
Everything looks nice (well, I'm not very fussy re UI), but now the popup 
wants to close as soon as I enter an edit field inside it.

Thanks!

On Wednesday, July 22, 2020 at 10:12:34 AM UTC-7, Saq Imtiaz wrote:
>
> Edited to highlight that you need to use type="popup"
>
> <$reveal type="popup" state=<> text=""  
> class="tc-popup-keep" 
> position="belowleft">
>
>
> On Wednesday, July 22, 2020 at 7:11:28 PM UTC+2, Saq Imtiaz wrote:
>>
>> @Mark try this:
>>
>> <$reveal type="popup" state=<> text=""  
>> class="tc-popup-keep" 
>> position="belowleft">
>>
>> Make sure the popup handle or its parent div, meaning button in this, is 
>> not using position:absolute.
>> You can probably use float:right instead.
>>
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/5e288d32-83f9-44e7-a0d2-a4383aa5ffe8o%40googlegroups.com.


[tw5] Re: NotoWritey -- Editor/Outliner for TiddlyWiki, v0.0.9 ++ (thread #3)

2020-07-22 Thread Birthe C
Mark S,

I tried myself.
As you know I do not know much about things like that - and I might have 
broken other things in doing so.
But you can try it yourself.

I tried to attach the file.

Birthe

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/143ab8ad-32b1-48e6-a6d9-e3087521ebd6o%40googlegroups.com.


DocumentTemplate.tid
Description: Binary data


[tw5] Re: Help for vis.js Timeline (emkay plugin, reloaded)

2020-07-22 Thread Paul Boughner
So does the format read in the start/end dates according to the template or 
does it format the output for the timeline? I can't seem to get this to 
work with 

<$visjstimeline filter=[tag[event]]  startDateField=event_start 
endDateField=event_end format="date" template=" 0MM 0DD 0hh 0mm" navpad 
/>

On Wednesday, June 24, 2015 at 12:41:14 PM UTC-4, Sylvain Naudin wrote:
>
> Hello,
>
> I have tested the vis.js Timeline plugin (emkay plugin, reloaded) : 
> http://kixam.github.io/TW5-visjsTimeline/
> (I've found discussion on Google Groups about Emkay plugin but seem to be 
> not compatible with latest version of TiddlyWiki).
> If I play online with the plugin (
> http://kixam.github.io/TW5-visjsTimeline/), it works (even I've found a 
> little complicate to clearly understand howto create correctly tiddler and 
> show a timeline).
>
> But if I import the 3 plugins on an empty TW file, I've got JavaScript 
> error like "Error with vis.js Timeline : Not a startDate () on 
> MySubStoryList.created".
>
> Do you have some advices or other example to help me ?
>
>
> Thanks,
> Sylvain
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/bf71f5c1-a1f1-4a86-a94b-08129f82f34ao%40googlegroups.com.


[tw5] Re: How to get tc-popup-keep to "stick" ?

2020-07-22 Thread Saq Imtiaz
Edited to highlight that you need to use type="popup"

<$reveal type="popup" state=<> text=""  
class="tc-popup-keep" 
position="belowleft">


On Wednesday, July 22, 2020 at 7:11:28 PM UTC+2, Saq Imtiaz wrote:
>
> @Mark try this:
>
> <$reveal type="popup" state=<> text=""  
> class="tc-popup-keep" 
> position="belowleft">
>
> Make sure the popup handle or its parent div, meaning button in this, is 
> not using position:absolute.
> You can probably use float:right instead.
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/8c2e0cfd-e0ee-4043-aa7e-5146bd2dbf94o%40googlegroups.com.


[tw5] Re: How to get tc-popup-keep to "stick" ?

2020-07-22 Thread Saq Imtiaz
@Mark try this:

<$reveal type="popup" state=<> text=""  
class="tc-popup-keep" 
position="belowleft">

Make sure the popup handle or its parent div, meaning button in this, is 
not using position:absolute.
You can probably use float:right instead.

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/f7006a43-5b72-402c-af83-a766debe0a0do%40googlegroups.com.


[tw5] Re: NotoWritey -- Editor/Outliner for TiddlyWiki, v0.0.9 ++ (thread #3)

2020-07-22 Thread 'Mark S.' via TiddlyWiki
Do you mean when you change the code yourself? Or is it doing it straight 
out of the box? In which case, a screenshot might help.

Thanks!


On Wednesday, July 22, 2020 at 9:48:51 AM UTC-7, Birthe C wrote:
>
> Marks,
>
> Hm. When tc-popup-keep is working, the popup floats totally out to the 
> left. Something to do with the node-edit-settings?
>
> Birthe
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/202b2d7c-5dbd-4cc1-819e-f80ac32c236ao%40googlegroups.com.


[tw5] Re: How to get tc-popup-keep to "stick" ?

2020-07-22 Thread 'Mark S.' via TiddlyWiki
Hi Eric,

This is the basic structure (below) that I'm using, which I got from you. 
It solves the problem that when you use type="popup" in the reveal widget, 
the reveal widget won't let you use your own positioning. The default 
behavior puts the popup box off to the left, and in my case, off screen, 
whereas I want to put it to the right of the current tiddler.

The problem now is that tc-popup-keep doesn't seem to be working. As soon 
as you type in an edit box inside the div, it immediately closes the entire 
popup.

This is 5.1.23 prerelease, so per Saq's suggestion I tried adding 
cancelPopups="no" to the edit box, but that didn't seem to change the 
behaviour.
 
Thanks!

Code and CSS below.

<$button class="tc-btn-invisible" popup=<> 
>{{$:/core/images/options-button}}
...
<$reveal type="nomatch" state=<> text="" >
  
... edit boxes here ...




This is the positioning that I'm applying via the CSS, in case that matters:

.nw-edit-settings {
right: -0.5em !important;
position: absolute;
z-index: 2;
top: 0.9em;
opacity: 1;
background-color: antiquewhite;
padding: 0.9em;
border: solid lightblue;
width: min-content;
border-radius: 1em;
}



On Wednesday, July 22, 2020 at 7:03:06 AM UTC-7, Eric Shulman wrote:
>
> On Wednesday, July 22, 2020 at 6:40:28 AM UTC-7, Mark S. wrote:
>>
>> Maybe this isn't possible. I would like to make a popup box that has an 
>> input field that users can enter information into. I want the popup to 
>> "stick" until someone clicks outside the box. Unfortunately, currently the 
>> box closes as soon as a field is entered.
>>
>
> Use "tc-popup-keep" on the tc-drop-down element:
> <$button popup=<>> button label 
> 
> <$reveal state=<> type="popup">
> style="min-width:fit-content;padding:1em;">
>  enter whatever here:
>  <$edit-text tiddler="whatever" tag="input" placeholder="" 
> default="" focus="true"/>
>
> 
>
> enjoy,
> -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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/75d7c61f-8167-47f7-8e8d-9ba8bcf08c34o%40googlegroups.com.


[tw5] Re: NotoWritey -- Editor/Outliner for TiddlyWiki, v0.0.9 ++ (thread #3)

2020-07-22 Thread Birthe C
Marks,

Hm. When tc-popup-keep is working, the popup floats totally out to the 
left. Something to do with the node-edit-settings?

Birthe

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/983ddde8-2e40-4d31-97bb-ec299129c12fo%40googlegroups.com.


[tw5] Re: NotoWritey -- Editor/Outliner for TiddlyWiki, v0.0.9 ++ (thread #3)

2020-07-22 Thread Dave Parker
Feature Request:

Sorry, I haven't read all threads about this so this might be a repeat, 
but...

It would be nice if the little "+" and "-" only appeared if there were 
levels present to be hidden or revealed.  Right now I go to the main TW and 
click away on them not knowing if the line below is "part" of the one 
you're clicking on and most of the time the button doesn't actually do 
anything.  I'm a little "UI-retarded" so stuff like that is always helpful.

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/43d07d40-8083-4c02-88f4-315685c1eb1co%40googlegroups.com.


[tw5] Re: Formatting based on field value

2020-07-22 Thread 'Jake' via TiddlyWiki
Yes, the last one worked perfectly! Though it's a bit more difficult to 
understand then the first one. 
Which is the input set, the output set, where the variable is assigned to 
individual item and where the variable is assigned to the whole set, so 
on... 
I mean the main question is not exactly what is assigned to what, but "what 
you can assign to what and what you can not" in terms of TW. :)

PS. As I understood in this case <> variable you can use only 
inside "wikify" widget and <> and <> anywhere in the 
wiki once you add them in macro 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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/9a769e3e-247c-47ab-a954-7ce6f8a08c13o%40googlegroups.com.


[tw5] Re: First release of

2020-07-22 Thread Saq Imtiaz
Hi Lin, 

This sounds very promising. Will check it out over the weekend and provide 
feedback.
Regards,
Saq

On Sunday, July 19, 2020 at 9:12:38 PM UTC+2, Lin Onetwo wrote:
>
>
> Hi, I've been recently working on a new Desktop App for TiddlyWiki, which 
> focuses on syncing data to Github and providing extra nodejs API to 
> TiddlyWiki plugins.
>
> https://github.com/tiddly-gittly/TiddlyGit-Desktop
>
> Most of the code is based on my experience using 
> Tiddlywiki-NodeJS-Github-Template 
>  this 
> year, but I've implement git-sync 
>  in 
> TiddlyGit-Desktop, so sync experience will be much better.
>
> This is still the first alpha release, to show the possibility, if you 
> like it, you can click "watch -> Release Only" to get updates on the future 
> versions.
>
> I will implement a TiddlyGit-Mobile in the future, after TiddlyGit-Desktop 
> is stable, if I have time...
>
> This App is totally free, but it is based on my friend's App's code, there 
> may be a prompt asking for license code, just ignore it, I will remove this 
> in the next release.
>
> Lin Onetwo
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/505cd83e-1822-481d-969a-09c08742ba26o%40googlegroups.com.


[tw5] Re: How to get tc-popup-keep to "stick" ?

2020-07-22 Thread Eric Shulman
On Wednesday, July 22, 2020 at 6:40:28 AM UTC-7, Mark S. wrote:
>
> Maybe this isn't possible. I would like to make a popup box that has an 
> input field that users can enter information into. I want the popup to 
> "stick" until someone clicks outside the box. Unfortunately, currently the 
> box closes as soon as a field is entered.
>

Use "tc-popup-keep" on the tc-drop-down element:
<$button popup=<>> button label 

<$reveal state=<> type="popup">
   
 enter whatever here:
 <$edit-text tiddler="whatever" tag="input" placeholder="" 
default="" focus="true"/>
   


enjoy,
-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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/2b391b76-7508-4e7c-9ae3-be24e73d2068o%40googlegroups.com.


[tw5] Question - Searching for Widget use?

2020-07-22 Thread Mat
On phone so cant test but that code should work. You probably just made some 
small error. See if triple quotes helps.

<:-)

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/9d12fa30-e422-4819-a581-6201e1ff27eao%40googlegroups.com.


[tw5] Re: How to get tc-popup-keep to "stick" ?

2020-07-22 Thread Saq Imtiaz
Class "tc-popup-keep" on the reveal widget should do the trick. 

If on the pre-release also make sure that any edit/edit-text widget you use 
has cancelPopups set to "no".
https://tiddlywiki.com/prerelease/#EditTextWidget

On Wednesday, July 22, 2020 at 3:40:28 PM UTC+2, Mark S. wrote:
>
> Maybe this isn't possible. I would like to make a popup box that has an 
> input field that users can enter information into. I want the popup to 
> "stick" until someone clicks outside the box. Unfortunately, currently the 
> box closes as soon as a field is entered.
>
> Thanks!
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/093c5b6e-5f76-4123-b6e2-b12dee762284o%40googlegroups.com.


[tw5] How to get tc-popup-keep to "stick" ?

2020-07-22 Thread 'Mark S.' via TiddlyWiki
Maybe this isn't possible. I would like to make a popup box that has an 
input field that users can enter information into. I want the popup to 
"stick" until someone clicks outside the box. Unfortunately, currently the 
box closes as soon as a field is entered.

Thanks!

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/5151f4d1-1704-46fb-91b0-1a8edfe1ba09o%40googlegroups.com.


[tw5] Re: NotoWritey -- Editor/Outliner for TiddlyWiki, v0.0.9 ++ (thread #3)

2020-07-22 Thread 'Mark S.' via TiddlyWiki
Hi Tony,

For some reason, tc-popup-keep isn't working right. Guess I'll make a post 
about that. Maybe I'm expecting too much from it and will have to change 
everything out. When I was developing, I used a select list, but at the 
last moment decided that would be too limiting and put in the edit box.

Thanks!

On Tuesday, July 21, 2020 at 9:54:16 PM UTC-7, TW Tones wrote:
>
> Mark
>
> Thanks I was playing with it but I can't change the items number, perhaps 
> the items button should be named "merge items" or something.
>
> Regards
> Tony
>
> On Wednesday, July 22, 2020 at 1:09:20 PM UTC+10, Mark S. wrote:
>>
>> When you edit an element, and click on the cog, you'll get a pop-up menu. 
>> One of the choices (the bottom one) is for combining X number of following 
>> tiddlers. Documentation is lagging, but I think it's mostly intuitive.
>>
>> Thanks!
>>
>> On Tuesday, July 21, 2020 at 7:09:55 PM UTC-7, TW Tones wrote:
>>>
>>> Mark,
>>>
>>> Thanks so much for developing this important tool to the community.
>>>
>>> On Wednesday, July 22, 2020 at 10:36:03 AM UTC+10, Mark S. wrote:

 This version allows you to combine the next X tiddlers into the current 
 tiddler/section. 

>>>
>>> I am not sure exactly what this means or see any description of this? Am 
>>> I missing something?
>>>
>>> Love your work
>>> Regards
>>> Tony
>>>  
>>>
 On Monday, July 13, 2020 at 2:24:10 PM UTC-7, Mark S. wrote:
>
> Per request starting a new thread since that last one was paginating 
> in public.
>
> Vsn. 0.0.9 adds the ability to suppress the left hand fold control 
> while still being in edit mode.
>
> @TT -- You mentioned wanting to turn off splitting everywhere. Note 
> that if you put in your own split string (e.g. zzz) that can't 
> possibly 
> be in your text, this effectively does the same thing.
>
> https://marxsal.github.io/various/notowritey.html
>


-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/40c5e569-c3fc-4e47-aab1-24c194f93e95o%40googlegroups.com.


Re: [tw5] Question - Searching for Widget use?

2020-07-22 Thread 林东吴
Maybe filters in the list don't search system tiddlers?

TW Tones  于2020年7月22日周三 上午10:15写道:

> Folks,
>
> In a larger piece of work to extract usable coding information from
> tiddlywiki I can use this string in the advanced search filter
> [all[]search:text[<$]]
>
> However when used in a list it returns nothing?
> <$list filter="[all[]search:text[<$]]">
>
> 
>
> And this is not working either
> \define widget-string() <$
> <$list filter="[all[]search:text]">
>
> 
>
> 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 view this discussion on the web visit
> https://groups.google.com/d/msgid/tiddlywiki/f2c4a903-ac95-4528-8a00-333bcb6782bdo%40googlegroups.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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/CA%2BmF0D-JmMZXsqFVdvOqAz2w3qBPOFQUM4n8vXqWUAXKMGJ8bw%40mail.gmail.com.


[tw5] Re: left-hand column Container

2020-07-22 Thread Ken Gray
You guys are awesome!!!  
Thanks.  Went with leftbar because easy and don't use mobile for this.

On Wednesday, July 22, 2020 at 12:41:37 AM UTC-4 Eric Shulman wrote:

> On Tuesday, July 21, 2020 at 8:47:02 PM UTC-7, Ken Gray wrote:
>>
>> In tw2, I had a tiddler that was expressly for the  left-hand column of 
>> the page.  it ran the full length and gave the page three vertical 
>> containers.  Is that available for tw5?
>>
>
> In TWClassic (aka TW2), the was a default (shadow) tiddler called 
> "MainMenu" that appeared on the left.
>
> In TW5, the default layout doesn't have a  MainMenu, but  you can create 
> one relatively easily, like this:
>
> 1) Create a tiddler named "MainMenu"
> 2) Tag it with "$:/tags/PageTemplate"
> 3) Create a field named "list-before" (leave the value blank)
> 4) Enter the following content:
> 
>
> Stuff Here
>
> More stuff here
> 
> 5) In the $:/ControlPanel, Appearance, ThemeTweaks, set the "Story left 
> position" to leave room for the desired width of the MainMenu (e.g., "20em")
> (note: you can also directly set this value 
> in $:/themes/tiddlywiki/vanilla/metrics/storyleft)
>
> That's it.  You can now edit the MainMenu tiddler to show whatever content 
> you like.
>
> Notes:
> * If you want the MainMenu to NOT scroll with the page, use 
> "position:fixed" instead of "position:absolute"
> * If you want the MainMenu to wrap its contents to fit the width, add 
> "width:20em;"
> * Adjust the "margin-top:1em" to suit your taste
>
> enjoy,
> -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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/848e1a92-79ee-4442-bdfe-068d568b0dfcn%40googlegroups.com.


[tw5] Re: Link to directly edit tiddler

2020-07-22 Thread Ken Gray
Brilliant!
Thanks all...perfect solution.

On Wednesday, July 22, 2020 at 12:31:09 AM UTC-4 TW Tones wrote:

> Ken,
>
> Eric solution is more open to additional settings etc... However any 
> button can be transcluded like the edit button below to operate on the 
> currentTiddler including when listing tiddler names
> {{||$:/core/ui/Buttons/edit}}
>
> But then if you have a fixed tiddlername
> {{tiddlername||$:/core/ui/Buttons/edit}}
> If it exists or not.
>
> Regards
> Tony
>
>
>
> On Wednesday, July 22, 2020 at 1:41:28 PM UTC+10, Ken Gray wrote:
>>
>> Isn't there a way to create a link in a tiddler that will take you to 
>> another tiddler already open for editing?
>>  I thought there was.
>>
>> thanks.
>>
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/d6dbf879-3805-4202-bb1d-f91736dce24fn%40googlegroups.com.


[tw5] Re: NotoWritey -- Editor/Outliner for TiddlyWiki, v0.0.9 ++ (thread #3)

2020-07-22 Thread Jon
Hi Mark,

I tried it for the first time the other day and will have an opportunity to 
use it again later.
I used it to split a lengthy tiddler and found it really good - especially 
the ability to choose where I wanted to make the splits by inserting my own 
expression.
Need to use it more to find my way around.

Regards
Jon

On Wednesday, 22 July 2020 01:36:03 UTC+1, Mark S. wrote:
>
> Vsn 0.0.10 is now out. This version allows you to combine the next X 
> tiddlers into the current tiddler/section. Note that you can not reset this 
> change (so don't use the 'reset' button afterwards). I suppose I should add 
> that to the documentation some time.  Combining tiddlers means that you can 
> work with a block of text as separate tiddlers, then pack them back 
> together when you're finished. Combining tiddlers is also useful when you 
> want to move a group of tiddlers somewhere else in the document.
>
> This will probably be the last major change. It looks and works good 
> enough for my needs at the moment. It would be nice to hear if people are 
> using it at all.
>
> Thanks!
>
>
> On Monday, July 13, 2020 at 2:24:10 PM UTC-7, Mark S. wrote:
>>
>> Per request starting a new thread since that last one was paginating in 
>> public.
>>
>> Vsn. 0.0.9 adds the ability to suppress the left hand fold control while 
>> still being in edit mode.
>>
>> @TT -- You mentioned wanting to turn off splitting everywhere. Note that 
>> if you put in your own split string (e.g. zzz) that can't possibly be 
>> in your text, this effectively does the same thing.
>>
>> https://marxsal.github.io/various/notowritey.html
>>
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/ece3f916-20db-4d5a-97ca-9d55ae2542f8o%40googlegroups.com.