[tw5] Re: Object Oriented Programming in Tiddlywiki using Pure wikitext

2019-12-14 Thread TonyM
Mogammad Yes the table is a great example of a kind of bootstrap or self cloning process. You say > In my opinion Tiddlywiki has amazing feature but most of them are not > documented or under-documented! > > I agree many features are under documented, however one of TiddlyWiki's qualities is

[tw5] Re: [TW5] Introducing TiddlyTables a plugin for creating sortable tables.

2019-12-14 Thread Alan Aldrich
TiddlyTables 0.6.20 is now available at: tiddlytables.tiddlyspot.com/ This release includes: - New column template utilizing the Radio Widget. column* tbl-radio* renders a radio input that sets field *tbl-selected-record* of the current table to the selected record. - Title param

[tw5] Re: Object Oriented Programming in Tiddlywiki using Pure wikitext

2019-12-14 Thread Mohammad
Hi Tony! A great example of inheritance and object type programming is TiddlyTables by Alan Aldrich! On Sunday, December 15, 2019 at 3:39:53 AM UTC+3:30, TonyM wrote: > > Folks > > I love this abstract thinking and do it a lot myself. > > Keep in mind the same "method" can be applied to more

[tw5] Re: standard search field into a tiddler

2019-12-14 Thread TonyM
tobaisch Can you use another list field to wrap the search results and only display them if $:/temp/mysearch is non blank <$list filter="[[$:/temp/mysearch]has[text]]" emptyMessage="No search string" variable=nul> Search and display results here Using the has[fieldname] is only true if

[tw5] Re: Object Oriented Programming in Tiddlywiki using Pure wikitext

2019-12-14 Thread TonyM
Folks I love this abstract thinking and do it a lot myself. Keep in mind the same "method" can be applied to more than one tiddler. To me macros and buttons can do this and in some ways transcluding a special tiddler (like an object) via the view template conditionally can apply a method to a

[tw5] Re: standard search field into a tiddler

2019-12-14 Thread Eric Shulman
On Saturday, December 14, 2019 at 3:33:18 PM UTC-8, Mark S. wrote: > > > <$list filter="minlength{$:/config/Search/minlength}]" > emptyMessage="Search is too short" > > I think there's some missing filter syntax... the minlength[] filter needs some input... such as the actual text entered for

[tw5] Re: standard search field into a tiddler

2019-12-14 Thread Damon Pritchett
Hi Mark, I checked the value of minlength and it is 3. I copied your code over, but it didn't make any difference. If there is nothing typed in the text box, all tiddlers tagged Railroads show up in the list. As I'm typing each character changes the list even the first character. Damon On

[tw5] Re: standard search field into a tiddler

2019-12-14 Thread 'Mark S.' via TiddlyWiki
You need to move the minlength so it nests the query: <$list filter="minlength{$:/config/Search/minlength}]" emptyMessage="Search is too short" > <$list filter="[tag[Railroads]search:title{$:/temp/mysearch}] -[[$:/temp/mysearch]]"> <$link><> Be sure $:/config/Search/minlength is set to

[tw5] Re: standard search field into a tiddler

2019-12-14 Thread Damon Pritchett
Hey Tony, I'm trying to incorporate a custom search box using some of the code that Riz had above. It works for my needs except that if there is nothing typed in the search box, everything matching the filter shows up. I tried using minlength, but haven't been able to get it to work. The code

[tw5] Re: The-book weekly report

2019-12-14 Thread Ste Wilson
Would it be possible to use overleaf.com to help collaboration and editing luis? -- 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

[tw5] Re: Itty.bitty - a cousin to the tiddler?

2019-12-14 Thread 'Mark S.' via TiddlyWiki
Hi TT, How did you capture the CSS, and how did you inline it ? Thanks! On Saturday, December 14, 2019 at 7:36:48 AM UTC-8, TiddlyTweeter wrote: > > TonyM wrote: >> >> >> ... snapshots are needed >> > > (Rendered HTML) snapshots are remarkably easy in TW. And flexible too. > > I think the

[tw5] Re: Best of 2019 and wish-list of 2020

2019-12-14 Thread Ste Wilson
Back on thread.. I'm not sure it was released this year but Evans equation plug in was new to me. Lots of other stuff has me in awe/ mild incomprehension :D For next year... Tidgraph that scrolls again ;) -- You received this message because you are subscribed to the Google Groups

[tw5] Re: Best of 2019 and wish-list of 2020

2019-12-14 Thread Ste Wilson
Tt I think you encountered the Jed phenomenon. Make amazing thing.. Say it's a work in progress.. No one uses it :( What does polly do.. I kind of skimmed over your dev threads here as my brain hurt -- You received this message because you are subscribed to the Google Groups "TiddlyWiki"

[tw5] Re: Object Oriented Programming in Tiddlywiki using Pure wikitext

2019-12-14 Thread Mohammad
This is a HA inheritance example http://oop.tiddlyspot.com/#Simple%20Inheritance:%5B%5BSimple%20Inheritance%5D%5D%20%5B%5BAn%20Instance%20Inherits%20from%20btn-base%5D%5D Simple Inheritance 14th December 2019 at 10:58pm basic This example shows how simple a

[tw5] Re: Object Oriented Programming in Tiddlywiki using Pure wikitext

2019-12-14 Thread Mohammad
Mark The HA inheritance can be well used for creating CSS! I will send an example when a base class can be used and several instances with different properties can be created! On Saturday, December 14, 2019 at 11:07:37 PM UTC+3:30, Mark S. wrote: > > HA is "has A ..." > > It's a different

[tw5] Re: Object Oriented Programming in Tiddlywiki using Pure wikitext

2019-12-14 Thread Mohammad
I will use this terminology you invented! On Saturday, December 14, 2019 at 11:07:37 PM UTC+3:30, Mark S. wrote: > > HA is "has A ..." > > It's a different approach to inheritance, and is sometimes more useful > than the traditional "IS A ..." inheritance. > > So in traditional inheritance you

[tw5] Re: Object Oriented Programming in Tiddlywiki using Pure wikitext

2019-12-14 Thread 'Mark S.' via TiddlyWiki
HA is "has A ..." It's a different approach to inheritance, and is sometimes more useful than the traditional "IS A ..." inheritance. So in traditional inheritance you might have CEO -> IS A -> MANAGER --> IS A --> EMPLOYEE But then what happens if the company has an external consultant?

[tw5] Re: Object Oriented Programming in Tiddlywiki using Pure wikitext

2019-12-14 Thread Mohammad
Wonderful Mark! It works and nice to see how stuff works! I got an idea the parent can have many fields BUT children have not! What is HA? did you coin it? --Mohammad -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this

[tw5] Re: Object Oriented Programming in Tiddlywiki using Pure wikitext

2019-12-14 Thread 'Mark S.' via TiddlyWiki
This is a repost, since the prior post was missing "tiddler B" tiddler A: created: 20191214183217169 modified: 20191214183238380 tags: title: A My A Text {{||B}} tiddler B: created: 20191214183240503 modified: 20191214183314068 stuff: b stuff tags: title: B {{!!stuff}} The invoking

[tw5] Re: [TW5] Editor toolbar scrolls off the page

2019-12-14 Thread Jon
Thanks both and that works well Ton. Regards Jon On Thursday, 12 December 2019 07:54:04 UTC, Jon wrote: > > Hi, > > when in edit mode in my wiki, the toolbar doesn't stay at the top when > using the cursor or scroll bar to get to the bottom of a longer tiddler. > > I seem to remember I had this

[tw5] Re: Object Oriented Programming in Tiddlywiki using Pure wikitext

2019-12-14 Thread Mohammad
Hi Mark, Thanks for example! That is true a tiddler is an object here! In your example I cannot find Tiddler B. --Mohammad On Saturday, December 14, 2019 at 10:11:33 PM UTC+3:30, Mark S. wrote: > > Sure, a little. > > Any tiddler could be thought of as an object, where the fields are >

[tw5] Re: Object Oriented Programming in Tiddlywiki using Pure wikitext

2019-12-14 Thread Mohammad
Object Properties and Methods - The value of an object member can be pretty much anything - The data items referred to as the object's properties. - The functions that allow the object to do something with that data, are referred to as the object's methods. In Tiddlywiki tiddler

[tw5] Re: Object Oriented Programming in Tiddlywiki using Pure wikitext

2019-12-14 Thread 'Mark S.' via TiddlyWiki
Sure, a little. Any tiddler could be thought of as an object, where the fields are properties. In terms of inheritance, there's a design patter for "having a ..." (which I'll call HA). The HA pattern turns out to often be more useful than conventional inheritance. And it can be emulated with

[tw5] Re: Object Oriented Programming in Tiddlywiki using Pure wikitext

2019-12-14 Thread Mohammad
What is an object? An object is a collection of related data and/or functionality (which usually consists of several variables and functions — which are called properties and methods when they are inside objects.) In Tiddlywiki a tiddler is an object

Re: [tw5] Re: Easily open excised (included) tiddler?

2019-12-14 Thread DemoniWaari .
Hmm thanks! I need to play around a little with this! I also realized that I can just have a link in the excision itself a "title" with a link to the excised tiddler but it is not as nice as I'd like it to be. -DW On Fri, Dec 13, 2019 at 9:28 PM 'Mark S.' via TiddlyWiki <

[tw5] Re: [TW5] Editor toolbar scrolls off the page

2019-12-14 Thread Ton Gerner
Hi Jon, My Layout tweaks plugin can do this sticky behaviour although it does not work well in preview mode. To see it in action go to http://tw5toolbar.tiddlyspot.com/ Create over there a new tiddler and scroll up/down. Note the extra toolbar below the tag field (not part of the Layout

[tw5] Re: [TW5] How to remove carriage returns in selected tiddly text?

2019-12-14 Thread Eric Shulman
On Saturday, December 14, 2019 at 9:28:35 AM UTC-8, Chuck R. wrote: > > Thanks Eric but I don't want to keep the literal line breaks in a list > item, I want the whole list item to rewrap to the size of the browser > window. > oh... in that case... here's a quick method for converting newlines

[tw5] Object Oriented Programming in Tiddlywiki using Pure wikitext

2019-12-14 Thread Mohammad
I am practicing a first level simple object oriented programming in Tiddlywiki! It is not like C++ or Java but some of the useful feature of OOP can be implemented and this make scripting even simpler in Tiddlywiki! What do you think? -- You received this message because you are subscribed

[tw5] Re: [TW5] How to remove carriage returns in selected tiddly text?

2019-12-14 Thread Chuck R.
Thanks Eric but I don't want to keep the literal line breaks in a list item, I want the whole list item to rewrap to the size of the browser window. -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop

[tw5] Re: [TW5] How to remove carriage returns in selected tiddly text?

2019-12-14 Thread Eric Shulman
On Saturday, December 14, 2019 at 7:13:56 AM UTC-8, Chuck R. wrote: > > Sometimes when I copy part of an abstract from a web page into a tiddler > there will be embedded carriage returns or line feeds. So I paste the text > into a liste item (prefixed with '# ') and where there is a CRLF the

[tw5] Re: Best of 2019 and wish-list of 2020

2019-12-14 Thread TiddlyTweeter
I wish that *someone else* could do the stuff I need to :-) Looking back at the year ... -- Mohammad's wikis. Good programmer. Nice wikis. Supportive. VERY helpful to both beginners & experts. He did a LOT. Most of it is helpful. Outstanding. -- Mark S. For being a

[tw5] Re: [TW5] Editor toolbar scrolls off the page

2019-12-14 Thread TiddlyTweeter
It IS a problem. AND there are solutions. IF I can find the recent discussion that has a pretty good solution I'll post it. TT On Saturday, 14 December 2019 15:28:07 UTC+1, Jon wrote: > > Is this standard behaviour then? > > Is it not possible to have the editor toolbar stay in place like the

[tw5] Re: Itty.bitty - a cousin to the tiddler?

2019-12-14 Thread TiddlyTweeter
TonyM Part of the issue is "how much render do you need"? In TW we can access the HTML render of a tiddler, a group of tiddlers, or the whole tamale quite easily. The issues relate mostly to what is "inline" and what isn't for specific outputs types. Some outputs (email, GG posts) need

[tw5] Re: Itty.bitty - a cousin to the tiddler?

2019-12-14 Thread TiddlyTweeter
TonyM wrote: > > > ... snapshots are needed > (Rendered HTML) snapshots are remarkably easy in TW. And flexible too. I think the underlying issue is (a) documentation; (b) some recipes about how to do them for different objectives. For instance this GG post

[tw5] Re: Tiddlywiki on a LAN share/container (Was self-host tiddlywiki)?

2019-12-14 Thread Nick
Thanks guys already for thinking with me. In response to TonyM, here is the situation: - I want to start using TW again in some way, preferably with the least extra single device dependent settings/tools/software. - Since TW has already what I need regarding simplicity, ability to run in a

[tw5] [TW5] How to remove carriage returns in selected tiddly text?

2019-12-14 Thread Chuck R.
Using Windows 10, with TW5 on tiddlyspot.com, using Firefox browser, using TW5 language, TW v5.1.19 Sometimes when I copy part of an abstract from a web page into a tiddler there will be embedded carriage returns or line feeds. So I paste the text into a liste item (prefixed with '# ') and

[tw5] Re: [TW5] Editor toolbar scrolls off the page

2019-12-14 Thread Jon
Is this standard behaviour then? Is it not possible to have the editor toolbar stay in place like the 'sticky title' option? Surprised others don't find this a problem. Regards Jon On Thursday, 12 December 2019 07:54:04 UTC, Jon wrote: > > Hi, > > when in edit mode in my wiki, the toolbar

[tw5] Re: Is there a way to detect whether a wiki is launched as permalink ... and modify the startup-behaviour in that case?

2019-12-14 Thread PMario
Hi folks, If you are interested in getting this PR merged, please +1 the comment: https://github.com/Jermolene/TiddlyWiki5/pull/4374#issuecomment-565705984 have fun mario -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from