[tw] Re: ReadOnly TiddlyWiki

2015-10-27 Thread Tony Grosinger
I just found this issue which I will peruse as time permits and leave my comments there. Thanks @tobibeer https://github.com/Jermolene/TiddlyWiki5/issues/1276 -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and

[tw] ReadOnly TiddlyWiki

2015-10-26 Thread Tony Grosinger
I am running a TW5 on node.js and have it password authenticated. This means in order to view or edit a username and password must be entered. Is there a way to instead have read access for anyone but require authentication before editing? Ideally, it would be nice to also specify some

[tw] Re: Ressources for plugin development?

2015-11-06 Thread Tony Grosinger
The thing that helped me the most when developing my Checklist Plugin was the TiddlyWiki Dev page . Learning about how the internals of TiddlyWiki worked gave me the background necessary to make sense of the code I was reading

[tw] Missing Documentation Macros

2015-10-08 Thread Tony Grosinger
On TiddlyWiki.com there is a tidder about Documentation Macros . Unfortunately however, I do not seem to be able to use any of them on my own TiddlyWiki instance. Even copying and pasting the example directly results in nothing being rendered. Do

[tw] Documentation Macros

2015-10-08 Thread Tony Grosinger
On TiddlyWiki.com there is a tidder about Documentation Macros . Unfortunately however, I do not seem to be able to use any of them on my own TiddlyWiki instance. Even copying and pasting the example directly results in nothing being rendered. Do

[tw] Re: Documentation Macros

2015-10-08 Thread Tony Grosinger
Very nice, thank you. I will give that a try. On Thursday, October 8, 2015 at 7:58:46 AM UTC-7, Evolena wrote: > > The documentation macros are part of the "tw5.com" edition, so it is not > included in an empty edition. > Here are the main tiddlers you would need to use these macros: permaview

[tw] Force re-parse after setText

2015-10-20 Thread Tony Grosinger
I am writing a javascript widget which updates the text field of the current tiddler. After updating I would like to force the tiddler to reparse, not just redraw the existing parsetree. Is that possible, refreshSelf doesn't seem sufficient? $tw.wiki.setText(this.tiddlerTitle, "text",

Re: [tw] Force re-parse after setText

2015-10-20 Thread Tony Grosinger
No need at all for the apology, just thought I'd send to a wider audience. Thank you! -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: [tw] Re: Close search results after action

2015-10-18 Thread Tony Grosinger
There are concepts that I like from both. I think the pre-release version is very nice because the search results go away when I am done with them. The plugin is really cool though because seeing the context of the search result is sometimes helpful, but it still doesn't revert to my previous

[tw] Close search results after action

2015-10-17 Thread Tony Grosinger
I would really like it if interacting with search results clears them and returns to the previous sidebar view. These actions would all result in clearing: * Clicking on the advanced search button * Clicking a search result * Clicking away from search results (back in the main story-view) I

[tw] Re: TiddlyWiki on a Webserver

2015-10-10 Thread Tony Grosinger
I would highly recommend looking into running TiddlyWiki on Node.js. I tried using store.php, however I think running it through node is much better. I am also proxying that through apache to add SSL. Seems the most stable configuration that I have tried so far. -- You received this message

Re: [tw] Update twiddler text from widget

2015-09-27 Thread Tony Grosinger
That works too and should be easy enough. The only reason I wanted to put it in the same tiddler was to make the notes a little more hand-editable. Thank you for the fast responses. On Sunday, September 27, 2015 at 1:30:01 AM UTC-7, Jeremy Ruston wrote: > > Hi Tony > >> >> Is it possible to have

[tw] Update twiddler text from widget

2015-09-26 Thread Tony Grosinger
I am making a widget that is designed to have content between the widget tags. For example: <$mywidget> Content Content Content Is it possible to have my widget alter the contents? I know it is possible to edit the text of the whole twiddler, but was hoping for something a little

[tw] Detect When on Mobile

2017-01-22 Thread Tony Grosinger
I am trying to create a tiddler which has different content depending on whether on mobile or not. This will be used to alter configuration options. I noticed that from the console I can view the user agent in navigator.userAgent. Is there any way I can access this information from a macro

Re: [tw] Detect When on Mobile

2017-01-22 Thread Tony Grosinger
I have created this snippet which I intended to use for the body of `$:/config/EditorTypeMappings/text/vnd.tiddlywiki` ``` <$reveal type="match" state="$:/info/browser/is/android" text="yes"> text <$reveal type="nomatch" state="$:/info/browser/is/android" text="yes"> codemirror ```

Re: [tw] Detect When on Mobile

2017-01-22 Thread Tony Grosinger
Wow, perfect. Thank you. On Sunday, January 22, 2017 at 5:40:24 PM UTC-8, Jeremy Ruston wrote: > > Search for $:/info on tiddlywiki.com > > Best wishes > > Jeremy > > -- > Jeremy Ruston > > > > On 22 Jan 2017, at 18:36, Danielo Rodríguez > wrote: > > > > Can't you

Re: [tw] Detect When on Mobile

2017-01-24 Thread Tony Grosinger
Thank you Jeremy. I have moved this question to a Github issue since it seems more like a development task now than a user-configurable option. https://github.com/Jermolene/TiddlyWiki5/issues/2730 -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group.

[tw] Re: node.js issue

2017-01-25 Thread Tony Grosinger
Hi Andrew, Have you heard of Homebrew? It's a great utility for installing and automatically updating programs on a Mac. If you can remove your existing version of Node, Homebrew would install it for you and help you keep it updated very easily. For reference, I am running my TiddlyWiki under

Re: [tw] Detect When on Mobile

2017-01-24 Thread Tony Grosinger
I have a feeling the problem I am running into has something to do with this function: https://github.com/Jermolene/TiddlyWiki5/blob/master/core/modules/widgets/edit.js#L65-L85 But I am having trouble getting that function to be executed and hit my breakpoint in Chrome developer tools.

[tw] Lazy Loading does not pull requested tiddlers

2017-01-18 Thread Tony Grosinger
I am running my TiddlyWiki on NodeJS (v4.4.7) and because of a bunch of images I have added the load time has been slowing down. I am exploring enabling Lazy Loading but having some trouble getting it working. When I enable lazy loading, the search seems

[tw] Re: [TW5] Presenting ToDoNow – a Beta Version of my ToDo-List-Plugin

2017-01-18 Thread Tony Grosinger
Wow, I am so excited to see that someone else is using my tw5-checklist plugin. I will have to get back to working on that and fix up some of the bug reports and feature requests. -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe

[tw] Re: [TW5] Presenting ToDoNow – a Beta Version of my ToDo-List-Plugin

2017-01-18 Thread Tony Grosinger
Thomas, It looks like there is only one ToDo list which can then have as many items as you want. Is there any way to have multiple lists? For example you might want a "work" list and a "home" list. -- You received this message because you are subscribed to the Google Groups "TiddlyWiki"

[tw] Re: Adding a tag to tiddler with existing tags

2017-01-19 Thread Tony Grosinger
This is great, thank you Jed. Can I take this one step further? I have now created a tiddler and marked it as a Macro. \define mark-complete() <$action-listops $field=tags $subfilter='+[append[Complete]]'/> \end Then in my task tiddlers I can just add a button which calls that Macro:

[tw] Re: Adding a tag to tiddler with existing tags

2017-01-19 Thread Tony Grosinger
Jed, I read somewhere on tiddlywiki.com that I should favor defining a macro and calling it from the button rather than putting actions in the button. Is this just an exception? Tobias, it sounds like tm-add-tag uses the fieldmangler under the covers. Are you proposing something different? If

[tw] Re: Adding a tag to tiddler with existing tags

2017-01-19 Thread Tony Grosinger
Maybe I should expand a little on exactly what I am trying to accomplish. I would like to make a button which can be very easily included in a large number of different tiddlers. This button would simply add a tag to that tiddler when clicked. Or, in more concrete terms, I want to have

[tw] Re: Lazy Loading does not pull requested tiddlers

2017-01-19 Thread Tony Grosinger
To continue my testing I created a brand new tiddlywiki and started it using this command: ``` tiddlywiki testwiki --verbose --server 8082 $:/core/save/all text/plain text/html "" "" "0.0.0.0" ``` I saved an image, then reloaded. The image loaded just fine. Next I changed the command to this:

[tw] Re: Lazy Loading does not pull requested tiddlers

2017-01-19 Thread Tony Grosinger
Here are some additional details, hopefully they will be helpful because I am quite stumped. In this log, I have just refreshed the page and nothing else. There is a 404 error coming from the PutSaver, however I saw a similar error (but 405) coming from tiddlywiki.com, so I am not sure if that

[tw] Re: Adding a tag to tiddler with existing tags

2017-01-20 Thread Tony Grosinger
Wow Tobias, That wiki is a gold mine. 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

[tw] Re: Lazy Loading does not pull requested tiddlers

2017-01-20 Thread Tony Grosinger
Oh, good to know. Thank you. I wonder when the next release will be coming out... -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from it, send an email to

[tw] Adding a tag to tiddler with existing tags

2017-01-19 Thread Tony Grosinger
I am trying to create a button in a tiddler which adds a new tag to that tiddler. I have found a way to replace all the existing tags with the one specified, but I am having trouble getting the add-tag feature to work. This example replaces all the tags and works. ``` \define mark-complete()

[tw] Re: TOC from Headings in Tiddler

2018-01-17 Thread Tony Grosinger
> > It may be possible if you just want a list of heading items not actual > links to that part of each tiddler. Hmm, I don't think that would work for my use case. Thank you though -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To

[tw] Re: TOC from Headings in Tiddler

2018-01-16 Thread Tony Grosinger
> > TiddlyWiki lacks a possibility to make intra-tiddler links. Jumping around > in a single tiddler seems to be impossible as the # is used in other ways. Oh that is definitely a bummer. That was my primary use case. Thanks for the info anyways! On Tuesday, January 16, 2018 at 1:13:02 PM

[tw] TOC from Headings in Tiddler

2018-01-16 Thread Tony Grosinger
I frequently use a single Tiddler to group a bunch of examples on a related topic. For example, I may have one which groups examples for the sed command. Here is an example: ! Installation You found a computer that doesn't come with it installed?? ! Examples !! Replacing in-place It