Re: [tw] how to use javascript in TW5

2017-03-21 Thread Dave
wait, you can make widgets?  I thought you could only make macros...  time 
to read some more.

-- 
You received this message because you 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/0a960d04-f2e6-4849-92ec-766997ebff87%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Substring of tiddler name

2017-03-21 Thread Steven Schneider
Hello The Bo: Thanks for the code. It looks like is should work...

But, in tiddlywiki.com, I 

1 - Created a new tiddler with these fields:
title: $:/substring_from_to
type: application/javascript
module-type: macro
tag: $:/tags/Macro
text: copied all lines provided

2 - Created a new tiddler with no tags, no fields other than text:

Usage: (even with a Filter)
<$list filter="[!is[system]!is[shadow]tag[HelloThere]]">
1 <>
2 <$link to=<>> <> 
 


For my line 1, I got tiddler names. For my line 2, I had nothing returned. 
:(

Any help, much appreciated. This looks very promising, and exactly what I 
had hoped to have.

//steve.



On Monday, March 20, 2017 at 6:13:46 AM UTC-4, The Bo wrote:
>
> Hey,
>
> you could try it with a "substring" macro like this:
>
> /*\
> title: $:/substring_from_to
> type: application/javascript
> module-type: macro
>
> A macro to get certain characters from a string.
>
> \*/
> (function(){
>
> /*jslint node: true, browser: true */
> /*global $tw: false */
> "use strict";
>
> /*
> Information about this macro
> */
>
> exports.name = "substr";
> exports.params = [
>   {name: "from",default:"0"},
>   {name: "to", default:"0"}
> ]; 
> /*
> Run the macro
> */
> exports.run = function(from, to) {
>
> var tiddlertitle = this.getVariable("currentTiddler");
>  if (to !== "0") {
>  return tiddlertitle.substring(from,to);
>  } else {
>  return tiddlertitle.substring(from);
> }
>
> };
> })();
>
> tag: $:/tags/Macro
> type: application/javascript
> module-type: macro
>
>
> Usage: (even with a Filter)
> <$list filter="[!is[system]!is[shadow]tag[yourTag]]">
>
> <$link to=<>><>
>
>
> Regards,
> The Bo
>
> Am Freitag, 17. März 2017 22:13:00 UTC+1 schrieb stevesuny:
>>
>>  Hi, 
>>
>> this topic seems to have come up before, but without a clear answer.
>>
>> How do I define a substring with  the first x characters of a tiddler 
>> name?
>>
>> If I have $tiddler$ named "01 01 Long name of tiddler" (those are spaces) 
>> I'd like to be extract "01 01" to <> so I can write <$link 
>> to="$tiddler$><> to display "01 01" as a link.
>>
>> Thanks!
>>
>> (It seems I could play with prefix, but I kind of messed up with my 
>> tiddler names by having two spaces, so I can't make a prefix of the first 
>> five characters...)
>>
>> //steve.
>>
>>
>>

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


[tw] How to run startup module after startup?

2017-03-21 Thread Matt Groth
Hey all,

I need to run a startup module without having to restart the server. 
Specifically, I am talking about the pinboard bookmarks plugin created by 
moderatemisbehaviour. 
 He 
mentions in the readme's roadmap that he might add this, but I need it 
sooner so I'm trying to make it myself. I want to reload my pinboard 
bookmarks by simply clicking a button.

The closest I have been able to get is this snippet:

$tw.boot.remainingStartupModules = []; // Array of startup modules
 $tw.modules.forEachModuleOfType("startup",function(title,module) {
 if(module.startup) {
 $tw.boot.remainingStartupModules.push(module);
 }
 });


function isPIN(element) {
  return element.name = 
"$:/get-pinboard-bookmarks/create-pinboard-tiddlers.js";
}

task = $tw.boot.remainingStartupModules.find(isPIN);

task.startup();

I think this gets the correct task, but I don't think startup function is 
executing. I'm pretty inexperienced in all of this, but I have a feeling 
this is some sort of scope issue. I don't fully understand what javascript 
all of the different agents in play have access to. I could be wrong 
though, and this might have nothing to do with scope. I have tried running 
this in both the dev tools and as a Chrome Extension, but neither works.

-- 
You received this message because you 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/24a60860-b093-495f-9128-9500a8980e1d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] AutoPill (beta) - Parser to automatically turn any word into a tag pill (if it's a tag)

2017-03-21 Thread David Szego
Hi all,

I needed a way to dynamically give me cross-links within my Wiki, but I 
couldn't MakeEverything a CamelCase link. And I didn't want to <> wrap everything in appropriate <>.

So, here's a beta of a parser that looks through all non-system tags, finds 
matches in the text of a Tiddler, and wraps them with a <> 
macro. (This is just a better-behaving Tag macro).

It needs a bit of work in the RegEx dept. I've got a RegEx in mind, but it 
fails in TW. (Works great in various online testers).

Try it at http://david.szego.me/autopill.html

Cheers,
David.

-- 
You received this message because you 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/9ee6ce8c-69c5-47d0-bd27-49f0f080ab4f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Tiddlywiki5 with Tiddlers in Tabs

2017-03-21 Thread Kevin Kleinfelter
How do I get Tiddlywiki5 to open tiddlers with tabs across the top of the 
page, instead of opening new tiddlers below the current one?

I've been out of touch with TW for a few years and things have changed a 
bit.  ;-)  I've been using a TW I configured years ago.  Now, I'm trying to 
upgrade to TW5.  I don't even recall the name of the plugin for TW classic 
I used to get that behavior.  It might have been SinglePageModePlugin.

Is this capability available in TW5?
TIA

-- 
You received this message because you 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/6db9dba9-739e-4fcd-9500-d3e4ecd054ec%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TW5: responsive tile layout for tiddler story river?

2017-03-21 Thread @TiddlyTweeter
TW is simply an HTML file. The easiest way to get a tiled layout is to use 
CSS Flexbox. If that proves not enough then you will have to load a JS 
Masonry layout (which is not so easy unless you understand how TW handles 
JS).

once you understand the CSS structure in TW you should be okay. Its VERY 
modular. Much more logically structured than most web pages.

Best wishes
Josiah

On Tuesday, 21 March 2017 21:36:45 UTC+1, TheDiveO wrote:
>
> Would it be possible to replace the core TW5 story river with a tile-based 
> variant, including kind of a responsive design? Where tiddlers would be the 
> individual tiles, rendered side-by-side first, then top to bottom. I'm 
> trying to figure out if I can turn TW5 into a poor man's portal page 
> presenting videos to users, where the tiddlers have embedded video players, 
> and the tiddlers can be filtered by certain criteria, etc. Any suggestions 
> as to how such a tile-based story view could be done?
>

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


[tw] Anyone interested in a Bay Area (San Francisco) TiddlyWiki MeetUp -- late afternoon / evening March 26 or March 28?

2017-03-21 Thread Steven Schneider
Hi folks, a bit of a long shot, but...I'll be in San Francisco next week 
and would be interested in meeting up with any TiddlyWiki users. I'll be 
arriving in Sunday afternoon around 3. I could also meet up with folks on 
Tuesday 3/28 after 3, before my 9pm departure.

I'm especially interested in meeting folks interested in developing open 
educational resources using TiddlyWiki, including open source "writeable" 
textbooks, or any other University uses. I've been directing the 
DesignWriteStudio  for a while. The Studio 
provides support for those interested in learning how to use TiddlyWiki, 
and tries to forge collaborations with educators or others who find TW 
interesting (I realize I'm preaching to the choir in this group...).

So -- if anyone has some sort of co-working space (I might stay at the 
StartUpBaseCamp 
Hotel , which comes with work space) 
with decent wifi and feels like sitting around a table talking TiddlyWiki 
on either Sunday or Tuesday in the Bay Area -- let me know! 

//steve.

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


[tw] Re: TW5: responsive tile layout for tiddler story river?

2017-03-21 Thread Martian
You mean something like 
this https://jbaysolutions.github.io/vue-grid-layout/examples/01-basic.html 
?

On Tuesday, 21 March 2017 23:36:45 UTC+3, TheDiveO wrote:
>
> Would it be possible to replace the core TW5 story river with a tile-based 
> variant, including kind of a responsive design? Where tiddlers would be the 
> individual tiles, rendered side-by-side first, then top to bottom. I'm 
> trying to figure out if I can turn TW5 into a poor man's portal page 
> presenting videos to users, where the tiddlers have embedded video players, 
> and the tiddlers can be filtered by certain criteria, etc. Any suggestions 
> as to how such a tile-based story view could be done?
>

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


[tw] Re: force set width on multi-line edit-text widget

2017-03-21 Thread Thomas Elmiger
Hi Egbert

I know it's a steep learning curve ;–)

And text-edit obviously is one of the tricky parts – but I am a bit tired now, 
midnight is near. 

Maybe in the meantime you could explain your personal usecase. What exactly do 
you want to achieve? (Possibly not the same as Dave.)

Do you know the basics TW5 builds on – aka HTML and CSS? That would make it a 
bit easier …

Good night!
Thomas 

-- 
You received this message because you 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/3900caa1-1f2d-47df-8aa7-ec47b4b64104%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] how to use javascript in TW5

2017-03-21 Thread Sven Wetzel

Hello Dave,

I think you must create a widget, that creates a button with the click 
event listener on it.


Or if you want it as macro you can try this with my SPilot4TW 
(https://www.quaraman.de/tw/pilot.html):


|\define myfunctionbutton(text:"hello world!")||

||LOOP:||
||PAUSE: Try it||
||CLS:||
||T: $text$||
||ENDLOOP:||

||\end|

|
Later in the tiddler: <>
|

This wait till the user presses the "Try it" button and then prints the 
text.


It is using another language as Javascript, but you can do this in a 
normal Tiddler without creating a plugin yourself.


Am 21.03.2017 um 22:51 schrieb Dave:
Is  a tutorial somewhere that would teach me how to take this 
javascript code


|




Click the button to convert the string to lowercase letters.


[tw] Re: force set width on multi-line edit-text widget

2017-03-21 Thread Egbert
Hi Thomas, thanks for the info, but as a relative newbie I am a bit lost. 
If I put it into context, does that mean the following?:

Putting this

.myTextEdit { width:50em; height:10em !important; }
in a tiddler tagged $:/tags/Stylesheet 

 

And putting this in a different tiddler named 
$:/temp/notes/tiddlerTitle-left (which before was a 'normal' tiddler with 
upper cases in the title). What happens with the notesInField tiddler?

\define bignotes(side)
<$edit-text tiddler="notesInFields" field="$(currentTiddler)$.$side$" 
class="tw-edit-texteditor 
myTextEdit"  tag="textarea">
\end
<>


Sorry for the questions but as an ordinary user I'm still on a steep 
learning curve. I think what I am after is just an amended version of my 
macro that works. Anyway you're all doing a terrific job on this 
magnificent piece of software; so much appreciated!





On Tuesday, 21 March 2017 19:54:08 UTC, Thomas Elmiger wrote:
>
> Hi guys 
>
> This would work under certain conditions: 
>
> \define bignotes(side) 
> <$edit-text tiddler="notesInFields" field="$(currentTiddler)$.$side$" 
> class="tw-edit-texteditor myTextEdit"  tag="textarea"> 
> \end 
>
> <> 
>
> There are restrictions concerning the naming of fields, so maybe it is not 
> a good idea to use tiddler names as a parameter where almost no 
> restrictions apply. 
>
> This works for example in a tiddler with title "editor" but NOT for 
> "Editor" (no uppercase letters allowed in field names). 
>
> So I would advise to define an adapted storage strategy. You could use 
> temp tiddlers’ text field and give them titles like  
>
> Good luck! 
> Thomas 

-- 
You received this message because you 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/f842a765-8fc6-467f-bef0-e7a79062565b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: Announcing the 2nd TiddlyWiki European Meetup on 10th & 11th June 2017

2017-03-21 Thread Thomas Elmiger
Haha, now I can’t resist: Imagine Josiah in a remote studio clipping the 
streams from all the Dragon-equipment following a trello timetable – that must 
be worth an Oscar for multi-angle meetup-livestreams!

I'll try to watch and participate remotely if there is any bandwidth left for 
me :–D

All the best!
Thomas 

-- 
You received this message because you 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/4e2af229-1c21-4683-9506-271bc2686530%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] the RELIABILTY

2017-03-21 Thread @TiddlyTweeter
so much of the time we we come here with problems. of course.

but i want to wave the flag for TW's RELIABILITY. its pretty remarkable.

@telmiger & I had a fun play on Twitter 
 on this.  

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/df8877ce-0c50-4d25-b2db-b7ead5613655%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Core drag-and-drop improvements

2017-03-21 Thread 'c pa' via TiddlyWiki
Jeff,

Notice in the demo that Jeremy has defined a macro called drop-actions() 
that specifically edits the contents of that list field. That macro is then 
called in the associated droppable widget. 

\define drop-actions()
<$action-listops $tiddler="Days of the Week" 
$subfilter="+[insertbefore:currentTiddler<*actionTiddler*>]"/>
\end

<$droppable actions=<>>

There seems to be a special variable, *actionTiddler*, that corresponds to 
the list of tiddler titles being dropped. So yes, you do need to identify 
some container to hold the ordered list but that container can be a 
tiddler's text, a list field, or an index. (I can't think of any other 
out-of-the-box containers) You may perhaps be able to pass it to a button 
or other widget but that would need some testing to figure out how that 
works.

-- 
You received this message because you 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/9b5e4a4b-d53a-4d73-9f8b-009968b5b755%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] how to use javascript in TW5

2017-03-21 Thread Dave
Is there a tutorial somewhere that would teach me how to take this 
javascript code





Click the button to convert the string to lowercase letters.

Try it




function myFunction() {
var str = "Hello World!";
var res = str.toLowerCase();
document.getElementById("demo").innerHTML = res;
}





and use it in a macro?


-- 
You received this message because you 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/39c1ac14-4076-4d70-80a8-e85fbb0c8efa%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: Firefox not Displaying pictures

2017-03-21 Thread Jeremy Ruston
There’s a useful trick here: once you’ve got your image downloaded, open it in 
your web browser (typically by double clicking on it in Explorer or Finder). 
Then note down the URL in the address bar; it will start “file://”.

That gives you a reliable absolute URL to your local image; trim from the start 
of the string to make it into a local URL.

Best wishes

Jeremy.




> On 21 Mar 2017, at 20:49, @TiddlyTweeter  wrote:
> 
> why is this is issue so weirdly complex?
> 
> is there no single documentation point to send questioners to?
> 
> -- 
> You received this message because you 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/eeddace0-6508-4efe-b5d6-f045219717a8%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/03CE1062-659E-48CD-BCA4-A2642BACAA39%40gmail.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: force set width on multi-line edit-text widget

2017-03-21 Thread Thomas Elmiger
Please consider *all* restrictions and choose a good way, not a quick one! 

http://tiddlywiki.com/#TiddlerFields

Happy developping, 
Thomas 

Hints: spaces, long dashes –, …

-- 
You received this message because you 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/14efb4e6-58e8-4473-bac3-4e59e6985683%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: force set width on multi-line edit-text widget

2017-03-21 Thread Dave
Oh, yeah, I forgot about the upper case thing and fields

Is there a way to (easily) convert a string to lowercase only so this would 
work still using tiddlernames?

-- 
You received this message because you 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/657e405d-cebf-4f1d-bfc8-a57be1abd988%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Firefox not Displaying pictures

2017-03-21 Thread @TiddlyTweeter
why is this is issue so weirdly complex?

is there no single documentation point to send questioners to?

-- 
You received this message because you 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/eeddace0-6508-4efe-b5d6-f045219717a8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: [TW5] Plugin update: Autosave for EditorCounter – Never lose hours of work again

2017-03-21 Thread @TiddlyTweeter
is this thread about counting?

your gadget counts characters and words accurately for me. Homo Countus 
Exactus.

but maybe its about "autosave"? i never switched it on. why? 200 characters 
mean nothing to me. 30 minutes of my time do. that is why i auto-backup 
every thirty minutes.

Philosophies? :-)

Best wishes
josiah

On Tuesday, 21 March 2017 19:51:19 UTC+1, Thomas Elmiger wrote:
>
> Hello Danielo and Arlen 
>
> I think I copied my save function from somewhere below the search button, 
> I don’t remember that exactly. I use 
>
> $tw.rootWidget.dispatchEvent({type: "tm-auto-save-wiki"}); 
>
> so this seems to be a technical auto save mechanism and not a sync 
> mechanism. In my experience it does exactly the same as the save button, 
> just without pressing the button. Perfect for my local workflow. 
>
> Stay safe, 
> Thomas 

-- 
You received this message because you 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/34f522f3-da61-458d-95b5-c0fd6075f3bf%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] TW5: responsive tile layout for tiddler story river?

2017-03-21 Thread TheDiveO
Would it be possible to replace the core TW5 story river with a tile-based 
variant, including kind of a responsive design? Where tiddlers would be the 
individual tiles, rendered side-by-side first, then top to bottom. I'm 
trying to figure out if I can turn TW5 into a poor man's portal page 
presenting videos to users, where the tiddlers have embedded video players, 
and the tiddlers can be filtered by certain criteria, etc. Any suggestions 
as to how such a tile-based story view could be done?

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


[tw] Re: Noteself Error (for Danielo)

2017-03-21 Thread @TiddlyTweeter
That is likely NOT the file you downloaded. It looks like the file is 
trying to reach a database that is not there?? Not sure. 

On Tuesday, 21 March 2017 21:18:33 UTC+1, Alfonso Arciniega wrote:
>
> Hi Danielo,
>
> After downloading to my PC. Right after changing the MyNotebook to any 
> other name, saving the file, and reloading it; I get the message in a 
> window as shown below. Tried several times on different browsers and on 
> TiddlyDesktop. All the same. Any clues?
>
>
>
> Saludos,
>
> Alfonso
>

-- 
You received this message because you 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/e8734f73-7939-44fe-904f-3a11b750f27e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Re: [tw] Voicing Futures ...

2017-03-21 Thread @TiddlyTweeter
Ciao Danielo

*I agree with all you write. All the components are mature and work.*

WHY is it so difficult to get started?

1 - its unclear how exactly to sign up to Cloudant. And whether they will 
CHARGE your Credit Card. Do you need to pay to just test?

2 - its unclear what in SelfNote is the TW "Evernote Replacement" and what 
could be used other ways.

3 - personally I'm interested in the PouchDB / CouchDB combo for E-pubs but 
your github does not explain how to integrate the functions of PouchDB in a 
standard TW that would enable that (not that you SHOULD--only if you 
interested in that).

*4 - I suspect that the PouchDB mechanism could solve a lot hassle that 
people have with saving TW. I think it deserves a lot of attention.*

Best wishes
Josiah





On Tuesday, 21 March 2017 18:32:54 UTC+1, Danielo Rodríguez wrote:
>
> Hello @Mat
>  
>
>> I agree it deserves a LOT more attention, not least on the boards. (I'll 
>> try to plug NoteSelf  when it is relevant. 
>> ;-)
>>
>
> Thanks!
>  
>
>>
>> As for using it, I can't talk for others but the FAQ reads:
>>
>> [...]Can I use for production/very important things?
>>>
>>> I would love to answer yes, but for now please don't do it. Noteself is 
>>> still on Beta stage, and [...]
>>>
>>
>> So, basically, I don't dare to put my important stuff there and the 
>> non-important stuff... well, I find tiddlyspot really convenient and the 
>> saving works great. And when I do my experimenting, chances are I'll 
>> eventually publish it and then it's already there.
>>
>
> That is a disclaimer. As I said, I use it everyday without any problem or 
> data loss. But I don't want anyone to trust it 100% like a comercial 
> product and then come back to me with any inquiry if they mess it up. In 
> any case All the technologies behind NoteSelf are quite mature, PouchDB is 
> a widespread project, TiddlyWiki is on stable stage and CouchDB is a very 
> mature product 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/452dca8b-d9f5--a03f-966aa7d2e375%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Noteself Error (for Danielo)

2017-03-21 Thread Alfonso Arciniega
Hi Danielo,

After downloading to my PC. Right after changing the MyNotebook to any 
other name, saving the file, and reloading it; I get the message in a 
window as shown below. Tried several times on different browsers and on 
TiddlyDesktop. All the same. Any clues?



Saludos,

Alfonso

-- 
You received this message because you 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/9d45aaa9-0d01-4300-984f-a794ad1c7ca6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Core drag-and-drop improvements

2017-03-21 Thread Jeff Vance
Quick question:  Does the drag and drop only work when the filter is based 
on the contents of a field? It appears to be the case. I see in the demo it 
grabs all the days of the week from the List field and drag/drop saves the 
new order in that field.  So what if you use a filter that doesn't get the 
order from a field? I'm guessing it won't work since there is no way to 
save the state of the new ordering.  So I assume that if you want to make 
any list draggable, you must save the filtered list to a field first.

-- 
You received this message because you 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/392fd00a-ee25-4ca4-a917-c94276824142%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Firefox not Displaying pictures

2017-03-21 Thread Eric Shulman
On Tuesday, March 21, 2017 at 11:46:08 AM UTC-7, Jason Peterson wrote:
>
> Ok here are two screen shots.  One shows what chrome and firefox look like 
> for the same picture.  The second one shows that all the pictures and TW5 
> are in the same folder.  Here is the coding that I am 
> using [img[H:\Private\Wiki\Wiki5\Aslan'sFriendN9ZF.jpg]]
>

Have you tried using foward slashes (/) instead of backslashes (\).  Even 
though Windows uses "\" for path separators, it will also recognize "/" 
(which is widely used by almost all other systems).  Thus:

[img[H:/Private/Wiki/Wiki5/Aslan'sFriendN9ZF.jpg]]

-e
Eric Shulman
TiddlyTools: "Small Tools for Big Ideas" (tm)
InsideTiddlyWiki: The Missing Manuals

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


[tw] Improvements for mobile version of TW5

2017-03-21 Thread Atul Grover


Hi Jeremy,

 

Are there any "Theme tweak options" or "Default Sidebar Tab actions" which 
will make the TW more suitable for mobiles.


IMHO there could be one which changes the sidebar to open/close from the 
side rather than becoming visible/hidden at the top.


Alternatively TW5 could automatically shift this sidebar access 
functionality whenever opened on a mobile device.

 

Regards

Atul

-- 
You received this message because you 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/7734ecc8-c4ca-47b7-afc3-f26f3694e290%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: force set width on multi-line edit-text widget

2017-03-21 Thread Thomas Elmiger
Hi guys

This would work under certain conditions:

\define bignotes(side)
<$edit-text tiddler="notesInFields" field="$(currentTiddler)$.$side$" 
class="tw-edit-texteditor myTextEdit"  tag="textarea">
\end

<>

There are restrictions concerning the naming of fields, so maybe it is not a 
good idea to use tiddler names as a parameter where almost no restrictions 
apply. 

This works for example in a tiddler with title "editor" but NOT for "Editor" 
(no uppercase letters allowed in field names). 

So I would advise to define an adapted storage strategy. You could use temp 
tiddlers’ text field and give them titles like $:/temp/notes/tiddlerTitle-left

Good luck!
Thomas 

-- 
You received this message because you 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/036125e9-a821-40fe-87af-d5246213f25d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: Announcing the 2nd TiddlyWiki European Meetup on 10th & 11th June 2017

2017-03-21 Thread @TiddlyTweeter
in short. the issue last time was as much bad cinematography as bandwidth?

no reason you ALSO have to be film geeks as well as TW ones. But I think 
its pause for thought.  

live interaction needs camera angles on something so sustained.

J, x 

On Tuesday, 21 March 2017 17:26:03 UTC+1, Jeremy Ruston wrote:
>
> I think the wifi was actually OK last time. I think we used my iPad 
> running the Google Hangouts app; one issue was positioning the camera so 
> that people could see anything interesting. This time, I’ve got a decent 
> quality USB HD webcam (including stereo mics), which hopefully we can plug 
> into Jed’s old laptop. A separate USB microphone might be handy too, I 
> shall try to get hold of one.
>
> Another issue may have been the way that we laid out the tables and chairs 
> in the room. We could explore positioning ourselves more for the cameras 
> benefit.
>
> Last year we used a Trello board to collaborate on the agenda:
>
> https://trello.com/b/zklZBbLS/tweu-meetup-2016
>
> It might be good for remote viewers if we focussed on some more structured 
> presentations.
>
> Best wishes
>
> Jeremy
>
> On 21 Mar 2017, at 16:12, Jed Carty  
> wrote:
>
> I think that the problem last time with the remote attendees was the wifi 
> where we were. There may have been a problem with not having a dedicated 
> computer to run the hangout, if that is the case I may be able to bring up 
> an old laptop that can be used as a dedicated streaming machine.
>
> -- 
> You received this message because you 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/6eec1899-6e15-4242-8245-81b08d660fac%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/e5500bf3-ab4b-41a6-a641-f7fb84b7c5f5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] [NEW plugin] TW5 Search and Replace

2017-03-21 Thread J Mc
Hi Danielo,
I have tried your searchNreplace plugin but can't get it to work.
I have a large list of street names which I need to enclose in square 
brackets and need to separate with a blank line so that I can create new 
tiddlers from a list.
I can search for \n and replace this [[ but can't put the closing ]] 
brackets in place.
If I have a list such as below,

Abbey Close
Abbey Lane
Abbey Mount
Abbey Strand
Abbey Street


how do I achieve the following

[[Abbey Close]]

[[Abbey Lane]]

[[Abbey Mount]]

[[Abbey Strand]]

[[Abbey Street]]

Any help you could offer would be great much appreciated.

Thanks,

J Mc

On Monday, 13 April 2015 07:09:27 UTC+1, Danielo Rodríguez wrote:
>
> Please can you point to the code?
>>
>
> Hello Jeremy,
>
> Sorry,the code that does the replacement is here:
>
>
> https://github.com/danielo515/TW5-searchNreplace/blob/master/searchNreplacewiki/plugins/searchNreplace/daemons/replace-daemon.js
>  
>

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


[tw] Re: Firefox not Displaying pictures

2017-03-21 Thread BJ
you could try

[img[file///h:/Private/Wiki/
Wiki5/Aslan'sFriendN9ZF.jpg]]


On Tuesday, March 21, 2017 at 7:46:08 PM UTC+1, Jason Peterson wrote:
>
> Ok here are two screen shots.  One shows what chrome and firefox look like 
> for the same picture.  The second one shows that all the pictures and TW5 
> are in the same folder.
>
> Here is the coding that I am 
> using [img[H:\Private\Wiki\Wiki5\Aslan'sFriendN9ZF.jpg]]
>
> thr...@yahoo.com 
>
>
> On Tuesday, March 21, 2017 at 2:31:20 PM UTC-4, Jason Peterson wrote:
>>
>> So try and put the image files in the same folder/subfolder as where the 
>> wiki is stored?  I will give it a shot and let you know what happens.
>>
>> thr...@yahoo.com 
>>
>> On Tuesday, March 21, 2017 at 1:26:58 PM UTC-4, PMario wrote:
>>>
>>> On Tuesday, March 21, 2017 at 4:50:03 PM UTC+1, Jason Peterson wrote:

 ...Again this shows up in Chrome or IE when I look at the same tiddler 
 but not in FF.

 [img[H:\Private\Wiki\Images\Twitter\Complaints\Aslan'sFriendN9ZF.jpg]]

>>>
>>> hmm. strange.  
>>> Did some tests. It seems FF only allows relative paths. imges work for 
>>> me if they are in the same directory or subdirectory. 
>>>
>>> -m
>>>
>>

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


[tw] Re: force set width on multi-line edit-text widget

2017-03-21 Thread Egbert
Tks Dave. Can't wait for the solution, would really help.

-- 
You received this message because you 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/b9ed3240-d14f-432e-8a47-845d06447a45%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: Firefox not Displaying pictures

2017-03-21 Thread Jason Peterson
That did it! it is extremely weird that it has to reside in the same folder 
with the tiddler though.  I will play with it some to see if i can go a 
subfolder or not.

thru...@yahoo.com

*THANK YOU VERY MUCH FOR ALL YOUR HELP!*

On Tuesday, March 21, 2017 at 2:55:07 PM UTC-4, Thomas Elmiger wrote:
>
> Now you should be able to get the image this way: 
>
> [img[Aslan'sFriendN9ZF.jpg]]
>
> (I’m on my phone and guessing.)
>
> -t
>
> Jason Peterson  schrieb am Di. 21. März 
> 2017 um 19:46:
>
>> Ok here are two screen shots.  One shows what chrome and firefox look 
>> like for the same picture.  The second one shows that all the pictures and 
>> TW5 are in the same folder.
>>
>> Here is the coding that I am 
>> using [img[H:\Private\Wiki\Wiki5\Aslan'sFriendN9ZF.jpg]]
>>
>> thr...@yahoo.com 
>>
>>
>> On Tuesday, March 21, 2017 at 2:31:20 PM UTC-4, Jason Peterson wrote:
>>>
>>> So try and put the image files in the same folder/subfolder as where the 
>>> wiki is stored?  I will give it a shot and let you know what happens.
>>>
>>> thr...@yahoo.com 
>>>
>>> On Tuesday, March 21, 2017 at 1:26:58 PM UTC-4, PMario wrote:

 On Tuesday, March 21, 2017 at 4:50:03 PM UTC+1, Jason Peterson wrote:
>
> ...Again this shows up in Chrome or IE when I look at the same tiddler 
> but not in FF.
>
> [img[H:\Private\Wiki\Images\Twitter\Complaints\Aslan'sFriendN9ZF.jpg]]
>

 hmm. strange.  
 Did some tests. It seems FF only allows relative paths. imges work for 
 me if they are in the same directory or subdirectory. 

 -m

>>> -- 
>> You received this message because you are subscribed to a topic in the 
>> Google Groups "TiddlyWiki" group.
>> To unsubscribe from this topic, visit 
>> https://groups.google.com/d/topic/tiddlywiki/IPLW8saDFz4/unsubscribe.
>> To unsubscribe from this group and all its topics, send an email to 
>> tiddlywiki+...@googlegroups.com .
>> To post to this group, send email to tiddl...@googlegroups.com 
>> .
>> Visit this group at https://groups.google.com/group/tiddlywiki.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/tiddlywiki/ac7f0e44-8c84-459e-bab6-0207747be313%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/49f3b5c8-7e42-4758-aa44-34f772258d5a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: Firefox not Displaying pictures

2017-03-21 Thread Thomas Elmiger
Now you should be able to get the image this way:

[img[Aslan'sFriendN9ZF.jpg]]

(I’m on my phone and guessing.)

-t

Jason Peterson  schrieb am Di. 21. März 2017 um 19:46:

> Ok here are two screen shots.  One shows what chrome and firefox look like
> for the same picture.  The second one shows that all the pictures and TW5
> are in the same folder.
>
> Here is the coding that I am
> using [img[H:\Private\Wiki\Wiki5\Aslan'sFriendN9ZF.jpg]]
>
> thru...@yahoo.com
>
>
> On Tuesday, March 21, 2017 at 2:31:20 PM UTC-4, Jason Peterson wrote:
>
> So try and put the image files in the same folder/subfolder as where the
> wiki is stored?  I will give it a shot and let you know what happens.
>
> thru...@yahoo.com
>
> On Tuesday, March 21, 2017 at 1:26:58 PM UTC-4, PMario wrote:
>
> On Tuesday, March 21, 2017 at 4:50:03 PM UTC+1, Jason Peterson wrote:
>
> ...Again this shows up in Chrome or IE when I look at the same tiddler but
> not in FF.
>
> [img[H:\Private\Wiki\Images\Twitter\Complaints\Aslan'sFriendN9ZF.jpg]]
>
>
> hmm. strange.
> Did some tests. It seems FF only allows relative paths. imges work for me
> if they are in the same directory or subdirectory.
>
> -m
>
> --
> You received this message because you are subscribed to a topic in the
> Google Groups "TiddlyWiki" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/tiddlywiki/IPLW8saDFz4/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
> tiddlywiki+unsubscr...@googlegroups.com.
> To post to this group, send email to tiddlywiki@googlegroups.com.
> Visit this group at https://groups.google.com/group/tiddlywiki.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/tiddlywiki/ac7f0e44-8c84-459e-bab6-0207747be313%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/CALXLrTit8poFu-VZ4t_96iugk8QpqH0r0b-x43ZG0hGEDJAt3Q%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: [TW5] Plugin update: Autosave for EditorCounter – Never lose hours of work again

2017-03-21 Thread Thomas Elmiger
Hello Danielo and Arlen

I think I copied my save function from somewhere below the search button, I 
don’t remember that exactly. I use 

$tw.rootWidget.dispatchEvent({type: "tm-auto-save-wiki"});

so this seems to be a technical auto save mechanism and not a sync mechanism. 
In my experience it does exactly the same as the save button, just without 
pressing the button. Perfect for my local workflow. 

Stay safe,
Thomas 

-- 
You received this message because you 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/0998e252-15ca-45c2-aaa4-1dfa88873c51%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Firefox not Displaying pictures

2017-03-21 Thread Jason Peterson
So try and put the image files in the same folder/subfolder as where the 
wiki is stored?  I will give it a shot and let you know what happens.

thru...@yahoo.com

On Tuesday, March 21, 2017 at 1:26:58 PM UTC-4, PMario wrote:
>
> On Tuesday, March 21, 2017 at 4:50:03 PM UTC+1, Jason Peterson wrote:
>>
>> ...Again this shows up in Chrome or IE when I look at the same tiddler 
>> but not in FF.
>>
>> [img[H:\Private\Wiki\Images\Twitter\Complaints\Aslan'sFriendN9ZF.jpg]]
>>
>
> hmm. strange.  
> Did some tests. It seems FF only allows relative paths. imges work for me 
> if they are in the same directory or subdirectory. 
>
> -m
>

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


Re: [tw] Re: [TW5] Plugin update: Autosave for EditorCounter – Never lose hours of work again

2017-03-21 Thread Arlen Beiler
Is the difference here that Thomas's plugin will trigger save for the
regular saver mechanism even when a draft is the only thing that changed?
This would apply to TiddlyFox and download savers, but not the sync adapter
that syncs individual tiddlers, including drafts. The sync mechanism is
what noteself and the NodeJS server both use.

On Mar 21, 2017 1:44 PM, "Danielo Rodríguez"  wrote:


Hello Thomas


>
> According to http://tiddlywiki.com/#AutoSave the built-in autosave is
> triggered by clicking a save- or delete-button. My EditorCounter autosave
> function is triggered WITHOUT clicking a button in the user interface. This
> way (my way) a "Draft of …" tiddler is saved after the author has typed or
> removed a defines number of characters.
>
> Maybe I shoud call it *fully automatic save* for better distincion?
>
> Cheers, Thomas
>

I understand your confusion.
I do mean AutoSave in the same sense as you. I am very surprised to
discover that this feature is not documented on any place (not
tiddlywiki.com, nor tiddlywki.com/dev). By deafult, when a SyncAdaptor is
used, tiddlywiki performs automatic synchronizations every second. You can
see it here:

https://github.com/Jermolene/TiddlyWiki5/blob/db056a84a53e666bd36bbad561b1a6
db00d5fc89/core/modules/syncer.js#L22

So this is Automatic save, which includes draft tiddlers. If we speak
technically, it is not automatic save, but automatic synchronization.

Regards



-- 
You received this message because you are subscribed to the Google Groups
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an
email to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit https://groups.google.com/d/
msgid/tiddlywiki/623092a1-77d2-4af4-a632-2abfdefed09a%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/CAJ1vdSRRjuVQ%2B3oy-G8K3UZqh8d21pfCm1wjVJK_cH223Eqm9A%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Where is the NoteSelf repository anyway? @Danielo

2017-03-21 Thread Danielo Rodríguez
Hello mat

El viernes, 17 de marzo de 2017, 20:35:28 (UTC+1), Mat escribió:
>
> I'm posting this publicly because the answer might be of interest for 
> others also.
>

Sure.

 

>
> @Danielo - https://noteself.github.io/  is clearly on github... but where 
> is the code? The link at bottom of that page only leads to your github 
> profile and scanning through your repositories 
>  doesn't help.
>

That's because NoteSelf is a github organization, therefore is not under my 
personals repositories. The repository is here:
https://github.com/NoteSelf/NoteSelf.github.io


 

>
> Specifically, I'd like to contribute some doc tweaks for that main page.
>
>
That would be lovely!
You can open issues directly 
here: https://github.com/NoteSelf/NoteSelf.github.io

For any technical problem related to the plugin that powers noteself 
(TiddlyPouch) the repo is here:  

https://github.com/danielo515/tiddlypouch


Thank you very much!

-- 
You received this message because you 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/4ff7ebda-5e58-49a3-bed5-eff2514e468c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Plugin update: Autosave for EditorCounter – Never lose hours of work again

2017-03-21 Thread Danielo Rodríguez

Hello Thomas
 

>
> According to http://tiddlywiki.com/#AutoSave the built-in autosave is 
> triggered by clicking a save- or delete-button. My EditorCounter autosave 
> function is triggered WITHOUT clicking a button in the user interface. This 
> way (my way) a "Draft of …" tiddler is saved after the author has typed or 
> removed a defines number of characters. 
>
> Maybe I shoud call it *fully automatic save* for better distincion? 
>
> Cheers, Thomas
>

I understand your confusion.
I do mean AutoSave in the same sense as you. I am very surprised to 
discover that this feature is not documented on any place (not 
tiddlywiki.com, nor tiddlywki.com/dev). By deafult, when a SyncAdaptor is 
used, tiddlywiki performs automatic synchronizations every second. You can 
see it here:

https://github.com/Jermolene/TiddlyWiki5/blob/db056a84a53e666bd36bbad561b1a6db00d5fc89/core/modules/syncer.js#L22

So this is Automatic save, which includes draft tiddlers. If we speak 
technically, it is not automatic save, but automatic synchronization.

Regards

 

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/623092a1-77d2-4af4-a632-2abfdefed09a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Re: [tw] Voicing Futures ...

2017-03-21 Thread Danielo Rodríguez
Hello @Mat
 

> I agree it deserves a LOT more attention, not least on the boards. (I'll 
> try to plug NoteSelf  when it is relevant. 
> ;-)
>

Thanks!
 

>
> As for using it, I can't talk for others but the FAQ reads:
>
> [...]Can I use for production/very important things?
>>
>> I would love to answer yes, but for now please don't do it. Noteself is 
>> still on Beta stage, and [...]
>>
>
> So, basically, I don't dare to put my important stuff there and the 
> non-important stuff... well, I find tiddlyspot really convenient and the 
> saving works great. And when I do my experimenting, chances are I'll 
> eventually publish it and then it's already there.
>

That is a disclaimer. As I said, I use it everyday without any problem or 
data loss. But I don't want anyone to trust it 100% like a comercial 
product and then come back to me with any inquiry if they mess it up. In 
any case All the technologies behind NoteSelf are quite mature, PouchDB is 
a widespread project, TiddlyWiki is on stable stage and CouchDB is a very 
mature product 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/a4c7615f-17ba-4c8c-8e5d-5e69e7246fc5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: force set width on multi-line edit-text widget

2017-03-21 Thread Dave
I bet the solution is to set a default content which would have to be a 
variable set from the field that you'll be assigning it to.

If I figure that out I'll post it here, but currently I'm not sure how to 
exactly.

-- 
You received this message because you 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/0f2ae788-e817-45a0-b941-753278d34138%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Firefox not Displaying pictures

2017-03-21 Thread PMario
On Tuesday, March 21, 2017 at 4:50:03 PM UTC+1, Jason Peterson wrote:
>
> ...Again this shows up in Chrome or IE when I look at the same tiddler but 
> not in FF.
>
> [img[H:\Private\Wiki\Images\Twitter\Complaints\Aslan'sFriendN9ZF.jpg]]
>

hmm. strange.  
Did some tests. It seems FF only allows relative paths. imges work for me 
if they are in the same directory or subdirectory. 

-m

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


[tw] Re: Firefox not Displaying pictures

2017-03-21 Thread Thomas Elmiger
Hi Jason

In many cases it helps to eliminate non-ASCII characters from file names. In 
your case the ' in Aslan'sFriendN9ZF.jpg

Good luck 
Thomas 

-- 
You received this message because you 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/83d1087d-ffb7-4a51-810a-b3ec988c70fa%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Announcing the 2nd TiddlyWiki European Meetup on 10th & 11th June 2017

2017-03-21 Thread Dragon Cotterill


On Tuesday, 21 March 2017 16:12:36 UTC, Jed Carty wrote:
>
> I think that the problem last time with the remote attendees was the wifi 
> where we were. There may have been a problem with not having a dedicated 
> computer to run the hangout, if that is the case I may be able to bring up 
> an old laptop that can be used as a dedicated streaming machine.
>

Well I can bring along multiple computers (and Mobile devices - much to 
Jed's probably consternation!) so I can set up some dedicated streams if 
needs be.

-- 
You received this message because you 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/4d90e67d-899d-4c53-bc04-36dca6f333f4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Voicing Futures ...

2017-03-21 Thread @TiddlyTweeter
Jed

This is exactly IT.

Futures understanding.

Josiah, x

On Tuesday, 21 March 2017 17:07:13 UTC+1, Jed Carty wrote:
>
> As far as the easy deployment of node.js apps goes, I am working on making 
> a control interface and data dashboard for my robot using tiddlywiki. The 
> robot runs in node so I have the same script running both tiddlywiki and 
> the robot. I set up bi-directional communication between the robot and the 
> browser. I am trying to make everything modular and easy to use so I am 
> hoping that it can help with the creation of other applications in the 
> future. My brother has some ideas for using this as a way to make 
> multi-user wikis but we haven't made any significant progress on that side 
> yet.
>
> We are currently polishing the robot code in preparation for releasing it 
> as open source so it isn't available yet, but it hopefully will be soon. I 
> am going to be bringing a tiddlywiki controlled robot up to Oxford for the 
> meet up.
>

-- 
You received this message because you 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/a7cee264-c7ea-4bc3-9d3a-72d974918c50%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: force set width on multi-line edit-text widget

2017-03-21 Thread Dave
Good catch! That happens to my version too.

When you go look at where the notes are kept ([[notesInFields]]), the notes 
are still there, but I'm note sure why they don't appear in the tiddler 
that has the note box.

-- 
You received this message because you 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/c3954b81-cce9-4de5-b244-c49daac8ed20%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Dynamic Photo Album

2017-03-21 Thread Jon Cramer
Hello All,

I am currently working on a project using TiddlyWiki for a college course 
at SUNY Polytechnic Institute. I will be creating a dynamic photo album of 
my daughter's first 4 years by adding dynamic navigation. Users will be 
able to filter by Age, Activity, and Season based on tags, and have the 
ability to navigate photos using first, previous, next, last controls. 

I am looking for a way to import multiple photos at once to save some time. 
If anyone has an idea of how I would do this I would greatly appreciate 
some feedback. Thanks in advance!

Jon

-- 
You received this message because you 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/5974f38a-081c-441e-8532-b87340c765d4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: Announcing the 2nd TiddlyWiki European Meetup on 10th & 11th June 2017

2017-03-21 Thread Jeremy Ruston
I think the wifi was actually OK last time. I think we used my iPad running the 
Google Hangouts app; one issue was positioning the camera so that people could 
see anything interesting. This time, I’ve got a decent quality USB HD webcam 
(including stereo mics), which hopefully we can plug into Jed’s old laptop. A 
separate USB microphone might be handy too, I shall try to get hold of one.

Another issue may have been the way that we laid out the tables and chairs in 
the room. We could explore positioning ourselves more for the cameras benefit.

Last year we used a Trello board to collaborate on the agenda:

https://trello.com/b/zklZBbLS/tweu-meetup-2016 


It might be good for remote viewers if we focussed on some more structured 
presentations.

Best wishes

Jeremy

> On 21 Mar 2017, at 16:12, Jed Carty  wrote:
> 
> I think that the problem last time with the remote attendees was the wifi 
> where we were. There may have been a problem with not having a dedicated 
> computer to run the hangout, if that is the case I may be able to bring up an 
> old laptop that can be used as a dedicated streaming machine.
> 
> -- 
> You received this message because you 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/6eec1899-6e15-4242-8245-81b08d660fac%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/AA1166CB-F3B3-4DA3-9D1A-B7EB46963DA0%40gmail.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Announcing the 2nd TiddlyWiki European Meetup on 10th & 11th June 2017

2017-03-21 Thread Jed Carty
I think that the problem last time with the remote attendees was the wifi 
where we were. There may have been a problem with not having a dedicated 
computer to run the hangout, if that is the case I may be able to bring up 
an old laptop that can be used as a dedicated streaming machine.

-- 
You received this message because you 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/6eec1899-6e15-4242-8245-81b08d660fac%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: force set width on multi-line edit-text widget

2017-03-21 Thread Egbert


Putting this

.myTextEdit { width:50em; height:10em !important; }
in a tiddler tagged $:/tags/Stylesheet 

 

And putting this in a different tiddler

\define bignotes(side)
<$edit-text tiddler="notesInFields" field="$(currentTiddler)$.$side$" 
class="tw-edit-texteditor 
myTextEdit"  tag="textarea">
\end
<>

 

gives me a textbox I can write contents to. However, when I save the 
TiddlyWiki file, close it  and open it again, everything what I’ve written 
is gone. What am I doing wrong?

On Monday, 20 March 2017 21:24:19 UTC, Eric Shulman wrote:
>
> On Monday, March 20, 2017 at 10:55:14 AM UTC-7, Dave wrote:
>>
>>
>>> Is it maybe browser dependent?  I mainly use firefox.
>>>
>>> Nope, same thing on Chrome :'( 
>>
>
> hmm it turns out that the TWCore is setting the height of the textarea 
> element explicitly (i.e., not through a CSS rule, but rather by directly 
> setting the property on the element.  This is based on the EditorToolbar's 
> "editor-height" selection (auto size to fit content vs fixed height)
>
> $:/core/ui/EditorToolbar/editor-height-dropdown 
> 
>
> To override this value for your custom input field (but NOT for all 
> textarea elements), you can add "!important" to the height property in your 
> CSS:
>
> .myTextEdit { width:50em; height:10em !important; }
>
> That should do it.
>
> enjoy,
> -e
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To 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/8d0cac3f-4177-4bfc-999b-2909ca739841%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Voicing Futures ...

2017-03-21 Thread Jed Carty
As far as the easy deployment of node.js apps goes, I am working on making 
a control interface and data dashboard for my robot using tiddlywiki. The 
robot runs in node so I have the same script running both tiddlywiki and 
the robot. I set up bi-directional communication between the robot and the 
browser. I am trying to make everything modular and easy to use so I am 
hoping that it can help with the creation of other applications in the 
future. My brother has some ideas for using this as a way to make 
multi-user wikis but we haven't made any significant progress on that side 
yet.

We are currently polishing the robot code in preparation for releasing it 
as open source so it isn't available yet, but it hopefully will be soon. I 
am going to be bringing a tiddlywiki controlled robot up to Oxford for the 
meet up.

-- 
You received this message because you 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/2dd5e0a7-4ad4-499a-8ea4-2bb708ff4e90%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Announcing the 2nd TiddlyWiki European Meetup on 10th & 11th June 2017

2017-03-21 Thread @TiddlyTweeter
can i virtually attend? (interactively)

last time the tech wasn't quite up to it.

i think it might be interesting if it were???

Josiah, x

On Friday, 24 February 2017 13:00:01 UTC+1, Jeremy Ruston wrote:
>
> I’m delighted to invite you to the 2nd TiddlyWiki European Meetup on 
> Saturday 10th and Sunday 11th June 2017, in Oxford, UK.
>
> We had a similar event last year (see photo below and 
> http://tiddlywiki.com/#TiddlyWiki%20European%20Meetup%202016). It was a 
> terrific opportunity to meet face-to-face and get to know one another. We 
> focussed on working together on twederation but broke out into many 
> interesting discussions and demonstrations. It was pretty good fun, and 
> hopefully we can learn from our previous experience and make the event this 
> year even better.
>
> Still to do:
>
> * Finalising the venue; I’m hoping to use the same place as last year
> * Although the event is free of charge, I’ll set up eventbrite (or 
> equivalent) so that people can register and I can have an idea of numbers
> * Planning the schedule. We might kick off with dinner on the evening of 
> Friday 9th.
>
> Please reply here if you’re interested in attending, or with any questions 
> or suggestions.
>
> Best wishes
>
> Jeremy.
>
>

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


[tw] Re: Firefox not Displaying pictures

2017-03-21 Thread Jason Peterson
PMario,
  My apologizes, I have been reading this group enough that I should have 
included this.  Again this shows up in Chrome or IE when I look at the same 
tiddler but not in FF.

[img[H:\Private\Wiki\Images\Twitter\Complaints\Aslan'sFriendN9ZF.jpg]]

thru...@yahoo.com


On Friday, March 17, 2017 at 5:58:25 PM UTC-4, PMario wrote:
>
> Hi Jason, 
>
> How do you include your images, and how do you display them. Some tiddler 
> content would be nice. 
>
> -m
>

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


[tw] Re: Voicing Futures ...

2017-03-21 Thread @TiddlyTweeter
I would like to add to this discussion this ...

On Sunday, 5 March 2017 09:38:00 UTC+1, Jeremy Ruston wrote:
>
> *Overall, I’d like to see TiddlyWiki better serve the needs of multiple 
> audiences:*
>
> * commercial services for general users
> * easy Node.js app deployment for advanced DIY users
> * continued support for the standalone configuration in the browser for 
> most DIY users
>

-- 
You received this message because you 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/9724e0ef-0fa9-4b32-a0e7-33f9ad399066%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: [TW5] Core drag-and-drop improvements

2017-03-21 Thread Jeremy Ruston
Hi Atul

Please could you start a new thread if you’re posting about a new topic?

Thank you,

Best wishes

Jeremy.

> On 21 Mar 2017, at 15:31, Atul Grover  wrote:
> 
> Hi Jeremy,
> 
>  
> 
> Is there any "Theme tweak options" or "Default Sidebar Tab actions" which 
> will make the TW more suitable for mobiles wherein the sidebar open/close 
> from the side rather than becoming visible/hidden at the top?
> 
> 
> 
> 
> Just by making this minor change TW will become much appropriate for mobile 
> devices.
> 
> Better still if TW could automatically shift to such functionality when 
> opened on a mobile device.
> 
>  
> 
> Regards
> 
> Atul
> 
> 
> -- 
> You received this message because you 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/7df51f89-d0cf-4741-9938-9edb1033d282%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/020D1FBB-080C-411A-A2E0-E3473027D4B8%40gmail.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Toccata & Fugue

2017-03-21 Thread @TiddlyTweeter
"Also Sprach Zarathustra" is not a great tune for #TiddlyWiki. Its a bit 
too definitive, though it has its moments of query of what else is around 
...

  https://www.youtube.com/watch?v=IFPwm0e_K98

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/870f92c5-6923-4350-bcb2-c20453ce0af6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Core drag-and-drop improvements

2017-03-21 Thread Atul Grover


Hi Jeremy,

 

Is there any "Theme tweak options" or "Default Sidebar Tab actions" which 
will make the TW more suitable for mobiles wherein the sidebar open/close 
from the side rather than becoming visible/hidden at the top?


Just by making this minor change TW will become much appropriate for mobile 
devices.

Better still if TW could automatically shift to such functionality when 
opened on a mobile device.

 

Regards

Atul

-- 
You received this message because you 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/7df51f89-d0cf-4741-9938-9edb1033d282%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Announcing the 2nd TiddlyWiki European Meetup on 10th & 11th June 2017

2017-03-21 Thread Atul Grover
Hi All,

I couldn't make it last time but I do hope to make it for the meetup this 
time around.

Regards
Atul


-- 
You received this message because you 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/762868fe-935d-46ae-b6da-9b74f54aebbe%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Voicing Futures ...

2017-03-21 Thread @TiddlyTweeter
Ciao tejjid and all ...

On Monday, tejjyid wrote:
>
>
> ... The problem is that TW *isn't* a single-file architecture. It needs 
> other programs to support it, not just an OS. and now, increasingly those 
> programs don't. So I think the problem is deep.  
>

 I agree, in the sense that the mechanics of HOW you get TW to run/work do 
matter. 

Much of Jeremy's second statement, I keep referring to, implies that, I 
think. He posits differential ways forward though. NOT one model (*I* 
think). 

That "contradiction" (is it?) between "self-contained" V. dependence on a 
"run environment" for use is interesting ... ? I'm not so sure that 
obviates "single-file architecture" per se.

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/beadb533-0909-4721-b084-65ad5132a91c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Announcing TiddlyChrome

2017-03-21 Thread Ben John
Hi Arlen

Can you tell me why my link was blocked? - I have AVG installed on my
computer which is running Windows 10
regards

Ben

On Mon, Mar 20, 2017 at 9:43 AM, Gmail Team  wrote:

> The message "[tw] Announcing TiddlyChrome" from Arlen Beiler (
> arlen...@gmail.com) contained a virus or a suspicious attachment. It was
> therefore not fetched from your account benj...@virginmedia.com and has
> been left on the server.
>
> Message-ID:
>
> If you wish to write to Arlen, just hit reply and send Arlen a message.
>
>
> Thanks,
>
> The Gmail Team
>

-- 
You received this message because you 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/CAB4YcMBoWYW50xk8B7rsAgBs3FG%3DHKQz8ksXZRhdY%3DQzEVDjWA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Side-bar problems

2017-03-21 Thread Jon
Hi,

When I hide the sidebar, the tiddlers no longer expand to fill the screen.

Also, when using the side bar search box, the frame showing the results 
doesn't automatically appear (showing Title matches and All matches) - it 
only appears if I click on the number of matches to the right.

I've updated to the latest version but the problems remain.

Any ideas where I should look to fix them?

Thanks
Jon


-- 
You received this message because you 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/f3ebea37-1e19-4f35-84bb-f04461cdf999%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: apply macro to outer tiddler of transcluded pair?

2017-03-21 Thread Dave
Thank you sir!

-- 
You received this message because you 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/a3831f91-7efa-4dee-8d41-ba8a8f7b8c96%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.