Questions tagged [tiddlywiki]

TiddlyWiki is a complete wiki application in a single HTML file, which includes user content. TiddlyWiki favors portability over collaborative editing (but implementations vary).

TiddlyWiki is a complete wiki in a single HTML file. It contains the entire informational content, and all the JavaScript, CSS and HTML code to let you view, edit and search it -- without needing a server (though there are ServerSide implementations). It works well as a personal information manager stored on portable media such as a flash drive.

TiddlyWiki is published under a BSD Open Source License. TiddlyWiki 5 is a complete rewrite in progress. The functional goals are the same, but it is not yet fully released and must not be confused with TiddlyWiki "Classic".

Questions about usage (instead of programming and development) should be posted at at Web Apps StackExchange.

73 questions
3
votes
3 answers

electron browser javascript error

I am very new to node, javascript, and electron. I am just trying to write a simple app that opens a local HTML file in a browser window. The local file has some complex embedded javascript (tiddlywiki). Here is some sample code (I did not use local…
3
votes
1 answer

Node.js app takes a long time to start up and connect to? Why?

I have this app I'm developing and I thought of moving the VM I was using to real hardware. My Raspberry Pi 2 came to mind, a quad-core 900mhz ARM v7 with 1GB of ram. This hardware clocks at twice the speed I set my VM to run (a typical low end VPS…
unom
  • 11,292
  • 3
  • 30
  • 47
3
votes
2 answers

Tiddlywiki - Does the wiki app support tiddler versioning, the ability to view older versions of tiddlers?

I was wondering if there is a way to store or view older versions of a tiddler and view, link, refer to them. Maybe there is a plugin to do this?
unom
  • 11,292
  • 3
  • 30
  • 47
3
votes
1 answer

Tiddlywiki5, formatting filter results

Given a filter like [tag[introduction]], how can I modify the formatting of the displayed results, for example like adding white-spaces between each one, or setting up a bullet list out of them? Here for more info about TiddlyWiki filters.
5agado
  • 2,275
  • 2
  • 17
  • 28
2
votes
1 answer

Find tiddlers nested under currentTiddler?

Tiddlywiki 5.1.21 (Local file) I want to {{||transclude}} the following code in different pages. How do I make it automatically find all tiddlers nested under the <> or $(currentTiddler)$? (See [tag[TagNameHere] - 2nd line) This is…
2
votes
1 answer

How can I completely disable / eliminate cookies in TiddlyWiki?

I really need help on this. I'm developing a TiddlyWiki to act as my organization's navigation tool for finding files on our extremely slow and cumbersome internal website/server. Problem: Some of the options TiddlyWiki saves to a cookie apparently…
scooter-dangle
  • 115
  • 3
  • 9
2
votes
0 answers

TiddlyServer on Azure App Services not saving tiddlers and not uploading files

Inspired by the Tutorial for Running Node.js TW5 on Microsoft Azure for Free I'd like to host TiddlyServer on Azure. As a first attempt I followed the instructions in the tutorial and was successful in getting Node.js TW5 working on Azure. I…
Zsolt
  • 43
  • 3
2
votes
0 answers

how to set UserName in TiddlyWiki using cookies

how to set UserName in TiddlyWiki5 using cookies? It's annoying to set UserName everytime after a refersh in Chrome. Thank you. something like $:/status/UserName = document.cookie.split("; UserName=")[1]
Zhilong Jia
  • 2,139
  • 1
  • 19
  • 31
2
votes
1 answer

TiddlyWiki: How does TiddlyWiki save its chages to itself on the local file system?

How does TiddlyWiki save its chages to itself on the local file system? And how does TiddlyWiki keep the each tiddler's change until "Save Changes" is executed? I want to understand the mechanisms. But I cannot figure it out from the source…
Morry
  • 21
  • 3
2
votes
1 answer

Tiddlywiki5 Howto use fields in HTML Code

I'm trying to use tiddlywiki to build a store of parts I ordered online. Each tiddly represents one part and has several fields, such as price or order-number... How can I use Tiddlywiki fields within the Tiddlywiki markup or HTML, eg. how can I…
RangerJo
  • 341
  • 2
  • 6
2
votes
0 answers

Tiddlywiki Custom Field Sort As Number

I'm making a TiddlyWiki where some of the tiddlers contain the following fields: age year month date corresponding to the date of the tiddler in a fictional universe (hence I can't use the existing date fields, the calendar is different). I have…
2
votes
1 answer

How can I set visibility for different groups in TiddlyWiki?

I want to use TiddlyWiki to share knowledge. Before publishing them, I hope only some users can view them, some can edit them, while others can not get any relevant contents. Of course the administrator can assign the privilege level of the raw…
Jannus YU
  • 83
  • 5
2
votes
1 answer

How can I reuse code between Javascript macros and minimize work done within the macros?

I currently have two macros that are part of a (very limited-audience) plugin I'm developing, that both look basically like: (function(){ exports.name = "name"; exports.params = [ {name: "value"} ]; function get(tiddler) { // return some…
Karl Knechtel
  • 51,161
  • 7
  • 77
  • 117
2
votes
1 answer

List of tiddlers with clickable tags formated as links

I want to display a list of tiddlers with a specific tags. Each item/tiddler should be displayed with a list of clickable tags (its tags formatted as hyperlinks). How do I have to modify the following code (which displays the tags as plain text) in…
lith
  • 849
  • 7
  • 22
2
votes
1 answer

In TiddlyWiki 5, how do I prevent the text inside a code block from wrapping?

I'm using TiddlyWiki 5.1.5, and I've been struggling with a particular problem for the last 2 days. I have searched the web using various search terms in Google to try and see if there are any solutions already out there for this. When I declare a…
Adrian
  • 21
  • 2