[tw] Re: TwTube Video.js plugin for TW5

2018-01-15 Thread TheDiveO
The Node.js TiddlyWiki server is only for development, especially of the 
plugins themselves. Afterwards I release and the files are served from an 
ordinary web server. Previously it wasn't possible to develop tiddlywikis 
that make use of external media using the TiddlyWiki server due to same 
origin restrictions and the server not being able to serve media.

On Tuesday, January 16, 2018 at 2:26:08 AM UTC+1, TonyM wrote:
>
> TheDiveO,
>
> Looking good. Are you serving a NodeJS server to the internet, or just 
> within your local network?
>
> For me this would be more likely to support my use of such an elegant 
> solution.
>
> Regards
> Tony
>
> On Tuesday, 16 January 2018 06:22:42 UTC+11, TheDiveO wrote:
>>
>> Preview/beta of my new *TwTube plugin* that adds the famous Video.js 
>> player to TW5. Also includes optional player skins. This player can be used 
>> to play external media that comes from the same origin. For this, the 
>> plugin allows for development to run your TiddlyWiki server on Node.js and 
>> serving media files.
>>
>>  See for yourself: https://youtu.be/x9K4M4gZDZo
>> Repository (no release yet): https://github.com/TheDiveO/TWTube
>>
>> There's a new --mediaserver command for this which should be used instead 
>> of the existing --server command. --mediaserver expects a path relative to 
>> your TW5 development files base as its first parameter, then come the same 
>> parameters as for the --server command. The new command runs an enhanced 
>> server that serves media files in parallel to tiddlers.
>>
>> Thank you to all those who helped me in the TW forums getting my plugin 
>> to work. ;)
>>
>> Best regards,
>> TheDiveO
>>
>

-- 
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/b4b3e096-320a-46ee-bb0a-25a819217ac2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Viewing tiddler in story vs in other location such as a sidebar tab

2018-01-15 Thread BurningTreeC
Hi @TonyM,

I would do it with css, because like that you can address tiddlers in the 
storyriver with

.tc-story-river .tc-tiddler-frame { ... }

and in the sidebar .tc-sidebar-scrollable (maybe .tc-sidebar-lists if 
tiddlers are in the sidebar tabs) .tc-tiddler-frame { ... }

and for hiding the menus in the storyriver

.tc-story-river .tc-tiddler-frame .menuclass {
display: none;
}

.tc-sidebar-scrollable .tc-tiddler-frame .menuclass {
display: block;
}

Am Dienstag, 16. Januar 2018 07:24:32 UTC+1 schrieb TonyM:
>
> Foilks,
>
> I am close to completing a menu tool for TW5 and I am trying to find a way 
> to tell if I am viewing the tiddler in the SideBar or not.
>
> Does anyone know the logic, for a filter that can somehow determine where 
> it is displayed?
>
> For example in the side bar I want it to list the menus
> In an open tiddler I also want to offer checkboxes to change settings on 
> the menus.
>
> Ideally with native tiddlywiki since I am building a plugin and want to 
> avoid dependencies.
>
> 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 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/6f9bdf68-e139-4a64-8e15-3ee110abad3c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] [TW5] Viewing tiddler in story vs in other location such as a sidebar tab

2018-01-15 Thread TonyM
Foilks,

I am close to completing a menu tool for TW5 and I am trying to find a way 
to tell if I am viewing the tiddler in the SideBar or not.

Does anyone know the logic, for a filter that can somehow determine where 
it is displayed?

For example in the side bar I want it to list the menus
In an open tiddler I also want to offer checkboxes to change settings on 
the menus.

Ideally with native tiddlywiki since I am building a plugin and want to 
avoid dependencies.

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 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/adb027b7-e133-46f2-9384-ac6080672c34%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Formula: Spreadsheet-like mathematics for TiddlyWiki

2018-01-15 Thread Evan Balster
Good catch, Diego.  This is actually a symptom of a major value coercion 
error in formula 0.2, that gives rise to quite a few different goblins.

I'll probably put out a version 0.2.1 tomorrow, as I've fixed this bug and 
added closure support (!!) in the repo.

On Monday, 15 January 2018 10:31:23 UTC-6, Diego Mesa wrote:
>
> Hey Evan,
>
> Again - WOW - thanks!
>
> Just doing some testing and came across the following:
>
>- [tag[Expenses]get[value]]
>   - 2.03 1.49 14.90
>- map(function(x):(x*x), [tag[Expenses]get[value]])
>   - 4.12 2.22 222.01
>- map(function(x):(x*x* & ','*), [tag[Expenses]get[value]])
>   - 4.1208999, 2.2201, 222.010002,
>
> Diego
>
> On Monday, January 15, 2018 at 10:26:27 AM UTC-6, Evan Balster wrote:
>>
>> Hey, Tony —
>>
>> The JavaScript error is a defect in attribute-modules — that's a core mod 
>> with a lot more potential to affect wiki stability, which is why I made 
>> some warnings about it.
>>
>> I think if you grab the latest version of the attribute-modules plugin 
>> from the formulas wiki, even though the version number is the same (my 
>> mistake), it should fix the issue and restore support for that feature.  
>> Sorry about the trouble.
>>
>> On Monday, 15 January 2018 00:32:42 UTC-6, TonyM wrote:
>>>
>>> Evan,
>>>
>>> I dragged the new version plugin to two different wikis, one saved and 
>>> reloaded OK.
>>>
>>> The Other will not reload, nor does safemode work, giving the following 
>>> error.
>>>
>>> Internal JavaScript Error
>>> Well, this is embarrassing. It is recommended that you restart 
>>> TiddlyWiki by refreshing your browser
>>> Error executing boot module $:/core/modules/widgets/attributes/macro.js: 
>>> "Cannot find module named '$:/plugins/ebalster/formula/operands.js' 
>>> required by module '$:/core/modules/widgets/attributes/macro.js', resolved 
>>> to $:/plugins/ebalster/formula/operands.js" undefined
>>>
>>> From where I can go no where.
>>>
>>> I am trying to fix the wiki now but just wanted to let you know.
>>>
>>> I installed a couple of your other plugins previously the attribute and 
>>> if.else plugins if they may have something to do with it.
>>>
>>> I am not so sure how to toggle a plugin enabled to disable when editing 
>>> the tiddlywiki file directly, to eliminate your plugin.
>>>
>>> Regards
>>> Tony
>>>
>>> On Monday, January 15, 2018 at 4:05:05 PM UTC+11, Evan Balster wrote:

 *Formula 0.2.0 released*:  
 https://evanbalster.com/tiddlywiki/formulas.html
 GitHub and issue tracking:  
 https://github.com/EvanBalster/TiddlyWikiFormula

 This one's a doozie...  Changelog:

 A substantial re-write of the formulas plugin that introduces various 
 improvements and improves support for functional programming. Various 
 minor 
 compatibility-breaking changes were made.

- Introduced (lambda) functions and formula-local variables.
   - Added let construct  for 
   making local variables.
   - Added function declaration . 
   Closures are not supported yet.
- Added map function  for 
manipulating array elements.
- Improved number formatting.
   - Default number formatting no longer displays tiny imprecisions.
   - Number formats may be specified with numeral.js 
   , enabling thousands separators, k/m/b 
   notation and greater control over digits.
   - *Renamed some FormulaWidget 
    and FormulaVarsWidget 
    attributes.*
   - Original number formatting can still be used by specifying 
   precision (no value).
- Enhanced support for imported values.
   - Added Functions  for 
   importing values as text: transclude, transclude_index, variable
   - Added datum function for interpreting text as a Datum 
   .
   - *Datum parsing now recognizes qualifying 14- and 17-digit 
   numbers as TiddlyWiki dates.* (eg. created & modified fields).
- *Widgets now display errors in the TiddlyWiki style*, like this.
   - $formula-vars will display any errors instead of its normal 
   content.
   - $formula uses tc-error styling.
- *Value conversion behaviors have changed.*
   - Non-array values will not be treated as single-element arrays.
- Enhanced array functions sum, average, product and count.
   - Multi-dimensional array values are properly supported.
   - *count ignores empty values.*
   - New function counta counts empty values.
- Internal implementation was changed. *This will break 
customizations.*
 

[tw] Re: How to Reduce font size of tiddler title and the (default white) frame around the tiddlers?

2018-01-15 Thread BurningTreeC
Hi Surya,

your're doing it right, just don't give up  :)
on the screenshot you've marked the tiddler. there's a "+" on the left, 
click that. it opens the tiddler structure. more things appear and more "+" 
... go search for the tiddler title and you'll see something like TiddlerView TitleSize 

always look for the *class="..." *that's what you can address with a 
Stylesheet Tiddler by writing .classname { something: value; }

you also have the smaller window on the right side that shows the styles 
that are currently applied to what is marked on the left side.
by inspecting these both things you can figure out what is currently 
applied and what you want to override with your own stylesheet.
in the right window you should be able to click on styles and to change 
them, to see what it changes in your wiki. this doesn't get saved, it's 
only applied currently. if you reload your wiki this is gone.
but if you put it in a stylesheet tiddler it will be saved.

by the structure that is shown on the *left *side you can also figure out 
how to address your elements *directly *without addressing other elements.

example: 



   
hello
  



then this addresses the tc-title class in this example (how you address it 
depends how this structure looks like): 

.tc-tiddler-frame .tc-title {
something: value;
}

in this example, .tc-titlebar .tc-title { something: value; } would work, 
too.



Am Montag, 15. Januar 2018 22:31:12 UTC+1 schrieb Surya:
>
> Okay,
>
> now the frame-command doesn't work anymore...
> Even not in the same wiki-copy without the changes I made.
> ???
>
> Okay, for both (title & frame):
>
> I looked around in this elements-thing and I think, I can find out, what 
> to modify.
>
> I think, I have to write then that what I found in a tiddler in order to 
> get it saved in the wiki, right?
> But:
> What exactly do I have to copy? The right red marked in my picture? The 
> left marked in my picture? Both?
> And: How to copy the commands? I tried with inner HTML and with outer 
> HTML, but with both I get an almost endless tiddler.
>
>
> 
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/1a583343-d117-43a9-855b-175939d5741e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: is there a way to get the "find" function in TW desktop version?

2018-01-15 Thread BurningTreeC
Hi @Dave,

I've found this on the nw.js github 
page: https://github.com/nwjs/nw.js/issues/3283

It's about the missing ctrl+f search function

Maybe we could raise an issue on github and comment all together to get 
some attention... ?


cheers,
Simon

Am Sonntag, 14. Januar 2018 07:02:36 UTC+1 schrieb Dave:
>
> is there a way to get the "find" function in TW desktop version?
>
> I've made the switch to TW desktop, but I find I miss having the browser 
> function of "ctrl-f" to find words on the screen if I have a lot of text 
> going on.  Is there a way to get this function?  I know the normal "Search" 
> will find the tiddler, but it doesn't show it on the screen where the exact 
> word is.
>
> Thanks,
> Dave
>

-- 
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/bc36cfd8-0cfb-4774-a4e1-5f836d9ea927%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: is there a way to get the "find" function in TW desktop version?

2018-01-15 Thread TonyM
Coda,

Sure I cant do it, and I do not expect anyone to do it, my point is many 
may have done it for chromium implementations, so the method and code 
should be out there.

All Good and understood.

Tony

On Tuesday, 16 January 2018 14:57:39 UTC+11, coda coder wrote:
>
>
>
> On Monday, January 15, 2018 at 6:05:43 PM UTC-6, TonyM wrote:
>>
>> If the answer realy is no, I'm supprised as I expected this would be 
>> common in other implementations of the same browser Engin.
>>
>>
> That's the thing, Tony.  NW.js uses Chromium (not Chrome) which is just 
> the engine -- it understands HTML, javascript, css... but very little 
> else.  All the other stuff (address bar, menus, bookmarks) they all come 
> from Chrome -- the "outer shell".  So if one wants all that, someone has to 
> write it, add it to the engine, support it, maintain it...  get the 
> picture? countless man-hours of work.
>
> Aint gonna happen, not in this universe. ;)
>
>

-- 
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/6409a084-5ea1-43bb-9fd1-4437fee0828d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: is there a way to get the "find" function in TW desktop version?

2018-01-15 Thread coda coder


On Monday, January 15, 2018 at 6:05:43 PM UTC-6, TonyM wrote:
>
> If the answer realy is no, I'm supprised as I expected this would be 
> common in other implementations of the same browser Engin.
>
>
That's the thing, Tony.  NW.js uses Chromium (not Chrome) which is just the 
engine -- it understands HTML, javascript, css... but very little else.  
All the other stuff (address bar, menus, bookmarks) they all come from 
Chrome -- the "outer shell".  So if one wants all that, someone has to 
write it, add it to the engine, support it, maintain it...  get the 
picture? countless man-hours of work.

Aint gonna happen, not in this universe. ;)

-- 
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/824f5a8c-4f29-4692-ab86-2d11b3d1fa29%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: tiddlywiki5.tiddlyspot.com

2018-01-15 Thread Birthe C
Hi Steve,

It is the hide at not setup domain that hides the text. 
Open $:/Setup/Stylesheet an inset your own.


Birthe

Den tirsdag den 16. januar 2018 kl. 02.22.38 UTC+1 skrev stevesuny:
>
>
> FWIW, I tried to copy your wiki and fix it myself in my own version of 
> your tool, but that wasn't really working at all (none of the content in 
> the tiddlers was visible...?; kind of weird...).
>
> SO:
>
> Any possibility that you could maybe take out the plugin in the TW5 that 
> you create on tiddlyspot? Or set visibility to hide?
>
> Thanks!
>
> //steve.
>
>
>
> On Tuesday, June 20, 2017 at 7:18:18 AM UTC-4, stevesuny wrote:
>>
>> Mat, this is excellent. I understand the reasons for the oddities, but in 
>> general this is much better than trying to explain how to build a 
>> tiddlyspot from scratch. I'll be using this...Thanks for 
>> developing...//steve.
>>
>> On Wednesday, June 14, 2017 at 3:46:24 PM UTC+2, Lost Admin wrote:
>>>
>>> *I tried using Chrome on Windows.*
>>>
>>> *1)* I realize you don't have a choice, but having to re-enter the 
>>> site-id in "step 2" is weird.
>>>
>>> At the end of step 2 it says:
>>>
>>> Click the red load button and wait 10-20 seconds until step 3 appears 
>>> below...
>>>
>>> But the button in question is yellow on my screen. The text in the 
>>> button is red.
>>>
>>> *2)* The embedded (iframe?) for the wiki creation tool causes a popup 
>>> warning about submitting to an embedded page (in chrome). This is a warning 
>>> that the site might be doing something phishy (it's a common way to steal 
>>> credentials).
>>>
>>> *3)* The embeded content is bigger than the iframe (div?) it is in 
>>> which results in weird scrolling.
>>>
>>> *4)* After creating the site, the iframe (div?) content fits even worse 
>>> than before.
>>>
>>> Step 3 worked (after I got my password right).
>>>
>>> *5)* I know there is no choice, but entering your password 3 different 
>>> times (or 4 if you count the initial creation and confirmation) is somewhat 
>>> confusing from a new user perspective.
>>>
>>> *6)* You really need to have an initial tiddler in StoryList. Having a 
>>> completely blank TW5 without any open tiddler to start (a splash 
>>> page/edit-this-page-to-make-your-site) it is hard to tell what to do after 
>>> step 3. You said you wanted this for new users, having a blank grey screen 
>>> leaves a bit of a "uh what now" moment.
>>>
>>> On Tuesday, June 13, 2017 at 2:10:03 PM UTC-4, Mat wrote:

 The idea here is for a complete newbie to easily (and freely) get an 
 online TW5.

 http://tiddlywiki5.tiddlyspot.com/

 It uses the excellent TiddlySpot service provided by cousins Baird.

 Please try it out, and also note how it behaves on the new site you set 
 up.

 Those fields at top in the front tiddler are out of my control, 
 including how it shows after clicking "create wiki".

 I'm particularly interested to know if there are browsers that the 
 setup doesn't work with... which I believe there is... and which I cannot 
 solve, but I can at least inform about it on the site.

 <:-)

>>>

-- 
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/5808c539-cae7-4e00-a471-dbcb56915641%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: tiddlywiki5.tiddlyspot.com

2018-01-15 Thread stevesuny
Well, Mat, OK: Now they are being created without the plugin being shown. 
Um, my apologies...all seems to be ok...//steve.

On Monday, January 15, 2018 at 8:22:38 PM UTC-5, stevesuny wrote:
>
> Hi Mat, I'm about to roll http://tiddlywiki5.tiddlyspot.com/ out to my 
> students in class (http://designwritestudio.com) as an option for saving 
> & serving tiddlywiki files.
>
> I think this is easier than the alternatives
>
> BUT:
>
> All of my tiddlyspot-hosted wikis created with your tool come equipped 
> with your kind of cool plugin, SideEditor 
>  visible. I see this tool as for 
> advanced users, so I'd rather hide it or eliminate it, and deliver the most 
> basic TW5 possible. It looks like you tried to set visibility to hide 
> , but the 
> tiddler  
> $:/config/ViewToolbarButtons/Visibility/$:/plugins/TWaddle/SideEditor/Button 
> is missing in my newly configured tw5 tiddyspots. 
>
> FWIW, I tried to copy your wiki and fix it myself in my own version of 
> your tool, but that wasn't really working at all (none of the content in 
> the tiddlers was visible...?; kind of weird...).
>
> SO:
>
> Any possibility that you could maybe take out the plugin in the TW5 that 
> you create on tiddlyspot? Or set visibility to hide?
>
> Thanks!
>
> //steve.
>
>
>
> On Tuesday, June 20, 2017 at 7:18:18 AM UTC-4, stevesuny wrote:
>>
>> Mat, this is excellent. I understand the reasons for the oddities, but in 
>> general this is much better than trying to explain how to build a 
>> tiddlyspot from scratch. I'll be using this...Thanks for 
>> developing...//steve.
>>
>> On Wednesday, June 14, 2017 at 3:46:24 PM UTC+2, Lost Admin wrote:
>>>
>>> *I tried using Chrome on Windows.*
>>>
>>> *1)* I realize you don't have a choice, but having to re-enter the 
>>> site-id in "step 2" is weird.
>>>
>>> At the end of step 2 it says:
>>>
>>> Click the red load button and wait 10-20 seconds until step 3 appears 
>>> below...
>>>
>>> But the button in question is yellow on my screen. The text in the 
>>> button is red.
>>>
>>> *2)* The embedded (iframe?) for the wiki creation tool causes a popup 
>>> warning about submitting to an embedded page (in chrome). This is a warning 
>>> that the site might be doing something phishy (it's a common way to steal 
>>> credentials).
>>>
>>> *3)* The embeded content is bigger than the iframe (div?) it is in 
>>> which results in weird scrolling.
>>>
>>> *4)* After creating the site, the iframe (div?) content fits even worse 
>>> than before.
>>>
>>> Step 3 worked (after I got my password right).
>>>
>>> *5)* I know there is no choice, but entering your password 3 different 
>>> times (or 4 if you count the initial creation and confirmation) is somewhat 
>>> confusing from a new user perspective.
>>>
>>> *6)* You really need to have an initial tiddler in StoryList. Having a 
>>> completely blank TW5 without any open tiddler to start (a splash 
>>> page/edit-this-page-to-make-your-site) it is hard to tell what to do after 
>>> step 3. You said you wanted this for new users, having a blank grey screen 
>>> leaves a bit of a "uh what now" moment.
>>>
>>> On Tuesday, June 13, 2017 at 2:10:03 PM UTC-4, Mat wrote:

 The idea here is for a complete newbie to easily (and freely) get an 
 online TW5.

 http://tiddlywiki5.tiddlyspot.com/

 It uses the excellent TiddlySpot service provided by cousins Baird.

 Please try it out, and also note how it behaves on the new site you set 
 up.

 Those fields at top in the front tiddler are out of my control, 
 including how it shows after clicking "create wiki".

 I'm particularly interested to know if there are browsers that the 
 setup doesn't work with... which I believe there is... and which I cannot 
 solve, but I can at least inform about it on the site.

 <:-)

>>>

-- 
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/bd314df9-a125-44dd-96bd-75c1a6c4e0c8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TwTube Video.js plugin for TW5

2018-01-15 Thread TonyM
TheDiveO,

Looking good. Are you serving a NodeJS server to the internet, or just 
within your local network?

For me this would be more likely to support my use of such an elegant 
solution.

Regards
Tony

On Tuesday, 16 January 2018 06:22:42 UTC+11, TheDiveO wrote:
>
> Preview/beta of my new *TwTube plugin* that adds the famous Video.js 
> player to TW5. Also includes optional player skins. This player can be used 
> to play external media that comes from the same origin. For this, the 
> plugin allows for development to run your TiddlyWiki server on Node.js and 
> serving media files.
>
>  See for yourself: https://youtu.be/x9K4M4gZDZo
> Repository (no release yet): https://github.com/TheDiveO/TWTube
>
> There's a new --mediaserver command for this which should be used instead 
> of the existing --server command. --mediaserver expects a path relative to 
> your TW5 development files base as its first parameter, then come the same 
> parameters as for the --server command. The new command runs an enhanced 
> server that serves media files in parallel to tiddlers.
>
> Thank you to all those who helped me in the TW forums getting my plugin to 
> work. ;)
>
> Best regards,
> TheDiveO
>

-- 
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/b2082fc8-fa8f-49e9-8cfe-48288d338f72%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: How to use widget code in BJ's visualeditor?

2018-01-15 Thread Birthe C


When you create a new tiddler, you select from the dropdown type menu 
text/x-htmlp.


http://bjtools.tiddlyspot.com/ we are told:


"Also be aware that the editor strips newline characters, this means it 
cannot  be used with some wiki text (it is probably a bad idea to try and 
mix wiki text with text produced in the visualeditor)."



Birthe

Den tirsdag den 16. januar 2018 kl. 01.01.23 UTC+1 skrev TonyM:
>
> Armlet,
>
> I am not using that plugin but has you toddler being set to another type 
> such as text/plain ?
>
> 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/89092156-2bb7-4274-aede-edefc5677f98%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: tiddlywiki5.tiddlyspot.com

2018-01-15 Thread stevesuny
Hi Mat, I'm about to roll http://tiddlywiki5.tiddlyspot.com/ out to my 
students in class (http://designwritestudio.com) as an option for saving & 
serving tiddlywiki files.

I think this is easier than the alternatives

BUT:

All of my tiddlyspot-hosted wikis created with your tool come equipped with 
your kind of cool plugin, SideEditor  
visible. 
I see this tool as for advanced users, so I'd rather hide it or eliminate 
it, and deliver the most basic TW5 possible. It looks like you tried to set 
visibility to hide 
, but the 
tiddler  
$:/config/ViewToolbarButtons/Visibility/$:/plugins/TWaddle/SideEditor/Button 
is missing in my newly configured tw5 tiddyspots. 

FWIW, I tried to copy your wiki and fix it myself in my own version of your 
tool, but that wasn't really working at all (none of the content in the 
tiddlers was visible...?; kind of weird...).

SO:

Any possibility that you could maybe take out the plugin in the TW5 that 
you create on tiddlyspot? Or set visibility to hide?

Thanks!

//steve.



On Tuesday, June 20, 2017 at 7:18:18 AM UTC-4, stevesuny wrote:
>
> Mat, this is excellent. I understand the reasons for the oddities, but in 
> general this is much better than trying to explain how to build a 
> tiddlyspot from scratch. I'll be using this...Thanks for 
> developing...//steve.
>
> On Wednesday, June 14, 2017 at 3:46:24 PM UTC+2, Lost Admin wrote:
>>
>> *I tried using Chrome on Windows.*
>>
>> *1)* I realize you don't have a choice, but having to re-enter the 
>> site-id in "step 2" is weird.
>>
>> At the end of step 2 it says:
>>
>> Click the red load button and wait 10-20 seconds until step 3 appears 
>> below...
>>
>> But the button in question is yellow on my screen. The text in the button 
>> is red.
>>
>> *2)* The embedded (iframe?) for the wiki creation tool causes a popup 
>> warning about submitting to an embedded page (in chrome). This is a warning 
>> that the site might be doing something phishy (it's a common way to steal 
>> credentials).
>>
>> *3)* The embeded content is bigger than the iframe (div?) it is in which 
>> results in weird scrolling.
>>
>> *4)* After creating the site, the iframe (div?) content fits even worse 
>> than before.
>>
>> Step 3 worked (after I got my password right).
>>
>> *5)* I know there is no choice, but entering your password 3 different 
>> times (or 4 if you count the initial creation and confirmation) is somewhat 
>> confusing from a new user perspective.
>>
>> *6)* You really need to have an initial tiddler in StoryList. Having a 
>> completely blank TW5 without any open tiddler to start (a splash 
>> page/edit-this-page-to-make-your-site) it is hard to tell what to do after 
>> step 3. You said you wanted this for new users, having a blank grey screen 
>> leaves a bit of a "uh what now" moment.
>>
>> On Tuesday, June 13, 2017 at 2:10:03 PM UTC-4, Mat wrote:
>>>
>>> The idea here is for a complete newbie to easily (and freely) get an 
>>> online TW5.
>>>
>>> http://tiddlywiki5.tiddlyspot.com/
>>>
>>> It uses the excellent TiddlySpot service provided by cousins Baird.
>>>
>>> Please try it out, and also note how it behaves on the new site you set 
>>> up.
>>>
>>> Those fields at top in the front tiddler are out of my control, 
>>> including how it shows after clicking "create wiki".
>>>
>>> I'm particularly interested to know if there are browsers that the setup 
>>> doesn't work with... which I believe there is... and which I cannot solve, 
>>> but I can at least inform about it on the site.
>>>
>>> <:-)
>>>
>>

-- 
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/a7eb53b9-d2c7-4f84-9bb2-653e05d4c6bc%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] SharedTiddlersPlugin / IncludePlugin or something similar for TW5?

2018-01-15 Thread 'Surya' via TiddlyWiki
Hi,

I just found the IncludePlugin & the SharedTiddlersPlugin.

But I guess, they're both not compatible with TW5, or are they?

If they are not compatible, is there something similar?

Have a nice night, 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/f7ca9a19-6aef-4f4d-8906-428f697fac3b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] GenTags Plugin with TOC?

2018-01-15 Thread heather
Hi, I used to love TiddlyWiki and just rediscovered it in the form of the 
awesome TW5!  I also just discovered the GenTags Plugin 
http://ooktech.com/jed/ExampleWikis/GenericTagFields/ and I'm in love with 
that too. The only problem I'm having is that my additional tag fields 
don't display in my Table of Contents like my regular tags do.  Does anyone 
know if there's a simple way to do this or are there any GenTags users out 
there with tips for creating navigation?  I'm BRAND NEW to javascript so 
most of it is still greek to me (and I know there's another forum area for 
technical questions when I get to that point) but I'm willing to learn!

Thanks for any help!
Heather :-)

-- 
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/18b4880e-be03-412c-a804-79b78759cce2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: is there a way to get the "find" function in TW desktop version?

2018-01-15 Thread TonyM
If the answer realy is no, I'm supprised as I expected this would be common in 
other implementations of the same browser Engin.

Once TiddlyDesktop can be configured to host wikis like TiddlyServer does you 
can use any browser and its find features.

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/71ef847b-e14d-4656-8bf3-f736d9acbb7a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] How to use widget code in BJ's visualeditor?

2018-01-15 Thread TonyM
Armlet,

I am not using that plugin but has you toddler being set to another type such 
as text/plain ?

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/0d1ecdd5-346a-44cc-bc18-88d65eecf68b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: is there a way to get the "find" function in TW desktop version?

2018-01-15 Thread coda coder
Short answer: No.

Long answer: Extremely unlikely.  It would need to be coded in javascript 
and that's a lengthy task for such tiny reward (the praise of one or two 
people who need it).  And exactly where would Jeremy et al stop? 
Bookmarks/Favorites? All the other bits and pieces your browser 
manufacturer supplies hoping to reel you in?  

It's just not worth it, IMO, probably in Jeremy's opinion, too.

Lack of Ctrl-F/Find is the TW-Desktop killer, for me personally.  If you 
want I nice system to package up your wikis and view them, TW-D is fine.  
When I want to do any serious work, it falls short due to the lack of those 
browser-niceties I rely on.


On Sunday, January 14, 2018 at 12:02:36 AM UTC-6, Dave wrote:
>
> is there a way to get the "find" function in TW desktop version?
>
> I've made the switch to TW desktop, but I find I miss having the browser 
> function of "ctrl-f" to find words on the screen if I have a lot of text 
> going on.  Is there a way to get this function?  I know the normal "Search" 
> will find the tiddler, but it doesn't show it on the screen where the exact 
> word is.
>
> Thanks,
> Dave
>

-- 
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/f4c2afbf-1881-4c5d-a483-907099b86b13%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Presenting: Batch Manipulator - mass tagging

2018-01-15 Thread Diego Mesa
This is a good tool - any thoughts of contributing some/most/all of this 
functionality into the "tiddler manager"? 

On Friday, August 25, 2017 at 7:49:51 AM UTC-5, Mat wrote:
>
> Yeah, the TWaddler gives thee
>
> Batch Manipulator 
> *~ bigly manipulate the masses ~*
>
> a tool to simplify tagging/untagging,
> setting/deleting fields and/or their (full) content
> *...en masse* as well as single tids
>
>
> In particular, it simplifies *identifying *tiddlers that are distantly 
> related so to group (i.e tag) them - see the "green tags" feature.
>
> I've previously made some half measures for this but the tipping point 
> came as I'm currently in the process of *converting a big TWC into TW5* 
> (good use case!)
>
> Cred: Some early pieces for this were picked from things by TWizards 
> *@Mario* and *@Jed*. 
>
> <:-)
>
>
>
> P.S I'm involved in a few other threads here that I have not properly 
> responded to. I hope to do so eventually and I really appreciate your kind 
> replies to my various questions. As someone with a constant tornado of 
> ideas in my head, many of my TW projects float into one another so there 
> are typically several parallel issues. This also means that your kind 
> replies often serve as pieces in several puzzles :-)
>
>
>

-- 
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/78a43ce1-4ff3-4e88-a192-c39960c3d135%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-01-15 Thread @TiddlyTweeter
"It solves the personal knowledge base problem better than anything else I 
have tried." -- 
@kepano 

-- 
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/3c937c52-f052-432d-b1a6-d7e29fe3d1b0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: How to Reduce font size of tiddler title and the (default white) frame around the tiddlers?

2018-01-15 Thread 'Surya' via TiddlyWiki
Okay,

now the frame-command doesn't work anymore...
Even not in the same wiki-copy without the changes I made.
???

Okay, for both (title & frame):

I looked around in this elements-thing and I think, I can find out, what to 
modify.

I think, I have to write then that what I found in a tiddler in order to 
get it saved in the wiki, right?
But:
What exactly do I have to copy? The right red marked in my picture? The 
left marked in my picture? Both?
And: How to copy the commands? I tried with inner HTML and with outer HTML, 
but with both I get an almost endless tiddler.



-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/bc129586-a066-49df-b9c5-a0d31902e19c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: is there a way to get the "find" function in TW desktop version?

2018-01-15 Thread Michael Herrmann
Oh yes. I am missing that one also (not every Tiddler is short)

Am Sonntag, 14. Januar 2018 07:02:36 UTC+1 schrieb Dave:
>
> is there a way to get the "find" function in TW desktop version?
>
> I've made the switch to TW desktop, but I find I miss having the browser 
> function of "ctrl-f" to find words on the screen if I have a lot of text 
> going on.  Is there a way to get this function?  I know the normal "Search" 
> will find the tiddler, but it doesn't show it on the screen where the exact 
> word is.
>
> Thanks,
> Dave
>

-- 
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/81ba6029-7297-46c2-8229-2434074f56dc%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: How to Reduce font size of tiddler title and the (default white) frame around the tiddlers?

2018-01-15 Thread 'Surya' via TiddlyWiki
Hi Simon,


ok, so you maybe want the space between the content and the border gone?
>
> like:
>
> .tc-tiddler-frame {
> padding: 5px 10px 10px 10px !important;
> - zitierten Text einblenden -
> yes, that's how I do it :) 
>
>>>Yeahhh :-) That effects in the way I wanted :-)))
THANKS!!


I'll try now your advice with the right-click for the title size.

-- 
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/90de8a8a-95ac-45e3-ad66-d780e687e0b2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: How to Reduce font size of tiddler title and the (default white) frame around the tiddlers?

2018-01-15 Thread BurningTreeC
ok, so you maybe want the space between the content and the border gone?

like:

.tc-tiddler-frame {
padding: 5px 10px 10px 10px !important;
}

Am Montag, 15. Januar 2018 21:15:49 UTC+1 schrieb Surya:
>
> Hi Simon,
>
>
> for no border:
>>
>> .tc-tiddler-frame {
>>border: 0px solid #ff !important;
>> }
>>
> >>>Sorry, it didn't reduce the frame :-(
>
>
>
>
>> you can put both in a new tiddler and tag it with $:/tags/Stylesheet
>>
> >>>Do you mean, there is no need for two tiddlers, but putting both 
> commands (for title AND for the frame) in ONE tiddler?
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/30233988-1f00-4598-b46e-5f4f04d436f1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: How to Reduce font size of tiddler title and the (default white) frame around the tiddlers?

2018-01-15 Thread BurningTreeC
hm, let's see...

you could inspect the title with right-click on it --> inspect (untersuchen)

then something pops up and there should be a tab called elements

there you can see css styles that are currently applied
if you look a little bit around, you may find something that works. you can 
also edit the styles in that window to see what it changes. they don't get 
saved

-- 
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/89951e51-f7da-4170-9ea2-89bff778044a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: How to Reduce font size of tiddler title and the (default white) frame around the tiddlers?

2018-01-15 Thread 'Surya' via TiddlyWiki
Hi Simon,


for no border:
>
> .tc-tiddler-frame {
>border: 0px solid #ff !important;
> }
>
>>>Sorry, it didn't reduce the frame :-(




> you can put both in a new tiddler and tag it with $:/tags/Stylesheet
>
>>>Do you mean, there is no need for two tiddlers, but putting both 
commands (for title AND for the frame) in ONE tiddler?

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/b2436778-037a-4289-9808-93aac0c554d9%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: How to Reduce font size of tiddler title and the (default white) frame around the tiddlers?

2018-01-15 Thread 'Surya' via TiddlyWiki
Hi,

I wrote one tiddler for the title size and one for reducing the frame of 
the whole tiddler. And tagged both with $:/tags/Stylesheet.

*For the title:*
no, I'm really sorry, but both didn't make the title size smaller. Not at 
all...

And I also tried 
.tc-tiddler-frame .tc-title h6 {
font-size: 5px !important;
}

and
.tc-tiddler-frame h6.tc-title {
font-size: 5px !important;
}


to see eventually more effect. But nothing



*For the frame:*
I just added a thin red frame to the tiddlers, but didn't reduce the white 
frame.

-- 
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/ff3cf42a-22af-45a0-9b6d-0daf35e0dc9a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Presenting: Batch Manipulator - mass tagging

2018-01-15 Thread Furicle
This is a nifty tool - I've got all these mis matched case tags
Thanks Mat!

-- 
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/068fbc1e-e334-4788-bc47-ed66ad75bd68%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] How to use widget code in BJ's visualeditor?

2018-01-15 Thread armlet
I've been using BJ's ckeditor adapter plugin, but have problem using normal 
TiddlyWiki inside a ckeditor Tiddler anymore. For example,

{

<$link to="HelloThere" tooltip="Custom tooltip">link1


<$set name="tv-wikilink-tooltip" value="I'm a link to Loads">
<$link to="HelloThere">Link 2


}


This doesn't rendered as links, but displays the code.


Is there a way to let cdeditor Tiddler's still be able to use widget, or 
other TiddlyWiki codes?

-- 
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/cb9c523d-1336-408e-86c9-e23c45c6c2f7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: How to Reduce font size of tiddler title and the (default white) frame around the tiddlers?

2018-01-15 Thread BurningTreeC
for no border:

.tc-tiddler-frame {
   border: 0px solid #ff !important;
}

you can put both in a new tiddler and tag it with $:/tags/Stylesheet

no need to edit the vanilla/base Stylesheet

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/d90c7b52-71ca-43a1-ba80-8e97f2b712e7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: How to Reduce font size of tiddler title and the (default white) frame around the tiddlers?

2018-01-15 Thread BurningTreeC
I changed it and this works

.tc-tiddler-frame *h2*.tc-title {
font-size: 10px !important;
}


-- 
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/0c37f595-843f-4771-a6c4-3374366f17b4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: How to Reduce font size of tiddler title and the (default white) frame around the tiddlers?

2018-01-15 Thread BurningTreeC
Hi Surya,

for the tiddler-frame try this:

.tc-tiddler-frame {
border: 2px solid #ff;
}

this should give you a red border that's 2px wide

for the title I'd try:

.tc-tiddler-frame .tc-title h2 {
font-size: 10px;
}


Am Montag, 15. Januar 2018 20:34:33 UTC+1 schrieb Surya:
>
> Hello,
>
> yes, I know, this question about reducing the font size of tiddler titles 
> has been here several times.
> But: I tested them all with no success at all.
>
> I tested:
>
>- Adding a new tiddler tagged with $:/tags/stylesheet and tested 
>there- of course one test after another ;-) And I modified the number from 
>very high to very big:
>- .tc-title { font-size: 0.8em; }
>   - .title { font-size:85%; } 
>   - .title { font-size: 16px }
>- *>>>*All three didn't make any effect at all.
>
>
>
>
>- 
>
> Find the tiddler 
>> $:/themes/tiddlywiki/vanilla/base (I think this holds the base styling 
>> for all themes)
>>
>> And edit the following styling to be what you want
>> .tc-titlebar h2 { font-size: 1em; display: inline; }
>>
> *>>>*That didn't change the font size of the title but the layout of the 
> sidebar- everything moved to the left...
>
>
>
>
>- The only tip that made a little bit positiv effect was
>
> I modified h2 to h6 in 
>> $:/core/ui/ViewTemplate/title
>>
>> Now the space between the title and the text of the tiddler is too large.
>>
> *>>>*The same unwanted effect in my case.
>
>
> So, how could I make the title smaller (not only the font of the title, 
> but the whole line).
>
>
>
>
> *AND:*
> *How can I reduce the (default white) frame around tiddlers?*
>
> 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/3b997353-d533-4fec-92ff-876dd80d9cd3%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Plugin "PopupTagger - TagBar / TagTable": How to show it in the editor view?

2018-01-15 Thread 'Surya' via TiddlyWiki
Hi Tony,


Bettina,
>
> No you did right, and the bar seems not to work in edit mode, it may have, 
> it may need a little Tweek, as in my response on another discussion I will 
> look into it for you.
> Regards 
>
> Tony
>

>>>Could you find out anything?

Regards,
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/8fcc7358-a5cf-4687-b215-a254522f16cf%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] How to Reduce font size of tiddler title and the (default white) frame around the tiddlers?

2018-01-15 Thread 'Surya' via TiddlyWiki
Hello,

yes, I know, this question about reducing the font size of tiddler titles 
has been here several times.
But: I tested them all with no success at all.

I tested:

   - Adding a new tiddler tagged with $:/tags/stylesheet and tested there- 
   of course one test after another ;-) And I modified the number from very 
   high to very big:
   - .tc-title { font-size: 0.8em; }
  - .title { font-size:85%; } 
  - .title { font-size: 16px }
   - *>>>*All three didn't make any effect at all.
   



   - 
   
Find the tiddler 
> $:/themes/tiddlywiki/vanilla/base (I think this holds the base styling 
> for all themes)
>
> And edit the following styling to be what you want
> .tc-titlebar h2 { font-size: 1em; display: inline; }
>
*>>>*That didn't change the font size of the title but the layout of the 
sidebar- everything moved to the left...




   - The only tip that made a little bit positiv effect was

I modified h2 to h6 in 
> $:/core/ui/ViewTemplate/title
>
> Now the space between the title and the text of the tiddler is too large.
>
*>>>*The same unwanted effect in my case.


So, how could I make the title smaller (not only the font of the title, but 
the whole line).




*AND:*
*How can I reduce the (default white) frame around tiddlers?*

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/264085f5-e744-4d10-ae64-27c93c5279dd%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] TwTube Video.js plugin for TW5

2018-01-15 Thread TheDiveO
Preview/beta of my new *TwTube plugin* that adds the famous Video.js player 
to TW5. Also includes optional player skins. This player can be used to 
play external media that comes from the same origin. For this, the plugin 
allows for development to run your TiddlyWiki server on Node.js and serving 
media files.

 See for yourself: https://www.youtube.com/watch?v=d2SBlP1NhiI

Repository (no release yet): https://github.com/TheDiveO/TWTube

There's a new --mediaserver command for this which should be used instead 
of the existing --server command. --mediaserver expects a path relative to 
your TW5 development files base as its first parameter, then come the same 
parameters as for the --server command. The new command runs an enhanced 
server that serves media files in parallel to tiddlers.

Thank you to all those who helped me in the TW forums getting my plugin to 
work. ;)

Best regards,
TheDiveO

-- 
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/eb895669-8da6-4c90-86c2-b3fc7ae5c3a4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Query: About BJ's TiddlyClip as a "Screen Scraper"?

2018-01-15 Thread BJ
It's easier to use with the new version, which will be out soon - remind me 
again after the release

BJ

On Monday, January 15, 2018 at 5:54:44 PM UTC+1, @TiddlyTweeter wrote:
>
> Ciao BJ
>
> Its unfortunate I'm not so bright on tech :-(. If you could point me to 
> relevant docs or an example I'm sure I'll get there. 
>
> Best wishes
> Josiah
>
> BJ wrote:
>>
>> actual tiddlyclip has alway supported running any number of regexes.
>>
>

-- 
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/d2f3353a-9779-4d33-a148-18450a2d50c1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: WebDAV via subversion

2018-01-15 Thread Vick Khera
On Wednesday, January 10, 2018 at 3:06:09 PM UTC-5, Clément wrote:
>
> Hi Vick
>
> I am facing the exact same issue as you with latest apache2.4 on linux 
> mint 18. So I was only wondering if you were able to fix the issue and if 
> yes if you might give a liitle clue on this ?
> Thanks   
>

I never was able to figure it out. My JavaScript skills are way down the 
list on programming languages I know, so I didn't try to fix it myself.

-- 
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/1f095474-1d39-4031-917e-ffa750d73843%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Output the filter list as a number

2018-01-15 Thread tobaisch
Thanks Diego
works for me too :)



 

-- 
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/afa5def8-9ca6-4e59-9e72-f1cb111ffa60%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Query: About BJ's TiddlyClip as a "Screen Scraper"?

2018-01-15 Thread @TiddlyTweeter
Ciao BJ

Its unfortunate I'm not no bright on tech :-(. If you could point me to 
relevant docs or an example I'm sure I'll get there. 

Best wishes
Josiah

BJ wrote:
>
> actual tiddlyclip has alway supported running any number of regexes.
>

-- 
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/83d3167d-eee7-4d48-a4db-749729ff14c0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Output the filter list as a number

2018-01-15 Thread Diego Mesa
Hello Tob,

This works for me on tiddlywiki.com:

<$list filter="[tag[Learning]count[]]" variable="count">
<$link to="HelloThere">
<>






On Monday, January 15, 2018 at 10:44:50 AM UTC-6, tobaisch wrote:
>
> How can I format this output as a link to refer to a Tiddler?
> [<$ list filter="[tag [HelloThere]count[]]"/>|myTiddler]] does not work.
> Regards
> Tob
>

-- 
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/df4af633-9570-4793-8ba3-bf3aa6c57879%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Datepicker skipping back a day?

2018-01-15 Thread passingby
Just for the record I have made a crude macro to overcome the timezone date 
display problem. In my case the date number string stored in my tiddler 
field named "date" like this: 201801150. Now for operations such as 
sorting there was no problem. Only thing was that when browser displayed 
the date it changed it according to my timezone. So all i wanted was to 
display the date as it was. So i made this macro: 

(function(){

"use strict";
exports.name = "myViewDate";
exports.params = [
{name: "dateValue"}
];

exports.run = function(dateValue) {
//2018011206000

var yr= dateValue.slice(0,4);
var mnth= dateValue.slice(4,6);
var mnthstr="";
var day= dateValue.slice(6,8);

switch (mnth) {
   case "01":
   mnthstr = "January";
   break;
   case "02":
   mnthstr= "February";
   break;
   case "03":
   mnthstr= "March";
   break;
   case "04":
   mnthstr= "April";
   break;
   case "05":
   mnthstr= "May";
   break;
   case "06":
   mnthstr= "June";
   break;
   case "07":
   mnthstr= "July";
   break;
   case "08":
   mnthstr= "August";
   break;
   case "09":
   mnthstr= "September";
   break;
   case "10":
   mnthstr= "October";
   break;
   case "11":
   mnthstr= "November";
   break;
   case "12":
   mnthstr= "December";
   break;
}

return day+" "+mnthstr+" "+yr;

};

})();



So wherever I needed to display the date I call this macro:

<$macrocall $name="myViewDate" dateValue={{!!date}} />

And this works for me. Just thought this might help somebody.





-- 
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/4bebbe0c-aa54-49c3-aac1-3701301240cf%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Output the filter list as a number

2018-01-15 Thread tobaisch
How can I format this output as a link to refer to a Tiddler?
[<$ list filter="[tag [HelloThere]count[]]"/>|myTiddler]] does not work.
Regards
Tob

-- 
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/9f4a1a46-9d2d-4acc-9609-eb474a2aea29%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Formula: Spreadsheet-like mathematics for TiddlyWiki

2018-01-15 Thread Diego Mesa
Hey Evan,

Again - WOW - thanks!

Just doing some testing and came across the following:

   - [tag[Expenses]get[value]]
  - 2.03 1.49 14.90
   - map(function(x):(x*x), [tag[Expenses]get[value]])
  - 4.12 2.22 222.01
   - map(function(x):(x*x* & ','*), [tag[Expenses]get[value]])
  - 4.1208999, 2.2201, 222.010002,
   
Diego

On Monday, January 15, 2018 at 10:26:27 AM UTC-6, Evan Balster wrote:
>
> Hey, Tony —
>
> The JavaScript error is a defect in attribute-modules — that's a core mod 
> with a lot more potential to affect wiki stability, which is why I made 
> some warnings about it.
>
> I think if you grab the latest version of the attribute-modules plugin 
> from the formulas wiki, even though the version number is the same (my 
> mistake), it should fix the issue and restore support for that feature.  
> Sorry about the trouble.
>
> On Monday, 15 January 2018 00:32:42 UTC-6, TonyM wrote:
>>
>> Evan,
>>
>> I dragged the new version plugin to two different wikis, one saved and 
>> reloaded OK.
>>
>> The Other will not reload, nor does safemode work, giving the following 
>> error.
>>
>> Internal JavaScript Error
>> Well, this is embarrassing. It is recommended that you restart TiddlyWiki 
>> by refreshing your browser
>> Error executing boot module $:/core/modules/widgets/attributes/macro.js: 
>> "Cannot find module named '$:/plugins/ebalster/formula/operands.js' 
>> required by module '$:/core/modules/widgets/attributes/macro.js', resolved 
>> to $:/plugins/ebalster/formula/operands.js" undefined
>>
>> From where I can go no where.
>>
>> I am trying to fix the wiki now but just wanted to let you know.
>>
>> I installed a couple of your other plugins previously the attribute and 
>> if.else plugins if they may have something to do with it.
>>
>> I am not so sure how to toggle a plugin enabled to disable when editing 
>> the tiddlywiki file directly, to eliminate your plugin.
>>
>> Regards
>> Tony
>>
>> On Monday, January 15, 2018 at 4:05:05 PM UTC+11, Evan Balster wrote:
>>>
>>> *Formula 0.2.0 released*:  
>>> https://evanbalster.com/tiddlywiki/formulas.html
>>> GitHub and issue tracking:  
>>> https://github.com/EvanBalster/TiddlyWikiFormula
>>>
>>> This one's a doozie...  Changelog:
>>>
>>> A substantial re-write of the formulas plugin that introduces various 
>>> improvements and improves support for functional programming. Various minor 
>>> compatibility-breaking changes were made.
>>>
>>>- Introduced (lambda) functions and formula-local variables.
>>>   - Added let construct  for 
>>>   making local variables.
>>>   - Added function declaration . 
>>>   Closures are not supported yet.
>>>- Added map function  for 
>>>manipulating array elements.
>>>- Improved number formatting.
>>>   - Default number formatting no longer displays tiny imprecisions.
>>>   - Number formats may be specified with numeral.js 
>>>   , enabling thousands separators, k/m/b 
>>>   notation and greater control over digits.
>>>   - *Renamed some FormulaWidget 
>>>    and FormulaVarsWidget 
>>>    attributes.*
>>>   - Original number formatting can still be used by specifying 
>>>   precision (no value).
>>>- Enhanced support for imported values.
>>>   - Added Functions  for 
>>>   importing values as text: transclude, transclude_index, variable
>>>   - Added datum function for interpreting text as a Datum 
>>>   .
>>>   - *Datum parsing now recognizes qualifying 14- and 17-digit 
>>>   numbers as TiddlyWiki dates.* (eg. created & modified fields).
>>>- *Widgets now display errors in the TiddlyWiki style*, like this.
>>>   - $formula-vars will display any errors instead of its normal 
>>>   content.
>>>   - $formula uses tc-error styling.
>>>- *Value conversion behaviors have changed.*
>>>   - Non-array values will not be treated as single-element arrays.
>>>- Enhanced array functions sum, average, product and count.
>>>   - Multi-dimensional array values are properly supported.
>>>   - *count ignores empty values.*
>>>   - New function counta counts empty values.
>>>- Internal implementation was changed. *This will break 
>>>customizations.*
>>>   - Consolidated "Node" type replaces Operator, Operand and Value.
>>>   - Removed Value "boxing" and percentage values.
>>>   - Implemented a new type cast mechanism, making custom JavaScript 
>>>   functions simpler to write.
>>>   - Computation now uses a "context" object.
>>>- Fixed doc error: $noRebuild option is not called $noRefresh
>>>- The substitute and trim functions now process all occurrences, not 
>>>

[tw] Re: Query: About BJ's TiddlyClip as a "Screen Scraper"?

2018-01-15 Thread BJ
actual tiddlyclip has alway supported running any number of regexes.

On Monday, January 15, 2018 at 1:30:22 PM UTC+1, @TiddlyTweeter wrote:
>
> Ciao BJ
>
> One thing that interests me is finer grain control of extraction.
>
> I was wondering about whether there could be a fit between TiddlyClip and 
> the version of your Flexitype plugin that allows sequences of regexes to be 
> run? A use case could be scraping with TiddlyClip an IMDB page for its core 
> movie data section and then passing it on to Flexity for further precise 
> extraction? Just a thought.
>
> Best wishes
> Josiah   
>
> BJ wrote:
>>
>> Tiddlyclip has been updated, and is available from github BUT it is a 
>> pre-release at the moment as I am still adding to it.
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/82a07566-9e0c-41bd-8989-664a68a79205%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Formula: Spreadsheet-like mathematics for TiddlyWiki

2018-01-15 Thread Evan Balster
Hey, Tony —

The JavaScript error is a defect in attribute-modules — that's a core mod 
with a lot more potential to affect wiki stability, which is why I made 
some warnings about it.

I think if you grab the latest version of the attribute-modules plugin from 
the formulas wiki, even though the version number is the same (my mistake), 
it should fix the issue and restore support for that feature.  Sorry about 
the trouble.

On Monday, 15 January 2018 00:32:42 UTC-6, TonyM wrote:
>
> Evan,
>
> I dragged the new version plugin to two different wikis, one saved and 
> reloaded OK.
>
> The Other will not reload, nor does safemode work, giving the following 
> error.
>
> Internal JavaScript Error
> Well, this is embarrassing. It is recommended that you restart TiddlyWiki 
> by refreshing your browser
> Error executing boot module $:/core/modules/widgets/attributes/macro.js: 
> "Cannot find module named '$:/plugins/ebalster/formula/operands.js' 
> required by module '$:/core/modules/widgets/attributes/macro.js', resolved 
> to $:/plugins/ebalster/formula/operands.js" undefined
>
> From where I can go no where.
>
> I am trying to fix the wiki now but just wanted to let you know.
>
> I installed a couple of your other plugins previously the attribute and 
> if.else plugins if they may have something to do with it.
>
> I am not so sure how to toggle a plugin enabled to disable when editing 
> the tiddlywiki file directly, to eliminate your plugin.
>
> Regards
> Tony
>
> On Monday, January 15, 2018 at 4:05:05 PM UTC+11, Evan Balster wrote:
>>
>> *Formula 0.2.0 released*:  
>> https://evanbalster.com/tiddlywiki/formulas.html
>> GitHub and issue tracking:  
>> https://github.com/EvanBalster/TiddlyWikiFormula
>>
>> This one's a doozie...  Changelog:
>>
>> A substantial re-write of the formulas plugin that introduces various 
>> improvements and improves support for functional programming. Various minor 
>> compatibility-breaking changes were made.
>>
>>- Introduced (lambda) functions and formula-local variables.
>>   - Added let construct  for 
>>   making local variables.
>>   - Added function declaration . 
>>   Closures are not supported yet.
>>- Added map function  for 
>>manipulating array elements.
>>- Improved number formatting.
>>   - Default number formatting no longer displays tiny imprecisions.
>>   - Number formats may be specified with numeral.js 
>>   , enabling thousands separators, k/m/b 
>>   notation and greater control over digits.
>>   - *Renamed some FormulaWidget 
>>    and FormulaVarsWidget 
>>    attributes.*
>>   - Original number formatting can still be used by specifying 
>>   precision (no value).
>>- Enhanced support for imported values.
>>   - Added Functions  for importing 
>>   values as text: transclude, transclude_index, variable
>>   - Added datum function for interpreting text as a Datum 
>>   .
>>   - *Datum parsing now recognizes qualifying 14- and 17-digit 
>>   numbers as TiddlyWiki dates.* (eg. created & modified fields).
>>- *Widgets now display errors in the TiddlyWiki style*, like this.
>>   - $formula-vars will display any errors instead of its normal 
>>   content.
>>   - $formula uses tc-error styling.
>>- *Value conversion behaviors have changed.*
>>   - Non-array values will not be treated as single-element arrays.
>>- Enhanced array functions sum, average, product and count.
>>   - Multi-dimensional array values are properly supported.
>>   - *count ignores empty values.*
>>   - New function counta counts empty values.
>>- Internal implementation was changed. *This will break 
>>customizations.*
>>   - Consolidated "Node" type replaces Operator, Operand and Value.
>>   - Removed Value "boxing" and percentage values.
>>   - Implemented a new type cast mechanism, making custom JavaScript 
>>   functions simpler to write.
>>   - Computation now uses a "context" object.
>>- Fixed doc error: $noRebuild option is not called $noRefresh
>>- The substitute and trim functions now process all occurrences, not 
>>just one.
>>- Fixed implementation of the modulo function.
>>- *The % operator no longer affects display style.*
>>   - Use a format string instread.
>>- *+, -, add and subtract no longer auto-sum their operands.*
>>   - Use sum instead.
>>
>>
>> General remarks:  This makes formula a lot more powerful, especially for 
>> iterating through arrays with the MAP function.  I might investigate even 
>> more flexible ways to use that later.  The absence of proper closures does 
>> make functions and locals less 

[tw] Re: Output the filter list as a number

2018-01-15 Thread tobaisch
Thanks Eric,
I have just found that too.

-- 
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/5d56f57e-c05b-47fb-a689-09fba67bfda5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Output the filter list as a number

2018-01-15 Thread tobaisch
Yes it is possible :)
[tag[HelloThere]count[]]

-- 
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/a5ee6344-ab5f-4528-ac78-1e51093e96a2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Comment: Having WIDTH

2018-01-15 Thread @TiddlyTweeter
One of the things that interests me on the hardware side is the width of 
monitors.

*TiddlyWiki is a farm for multi-dimensions of looking at things that need 
lateral space.*

Often I find that TW's intelligence is hampered by limited display ability.

Recent monitors at 32: 9 ratios look in the ballpark to begin to match 
TiddlyWiki's scope. But currently too expensive (both monitor and the 
special graphics board you need). 

Later. But likely not too much later.

Josiah, x


-- 
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/5de84400-4edc-4123-a971-8d095d60f500%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Output the filter list as a number

2018-01-15 Thread Eric Shulman
On Monday, January 15, 2018 at 7:56:21 AM UTC-8, tobaisch wrote:
>
> is it possible to output the filter list as a number instead of a list?
> Instead of e.g. 20 results as a list only the number 20.
>

https://tiddlywiki.com/#count%20Operator

-e 

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/0b2e2038-f099-4782-9b40-cfa0dceb429c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Output the filter list as a number

2018-01-15 Thread tobaisch
Hello,
is it possible to output the filter list as a number instead of a list?
Instead of e.g. 20 results as a list only the number 20.
Thanks
Regards
Tob

-- 
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/6ffa169d-feea-490a-9c98-8929c585bab9%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] TW5 Server Version has gotten into a weird state

2018-01-15 Thread cpjobling
Hi Jeremy

I think I replied privately and as I can't see my reply, I am assuming it 
didn't work!

My wiki is under version control and the commit at which it started to fail 
was this 
one: 
https://github.com/cpjobling/journal.cpjobling.net/commit/d9ca5042ddb4a6c916393a45286f54ff656523ac.

You can easily spot the problem tiddlers by looking at More> All.

There are a number of attempts to correct this between the 10th January 
commit and the version where I rebuilt the wiki which 
was 
https://github.com/cpjobling/journal.cpjobling.net/commit/8af7a86613f16eb75a8a6029296209957be71af5.

My strategy was to copy the content of the tiddlers that had become file 
links into new tiddlers, delete the file tiddler, save the recovered 
tiddly. The tiddlywiki --server log implied that the right file was saved, 
but when the server was restarted, it would have become an external file 
again.

If I didn't delete the file, before saving the recovered tiddler, the 
recovered tiddler would get saved as "Tiddler Name 1.tld"

Chris





On Saturday, 13 January 2018 13:39:53 UTC, Jeremy Ruston wrote:
>
> Hi cpjobling
>
> I don’t see anything amiss with your tiddlywiki.info file. Does the 
> “tiddlers” subfolder contain any files called tiddlywiki.files? I’d be 
> happy to look at it if you’ve kept a copy. Can you post the wiki folder as 
> a zip file? Or you could send it directly to me if you’d prefer.
>
> Best wishes
>
> Jeremy
>
> On 12 Jan 2018, at 19:08, cpjobling  
> wrote:
>
> I rebuilt the wiki from a new fresh version using drag and drop and copy 
> and paste ... but I'd still like to know what went wrong.
>
> -- 
> You received this message because you are subscribed to the Google Groups 
> "TiddlyWiki" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to tiddlywiki+...@googlegroups.com .
> To post to this group, send email to tiddl...@googlegroups.com 
> .
> Visit this group at https://groups.google.com/group/tiddlywiki.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/tiddlywiki/4818a8e8-4033-4d3d-87dc-3103848f%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/8ca0375d-0b77-48b3-8610-4f8a34945a3f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TiddlyTouch/MuuriTouch

2018-01-15 Thread @TiddlyTweeter
Ciao Simon

A footnote to this about saving stories ... If you don't know of it ... 
Tobias' Story Saver? It lets you save any number of versions you want in a 
persistent way.  

https://tobibeer.github.io/tb5/#%24%3A%2F.tb%2Fui%2FSideBar%2FStories

Best wishes
Josiah

BurningTreeC wrote:
>
> Saving grids is just a button that saves the storylist in another field or 
> tiddler
> I like the tiddly way of being able to open everything wherever,whenever 
> (shakira shakira)
>

-- 
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/3e99af40-495a-4716-a573-016da3eac8db%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Query: About BJ's TiddlyClip as a "Screen Scraper"?

2018-01-15 Thread TonyM
Bj,

Thanks so much for upgrading tiddlyclip. There a lot of keen users looking 
forward to it so I am as sure you are generating lots of good karma :)

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/bacc5598-b3de-4794-bff0-1c79efc28adb%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Query: About BJ's TiddlyClip as a "Screen Scraper"?

2018-01-15 Thread @TiddlyTweeter
Ciao BJ

One thing that interests me is finer grain control of extraction.

I was wondering about whether there could be a fit between TiddlyClip and 
the version of your Flexitype plugin that allows sequences of regexes to be 
run? A use case could be scraping with TiddlyClip an IMDB page for its core 
movie data section and then passing it on to Flexity for further precise 
extraction? Just a thought.

Best wishes
Josiah   

BJ wrote:
>
> Tiddlyclip has been updated, and is available from github BUT it is a 
> pre-release at the moment as I am still adding to it.
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/4d4ac264-a759-41fe-abd8-9d38f029db8f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: What's "$:/"?

2018-01-15 Thread mlomailom
Thanks guys. Much clearer now.



On Friday, January 12, 2018 at 3:18:05 PM UTC+1, mlomailom wrote:
>
> I don't understand what "$:/" means. I've seen this notation in system 
> tags.
> How do I interpret it and what does it do?
>
> I've no specific application-related question based on it. The issue is 
> that it's everywhere in TW help/documentation that I don't understand what 
> follows afterwards.
>
> 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 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/6d5345bd-9676-4e24-865f-94d321a35f57%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Formula: Spreadsheet-like mathematics for TiddlyWiki

2018-01-15 Thread Ste Wilson
Wow... I am truly paddling in the shallow end... 

-- 
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/c2225e8d-ca1a-40b9-97e5-b50ca476065a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: How to build recurring tasks in existing tiddlers?

2018-01-15 Thread J Mc
Hi Surya and Birthe,

have you seen G Comments, by MAT, it uses Google Forms to add  comments to 
tiddlers.

http://gcomments.tiddlyspot.com/

The discussion is below
https://groups.google.com/forum/#!searchin/tiddlywiki/G$20Comments%7Csort:date/tiddlywiki/QcTOJCVXkDw/yawPkieNDwAJ

J Mc



On Sunday, 14 January 2018 19:33:46 UTC, Birthe C wrote:
>
> Hi Surya,
>
> Jed experimented with several solution possibilities, the thread is here: 
> https://groups.google.com/d/msg/tiddlywiki/msDS-4x8Qms/b1yS55pqNDIJ
>
> Birthe
>
>
> Den søndag den 14. januar 2018 kl. 19.53.40 UTC+1 skrev Surya:
>>
>> Hello Birthe,
>>
>> I just read about the comment-feature of Jed Carty. He writes "This 
>> requires you to have access to a server with PHP".
>> Hmmm, that overstrains me
>> I am not such a computer freak Only a power enduser ;-)
>>
>> Maybe one time
>>
>> 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/035c95c9-0c11-46b6-b75b-2ac2bdf17d87%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Query: About BJ's TiddlyClip as a "Screen Scraper"?

2018-01-15 Thread @TiddlyTweeter
Ciao coda coder

coda coder wrote:

> Scratch that, they all appear to be dead.
>
> A node guru could probably get something working via 
> https://www.npmjs.com/package/imdb-api
>

FWIW there are issues using programmatic access to IMDB. Thy are fine with 
modest usage/scraping for non-profit use. They are not fine with systematic 
widely used apis unless licensed. This is partly why I want a "home-made 
scraper" ... Movie Collectorz is an excellent program that used to 
auto-scrape IMDB I used for years ... but were forced to discontinue their 
scraper because of licensing costs.

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/d80f5a00-3078-4379-8065-1de758cc257d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Query: About BJ's TiddlyClip as a "Screen Scraper"?

2018-01-15 Thread @TiddlyTweeter
Mark S. asked ...
>
> Is the IMDB web structure consistent enough to allow web scraping?
>

Short answer: yes.

The page to be scraped in not actually the main landing page for a film 
title. Its a more detailed sub-page you need scrape. The layout is 
consistent and parsing the HTML is enough.

Long answer. Its not exactly intuitive. 

But those are more to do with the complexity of movies than complexity of 
IMDB data per se, which is well designed. (Issues like having more than one 
director; selecting the top 5 main actors rather than the zillions in the 
full cast.)

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/d0d3a07d-4b3e-43f9-9829-71e6609bc6cc%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Query: Has anyone made a BULK Tiddler Creator?

2018-01-15 Thread @TiddlyTweeter
Ciao Mark S.

Mark S. wrote:
>
> This code should do almost exactly what you want (except it goes from 000 
> to 099 instead of 001 to 100. You could always just rename 000 to 100 (plus 
> caption):
>

Thanks! Hits the spot directly. The first being "000" is not a problem. I 
might even keep it as the Title Page and just manually add "100".
 

> If it is factually useful to you, please consider donating 1€ to Pmario (
> https://www.paypal.me/PMarioJo).
>

I do like that people are asking for money a bit more. The solution is 
worth more than a Euro! Was that a typo? 

And where is YOUR tip-spot? 

FWIW I quite like Amazon wish-lists for lower level gifts (5€ -> 50€) ... 
its nice to send something tangible. 

Best wishes & thanks
Josiah
 

>
> \define composedtitle() $(base)$ 0$(ten)$$(one)$
> \define caption() Minute-0$(ten)$$(one)$
> ''Base title'': <$edit-text tiddler="$:/state/new-tiddler-title" tag=
> "input" default=""/> 
> ''Tag'': <$edit-text tiddler="$:/state/new-tiddler-tag" tag="input" 
> default=""/> 
>
> <$button> Create 100 copies of title 
> <$list filter="0 1 2 3 4 5 6 7 8 9" variable="ten">
> <$list filter="0 1 2 3 4 5 6 7 8 9" variable="one">
> <$vars base={{$:/state/new-tiddler-title}}> 
> <$action-createtiddler $basetitle=<> tags={{$:/state/new-
> tiddler-tag}} caption=<> /> 
> 
> 
> 
>
>

-- 
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/3adcd731-363d-4e56-ab73-641f56c8d06c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Formula: Spreadsheet-like mathematics for TiddlyWiki

2018-01-15 Thread BurningTreeC
Evan, AWESOME! 

http://muritest.tiddlyspot.com/#analogue%20clock

I just made this with it and now I can't stop thinking of possible things 
to do with your plugin,

this is great great work, thanks again for version 0.2.0!

all the best,
BurningTreeC

-- 
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/81966c5e-e008-4d4e-9c34-0bc6f1aba6f7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Query: Has anyone made a BULK Tiddler Creator?

2018-01-15 Thread @TiddlyTweeter
Thanks Stef

I do appreciate the step. Mark wrote a finished solution.

Best wishes
Josiah

ste...@gmail.com wrote:
>
> You could try something like:
> <$button>
> <$list filter="[all[shadows]limit[100]]">
> <$action-createtiddler $basetitle="My new tiddler"/>
> 
> Create 100 tiddlers 
>
> Please note that this just meant as a starting point ...
>

-- 
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/3c3d4f3c-28d9-4a86-87e4-ca32e467d96a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Query: Has anyone made a BULK Tiddler Creator?

2018-01-15 Thread @TiddlyTweeter
Ciao SteveSuny

Thanks for the XLSX reminder! 

In this case, just creating *empty *tiddlers, Mark S.' solution is easier. 

Best wishes
Josiah

stevesuny wrote:
>
> Yes, I do this all the time using the xlsx importer, and building the 
> tiddlers in a spreadsheet. That way, you can use the spreadsheet features 
> to increment tiddler name, manage tags, etc. 
>

-- 
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/7eff8df5-d203-498c-985c-c1dd1935e135%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Formula: Spreadsheet-like mathematics for TiddlyWiki

2018-01-15 Thread Ste Wilson
Ohh.. This is quite exciting. 
I was excited a couple of years ago by latex2html5.com but now with a bit of 
tinkering it looks like I can do the slider variables thing with your graphs 
thing! 

-- 
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/77314049-6d4e-4422-8ac5-4ec7e8cde2fd%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.