Re: [tw5] Is there a way to create a tiddler using text that is stored in the clipboard?

2020-12-11 Thread Mohammad
Hi Saq, Great tip. I will submit a ticket. Cheers Mohammad On Saturday, December 12, 2020 at 10:44:10 AM UTC+3:30 saq.i...@gmail.com wrote: > @springer So the dropzone widget which handles the import/paste/drag > actually lets you specify how to interpret the incoming text. > > So

Re: [tw5] Is there a way to create a tiddler using text that is stored in the clipboard?

2020-12-11 Thread Mohammad
Hi Springer, I use the multiple citation export from Google Scholar see: https://uri.libguides.com/google/gscholexport After I finished I download the text file and save as .bib and then drag and drop into my Tiddlywiki with BibtexImporter plugin installed. --Mohammad On Saturday,

Re: [tw5] Is there a way to create a tiddler using text that is stored in the clipboard?

2020-12-11 Thread Saq Imtiaz
@springer So the dropzone widget which handles the import/paste/drag actually lets you specify how to interpret the incoming text. So theoretically something like this should work: <$dropzone deserializer="application/x-bibtex"> paste/drag bibtex here However, it turns out that the

[tw5] Re: Horizontal arrangement?

2020-12-11 Thread strikke...@gmail.com
I have only tried out Beaker browser with tiddlywiki for a couple of days now. Normally I am using Firefox. That lead to me dragging the plugin from a tab in firefox to the Beaker tab with my new tiddlywiki. It seem to work okay. I think it should be possible to export the plugin from the

Re: [tw5] Is there a way to create a tiddler using text that is stored in the clipboard?

2020-12-11 Thread 'Mark S.' via TiddlyWiki
If you edit the import tiddler, you'll see it's actually a JSON structure. So you could possibly use the JsonMangler plugin in conjunction with your own "import" button that would fetch all the values, add your own fields, and create the tiddler. This

[tw5] Re: Horizontal arrangement?

2020-12-11 Thread Krish
Yay...thank you! This is what I was looking for. Funny, I got triggered by Andy's notes too :-) I am using beaker browser to do Tiddly. What is the best way to install this plugin in that case? Same as explained in the link you mentioned? On Friday, December 11, 2020 at 6:24:27 PM UTC-8

[tw5] Re: Horizontal arrangement?

2020-12-11 Thread strikke...@gmail.com
Welcome Krish. Maybe something like https://crazko.github.io/krystal/ On Saturday, December 12, 2020 at 1:01:49 AM UTC+1 Krish wrote: > Newbie here. Sorry if this question has been asked. Can Tiddlers be > arranged not only vertically but also horizontally? As you click on a > particular

[tw5] Newbie with few distinct questions

2020-12-11 Thread Alex DP
Hello to you all. TiddlyWiki is fun to work with. However, the documentation is like a fishing expedition. Someday you catch something and the next you are frustrated. It is hard to understand how come a product as mature as TiddlyWiki does not have a comprehensive and well organised

Re: [tw5] Is there a way to create a tiddler using text that is stored in the clipboard?

2020-12-11 Thread TW Tones
Springer, Some thoughts for you; - When you paste text onto tiddlywiki the import mechaisium will create an "untitled n" tiddler. Go ahead and import it. - You can create a view template on tiddlers beginning untitled that tests the content of the text field for various conditions.

Re: [tw5] Is there a way to create a tiddler using text that is stored in the clipboard?

2020-12-11 Thread springer
I just discovered this thread, while trying to understand related issues. My workflow includes, for example, coming a cross a citation in google scholar, which I can display in bibtex format like so: @book{crary2016inside, title={Inside ethics}, author={Crary, Alice},

[tw5] Horizontal arrangement?

2020-12-11 Thread Krish
Newbie here. Sorry if this question has been asked. Can Tiddlers be arranged not only vertically but also horizontally? As you click on a particular tiddler, it opens a child tiddler on a side horizontal pane. If that can be done, this would be an amazing structure. -- You received this

[tw5] Re: Recording audio and video directly into TiddlyWiki?

2020-12-11 Thread TW Tones
Also, If we can more readily use audio more in tiddlywiki it would be nice to have an action widget that could play such audio according to a desired trigger. Thus buttons and tiddlers could have small audio prompts. It would wise to also have a toggle that can mute all audio for the wiki.

[tw5] Re: Recording audio and video directly into TiddlyWiki?

2020-12-11 Thread TW Tones
Some thoughts on this; - Recording to tiddler, then exporting it to an audio file, such that it can be externalised would be wise, because audio files can grow too big to be included in a single file wiki. - Server implementations may do this differently but we should always

Re: [tw5] Could we have a zip download saver mechanism?

2020-12-11 Thread TW Tones
Folks, With or without the zip features in the core I am keen to see it's use mainstreamed for the following; I am keen to keep the functionality in single file wikis - When wishing to export content to more than one file - This is one of the key values of the zip process, because

[tw5] Re: Recording audio and video directly into TiddlyWiki?

2020-12-11 Thread Altug Ozcelikkale
Hi Si, I am not aware of any current solution but just wanted to chime in and say I would be interested in having something like that too. My impression from the existing TW plugins is that if there is a standalone js library for achieving something, there is generally a good chance that it

[tw5] Re: How to create a new field and translate multiple values with a dictionary?

2020-12-11 Thread Eric Shulman
On Friday, December 11, 2020 at 7:05:32 AM UTC-8 Harry wrote: > when I click the button, nothing changes. I wonder if this is because my > birth_year field also has "na" as a value, I changed all na to 0, but the > button still does not work. > <$button> assign retired > <$list

[tw5] Re: How to create a new field and translate multiple values with a dictionary?

2020-12-11 Thread Harry
Thanks Eric! may I ask you to also look into the question in my first post? ( create a new field using a dictionary tiddler) Also I tried the code you provided, really learned a lot on the compare operator.But when I click the button, nothing changes. I wonder if this is because my birth_year

[tw5] Re: How to create a new field and translate multiple values with a dictionary?

2020-12-11 Thread Ste
Mohammed's tiddly commander thing also allows batch operations. I'll try and dig out the link when I get chance of no one beats me to it. On Friday, 11 December 2020 at 10:54:48 UTC Eric Shulman wrote: > Here's some sample filter logic for each of the conditions you want: > > On Thursday,

Re: [tw5] Could we have a zip download saver mechanism?

2020-12-11 Thread Jeremy Ruston
Hi Mark > I was thinking that the saver would be in the core along with the other > savers, but only displayed as an option if it detected the JSZip plugin. Or > would display with the message "Install JSZip to activate." Yes indeed. In fact, I am interested in the idea of integrating JSZip

[tw5] Re: How to create a new field and translate multiple values with a dictionary?

2020-12-11 Thread Eric Shulman
Here's some sample filter logic for each of the conditions you want: On Thursday, December 10, 2020 at 8:52:42 PM UTC-8 Harry wrote: > I want to filter all entries born before 1948 (in the birth_year field) > who has not died or been purged (in the c_status field), and assign them > value