1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-06-30 17:23:16 +00:00
Commit Graph

6023 Commits

Author SHA1 Message Date
James Welford Anderson
e87dadd61d update docs change var name 2015-01-12 02:55:42 +09:00
Tobias Beer
557d1e9207 updated tw-code macro to use codeblock widget
As per fix....

https://github.com/Jermolene/TiddlyWiki5/pull/1332#issuecomment-69499836

Tested, working.
2015-01-11 18:15:27 +01:00
Jermolene
9e167dc468 Adjust tests for system tiddler linking (#1103) 2015-01-11 16:44:51 +00:00
Jermolene
f16f66cc5b Release note update 2015-01-11 16:32:32 +00:00
Jeremy Ruston
a58e800f24 Merge pull request #1353 from tobibeer/edit-tags-filter-tags-and-titles
edit-tags filtering tags and titles
2015-01-11 16:31:03 +00:00
Jeremy Ruston
b95f78196a Merge pull request #1354 from welford/staticmeta
Add mobile meta data to static templates
2015-01-11 16:27:23 +00:00
Jermolene
c44a349f1e Release note updates 2015-01-11 16:26:32 +00:00
Jeremy Ruston
948756cdde Merge pull request #1341 from tobibeer/autolink-system-tiddlers
autolinks system tiddlers
2015-01-11 16:25:53 +00:00
Jeremy Ruston
77ff5ce86b Merge pull request #1351 from dpdannemiller/patch-1
Update Creating and editing tiddlers.tid
2015-01-11 16:21:52 +00:00
Jeremy Ruston
6a75732c6c Merge pull request #1356 from dpdannemiller/master
Update cla-individual.md
2015-01-11 16:21:36 +00:00
Jermolene
88cf991ec5 Updated release note 2015-01-11 16:19:50 +00:00
David P Dannemiller
df719e3295 Update cla-individual.md
Signed CLA-individual
2015-01-11 10:00:49 -06:00
Jermolene
f1ca5936e3 Move new editions/editiondescription filter docs
Might as well put them in tw5.com because we can’t build it with 5.1.17
any more anyway.
2015-01-11 15:19:50 +00:00
Jermolene
b768dc332b Refactor edition-info handling
Introducing new filters that can be used under Node.js
2015-01-11 15:00:54 +00:00
Jermolene
3bbbda0819 Allow callers of the bootprefix to determine browser status
This gives us finer control under node-webkit of whether the core
thinks we’re running under the browser or node.
2015-01-11 14:21:31 +00:00
Jermolene
0fdfbc482c Add nwsaveas and param attributes to browse widget
These are for TiddlyDesktop, and only work under node-webkit
2015-01-11 14:20:34 +00:00
Tobias Beer
80631b35ea updated NestedLists, renamed to GroupedLists added tw-code macro
Didn't implement the codeblock widget as suggested here...

https://github.com/Jermolene/TiddlyWiki5/pull/1332#discussion_r22762157

...because it would only return `undefined`.
2015-01-11 11:55:22 +01:00
Tobias Beer
b43d4a33d6 simplified regexp
Ok, I think I've got it now. The following matches all...

1. starting with a literal `$:`
2. then any number of character not a whitespace, `<` or  `|`
3. closing with anything that is, again, not a whitespace, `<` or  `|`

Test here...

http://tbdemo.tiddlyspot.com/#Autolink%20System%20Tiddlers
2015-01-11 11:04:02 +01:00
Tobias Beer
9c7936413a edit-tags-filter-tags-and-titles
fixes #1333

extracts the tag-link into a component template...

**$:/core/ui/Components/tag-link**

...so as to split the list in two, having two filters that list tiddlers
in the add-tags popup to...

1. firstly, list matching used tags
2. secondly, list mathcing tiddler titles, thus availabe for tagging

Does away with searching content as it is irrelevant if not distracting
for tagging.

Why two lists? Consider wanting to tag a tiddler with "Filters"...
observe how the result would otherwise be way too far down because
existing tiddler titles get in the way.

Component templates are also desireable elsewhere, e.g. #1318
2015-01-11 01:29:53 +01:00
James Welford Anderson
99499c0403 staticmeta 2015-01-11 09:28:18 +09:00
James Welford Anderson
ddb8daa15a add noclean parameter
deletes directory by default
2015-01-11 06:44:56 +09:00
dpdannemiller
048b50924f Update Creating and editing tiddlers.tid
Typo.
2015-01-10 14:38:37 -06:00
Jermolene
3657bbe920 Switch from addEventListener to onbeforeunload
This makes it possible for TiddlyDesktop to reuse these functions to
handle detecting unsaved changes
2015-01-10 18:08:12 +00:00
Jeremy Ruston
be06cb1019 Merge pull request #1334 from tobibeer/variable-documentation
updates to variable documentation
2015-01-10 15:05:48 +00:00
Jeremy Ruston
9a89fd1753 Merge pull request #1347 from welford/hljsnodejs
highlightjs in nodejs
2015-01-10 13:46:11 +00:00
Jermolene
280909bb68 Fix crash for macros that return undefined
Fixes #1348
2015-01-10 13:36:43 +00:00
James Welford Anderson
f6c8a334e5 tabs/spaces fix 2015-01-10 08:07:32 +09:00
James Welford Anderson
903f7db0b2 update highlight plugin to latest ver.
split the latter half of highlight.pack.js into a separate file which
registers all the languages and exports hljs. this is for nodejs
compatibility and mimics the way the highlightjs module works in nodejs.
2015-01-10 08:02:54 +09:00
Tobias Beer
795a929187 create syslink.js, revert extlink.js
introduces new parser for system links
2015-01-09 23:51:07 +01:00
Jermolene
31824f043e Remove obsolete parameters 2015-01-09 20:45:16 +00:00
Jeremy Ruston
575c11ee95 Merge pull request #1340 from felixhayashi/patch-2
Added missing piece to getFullScreenApis
2015-01-09 20:44:52 +00:00
Tobias Beer
8ba3e8973e autolinks system tiddlers
enhanced extlink parser to cover system tiddler links

of course, only those without spaces in their title

didn't want to open up an extra parser for this as extlink has all the
basics
2015-01-08 21:26:48 +01:00
Felix Küppers
3b2882cb48 Update browser.js 2015-01-08 20:18:41 +01:00
Tobias Beer
391768ae3f updates to variable documentation 2015-01-07 16:18:36 +01:00
Jermolene
978cc2e173 Restore GettingStarted content for Spanish translation 2015-01-07 09:34:52 +00:00
Jermolene
b0314a7e9d Updated Spanish translation from Alfonso Arciniega 2015-01-07 09:34:28 +00:00
Tobias Beer
2ff7e0c6c6 removed superfluous newline 2015-01-06 21:22:47 +01:00
Tobias Beer
3d61dd1aa9 documentation for #1330
heavily modified ListWidget
extracted NestedLists

added IteratorVariables
2015-01-06 21:18:28 +01:00
Jermolene
b68276e219 Fix for serverside rendering 2015-01-06 18:19:55 +00:00
Jeremy Ruston
f920e9e243 Merge pull request #1319 from felixhayashi/patch-1
Update and rename Taskgraph by Felix Kuppers.tid
2015-01-06 14:31:29 +00:00
Jeremy Ruston
dbf945dbcb Merge pull request #1322 from xcazin/fred
fr-FR translation of the TableOfContentsMacro documentation
2015-01-06 14:18:30 +00:00
Jeremy Ruston
39dfcc43d3 Merge pull request #1321 from xcazin/toc
Use the toc-caption() utility macro in Tabbed ToCs as well
2015-01-06 14:18:19 +00:00
Jeremy Ruston
8c2eba03a3 Merge pull request #1323 from aelocson/filter-tiddlers
Further improvements around filter documentation
2015-01-06 14:13:32 +00:00
Jeremy Ruston
ea07b558a3 Merge pull request #1327 from aelocson/railroad-links
Links and transclusions in railroad diagrams
2015-01-06 13:58:27 +00:00
Jermolene
ec829180f4 Coding style clean up for #1330 2015-01-06 13:49:05 +00:00
Jeremy Ruston
b6aa5bf78a Merge pull request #1330 from tobibeer/list-widget-iterator
implements list iterator variables
2015-01-06 13:46:49 +00:00
Tobias Beer
0dd3ad5e38 updated false states — looks more conclusive 2015-01-06 14:40:48 +01:00
Tobias Beer
a1ca53fa9b implements list iterator variables, see #1328
provides <<iterator>>, <<iterator-even>> and <<iterator-last>>
2015-01-06 14:31:20 +01:00
Astrid Elocson
2f42c9fb8d Links and transclusions in railroad diagrams 2015-01-06 01:39:24 +00:00
Astrid Elocson
ed85fdddea Update Introduction to Filters.tid 2015-01-05 20:59:08 +00:00