Jermolene
939f0a9e1d
Version number update for 5.1.12
2016-07-13 11:50:17 +01:00
Jermolene
6e0e43f68c
Update readmes
2016-07-13 11:49:50 +01:00
Jermolene
fe85358bfd
Release dates for 5.1.12
2016-07-13 11:48:50 +01:00
Myeongjin
e938c5f49b
Update Korean translation ( #2495 )
2016-07-13 10:21:27 +01:00
Myeongjin
98b435d550
Fix inconsistencies in language string IDs ( #2494 )
2016-07-13 10:00:21 +01:00
Jermolene
62dac3e7d9
Release note updates
2016-07-12 18:18:28 +01:00
Jermolene
01859dadf5
Update contributors list
2016-07-12 18:10:18 +01:00
Jermolene
b849011d8f
Move stacked view control panel into sidebar
2016-07-12 17:22:33 +01:00
Jermolene
dca9e008ce
Remove single quote from illegal characters in URLs
...
Fixes #2493
2016-07-12 17:22:20 +01:00
Jermolene
1299472c38
Add links to TiddlyWiki European Meetup 2016
2016-07-12 13:16:30 +01:00
Jermolene
edde700138
Tweak colours for link info items
2016-07-12 13:16:30 +01:00
Jermolene
14dc8accd6
Blog plugin: Transclude caption so that wikitext works
2016-07-12 13:16:30 +01:00
Devin Weaver
aaf884b70a
Add this.document to ES2016 documentation ( #2314 )
...
In the sample example for using ES2016 it used the
`$tw.utils.domMaker()`. I just found out that if this code is executed
by Node.js instead of in the browser that it doesn't work because
`window.document` doesn't exist. The expectation is that widgets pass in
the fake `this.document`.
I updated the example to reflect this.
2016-07-11 13:46:22 +01:00
Jermolene
aa58f4fc7d
Introduction edition: Set default drawing colour
2016-07-11 13:27:12 +01:00
Devin Weaver
bf74d13df5
Handle binary files better when saving on Node.JS ( #2420 )
...
* Save binary tiddlers with meta file
The filesystemadaptor plugin was a little simplistic in its
understanding of a binary file. It was using the typeInfo dictionary to
choose what tiddler types were binary (and hence needed a meta file when
saving).
I looked as if it was trying to be smart by looking for the hasMetaFile
*OR* had the encoding of base64. Unfortunately the typeInfo only defined
image/jpeg and so any other base64 encoded tiddler was assumed to be of
type text/vnd.tiddlywiki.
The net effect was only JPG images got a meta file and everything else
were saved as .tid files with base64 encoding. It all still worked but
made working with binary data in a Git repo a bit daunting.
There is enough information in the $tw.config.contentTypeInfo to
determine if a tiddler type is encoded with base64 or not. A better list
is available from boot/boot.js who registers all the types thorough the
registerFileType and marks then with base64 were appropriate.
This commit uses the typeInfo dictionary first for any filesystem
specific overrides, then the contentTypeInfo, and finally defaults to
the typeInfo["text/vnd.tiddlywiki"]. It also eliminates the now
unnecessary override for image/jpeg.
I think this might have been the original intent from commit 10b192e7 .
From my limited testing all files described in boot/boot.js (lines
1832-1856) with an encoding of base64 now save as the original binary
and a meta file. Meaning that when you start the node server and then
drag-n-drop a binary file (i.e. image/png) it will PUT to the server
and then save it on the filesystem as-is allowing the file to be managed
as a binary file and not a text file. (Binary diffs are better and
GitHub supports them as well).
* Prevent duplicate file extensions
A side effects of using the $tw.config.contentFileInfo in the previous
commit is that it will always append a file extension to the tiddler
title when saving. In most cases this is the correct course of action.
However, sometimes that title is already a proper filename with an
extension (for example importing 'foobar.png' would save a file named
'foobar.png.png') which seemed silly.
This commit simply checks to make sure the title does not already end
with the file extension before appending it to the filename. A little
convenience really.
Since IE apparently doesn't have the String endsWith method I took the
liberty to add a helper method to $tw.utils trying to follow the other
polyfill patterns. I figured this was more generic and readable then
attempting to use a one-off solution inline. I got the polyfill code
from MDN.
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/endsWith#Polyfill
Is strEndsWith the best method name?
2016-07-11 11:18:19 +01:00
Brent Maxwell
19e699d330
Added mobile-web-app-capable meta tag for Android Chrome ( #2456 )
...
* Added mobile-web-app-capable meta tag for Android Chrome
* Added "mobile-web-app-capable" meta tag to the rest of the templates.
2016-07-11 11:16:58 +01:00
Bram Chen
59b62f68da
Add Chinese translation for missing plugin info ( #2466 )
2016-07-11 11:16:27 +01:00
Jermolene
8dece4b4f6
Simplify styling of community resources
...
Feedback from @ssokolow
2016-07-10 16:14:58 +01:00
Jermolene
dd1e213b52
Add "Developers" to Reference section
...
Feedback from @ssokolow
2016-07-10 16:14:38 +01:00
Jermolene
1fdc7344ee
Update new release banner picture
2016-07-10 15:37:48 +01:00
Jermolene
4523aece5e
Fix reference to sync mechanism
...
Fixes #2492
2016-07-09 12:28:20 +01:00
Mario Pietsch
1b3819bf70
german language updatges ( #2489 )
2016-07-06 12:51:55 +01:00
Jermolene
1e87c4fb06
Merge branch 'pr/2473'
2016-07-05 18:09:04 +01:00
Jermolene
b2c6c24771
Minor fixes for #2473
2016-07-05 18:06:52 +01:00
Myeongjin
80256b4dab
Update document in tiddlywiki.com edition
...
* Add string '.htm' to 'Saving with TiddlyIE'
* Change external links to match locale with wiki language
* Add instructions for use to 'Saving on Android'
* Change string in 'task'
* Change instructions for use in 'Saving on iPad/iPhone'
* Add newline to 'TiddlyDesktop Releases'
* Remove caption from 'Serving TW5 from Android'
* Change link to external in tiddlers which tagged 'Editions'
* Remove string 'index.html' from 'Some of the things you can do with TiddlyWiki'
* Change link 'TiddlyWiki Groups' to 'Forums' in tiddlers which tagged 'Community'
* Remove CamelCase link 'TiddlyWiki' from tiddlers tagged 'Community'
* Change string 'done' to 'Upgrade' in 'UpgradeMechanism'
* Change buttons to images in 'How to export tiddlers'
* Add images about buttons to tiddlers
* Add quotation mark to text 'edit' in 'Signing the Contributor License Agreement'
* Rename 'UsingSVG' to 'Using SVG'
* Change link 'TypedBlockWikiText' to 'Typed Blocks in WikiText' in 'Using SVG'
* Add tiddler 'Using Stamp'
* Add 'rel="noopener noreferrer"' to external links
* Add description about 'rel="noreferrer"' to 'HTML in WikiText'
* Add link of prerelease version about translators edition, and how to translate on Node.js, in 'Translate TiddlyWiki into your language'
* Change string 'dropdown' to 'tab' in 'Installing a plugin from the plugin library'
* Add download button to 'Empty Edition'
2016-07-06 01:10:51 +09:00
Jermolene
c3d18364c1
Don't use syncadaptors until they are ready
...
Fixes #2453
2016-07-05 11:29:59 +01:00
Jermolene
ff57b4084a
Extend notification handler to accept variables
...
Now we can provide variables to be passed to the rendering of the
notification text
2016-07-03 14:55:41 +01:00
Jermolene
6f8ee52e90
Text-editor: fix placeholder colour in Chrome
2016-07-03 14:53:37 +01:00
Devin Weaver
c0b55b4498
Show tags with contrast colour in edit template ( #2484 )
...
Closes #2483
Copy the same pattern from core/ui/TagTemplate.tid and use it in
core/ui/EditTemplate/tags.tid
2016-07-01 10:40:37 +01:00
Jermolene
e8e9759816
Add more flexible support for static content
...
Passing the static content through the `$:/core/templates/html-tiddler`
template made it impossible to produce output that wasn’t HTML encoded
(eg stylesheets).
2016-06-23 16:29:51 +01:00
Jermolene
3d5885f5a5
Extend view widget with plainwikified format
2016-06-23 16:28:59 +01:00
Jermolene
28730caf7b
Remove missing link for http://dullroar.com/tiddlywiki5.html
2016-06-23 16:24:05 +01:00
Jermolene
4934d3251e
Add note about docs forum
2016-06-23 16:23:52 +01:00
Jermolene
f51f6bf774
Fix URI in "put" save handler
...
We don’t want the location hash
2016-06-23 16:23:36 +01:00
Jermolene
bdd5aa9343
Trap missing tiddlers in savetiddler command
2016-06-23 16:19:00 +01:00
Myeongjin
4764c456ca
Update document in fr-FR edition ( #2474 )
...
* Add field 'fr-title' to 'TaskManagementExample'
* Change button texts to latest version
* Change language English to French of link for empty edition
* Change language English to French of link for document
* Add download button to 'Empty Edition'
* Remove string 'index.html' from 'Full Edition'
* Change external links to match locale with wiki language
* Change string in 'task'
* Add newline to 'TiddlyDesktop Releases'
* Remove string 'index.html' from 'Some of the things you can do with TiddlyWiki'
* Change instructions for use in 'Saving on iPad/iPhone'
* Add YouTube button to 'HelloThere'
* Add 'rel="noopener noreferrer"' to external links
* Remove CamelCase link 'TiddlyWiki' from tiddlers tagged 'Community'
* Change link 'TiddlyWiki Groups' to 'Forums' in 'Articles'
* Change language English to French of caption in tiddlers tagged 'HelloThumbnail'
* Add image to 'HelpingTiddlyWiki'
2016-06-14 21:10:42 +01:00
Andrew J Harrison
f76c7e9560
Refactor $:/core/ui/TagTemplate using sub-tiddlers ( #2477 )
...
The Open All by tag feature should really be in a plugin.
2016-06-14 16:46:40 +01:00
maxthomax
a9c4f113a1
More documentation about named properties ( #2481 )
...
* Made the link between "names" and "properties" explicit (I only figured it out by reading the TextReference documentation)
* Documented named property manipulation through ActionWidgets.
2016-06-09 22:09:16 +01:00
maxthomax
776d42c330
@maxthomax CLA signature ( #2480 )
2016-06-09 22:08:20 +01:00
twMat
77d4b084e6
Update TiddlerFields.tid ( #2479 )
...
Include mention of *caption* field.
2016-06-09 20:32:33 +01:00
Myeongjin
ace20ecf80
Updates and fixed for es-ES edition ( #2475 )
...
* Change button texts to latest version
* Change language English to Spanish of link for empty edition
* Rename 'GettingStarted1' to 'GettingStarted'
* Change language English to Spanish of link for document
* Add download button to 'Empty Edition'
* Change external links to match locale with wiki language
* Change string in 'task'
* Change link to external in tiddlers which tagged 'Editions'
* Remove dot from 'Plugin Editions'
* Remove string 'index.html' from 'Some of the things you can do with TiddlyWiki'
* Add 'rel="noopener noreferrer"' to external links
* Remove CamelCase link 'TiddlyWiki' from 'Examples'
* Change space to dot in 'Tutorials'
* Change language English to Spanish of caption in tiddlers tagged 'HelloThumbnail'
* Change instructions for use in 'Saving on iPad/iPhone'
2016-06-09 16:49:50 +01:00
Richard Smith
b326ba5b2c
Fixed: Titles containing a URL are interpreted as external links ( #2324 )
2016-06-05 20:03:04 +01:00
Myeongjin
423086bd11
Add localisable string for missing plugin info ( #2465 )
2016-05-26 09:06:17 -06:00
Bram Chen
9cb4c5f675
Clean up line endings ( #2462 )
...
Convert line endings to Linux style ("\n") to ensure greater consistency in repository.
2016-05-25 12:11:03 -06:00
Myeongjin
f7d49723ae
Update translations ( #2463 )
2016-05-25 12:10:41 -06:00
Myeongjin
26a252ffd9
Remove unused strings for EditTemplate ( #2461 )
2016-05-24 07:46:59 -06:00
Myeongjin
74db143ee8
Split exporters from miscellaneous language tiddler ( #2460 )
2016-05-23 12:30:57 -06:00
Myeongjin
99c21232ee
Fix referred name of localisable string for recursive transclusion error ( #2458 )
2016-05-22 15:33:02 -06:00
Xavier Cazin
b161f49126
fr-FR translation of additional error strings ( #2459 )
2016-05-22 15:32:37 -06:00
Brent Maxwell
9a936a0442
Signing the CLA ( #2455 )
2016-05-21 13:18:02 -06:00
Myeongjin
5cceca8f55
Update edition informations ( #2457 )
2016-05-21 08:25:33 -06:00
Myeongjin
fb146bc4b8
Fix readme path of jszip ( #2430 )
2016-05-20 07:46:29 -06:00
Myeongjin
2edaa5fbce
Update tiddlywiki.com edition ( #2454 )
...
* Change button texts to latest version
* Move tiddler files to appropriate categorys
2016-05-20 07:46:11 -06:00
Bram Chen
fdbf56379a
Add Chinese translation for error messages ( #2450 )
2016-05-18 18:49:07 +01:00
Jermolene
f846a004b6
Partial fix for copyStyles problem under Chrome
...
There’s still a problem: in Chrome, the styling of the textarea
placeholder isn’t correct.
2016-05-17 15:45:10 -06:00
Jermolene
682b1e7027
Fix sandbox attribute for html parser generated iframes
...
See
https://developer.mozilla.org/en/docs/Web/HTML/Element/iframe#attr-sandb
ox
2016-05-17 15:45:10 -06:00
Myeongjin
a90cb03975
Cleanup editions information ( #2444 )
...
* Replace spaces to tabs from editions information
* Remove theme nighttime from editions information
2016-05-17 22:00:26 +01:00
Myeongjin
34bc8a5507
Update Spanish translation ( #2445 )
...
* Remove snippet messages from miscellaneous
* Update GettingStarted
2016-05-17 22:00:00 +01:00
Myeongjin
e9eb40589d
Add languages for developer documentation edition ( #2446 )
2016-05-17 21:59:27 +01:00
Myeongjin
6388f859d1
Add localisable strings for error ( #2447 )
...
* Add localisable strings for error
* Update tiddler Transclusion Basic Usage in fr-FR
2016-05-17 21:58:47 +01:00
Myeongjin
eb47c6b2c5
Update es-ES edition ( #2442 )
...
* Cleanup es-ES edition
* Cleanup edition infomation
* Remove newline at download-empty-button
* Update system tiddlers for es-ES edition
2016-05-16 12:01:19 -06:00
Myeongjin
2fa98ee642
Update system tiddlers for ko-KR edition ( #2443 )
...
* Change type to TiddlyWiki5 in $:/SiteSubtitle
2016-05-16 12:00:53 -06:00
Xavier Cazin
c5755c5262
fr-FR translations of strings newly made localisable by @araname ( #2440 )
...
* Translation of "count" in fr-FR
* fr-FR translation of Syncer strings
2016-05-14 09:00:25 -06:00
Bram Chen
da9f05b21c
Update Chinese translation ( #2439 )
...
* Refine Simplified Chinese wording
* Add Chinese translation for new localisable strings
* RecursiveTransclusion
* Syncer
2016-05-13 08:39:13 -06:00
Jermolene
5f804ff11d
Remove themetweaks overrides from tw5.com edition
...
The attempt to rename the Vanilla themetweaks to make it look like a
core component was mistaken because it requires us to duplicate a
shadow tiddler within an edition, creating a huge problem for the
future where we have to track all the overridden shadows and make sure
that they are updated manually.
2016-05-12 09:07:50 -06:00
Jeremy Ruston
444bb2f32b
Rename Información_para_traductores.tid to Informacion_para_traductores.tid
...
There are problems on some platforms with Git and accented filename characters
2016-05-12 08:51:00 -06:00
Jeremy Ruston
1b5c806243
Rename Résumé_Builder_Edition.tid to Resume_Builder_Edition.tid
...
There are problems on some platforms with Git and accented filename characters
2016-05-12 08:50:35 -06:00
Jeremy Ruston
5297c887b2
Rename Edición_en_Castellano.tid to Edicion_en_Castellano.tid
...
There are problems on some platforms with Git and accented filename characters
2016-05-12 08:49:56 -06:00
Myeongjin
4c94b44bc4
Add ThemeTweaks to build target ( #2437 )
2016-05-12 08:46:47 -06:00
Paulus
fa61bc53fc
TW5, Spanish Edition ( #2436 )
...
* TW5-es-ES-edition
Spanish edition of TW5.
A full localisation of TiddlyWiki into castillian spanish (es-ES).
* Translation ongoing
* Translation ongoing
* Translation ongoing
* Translation ongoing + TiddlySpot upload
* Translation ongoing
* Translation ongoing + macro fixes
* Translation ongoing
* translation ongoing + macro fixes
* Translation ongoing
* Translation ongoing
* Translation ongoing
* Translation ongoing
* Translation ongoing
* translation ongoing
* translation ongoing
* Translation ongoing
* translation ongoing
* translation ongoing
* translation ongoing
* Arreglo plugin
* Arreglo plugin
* Translation ongoing
* Translation ongoing
* Translation ongoing
* translation ongoing
* Add Spanish edition to TW5.com
* Reverting forced language plugin load.
folder es-ES was provisorily added to the tiddlerStore in order to force the load of the updated language plugin. Finished the translation, and with the updated plugin on place, this folder has no use when the new release comes out.
2016-05-12 08:46:18 -06:00
Myeongjin
8afc1e9354
Add localisable strings ( #2438 )
...
* Add localisable string for recursive transclusion error
* Add localisable string for count
* Add localisable strings for syncer
2016-05-12 08:44:28 -06:00
Myeongjin
9f7e55c317
Add system tiddler for language editions ( #2421 )
2016-05-11 11:41:25 -06:00
Myeongjin
33a569f6ce
Fix problem when single tiddler is outputed ( #2433 )
2016-05-11 11:26:13 -06:00
Myeongjin
7ccddeeab7
Update Korean translation ( #2434 )
2016-05-11 11:24:08 -06:00
Jermolene
c5ac10024b
Text-slicer: Fix issue with missing destination title
2016-05-11 11:13:15 -06:00
nameanyone
2a4a3d9fe9
Replace spaces with margins in editor toolbar ( #2429 ) ( #2435 )
2016-05-11 11:09:54 -06:00
Bram Chen
6ee90880df
Add Chinese translations for Settings/EditorToolbar ( #2431 )
2016-05-10 12:11:27 -06:00
Myeongjin
71284fbc6a
Except specific prefixes from miscellaneous in translators plugin ( #2432 )
2016-05-10 12:07:13 -06:00
Jermolene
7598832e01
Minor fix to preview-closed icon
2016-05-09 14:41:13 -06:00
Jermolene
e54cc7b211
Fix copyStyles() not working in Firefox
...
Yet more browser incompatibilities to weep over…
2016-05-09 14:11:08 -06:00
Jermolene
c8777ea012
Add control panel setting for disabling the new editor toolbar
2016-05-09 10:33:15 -06:00
nameanyone
848a65d840
Remove space character between Cancel and Save buttons ( #2428 )
2016-05-09 09:52:27 -06:00
Xavier Cazin
f7aecd3293
Refinements of ThemeTweaks fr-FR strings ( #2425 )
...
* Refinements in ThemeTweaks fr-FR string
* fr-FR translation for Yes and No
2016-05-08 14:50:34 -06:00
Mario Pietsch
79ee3b5a3b
new german text elements ( #2426 )
...
* new german text elements
* Theme-Tweaks first take.
2016-05-08 14:50:09 -06:00
Myeongjin
faa3653683
Minor update Korean translation of ThemeTweaks ( #2427 )
2016-05-08 14:49:34 -06:00
Jermolene
d1642da2a9
Add link to Stephen Kimmel's plugins
2016-05-05 19:10:20 +01:00
Bram Chen
732c566688
Update Chinese translation ( #2423 )
...
* Add Chinese translation for tweaks of the Vanilla theme
* Add Chinese translation for tweaks of the Vanilla theme
for missing ThemeTweaks.multids
2016-05-05 18:29:19 +01:00
Jermolene
3a3754aebb
Add rel="noopener noreferrer" to external links
...
Background:
https://medium.com/@jitbit/target-blank-the-most-underestimated-vulnerab
ility-ever-96e328301f4c#.hduwdbjlb
2016-05-05 11:49:40 +01:00
Jermolene
8a08eee4bd
Remove duplicate fr-FR edition tiddler
2016-05-05 11:48:44 +01:00
Myeongjin
71111550d6
Add localisable strings for vanilla ( #2422 )
...
* Add localisable strings for vanilla
* Remove system tiddler for theme tweaks from fr-FR edition
2016-05-05 10:11:06 +01:00
Jermolene
854a9a3b75
Refine behaviour of heading formatting toolbar buttons
...
Previous behaviour was that the H1 button on `!!! x` gave us `!! x`
2016-05-05 07:54:32 +01:00
Myeongjin
048d421c06
Add system tiddlers of document for ko-KR edition ( #2419 )
2016-05-03 16:44:33 +01:00
Xavier Cazin
398e9b2d08
update tiddlers from fr-FR edition after their updated shadow counterparts ( #2404 )
2016-05-02 11:24:48 +01:00
Xavier Cazin
ea8b81935a
Improvements to Android and fr-FR docs ( #2418 )
...
* A third way to use TW5 on Android
small improvements to Android/Node.js doc tiddlers
* fr-FR translation for the link button
* replace _ with space in file name
2016-05-02 11:08:27 +01:00
Jermolene
e3415796b2
Fix problem with lazy loading images
...
Fixes @2263
Thanks @buggyj
2016-05-02 10:29:26 +01:00
Jermolene
a11a4de6af
Fix problem with editing missing tiddlers
...
Fixes #2412
2016-05-02 10:12:08 +01:00
Myeongjin
5f68f411c8
Replace '_' to space in tw5.com edition ( #2417 )
...
* Move tiddler 'thumbnail Macro (Examples)' to directory 'macros/examples'
* Replace '_' to space in tw5.com edition
2016-05-02 08:34:30 +01:00
Jermolene
3bce7b3bc0
Update release note
2016-05-02 08:24:54 +01:00
Jermolene
54bf6c8a93
Fix table of contents issue with tiddler titles containing single quotes
2016-05-02 08:20:04 +01:00
Jermolene
cdeca55d45
Fix another IE11 problem
...
IE11 doesn’t support String.prototype.repeat
2016-05-01 18:17:47 +01:00
Jermolene
01eb45946c
Fix problem with IE11
...
It turns out that IE11 has a horrible bug whereby setting the
placeholder attribute before setting the text will trigger an input
event:
https://social.msdn.microsoft.com/Forums/ie/en-US/ae4832b0-8eee-4729-b93
3-a9977ea1b583/internet-explorer-input-event-get-fired-when-settingunset
ting-the-placeholder?forum=iewebdevelopment
2016-05-01 18:17:28 +01:00
Jermolene
037cfb7cc7
Fix problem with modals in zoomin storyview
2016-05-01 15:41:36 +01:00
Jermolene
785ad664de
Add a link to @malgam's sandbox
2016-05-01 14:19:46 +01:00
Jermolene
c5a1e105d5
Remove quotes from bad title character warning
...
Experience shows that both double and single quotes are OK
2016-05-01 13:56:41 +01:00
Jermolene
6dce8d9763
Remove final vestiges of undo/redo buttons
2016-05-01 13:54:16 +01:00
Jermolene
72fb1e22ed
Remove undo/redo formatting toolbar buttons
...
There have been long standing problems with the buttons not working in
Firefox, and now a [further
problem](https://groups.google.com/d/msg/tiddlywiki/GlsruQyPOag/BAhnI2mt
BgAJ) has come to light, and been similarly hard to resolve.
On balance, I’ve decided to remove the undo/redo buttons from the
toolbar (the ctrl/cmd-Z shortcut is still operational), thus avoiding
the problems, and saving some space in the core.
2016-05-01 13:51:45 +01:00
Xavier Cazin
727b7b1ed0
A third way to use TW5 on Android ( #2415 )
2016-04-30 21:47:09 +01:00
Jermolene
1515fd42ed
Fix text editor for Internet Explorer
...
By switching from text events to execCommand.
2016-04-30 14:36:53 +01:00
Jermolene
3bd5d49933
Increase editor toolbar button group spacing
2016-04-30 12:35:32 +01:00
Bram Chen
70c65f6c0d
Add Chinese translation for "link" editor toolbar button ( #2413 )
2016-04-30 12:24:06 +01:00
Myeongjin
65f3d09501
Update Korean translation ( #2414 )
2016-04-30 12:01:59 +01:00
Jermolene
752a126cc4
Fix premature commit of link button
...
Whoops
2016-04-29 19:19:18 +01:00
Jermolene
7224fea961
Introduce "link" editor toolbar button
...
As proposed by Alex Hough
2016-04-29 18:54:44 +01:00
Jermolene
b1fb1070ef
Enhance linkcatcher widget to use actions attribute
2016-04-29 18:54:44 +01:00
Jermolene
3c20f2396e
Add support for assigning action widgets via the actions attribute
...
This is quite a big change: a new way to invoke action widgets.
The advantage is that it solves #2217 and #1564 , a long running problem
that prevented us from adding action widgets to widgets that modify the
store.
This commit adds the new technique for the button and keyboard widgets,
but also extends the select widget to trigger action widgets for the
first time
2016-04-29 18:54:44 +01:00
Jermolene
b53f4e9b20
Remove another extraneous mode field
...
Missed off 987c876cfaa8f0d8050c687c26adee250fa0062d
2016-04-29 18:54:44 +01:00
Jermolene
5086722ee2
Fix TiddlyChrome URI
2016-04-29 18:54:44 +01:00
Jermolene
3156d3d7ce
Add spacers to formatting toolbar
2016-04-29 18:54:44 +01:00
Jermolene
39f0c19c9a
Allow "yes" as a synonym of "true"
...
For consistency
2016-04-29 18:54:44 +01:00
Jermolene
f470c54fc5
Convert spaces to tabs
2016-04-29 18:54:44 +01:00
Jermolene
7d0ac4f86e
Remove extraneous "mode" field from snippet tiddlers
2016-04-29 18:54:44 +01:00
Myeongjin
a73fc6aa0b
Update fr-FR translation ( #2411 )
...
* Update fr-FR translation for links in command help
* Remove unnecessary spaces
2016-04-29 09:02:27 +01:00
Myeongjin
52e1b1175b
Minor update Korean translation ( #2410 )
2016-04-29 08:16:20 +01:00
Jermolene
0e713bbf8c
Release note update
2016-04-27 17:25:38 +01:00
nameanyone
19ee5bcf4e
"days" filter: yesterday and tomorrow edge cases ( #2364 )
...
* Change the negation logic to address an edge case
Make it possible to get an interval ending with yesterday or starting with tomorrow.
* "days" filter: adjust documentation
2016-04-27 17:23:46 +01:00
Myeongjin
c33e83f595
Cleanup language editions ( #2408 )
...
* Cleanup language editions infomation
* Move system tiddler language in directory system
* Remove newline at download-empty-button
2016-04-27 16:48:20 +01:00
Myeongjin
4a12d0e71b
Add ko-KR Server edition ( #2405 )
2016-04-27 08:46:09 +01:00
Myeongjin
fce19371fe
Update Japanese (Japan) edition ( #2406 )
2016-04-27 08:35:51 +01:00
Myeongjin
bb1c660a51
Cleanup language editions ( #2396 )
...
* Fix problem in GettingStarted and SiteTitle
* Remove snippets message in miscellaneous
2016-04-27 07:58:50 +01:00
Paulus
b7f322a1d4
es-ES language plugin updated ( #2401 )
...
Translation updated to version 5.1.12:
-Newly added strings translated (text editor)
-Fixes typos and inconsistence of the prior translation
2016-04-26 07:56:19 +01:00
Jermolene
6f6cdc1bd0
Fix problem with formatting toolbar dropdowns
...
Cruft left over from the last big refactoring…
2016-04-26 07:43:13 +01:00
Jermolene
0151363b74
House style for tw5.com is to use -ise not -ize
2016-04-26 07:42:52 +01:00
nome
1ae428e323
Make tiddler file paths configurable ( #2379 )
...
When saving new tiddlers on node.js, allow the user to override the path of the
generated .tid file. This is done by creating a tiddler
$:/config/FileSystemPaths which contains one or more filter expressions, one
per line. These filters are applied in turn to the tiddler to be saved, and
the first output produced is taken as a logical path relative to the wiki's
tiddlers directory. Any occurences of "/" in the logical path are replaced with
the platform's path separator, the extension ".tid" is appended, illegal
characters are replaced by "_" and the path is disambiguated (if necessary) in
order to arrive at the final tiddler file path. If none of the filters matches,
or the configuration tiddler does not exist, fall back to the previous file
naming scheme (i.e. replacing "/" by "_").
This implies we will now, for tiddlers matching the user-specified filters,
create directory trees below the tiddlers directory. In order to avoid
cluttering it with empty directory trees when renaming or removing tiddlers, any
directories that become empty by deleting a tiddler file are removed
(recursively).
Benefits of this configuration option include the ability to organize git
repositories of TiddlyWikis running on node.js, ability to replace characters
that cause trouble with particular operating systems or workflows (e.g. '$' on
unix) and the ability to replicate tiddler "paths" in the filesystem (by
including a filter like "[!has[draft.of]]") without forcing such a (potentially
problematic) change on all users.
2016-04-25 08:36:32 +01:00
Andreas Hahn
d1f2c399ce
Add missing widget message documentation ( #2399 )
...
* Add documentation to various widget messages.
The following widget messages now have documentation:
* tm-edit-bitmap-operation
* tm-edit-text-operation
* tm-fold-all-tiddlers
* tm-fold-other-tiddlers
* tm-fold-tiddler
* tm-unfold-all-tiddlers
* tm-load-plugin-from-library
* tm-load-plugin-library
* tm-open-window
* tm-scroll
* Fixed alignment error.
2016-04-25 08:28:42 +01:00
Jermolene
387198d9d9
Add instructions for adding a table of contents tab to the sidebar
2016-04-24 16:15:11 +01:00
Xavier Cazin
4d9c228df1
Minor but long overdue improvements to fr-FR translation ( #2394 )
...
* Finally get the word "language" translated in fr
* fr-FR: More verbal consistency between captions and hints
* fr-FR mistranslation of "Tiddler Fields"
2016-04-24 16:04:44 +01:00
Jermolene
556e54a0f6
Add link to @stevenleeg's twproxy
2016-04-24 16:03:46 +01:00
Bram Chen
eddefe3a58
Fix docs example ( #2393 )
...
Remove redundant double quotes
2016-04-24 15:53:43 +01:00
Jermolene
360ad9a1cc
Updated Dutch translation from @gernert
2016-04-24 13:43:07 +01:00
Jermolene
51798414c0
Add Danish to release note
2016-04-24 13:39:03 +01:00
Jermolene
d0bbf3d8d1
Updated Danish translation from Birthe C
2016-04-24 13:38:42 +01:00
Jermolene
ec59316ca5
Revert "Updated Dutch translation from @gernert"
...
This reverts commit b2143f91d9 .
2016-04-24 13:36:18 +01:00
Jermolene
b2143f91d9
Updated Dutch translation from @gernert
2016-04-24 13:35:34 +01:00
Jermolene
0bd79694f2
Change the keyboard shortcut for the preview pane
...
ctrl-P clashes with the system default for “Print” on Windows (and
Linux?)
2016-04-24 13:31:04 +01:00
Evolena
2b1d38d3ca
Add a subfilter parameter to image-picker macro ( #2391 )
...
* Documentation and examples
* Fix the tag of image- and colour-picker macros in documentation
2016-04-24 13:27:32 +01:00
Jermolene
fe63694a20
Add link to @roma0104's Sublime Text TW extension
2016-04-24 13:20:03 +01:00
Myeongjin
86f99d1f9e
Add Korean (Korea Republic) Edition ( #2392 )
...
empty only
2016-04-24 13:11:25 +01:00
Jermolene
b7530bac44
Ensure iframe textarea styles are updated
...
Previously, changing the palette didn’t update the textarea styles.
2016-04-24 12:30:44 +01:00
Jermolene
f5f92072e1
Add @sukima's personal site example
2016-04-24 12:22:34 +01:00
Jermolene
ba8c4dca98
Fix minor glitch with the file icon
2016-04-24 12:08:42 +01:00
Bram Chen
02da449525
Release note update ( #2389 )
2016-04-24 09:40:30 +01:00
Myeongjin
a2fdfe8ad4
Update Korean translation ( #2390 )
2016-04-24 09:39:50 +01:00
Jermolene
3e9cc3e8fd
Add a warning for undo/redo buttons in Firefox
2016-04-24 09:32:06 +01:00
Jermolene
3b49cd17fc
Fixes from @Infurnoape
2016-04-23 17:23:14 +01:00
Jermolene
d58be59586
Docs update
2016-04-23 17:20:57 +01:00
Eric Drechsel
69f7119b25
Add gettingstarted doc for webdav ( #2291 )
2016-04-23 08:51:52 +01:00
Jermolene
db86586219
Switch tw5.com to fluid-fixed layout
2016-04-22 17:37:45 +01:00
Jermolene
df9f94900a
Release note update
2016-04-22 17:37:35 +01:00
Paulus
dcffd93a28
Update docs for GitHub ribbon plugin ( #2384 )
...
* Outdated source of Corner ribbon plugin
No sources provided for [[$:/plugins/tiddlywiki/github-fork-ribbon]].
Edition aims to its current source in the plugin library and updates the plugin name
* CamelCase link override for visual clarity
* typo corrected
2016-04-22 16:06:19 +01:00
Jermolene
5b11399793
Update KaTeX plugin to v0.6.0
2016-04-22 15:50:23 +01:00
Jermolene
147ce5803c
Add link for TiddlyChrome
2016-04-22 15:37:55 +01:00
twMat
1069fc2e45
Docs: Correct faulty tab reference ( #2385 )
2016-04-22 11:25:11 +01:00
Jermolene
44e9634164
Update codemirror and markdown plugins from #2315
2016-04-22 08:41:31 +01:00
Jermolene
f68bdce7a8
Add the new toolbar icons back
2016-04-22 08:39:08 +01:00
Jeremy Ruston
2adf09129d
Introduce text editor toolbar ( #2315 )
...
Tada!
2016-04-22 08:36:29 +01:00
Jermolene
4dd701c2dd
Fix problem with missing link logic
...
See
https://github.com/Jermolene/TiddlyWiki5/commit/7908e10488cc4280dd8e4f40
5bcb09f2fb6d3524#commitcomment-17174321
2016-04-20 11:57:38 +01:00
Mario Pietsch
3463a576f2
DE translation for new core texts ( #2383 )
...
* Translation for new core texts
* fix some typos
* tiddlyspot settings
2016-04-20 11:47:36 +01:00
Jermolene
a38d133d6e
Move text editor images into master
...
There’s currently 249 changed files in the text-editor branch, which
exceeds github.com’s ability to display the diffs. So we’ll put the
images straight into master to get the diffs down by 32 files.
2016-04-19 08:30:04 +01:00
Jermolene
1e0d019610
Don't repeatedly lazy load the same tiddler
...
If we don’t get a “text” field back the first time we shouldn’t keep
asking for it.
2016-04-18 14:50:13 +01:00
Myeongjin
e6e346ea29
change string 'Close' to lowercase for dialog ( #2366 )
2016-04-14 23:03:14 +01:00
Devin Weaver
bea6d741e3
Reword makedatauri.js description ( #2373 )
...
Closes issue #2372
2016-04-14 23:02:40 +01:00
Paulus
93b62bfa8c
CLA signature for @PauDeLuca ( #2375 )
2016-04-14 23:02:25 +01:00
Myeongjin
5738543dd3
Update korean translation for Settings/MissingLinks
2016-04-06 08:43:00 +01:00
Bram Chen
b2cfd172f8
Add zh translations for Settings/MissingLinks
2016-04-05 09:02:29 +01:00
Devin Weaver
de3adf905a
Fix word wrapping in code blocks
...
* Fix word wrapping in code blocks
When you create a code block with the three back ticks any thing that
was wider then the pre block would be word wrapped. That causes code
snippets to look odd.
* Make code wrapping a theme tweek option
2016-04-04 17:27:55 +01:00
nome
811aa23010
Include tiddler line number in SyntaxError output
...
While JavaScript runtime errors include the line number within the
module tiddler where the error occured, syntax errors do not, leaving
the user guessing where the error is hiding. Attempt to remedy this, as
well as the various platforms permit.
2016-04-04 12:46:48 +01:00
nome
9e01a30dc7
Small documentation fixes
...
* Copy example from ActionSendMessageWidget to tm-new-tiddler
It is counter-intuitive that the ActionSendMessageWidget documentation has more information on tm-new-tiddler than the more specific one.
* Fix link in reference docs
* Fix some typos
2016-04-04 12:45:31 +01:00
Devin Weaver
7908e10488
Add option to disable linking to missing tiddlers
...
* Add LinkWidget option to ignore missing tiddlers
* Add missing link option to settings
2016-04-04 12:43:40 +01:00
nome
37823f64e9
Add build targets to server edition
...
Define for the server edition the same build targets as for the empty
edition, but using the correct template so that the "offline" version
(target "index") works correctly when accessed via HTTP. With this,
`tiddlywiki --build index` is equivalent to the save button.
While the process of setting up TiddlyWiki on Node.js is well documented
and easy enough, the options for publishing such a wiki to an offline
version (scriptably, e.g. for push-to-deploy setups) are decidedly
non-obvious. With the added build steps, the user only needs to know
three simple commands:
tiddlywiki --init server
tiddlywiki --server
tiddlywiki --build index
and optionally
tiddlywiki --build static
2016-04-03 20:22:11 +01:00
nome
0dd3e9c144
CLA Signature for @nome
2016-04-03 20:21:01 +01:00
Jeremy Ruston
2c6b2ec2c6
Merge pull request #2355 from BramChen/zh
...
Update Chinese translations
2016-04-01 11:55:02 +01:00
Jeremy Ruston
d8c96af1c8
Merge pull request #2356 from araname/master
...
Update Korean translation
2016-04-01 11:40:05 +01:00
Myeongjin
08b949ac85
update korean translation of Title/BadCharacterWarning
2016-04-01 19:16:12 +09:00
Bram Chen
05ca3a8b5e
Add more zh translations for plugin library
2016-04-01 08:53:34 +08:00
Jeremy Ruston
f208da134e
Merge pull request #2354 from araname/master
...
Add localisable strings for plugin library
2016-03-31 16:12:52 +01:00
Myeongjin
fb381b452a
add localisable strings for plugin library
...
'define lingo-base()' is don't need in dialog 'get more plugins'.
2016-03-31 23:26:27 +09:00
Jeremy Ruston
9963bc94e5
Merge pull request #2353 from BramChen/patch-1
...
Fix pattern for bad characters when editing tiddler titles
2016-03-31 14:55:27 +01:00
Jeremy Ruston
1d8687e05a
Merge pull request #2352 from BramChen/zh
...
Update Chinese translations
2016-03-31 14:54:44 +01:00
Bram Chen
148fd8d15b
Fix pattern for bad characters when editing tiddler titles
...
It looks like missing a character ' in pattern
2016-03-31 20:40:58 +08:00
Bram Chen
c300ae001c
Add Chinese translations of Title/BadCharacterWarning
2016-03-31 19:53:41 +08:00
Jermolene
12661f5cda
Add warning for bad characters when editing tiddler titles
...
Fixes #2351
2016-03-31 11:14:18 +01:00
Jeremy Ruston
5e720c0d57
Merge pull request #2349 from BramChen/zh
...
Update Chinese trannslations
2016-03-29 08:14:47 +01:00
Bram Chen
0edb2f1ed8
Add zh trannslations of Plugins/NoInformation
2016-03-29 10:33:05 +08:00
Jeremy Ruston
dd27fee15e
Merge pull request #2348 from araname/master
...
Add localisable strings
2016-03-28 16:34:43 +01:00
Myeongjin
c9b0e15201
add localisable strings for dialog
2016-03-28 16:24:55 +09:00
Myeongjin
034796bee6
add localisable string for plugin configure
2016-03-28 16:24:47 +09:00
Jeremy Ruston
ec8cde981f
Merge pull request #2342 from araname/master
...
Update Korean translation
2016-03-26 08:34:18 +00:00
Myeongjin
c407327e48
update korean translation for the extended edit preview
2016-03-26 15:16:42 +09:00
Jermolene
fdbc62dc11
Fix story river width with non-zero storyleft
...
Fixes #1640
2016-03-22 12:05:18 +00:00
Jermolene
276074b6cf
Fix problem with scrollable widget in static rendering
...
Fixes #1910
2016-03-21 21:59:57 +00:00
Jeremy Ruston
528e10c11f
Merge pull request #2333 from kixam/master
...
update information about datepicker
2016-03-20 14:57:51 +00:00
Aurélien Correia
0ca66e5dd5
update information about datepicker
2016-03-20 15:48:43 +01:00
Jermolene
086506012d
Remove extraneous macro definition
2016-03-07 20:11:28 +00:00
Jermolene
bd7f1fda61
Update plugin library version
2016-03-07 20:11:28 +00:00
Jermolene
641ac7f6a0
Release note update
2016-03-07 20:11:28 +00:00
Jeremy Ruston
3fadee841a
Merge pull request #2313 from webninjasi/patch-1
...
Fix invalid header in upload plugin
2016-03-04 09:42:41 +00:00
webninjasi
ed802d2933
Signing the CLA
2016-03-03 21:43:18 +02:00
webninjasi
47d518d6d4
Fix invalid header in upload plugin
2016-03-03 19:08:24 +02:00
Jermolene
51db3e9e75
Text-slicer: style edit and view templates
2016-02-29 17:47:46 +00:00
Jermolene
6e4222e5e8
Text-slicer: tweak interactive document display
...
* Add icon for view template segment
* Muted background colour for view template segment
* Include links to parent tiddlers in the view template segment
* Fix logic for hiding/showing documents/headings (“open”/“close” were
transposed)
2016-02-28 20:18:01 +00:00
Jermolene
e2d0b70fad
Text-slicer: Add an advanced search filter for orphans
...
Locates tiddlers marked as document components that are not linked into
any active document
2016-02-28 19:56:24 +00:00
Jermolene
4041009d43
Text-slicer: standardise titles of state tiddlers
...
As noted by @Evolena, it’s cleaner to use the standard prefix for the
UI state tiddlers
2016-02-27 14:40:14 +00:00
Jeremy Ruston
abbb3c15e0
Merge pull request #2308 from FND/podcast
...
Add podcast link
2016-02-27 12:32:13 +00:00
FND
b2ea4ace23
Sign CLA
2016-02-27 13:31:35 +01:00
Jermolene
7498989ebb
Text-slicer: better support for specifying the output title
...
Can be specified directly, or taken from a field of the tiddler being
sliced, falling back to a default.
2016-02-27 12:25:48 +00:00
Jermolene
cd0a0aa1fb
Add YouTube banner to HelloThere
2016-02-27 12:25:04 +00:00
FND
d0160d5915
Add podcast link
2016-02-27 10:50:51 +01:00
Jermolene
8d4341a02d
Mend positioning of vertical sidebar tabs
...
Fixes #2305
2016-02-22 12:37:52 +01:00
Jermolene
5f6a53eae1
Fix typo from 4a03dcab20
2016-02-20 21:44:52 +00:00
Jeremy Ruston
35fe5a5fc3
Merge pull request #2294 from mklauber/patch-2
...
Update has.js for improvement to #2274
2016-02-20 21:43:58 +00:00
Matt Lauber
899c5cb835
Update has.js
2016-02-18 11:51:29 -05:00
Jermolene
4a03dcab20
Fix problem with double-byte Unicode entities
...
Entities such as `👷` were broken because
`String.fromCharCode()` is not fully Unicode aware. The fix is to use
`String.fromCodePoint()` where available.
Noted by @ericshulman
2016-02-18 13:49:09 +00:00
Jeremy Ruston
9158302475
Merge pull request #2290 from edrex/putsaver_probe
...
putSaver: probe for server support on startup
2016-02-16 20:29:43 +00:00
Eric Drechsel
60d585f7d5
putSaver: probe for server support on startup
...
save fails until probe succeeds,
allowing other saver methods to take over
Follow up to #2288 , #2277
2016-02-16 10:53:15 -08:00
Jeremy Ruston
1f4df88960
Merge pull request #2284 from mklauber/patch-2
...
Fix for #2274
2016-02-16 16:37:46 +00:00
Jermolene
9abe85f60b
Minor tweaks to #2275
...
* Cleaner handling of “updated” attribute
* Fixed handling of note attributes, which now get imported as custom
fields
* Clearer handling of ISO dates
2016-02-16 16:35:28 +00:00
Jeremy Ruston
7ea3ef7062
Merge pull request #2275 from Marxsal/patch-9
...
ENEX import - Apply modified (updated) dates
2016-02-16 16:24:45 +00:00
Matt Lauber
5a14b37686
Update to check if empty sting OR (is array AND is empty)
2016-02-16 08:08:09 -05:00
Jeremy Ruston
12f208b327
Merge pull request #2288 from edrex/put_saver_followup
...
putSaver: return null on save success, TODOs
2016-02-16 08:26:32 +00:00
Jeremy Ruston
ffa1f5efb6
Merge pull request #2289 from BramChen/zh
...
Update zh-Hans and zh-Hant
2016-02-16 08:23:49 +00:00
Bram Chen
bde74dbd4c
Add chinese transaltions for the extended edit preview
...
* Body/Preview/Type
* Body/Preview/Type/Output
2016-02-16 12:15:18 +08:00
Eric Drechsel
dd43759ecc
putSaver: return null on save success, TODOs
2016-02-15 15:20:30 -08:00
Jermolene
f8552ac48d
Readme for internals plugin
2016-02-15 22:43:15 +00:00
Jeremy Ruston
2203c2b38a
Merge pull request #2277 from edrex/put_saver
...
add a simple put saver, for saving to a webdav or REST server
2016-02-15 22:00:46 +00:00
Jeremy Ruston
f60344a0ed
Merge pull request #2286 from edrex/patch-1
...
sign CLA @edrex
2016-02-15 22:00:25 +00:00
Eric Drechsel
85b02d6730
sign CLA @edrex
2016-02-15 13:31:23 -08:00
Jeremy Ruston
74d933a254
Merge pull request #2281 from rcrath/patch-1
...
Update cla-individual.md
2016-02-15 20:22:47 +00:00
Jermolene
5ba7b30891
Update system tags docs
2016-02-15 17:43:54 +00:00
Matt Lauber
22145e2e51
Fix for #2274
...
List fields (such as tags) when evaluated to produce tiddlers result in empty arrays. Using the exact not equals, an empty array is not the same as an empty string. By using equivelent not equals, we state that the field is either != "" or anything that can be coerced to "". Which, based on https://dorey.github.io/JavaScript-Equality-Table/ is `false` `0` `[]` or `[[]]`` neither `false` nor `0` can be set as a tiddler field as both will end up being quoted (`"false"`, `"0"`) so this should work.
2016-02-15 08:31:23 -05:00
Jermolene
e4fa7d579a
Added raw html preview to internals plugin
2016-02-15 12:02:46 +00:00
Jermolene
b0aed107d3
Fix internals plugin tiddler titles
2016-02-15 12:02:37 +00:00
Jermolene
3ae0f3666a
Add Internals plugin
...
Adds a live preview of the raw JSON of the parse tree or widget tree
generated from a tiddler.
2016-02-15 11:38:55 +00:00
Jermolene
7daebba46b
Make edit preview pane extensible
...
Additional preview panes are tagged “$:/tags/EditPreview“. A dropdown
is shown if there is more than one edit preview loaded.
2016-02-15 11:38:21 +00:00
Jermolene
df3e39d97a
Update wikiparser file comment
2016-02-15 11:33:47 +00:00
Rich Rath
f71dd4e50d
Update cla-individual.md
2016-02-12 18:02:33 -10:00
Jermolene
89031e5b9c
Add missing URL to release note
2016-02-11 09:48:54 +00:00
Jeremy Ruston
dd9fc6a51e
Merge pull request #2265 from felixhayashi/fix/icon
...
fixed malformatted svg
2016-02-11 09:48:43 +00:00
Jeremy Ruston
459802cc86
Merge pull request #2237 from gernert/patch-7
...
Update SystemTags.tid
2016-02-11 09:47:33 +00:00
Jeremy Ruston
954db956e0
Merge pull request #2235 from araname/master
...
fix problem in GettingStarted and SiteTitle, and update Korean translation
2016-02-11 09:47:20 +00:00
Jeremy Ruston
a19b4eeeed
Merge pull request #2219 from sukima/feature/babel-plugins
...
Using ES2016 for Writing Plugins HowTo Documentation
2016-02-11 09:36:35 +00:00
Jeremy Ruston
c61364f46a
Merge pull request #2214 from sukima/feature/editing-with-vim
...
Add Editing Tiddlers with Vim
2016-02-11 09:36:11 +00:00
Jeremy Ruston
581634d282
Merge pull request #2164 from pmario/issue-2158
...
Issue 2158 - check for new draft fields and warn if cancel is clicked
2016-02-11 09:31:58 +00:00
Jermolene
5ba4730fd7
Release note update for 5.1.12
2016-02-09 21:18:52 +00:00
Eric Drechsel
f8565443d7
add a simple put saver, for saving to a webdav or REST server
2016-02-08 13:40:10 -08:00
Marxsal
eabf187a7f
Update modified (updated) dates
...
Without modified dates, new imports do not appear in recent file list. The equivalent of modified dates in ENEX is the 'updated' tag, with a date format similar to that of TW with the exception that the date format consists of a date stamp, a letter T, and a time stamp followed by Z for UTC presumably. There is no millisecond indicator. Not all ENEX notes have an update tag. The solution here is to apply creation date by default and then apply the update date if it is available. Dates are converted by stripping out Z and T and appending '000'.
2016-02-07 10:59:57 -08:00
Myeongjin
5a085ff105
update korean translation
2016-02-07 15:07:32 +09:00
Myeongjin
c05c8e8878
fix problem in GettingStarted and SiteTitle
2016-02-07 15:06:56 +09:00
Myeongjin
09d4d0e3e3
Merge remote-tracking branch 'refs/remotes/Jermolene/master'
2016-02-07 15:04:53 +09:00
Jermolene
5238b4d503
Evernote plugin: fix crash with missing fields
2016-02-05 23:05:24 +00:00
Jermolene
b3e0e134ab
Include xmldom plugin in full edition
...
Required by text-slicer
2016-02-05 19:48:50 +00:00
Jermolene
5b925ed868
Further tweaks to #2272
...
@sukima the main issue with the previous code was that it incorrectly
used comma to delimit tags. We actually use spaces, and double square
brackets to delimit tags containing spaces. Better is to leave the tags
field as an array; the core will serialise it correctly as required.
I also made some minor consistency tweaks.
2016-02-05 19:48:37 +00:00
Jermolene
6aac2b00c9
Correct typo in #2272
2016-02-05 19:03:58 +00:00
Jeremy Ruston
d1d41fb9fc
Merge pull request #2272 from sukima/feature/issue-2268-evernote-importer
...
Add some features to the EverNote import plugin
2016-02-05 18:56:38 +00:00
Jermolene
fddf18b920
Add xmldom plugin to text-slicer edition
2016-02-05 18:54:32 +00:00
Jermolene
8f5eaf5194
Release note for 5.1.12
2016-02-05 18:46:11 +00:00
Jermolene
46800d790a
Text-slicer: Add list-children filter operator
...
Again, I needed this for the day job. @felixhayashi I think you
submitted a pull request for something similar, would this version meet
your needs?
2016-02-05 18:46:01 +00:00
Jermolene
adf45b3468
Add a bulk delete button
...
I needed this in my day job, but think we need to do better on bulk
operations
2016-02-05 18:44:43 +00:00
Jermolene
8bc0633b6f
Refactor AdvancedSearch/Filter to make buttons extensible
2016-02-05 18:43:52 +00:00
Jermolene
147dc128bc
Add link to Mark Gibb's NetworkWorld article
2016-02-05 18:42:54 +00:00
Jermolene
b47f505588
Freeze the entire tiddler object
...
As seen in the first pass of #2247 , it was previously inadvertently
possible for callers to modify the tiddler object itself by adding and
replacing properties.
2016-02-05 17:39:02 +00:00
Devin Weaver
4525a3d631
Add tags support to evernote plugin
...
Relates to Issue #2268
I tried to map over the list of tags but NodeLists are not arrays and so
need to be converted. This looks ugly and probably should be abstracted
to a function. Come to think of it should we have a `$tw.utils.map()`
function?
2016-02-04 19:24:46 -05:00
Devin Weaver
4b70257aca
Add evernote's additional resources as tiddlers
...
Relates to Issue #2268
Based in the [example XML][1] attachments are listed in the <resources>
node. Since in TiddlyWiki these would be media tiddlers I add then one
by one as separate tiddlers.
There are some things that still need to happen. There should be a mime
type check so we don't attempt to import media tha TiddlyWiki doesn't
support. Also the example suggests the data is base64 encoded so I
blindly use that for the text attribute. Should there be a
`data:mediatyp;base64,…` prefix?
[1]: https://gist.github.com/evernotegists/6116886
2016-02-04 18:37:45 -05:00
Devin Weaver
1d35087f29
Add additional fields support for evernote plugin
...
Relates to Issue #2268
Add the additional field defined in the XML as properties to the result.
This also appears to capture the 'author' field.
2016-02-04 18:31:24 -05:00
Jermolene
8904a6dba6
First commit of Evernote migration plugin
...
Starts to address #2268
2016-02-04 10:13:08 +00:00
Jermolene
1335dff450
Text-slicer: Checkbox for hiding document metadata
2016-02-03 12:48:15 +00:00
Jeremy Ruston
c98ce99c83
Merge pull request #2266 from telmiger/master
...
Signing the CLA for individuals
2016-02-03 00:18:26 +00:00
Thomas
1276c26529
Signing the CLA for individuals
2016-02-02 22:33:29 +01:00
Jermolene
3e78f5cffd
Text-slicer: Fix problem with static template for list items
...
We were rendering the children of the list item outside of the
generated LI tag.
2016-02-02 17:40:29 +00:00
Felix Hayashi
b83556b5ad
fixed malformatted svg
...
one `</g>` too much.
2016-02-02 17:35:22 +01:00
Jermolene
c98ef97d23
Text-slicer: Use xmldom plugin so we can slice under Node.js
2016-02-01 21:34:28 +00:00
Jermolene
68b54a6e6f
Add xmldom parser
...
Integrating this module allows us to do HTML/XML parsing under Node.js
(there is no built-in support for Node.js; we can already do HTML/XML
parsing in the browser). The implementation chosen is pure JavaScript,
and will work in all configurations of TiddlyWiki.
2016-02-01 21:28:52 +00:00
Jermolene
176d2ccd76
Text-slicer: Add support for notes within documents
2016-02-01 21:26:11 +00:00
Jermolene
b8aa60cdab
Text-slicer: Fix bug with nodes without a classname
2016-02-01 21:22:55 +00:00
Jermolene
3a10bfe0de
Text-slicer: copy document fields from source tiddler
...
User-defined fields of the source tiddler are copied across to the
document tiddler when it is sliced.
2016-02-01 20:16:45 +00:00
Jermolene
f61bb316b2
Adjust version number for 5.1.12
2016-01-31 21:46:29 +00:00
Jermolene
5e7065c391
Version number update for 5.1.11
2016-01-30 14:27:54 +00:00
Jermolene
a869316b1f
Readme update
2016-01-30 14:27:29 +00:00
Jermolene
c24598885a
Preparing for release of 5.1.11
2016-01-30 14:26:24 +00:00
Jermolene
3bf9ad78fa
Update release note for 5.1.11
2016-01-30 12:44:58 +00:00
Jeremy Ruston
5bba45bb0a
Rename TiddlyWiki_Jingle_by_Måns_Mårtensson.tid to TiddlyWiki_Jingle_by_Mans_Martensson.tid
...
Fixes #2227
(Note I fixed this by editing the filename in the github.com online editor. It's happened before; I've raised #2261 to address the root cause)
2016-01-30 08:51:53 +00:00
Jermolene
8b2f320f7f
Missed off d240ab5003
2016-01-29 17:24:11 +00:00
Jermolene
d240ab5003
Fix broken plugin library
...
Fixes #2260
2016-01-29 17:16:16 +00:00
Jermolene
f1deea3b74
Preparing for 5.1.11
2016-01-29 17:15:57 +00:00
Jermolene
def26a40ac
Version number update for 5.1.10
2016-01-29 17:03:12 +00:00
Jeremy Ruston
0b4ce5be28
Merge pull request #2257 from koke24/master
...
Ask permission Jermolene for make a pull request
2016-01-28 13:35:13 +00:00
jose-manuel.urio@at.seg-social.es
ac345c86a1
Ask permission Jermolene for make a pull request
2016-01-27 15:57:23 +01:00
gernert
fa6dc5677d
Update SystemTags.tid
...
Added missing $:/tags/ToolbarButtonStyle
2016-01-18 19:19:13 +01:00
Devin Weaver
f79856a6d7
Add Adding Babel Polyfill to TiddlyWiki
...
Having the ability to write your plugins with ES2015 syntax is nice but
it is missing a large part of the ES2015 spec. Since not all browsers
support this a polyfill is offered.
So far it is IE10 which holds the need for the polyfill. This tiddler
offers a simple how to on adding the babel-polyfill to your TiddlyWiki.
NOTE: This how to would be obsolete if a proper ES2015 polyfill was part
of the official plugins offered in core. (Want a pull request?)
2016-01-12 12:51:30 -05:00
Devin Weaver
d7c4c87c8c
Add Using ES2016 for Writing Plugins
...
I found using Babel for creating plugins was very helpful. I wanted to
share how I integrated ES2015 into my TiddlyWiki development tool bag.
2016-01-12 12:51:30 -05:00
Devin Weaver
8bf867560c
Add Editing Tiddlers with Vim
...
We have one for Emacs so we need one for Vim. Besides, Vim has never
done me wrong.
2016-01-11 21:45:23 -05:00
Jeremy Ruston
94107dc64c
Merge pull request #2209 from ARRRRGH/patch-1
...
Signing CLA
2016-01-11 18:51:17 -06:00
ARRRRGH
6613cc7b2c
Signing CLA
2016-01-11 15:09:12 +01:00
Jeremy Ruston
4a5b531f78
Merge pull request #2197 from flibbles/patch-1
...
Signed CLA
2016-01-09 06:13:01 +00:00
Cameron Fischer
10df62b24f
Signed CLA
2016-01-08 17:26:19 -05:00
Jermolene
2d9d09adcc
Readme update
2016-01-07 23:26:02 +00:00
Jermolene
3d19b585ae
Preparing for release of 5.1.10
2016-01-07 23:16:58 +00:00
Jermolene
e47f06bd5e
Docs update
2016-01-07 23:11:59 +00:00
Jermolene
6b68d9b0c4
Restore sample alert
2016-01-07 23:01:52 +00:00
Jermolene
5109e96cec
Docs updates
2016-01-07 23:00:38 +00:00
Jermolene
334497ce4e
Move "get more plugins" button into a transcludable tiddler
2016-01-07 23:00:29 +00:00
Jermolene
c1763193df
Docs update: "Editions"
2016-01-07 22:20:02 +00:00
Jermolene
e1912b624b
Dev docs typo
2016-01-07 22:20:02 +00:00
Jeremy Ruston
e71bff0110
Merge pull request #2190 from buggyj/issue2189
...
fix for 2189
2016-01-07 22:19:04 +00:00
buggyj
74e8afdcdd
fix for #2189
2016-01-07 22:11:26 +00:00
Jermolene
01f8b954ae
Add all translations to the "introduction" edition
2016-01-07 17:48:50 +00:00
Jermolene
a1079270a2
Don't mark the centralised theme as experimental
2016-01-07 16:49:14 +00:00
Jermolene
64efee40e5
Retracting #2147
...
The problem is that this change scrambles the ordering of tabs that use
programmatic ordering, for example here:
https://github.com/Jermolene/TiddlyWiki5/blob/master/editions/tw5.com/ti
ddlers/releasenotes/TiddlyWiki_Releases.tid#L13
2016-01-07 16:48:51 +00:00
Jermolene
0747635fba
Fixed current tiddler overwrite in tabs macro
...
Fixed a side-effect of 03519c14b0 from
@matabele whereby the current tiddler is overwritten by the
`<$tiddler>` widget, which means that it is not accessible when
rendering the caption of the tab.
This causes a problem with eg the “Add Plugins” modal where it breaks
the count on the tabs.
2016-01-07 12:40:10 +00:00
Jermolene
822bd1f3cc
Docs update
2016-01-06 16:03:50 +00:00
Jermolene
877aed3ead
Move 5.1.10 release note
2016-01-06 16:03:43 +00:00
Jermolene
7ee985407b
Release note update
2016-01-06 10:09:33 +00:00
Jermolene
5a543276f5
Update release note
2016-01-06 09:59:03 +00:00
Jeremy Ruston
677e100ea2
Merge pull request #2185 from matabele/patch-8
...
Fixed typos in docsof ActionListops widget
2016-01-06 09:45:14 +00:00
Jeremy Ruston
e0c84ee85d
Merge pull request #2184 from mdeabreu/patch-1
...
Add info about recent TiddlyDesktop releases
2016-01-06 09:43:52 +00:00
Jermolene
b873df0ba2
Revert "Merge pull request #2166 from matabele/patch-5"
...
This reverts commit 83c54f4bb5 , reversing
changes made to 0cbe97615a .
2016-01-06 09:38:39 +00:00
Jermolene
3fa5ba52f9
Revert "Merge pull request #2183 from matabele/patch-7"
...
This reverts commit cd36ad582b , reversing
changes made to 83c54f4bb5 .
2016-01-06 09:38:12 +00:00
William Jackson
366cdb608d
Fixed typos in docsof ActionListops widget
2016-01-06 07:32:33 +02:00
mdeabreu
20983c0174
Update cla-individual.md
2016-01-05 11:20:57 -08:00
mdeabreu
d917198abb
Add information about TiddlyDesktop v0.0.8
2016-01-05 11:11:09 -08:00
Jeremy Ruston
cd36ad582b
Merge pull request #2183 from matabele/patch-7
...
Updated docs of ActionSetfield widget to include setting of TextReferences
2016-01-05 19:10:37 +00:00
Jeremy Ruston
83c54f4bb5
Merge pull request #2166 from matabele/patch-5
...
Fix inadvertent clearing of text field (default) when `field` attribu…
2016-01-05 19:10:26 +00:00
mdeabreu
fcfddf2b46
Add information about TiddlyDesktop v0.0.7
2016-01-05 11:09:55 -08:00
William Jackson
152c3db9a1
Updated docs to include setting of TextReferences
...
Can now accept any number of attributes of the form TextReference="value" -- these may be fields "(Tiddler!!field="value") or indices (Tiddler##index="value.)
2016-01-05 21:02:18 +02:00
Jermolene
0cbe97615a
Add size attribute to select widget for multiple selection mode
2016-01-05 18:48:21 +00:00
Jermolene
93f7d8c028
Fix bug with tiddler widget and a blank tiddler title
2016-01-05 18:48:04 +00:00
Jeremy Ruston
31b4f104e4
Merge pull request #2161 from matabele/patch-3
...
Tidied up the code in the x-listops filters
2016-01-05 15:30:39 +00:00
Jeremy Ruston
540354a693
Merge pull request #2162 from matabele/patch-4
...
Updated docs of the ActionListops widget to reflect changes to attribute names
2016-01-05 15:30:27 +00:00
Jeremy Ruston
2cd812c15f
Merge pull request #2160 from matabele/patch-2
...
Changed the name of the 'list' attribute to 'field' for the $action-listops widget
2016-01-05 13:06:48 +00:00
Jermolene
b2fd3366e3
Move staged content from prerelease
...
These updates had been staged so that I could still perform updates of
tiddlywiki.com for the previous release
2016-01-05 13:05:10 +00:00
Jeremy Ruston
114f4dbcea
Merge pull request #2171 from nameanyone/tw5-htabs-spaces
...
Replace spaces between horizontal tabs with margin
2016-01-05 12:58:04 +00:00
Jeremy Ruston
791f97983e
Merge pull request #2153 from tobibeer/rows-for-edittext
...
add rows attribute to edittext, plus docs
2016-01-05 12:31:37 +00:00
Jeremy Ruston
1cb8247063
Merge pull request #2177 from nameanyone/tw5-relnotes-edit
...
Remove obsolete reference to "recent" filter operator
2016-01-05 10:54:03 +00:00
Jermolene
0240a8048f
Fix default date format
2016-01-04 20:09:06 +00:00
Jeremy Ruston
45092d289e
Merge pull request #2179 from alexhough/patch-5
...
add "Transclusion and Substitution" to learn more
2016-01-03 18:20:06 +00:00
Jermolene
5cc1f2b313
Fix problem with search popup disappearing
...
This one took quite a lot of tracking down…
Fixes #2172
2016-01-03 18:05:08 +00:00
Jermolene
665d6657bb
It's 2016!
...
🎉 🎊 🎆
2016-01-03 18:04:21 +00:00
Jermolene
f8723397e9
Fix clean.sh
...
Was ignoring editions with numerals in pathname
2016-01-03 18:02:49 +00:00
alexhough
fa3ea480fe
add "Transclusion and Substitution" to learn more
2016-01-03 17:11:13 +00:00
William Jackson
ac8b706d42
Correct Formatting
...
Removed extra tab spacing and corrected syntax error
2016-01-03 16:30:00 +02:00
nameanyone
658ccadca7
Remove obsolete reference to "recent" filter operator
2015-12-31 13:40:28 -08:00
Jermolene
f42acfa73e
Revised banner for 5.1.10
2015-12-31 14:03:48 +00:00
Jeremy Ruston
f2591761b0
Merge pull request #2169 from nameanyone/tw5-fold-button-spaces
...
Remove spaces around the fold button
2015-12-31 09:17:12 +00:00
Jermolene
56ff0027e0
Add new release banner for 5.1.10
2015-12-31 08:47:09 +00:00
nameanyone
49c6a172ad
Get rid of newline at eof.
2015-12-30 16:57:49 -08:00
nameanyone
bd9cd10de1
Remove the trailing space as well, missed that.
2015-12-30 15:38:35 -08:00
Jermolene
040e35eab6
Restore accidentally deleted tiddler fields
...
Fixes #2174
2015-12-29 15:51:26 +00:00
Jermolene
e3f381ed8d
Remove extraneous whitespace between tag pills
...
Fixes #2170
2015-12-29 15:21:53 +00:00
nameanyone
2a26ca53c2
Add margin to horizontal tabs
2015-12-29 00:12:06 -08:00
nameanyone
747eb9daba
Remove spaces between horizontal tabs
2015-12-29 00:02:19 -08:00
nameanyone
7fbe29fd04
Remove spaces around the fold button
...
...by removing newlines betwen widgets. Makes source harder to read but eliminates space characters from the end result.
2015-12-28 22:28:48 -08:00
William Jackson
a44edee782
Changed indents from spaces to tabs
...
I am informed this is the correct convention for TW5.
2015-12-28 18:12:22 +02:00
William Jackson
471f28e52b
Fix inadvertent clearing of text field (default) when field attribute of the ActionSetField widget isn't set.
...
When using the widget with only short form SetText attributes (field="value) -- the default field (text) of the default tiddler is set to the default value ("") -- thus clearing the text field of the current tiddler. I have inserted a conditional to test for the presence of the `field` attribute.
Whilst I was about this, I have inserted code to enable the setting of any number of TextReferences -- this fixes the issue of only being able to set one index per widget and also allows different tiddlers to be targeted by the same widget.
2015-12-28 18:08:05 +02:00
Mario Pietsch
3977cf009b
fixes #2158 check if new fields are present and warn on cancel
2015-12-28 11:31:36 +01:00
Mario Pietsch
7c4ea64210
fixes #2158 check if new fields are present and warn on cancel
2015-12-28 11:29:43 +01:00
William Jackson
91b970e422
Updated docs of the ListOps widget to reflect changes to attribute names
2015-12-28 10:42:46 +02:00
William Jackson
48987e186a
Tidied up the code in the filters
2015-12-28 10:31:39 +02:00
William Jackson
2f51c3695d
Changed the name of the 'list' attribute to 'field'
...
Other users found this to be confusing -- I have made this change in both this widget and the $checklist widget to maintain consistency
2015-12-28 10:22:28 +02:00
Jeremy Ruston
0d27f3b836
Merge pull request #2154 from spelufo/katex-displaymode
...
Revert katex plugin to using `$$`. Use multiline for display mode.
2015-12-24 18:02:54 +00:00
Santiago Pelufo
8e02390353
Revert katex plugin to using $$. Use multiline for display mode.
2015-12-24 13:52:19 -03:00
Jermolene
2fe2c531e8
Update release note
2015-12-24 16:04:47 +00:00
Jeremy Ruston
62e6d3a99c
Merge pull request #2006 from tobibeer/move-if-macro
...
moved if-macro, see #2005
2015-12-24 15:23:19 +00:00
Jeremy Ruston
fe00229ad5
Merge pull request #2004 from inmysocks/patch-9
...
Modified fieldmangler to create a tiddler if adding a tag (see #2001 )
2015-12-24 15:22:41 +00:00
Tobias Beer
456e7abc5d
add rows attribute to edittext, plus docs
2015-12-24 15:40:00 +01:00
Jermolene
3a426dfd2a
Docs for #2049
2015-12-24 14:12:53 +00:00
Jeremy Ruston
e344dbe077
Merge pull request #2049 from inmysocks/patch-11
...
Let $keyboard trigger action-widgets
2015-12-24 14:12:32 +00:00
Jeremy Ruston
44bf4310d2
Merge pull request #2058 from maweki/tiddlyweb-description
...
Expand description of "TiddlyWeb and TiddlySpace components"
2015-12-24 14:03:10 +00:00
Jeremy Ruston
dcc53b8e96
Merge pull request #2074 from mklauber/master
...
Manage a list field by allowing the <$select> widget to select multiple items.
2015-12-24 13:48:43 +00:00
Jermolene
075f5b757f
Merge branch 'mklauber-patch-1'
2015-12-24 13:47:13 +00:00
Jermolene
3e1128787a
Merge branch 'patch-1' of https://github.com/mklauber/TiddlyWiki5 into mklauber-patch-1
2015-12-24 13:46:21 +00:00
Jeremy Ruston
68c633c9bb
Merge pull request #2094 from jho1965us/patch-1
...
Changed Transclusion from html to TidlerWiki syntax in order to force…
2015-12-24 12:40:07 +00:00
Jeremy Ruston
08fed4840f
Merge pull request #2151 from tobibeer/sticky-popup-docs
...
documentation for "tc-popup-keep"
2015-12-24 11:01:32 +00:00
Jermolene
f4f86e3c23
Fixed problem with deleting alerts introduced in #1981
2015-12-24 11:00:47 +00:00
Jeremy Ruston
b1bc75d4eb
Merge pull request #2150 from matabele/patch-4
...
Added a tooltip
2015-12-24 10:52:29 +00:00
Jeremy Ruston
2da1af2a41
Merge pull request #2149 from matabele/patch-3
...
Added a tooltip
2015-12-24 10:52:10 +00:00
Jeremy Ruston
07c1af106b
Merge pull request #2148 from matabele/patch-2
...
Added a paragraph describing the use of tooltips
2015-12-24 10:51:55 +00:00
Jeremy Ruston
7ef60ded52
Merge pull request #2147 from matabele/patch-1
...
Added tooltip option to Tabs macro
2015-12-24 10:51:41 +00:00
William Jackson
b7c2063f63
Added sorting on 'order' field by default
...
What do you think of this idea?
2015-12-24 09:02:33 +02:00
Tobias Beer
c2dea12f1c
documentation for "tc-popup-keep"
2015-12-23 23:28:47 +01:00
William Jackson
d7f24a5779
Added a tooltip
2015-12-23 22:37:14 +02:00
William Jackson
61235a12fb
Added a tooltip
2015-12-23 22:35:46 +02:00
William Jackson
b905874c06
Added a paragraph describing the use of tooltips
2015-12-23 22:28:52 +02:00
William Jackson
03519c14b0
Added tooltip option
...
Tooltips should be entered in the 'tooltip' field of each tab tiddler
2015-12-23 20:55:03 +02:00
Jeremy Ruston
15eab0ce1c
Merge pull request #2146 from spelufo/katex-displaymode
...
Show how to use display mode in katexdemo/tiddlers/HelloThere.tid
2015-12-23 18:20:57 +00:00
Santiago Pelufo
5be0de798f
Show how to use display mode in katexdemo/tiddlers/HelloThere.tid
2015-12-23 14:57:24 -03:00
Jeremy Ruston
7676f93932
Merge pull request #2125 from tobibeer/set-emptyValue-always
...
always set emptyValue, not just for filter
2015-12-23 17:42:41 +00:00
Jeremy Ruston
3dc001620c
Merge pull request #2145 from spelufo/katex-displaymode
...
Make latex-parser.js render $$$ as display mode math
2015-12-23 17:19:58 +00:00
Santiago Pelufo
a94ba99ec2
Make latex-parser.js render $$$ as display mode math
2015-12-23 14:14:58 -03:00
Jeremy Ruston
55f053ec89
Merge pull request #2139 from spelufo/katex-displaymode
...
Add displayMode attribute to katex widget
2015-12-23 13:20:49 +00:00
Jermolene
57ceffd67c
Merge #1909 from @nameanyone
2015-12-23 12:19:47 +00:00
Jermolene
7037b66479
Updated Dutch translation from @gernert
2015-12-23 08:34:52 +00:00
Jeremy Ruston
aa06f4ea8c
Merge pull request #2142 from IreneKnapp/master
...
Add Google, Inc as a signer of the entity CLA.
2015-12-22 18:14:55 +00:00
Jeremy Ruston
ccf6edb940
Merge pull request #1933 from felixhayashi/fix/scrolling
...
Auto-height fix for text area which is contained in a scroll container
2015-12-22 14:08:56 +00:00
Jeremy Ruston
fa1814d0f4
Merge pull request #2048 from felixhayashi/fix/count
...
Replacing count with Object.keys
2015-12-22 12:41:24 +00:00
Jeremy Ruston
44dfbec3cf
Merge pull request #2136 from pmario/de-DE
...
de-DE: some minor language fixes. feedback from tobias
2015-12-22 12:21:44 +00:00
Irene Knapp
3959b1b89e
Add Google, Inc as a signer of the entity CLA.
...
I emailed a PDF with an actual signature, a moment ago, to
jeremy@jermolene.com . My understanding is that this signature would be valid
not just for me but for other Googlers who contribute to TiddlyWiki in future,
if there are any. So I've omitted my personal name from the signature line -
I think this is probably the way it's supposed to be? If you look at the PDF
you'll see that it's actually one of our lawyers who agreed to it, not me
as an individual. I'll be using my @google.com email address for this and any
future patches, so record-keeping at TiddlyWiki's end shouldn't need a record
of GitHub usernames.
2015-12-21 15:00:05 -08:00
Jeremy Ruston
ef1cd5f55f
Merge pull request #1967 from Drakor/fixActionSetField
...
fixed bug in $action-setfield introduced by #1963
2015-12-21 22:17:51 +00:00
Jeremy Ruston
de99dd5196
Merge pull request #1981 from tobibeer/delete-alerts-without-confirm
...
Delete alerts without confirm
2015-12-21 22:15:25 +00:00
Jeremy Ruston
a34ac01d63
Merge pull request #2100 from tobibeer/fix-edittemplate-shadow
...
fix broken template: core/ui/EditTemplate/shadow
2015-12-21 22:12:36 +00:00
Jermolene
07ac75b084
Fix search dropdown positioning
...
This fixes a problem introduced in
72941f3e9a whereby the change to
tc-drop-down affected other dropdowns.
2015-12-20 08:53:29 +00:00
Jermolene
ad1793c8f5
Minor tweaks to boot kernel for AWS
...
Part of the upcoming AWS integration work is a custom build of
TiddlyWiki that can run as an Amazon Lambda function. These tweaks
enable the new build to control the loading of SJCL, the package info,
and any preloaded tiddlers.
2015-12-19 18:52:25 +00:00
Jermolene
64b916bb43
Ignore any node_modules directory
2015-12-19 18:47:58 +00:00
Jermolene
231d0a3dc8
Add plugin wrappers for async and jszip
...
The immediate motivation is the work I’m doing to integrate with Amazon
Web Services.
We should be able to use JSZip to export multiple tiddlers in a single
operation from the browser.
2015-12-19 18:47:42 +00:00
Santiago Pelufo
aaf3e6bb9e
Add displayMode attribute to katex widget.
2015-12-18 11:46:19 -03:00
Mario Pietsch
b0dce4f8e4
fix spelling ..
2015-12-18 14:14:38 +01:00
Mario Pietsch
9468e50146
added plugin link to the EditTemplate
2015-12-18 11:58:02 +01:00
Jermolene
6e7f532825
Remove extraneous icon for blog plugin
...
We had just reused the text-slicer icon
2015-12-13 18:26:37 +00:00
Tobias Beer
ea8a8f1b53
always set emptyValue, not just for filter
2015-12-09 23:33:07 +01:00
Jermolene
c2105de49c
Remove modifier/modified/revision fields from #2037
2015-12-06 19:11:41 +00:00
Jeremy Ruston
da36f1c728
Merge pull request #2037 from matabele/Listops
...
ActionListopsWidget
2015-12-06 19:04:26 +00:00
Jermolene
4a8511c6f2
Added file and folder icons
...
These icons are skinnier than the regular icons; I found I couldn’t
produce sufficiently detailed images with the regular line width.
2015-11-25 15:32:53 +00:00
Jermolene
aae1bf9f80
Blog edition: Add classes for the static menu
2015-11-25 15:32:53 +00:00
Tobias Beer
4e0a5c862c
fix broken template: core/ui/EditTemplate/shadow
2015-11-25 15:22:15 +01:00
Jens
6c89b27328
Changed Transclusion from html to TidlerWiki syntax in order to force new tab when following
...
With the html syntax when you go back after following the link knowledges of open tiddlers is lost.
Not sure if there should also be feature request for TiddlerWiki to store knowledge of open tiddlers in browser history.
2015-11-22 13:53:59 +01:00
Jeremy Ruston
cd6b443533
Merge pull request #2093 from xcazin/master
...
Catch up on fr-FR translations
2015-11-21 18:05:19 +00:00
Xavier Cazin
7dbb4240f1
fr-FR translation of strings related to Toolbar Button Style
2015-11-21 18:50:25 +01:00
Xavier Cazin
d0c33ec3d2
fr-FR translation of strings related to CamelCase enabling/disabling
2015-11-21 18:45:57 +01:00
Xavier Cazin
8d2bdaa338
fr-FR translation of Parsing hint
2015-11-21 18:40:06 +01:00
Xavier Cazin
8501847942
Typo in Parsing hint
2015-11-21 18:37:51 +01:00
Xavier Cazin
9e03252e01
fr-FR translation of updates to the help of the savetiddlers command
2015-11-21 18:27:34 +01:00
Xavier Cazin
05f0bea61f
fr-FR translation for updates to the help for the rendertiddler command
2015-11-21 18:17:41 +01:00
Xavier Cazin
1aa4cb5f55
fr-FR translation of the warning about loading TW Classic
2015-11-21 18:01:33 +01:00
Xavier Cazin
d48deefa91
fr-FR translation for the Lazy Loading warning about external text
2015-11-21 16:07:19 +01:00
Xavier Cazin
4a2fc8cbc0
fr-FR translation of the clarification for the password command
2015-11-21 15:55:35 +01:00
Xavier Cazin
65f891dcdf
fr-FR translation for tidder date format
2015-11-21 15:49:34 +01:00
Xavier Cazin
b0c9dcf353
fr-FR translations for strings related to Performance Instrumentation
2015-11-21 15:42:04 +01:00
Xavier Cazin
e209254bc6
More fr-FR translations for strings related to plugins
2015-11-21 15:12:32 +01:00
Xavier Cazin
8c2ecca7e6
fr-FR translations for strings related to search matches
2015-11-21 15:03:56 +01:00
Xavier Cazin
98b6a45044
fr-FR translations for strings related to Internal Javascript Errors
2015-11-21 15:00:25 +01:00
Xavier Cazin
6eba06e23e
fr-FR translations of a string related to tiddler importation
2015-11-21 14:56:24 +01:00
Xavier Cazin
b4994f2e77
fr-FR translations for strings related to plugin installation
2015-11-21 14:54:19 +01:00
Xavier Cazin
d90828d14e
fr-FR translation of strings related to tiddler folding buttons
2015-11-21 14:42:31 +01:00
jed
848e351685
removed the handled variable
...
because it serves no purpose here. That test isn't required in this context.
2015-11-16 10:48:25 +01:00
Jermolene
15f52bd7ce
Add support for Nw.js special features to browse widget
2015-11-13 18:47:30 +00:00
Matt Lauber
d94ffbae39
Unchange CLA.
2015-11-13 12:36:05 -05:00
Matt Lauber
d7623b6985
Update cla-individual.md
2015-11-13 12:34:07 -05:00
Matt Lauber
8ccee5d015
Remove cla for separate PR, and clean up variable declaration.
2015-11-13 11:30:06 -05:00
Matt Lauber
35ce8c8b55
typo
2015-11-13 08:18:20 -05:00
Matt Lauber
f540be4ac4
use $tw.utils.stringifyList
2015-11-13 08:06:51 -05:00
Matt Lauber
065b274b98
Use the $tw.utls.parseStringArray function to break up a list.
2015-11-13 08:04:13 -05:00
Matt Lauber
46a3b2f261
Singing CLA
2015-11-13 07:57:10 -05:00
Matt Lauber
1569090046
typo
2015-11-13 07:53:47 -05:00
Matt Lauber
75380c56cc
Oops, deleted metadata
2015-11-13 07:53:19 -05:00
Matt Lauber
c535dd605c
Grant the select widget the ability to select multiple values.
...
Multiple values are placed in a given tiddler-field combination as if
that field were a list field.
2015-11-13 07:50:34 -05:00
Jeremy Ruston
3a33282705
Merge pull request #2073 from tobibeer/each-list
...
change suffix each:list to each:list-item
2015-11-13 10:10:36 +00:00
Tobias Beer
ef3e44eb48
rename suffix each:list to each_list-item
...
based on #1422 , improves readability of the filter expression
tests passed
2015-11-13 11:07:24 +01:00
Tobias Beer
b152a0a894
Merge remote-tracking branch 'refs/remotes/Jermolene/master' into each-list
2015-11-13 10:49:25 +01:00
Jermolene
ac00aa8407
Allow server module to work under Node even if $tw.browser is defined
...
Needed for TiddlyDesktop, where want to be able to run the HTTP server
in a hybrid browser/node environment.
2015-11-10 18:13:30 +00:00
Jermolene
d3586c7bf1
Update Italian translation
2015-11-10 18:12:40 +00:00
Mario Pietsch
f08c2c8a60
first pass, some minor fixes. feedback from tobias
2015-11-08 13:14:57 +01:00
William Jackson
5877a26855
Create ListopsData.tid
...
Data tiddler for Extended Listops documentation examples
2015-11-08 10:40:49 +02:00
William Jackson
8980e491c4
Create sortby.tid
2015-11-08 10:38:14 +02:00
William Jackson
085ebd4e23
Create sortby.tid
2015-11-08 10:37:39 +02:00
William Jackson
7ba2649194
Create replace.tid
2015-11-08 10:36:53 +02:00
William Jackson
85895374ea
Create replace.tid
2015-11-08 10:36:17 +02:00
William Jackson
34e0bf13f2
Create remove.tid
2015-11-08 10:35:37 +02:00
William Jackson
12431a9fbc
Create remove.tid
2015-11-08 10:35:05 +02:00
William Jackson
91c87ec2ac
Create putlast.tid
2015-11-08 10:34:21 +02:00
William Jackson
0c78c63fae
Create putlast.tid
2015-11-08 10:33:39 +02:00
William Jackson
617c13d196
Create putfirst.tid
2015-11-08 10:32:56 +02:00
William Jackson
008f22b511
Create putfirst.tid
2015-11-08 10:32:12 +02:00
William Jackson
cb6b8233fa
Create putbefore.tid
2015-11-08 10:30:47 +02:00
William Jackson
cab0900ddd
Create putbefore.tid
2015-11-08 10:30:08 +02:00
William Jackson
72889a0527
Create putafter.tid
2015-11-08 10:29:17 +02:00
William Jackson
ec2d819c8c
Create putafter.tid
2015-11-08 10:28:38 +02:00
William Jackson
88a5c742e7
Create prepend.tid
2015-11-08 10:27:35 +02:00
William Jackson
1358cd5185
Create prepend.tid
2015-11-08 10:26:45 +02:00
William Jackson
18a0f6b12d
Create move.tid
2015-11-08 10:25:42 +02:00
William Jackson
b1cfc8633f
Create move.tid
2015-11-08 10:25:04 +02:00
William Jackson
abdd1e7fd6
Create append.tid
2015-11-08 10:11:17 +02:00
William Jackson
b2edbd8d1d
Create append.tid
2015-11-08 10:10:37 +02:00
William Jackson
31b9835a4e
Create allbefore.tid
2015-11-08 10:09:00 +02:00
William Jackson
e9c79faf05
Create allbefore.tid
2015-11-08 10:08:01 +02:00
William Jackson
d87c328fd9
Create allafter.tid
2015-11-08 10:06:50 +02:00
William Jackson
2adb005c28
Create allafter.tid
2015-11-08 10:05:26 +02:00
William Jackson
fad106d2d5
Update FilterOperators.tid
...
Added category for extended listops filter operators
2015-11-08 10:02:28 +02:00
William Jackson
7370d61602
Create The Extended Listops Filters.tid
...
Supplementary documentation for the ActionListops widget -- examples using the extended filters
2015-11-08 09:59:41 +02:00
William Jackson
ac9aa78859
Create ActionListopsWidget.tid
...
Primary documentation for ActionListops widget
2015-11-08 09:56:37 +02:00
William Jackson
befb13dde1
Update x-listops.js
...
Change default suffix for append[], prepend[] and remove[] operators from 1 to All
2015-11-08 09:49:07 +02:00
Jermolene
3b64497c57
Fix docs typo
...
Thanks @BramChen
2015-11-05 15:09:45 +00:00
Jeremy Ruston
faee511d20
Merge pull request #2060 from BramChen/zh
...
Update chinese translations
2015-11-05 14:06:41 +00:00
Bram Chen
171fd2c853
Improve chinese translations of edit info banner for shadow tiddlers
...
Add the name of the plugin that contains the shadow tiddler
2015-11-05 21:48:22 +08:00
Jermolene
99969024f8
Update release note
2015-11-05 13:07:34 +00:00
Jermolene
0b99ac2b75
Add information about TiddlyDesktop v0.0.6
2015-11-05 13:07:27 +00:00
Jeremy Ruston
583ed07af2
Merge pull request #1422 from tobibeer/each-list
...
added list suffix for each filter
2015-11-05 12:45:27 +00:00
Jermolene
0769b90bb7
Text-slicer: Control preview column with dropdown
...
Instead of showing a sequence of all documents in the preview column,
we just show a single document, with a dropdown to choose which one is
shown.
The change makes it easier to deal with large numbers of documents.
2015-11-05 12:33:21 +00:00
Jermolene
bc0cbf9070
Add a lazy loading template for all non-system tiddlers
...
With this new template you can run TiddlyWiki under Node.js such that
all non-system tiddlers are lazily loaded, and not baked into the HTML
file.
2015-11-05 12:33:20 +00:00
Jermolene
d0ca776edb
Improve edit info banner for shadow tiddlers
...
Add the name of the plugin that contains the shadow tiddler
2015-11-05 12:33:20 +00:00
Felix Hayashi
f217451fc5
Replacing count's function body with Object.keys
...
see #2046
2015-11-03 23:47:47 +01:00
Mario Wenzel
eb34709cc4
Expand description of "TiddlyWeb and TiddlySpace components"
...
This should fix #2019
2015-11-03 19:56:14 +01:00
Jeremy Ruston
d59d9238f7
Merge pull request #2056 from BramChen/zh
...
Update chinese translations
2015-10-30 09:17:07 +00:00
Jermolene
513ed8774c
Tweak spiral
2015-10-29 21:49:05 +00:00
Bram Chen
7307c32dd2
Add chinese translations of toolbar option fold-bar
2015-10-29 20:08:43 +08:00
Jeremy Ruston
03383ad1ae
Merge pull request #2054 from pmario/foldbar-translatable
...
makes the new toolbar option fold-bar translatable
2015-10-29 11:17:39 +00:00
Jeremy Ruston
837a96e569
Merge pull request #2053 from pmario/de-DE
...
update german translation texts
2015-10-29 11:17:11 +00:00
Mario Pietsch
4dadbe5ba8
makes the new toolbar option fold-bar translatable
2015-10-29 12:05:54 +01:00
Mario Pietsch
eb25fdc472
update german translation texts
2015-10-29 10:49:07 +01:00
Jermolene
41480968ac
Add spiral icon
2015-10-28 18:11:55 +00:00
William Jackson
817882a404
Update x-listops.js
...
Added prefix and suffix options to 'append' and 'prepend' operators
2015-10-27 10:17:07 +02:00
Felix Hayashi
d3ab4144d4
Allows text areas to be auto-height while being wrapped in an
...
element that has scrollbars. The wrapper element with the
scroll bar does not need to be a direct parent of the text area.
**update:** fixed a bug that came up in the discussion
This is fixed now: https://github.com/Jermolene/TiddlyWiki5/pull/1933#issuecomment-141774881
The problem was the check in getScrollContainer()
2015-10-26 21:22:10 +01:00
Jeremy Ruston
52e0524fbf
Merge pull request #1984 from senevoldsen90/master
...
Local relative urls in Markdown map to WikiLinks
2015-10-26 19:51:16 +00:00
jed
e55c5b0669
Let $keyboard trigger action-widgets
...
Because of the refresh problems with the other widgets triggering action-widgets I am doing this one by itself. I hadn't included it before.
This shouldn't have any more problems than the button widget does, and any problems caused by it should be fixed by any fix we use for the button widget. See #1564 for more background
2015-10-26 20:23:09 +01:00
Jeremy Ruston
106f11343e
Merge pull request #2026 from Evolena/def-list
...
Text-slicer: Add support for definition lists
2015-10-26 19:18:15 +00:00
Jeremy Ruston
9d7a850e83
Merge pull request #1943 from Spangenhelm/patch-1
...
Fix the title
2015-10-26 18:14:57 +00:00
Jeremy Ruston
89bd088a75
Merge pull request #1931 from erwanm/master
...
New resource tiddler in tw.com for TWCommunitySearch
2015-10-26 18:12:14 +00:00
Jermolene
bcb49b64f6
Update for TiddlyDesktop v0.0.5
2015-10-26 17:16:43 +00:00
Jermolene
41287d7859
Update Russian translation
2015-10-25 23:13:26 +00:00
Jeremy Ruston
72cd6a5802
Merge pull request #2045 from tgrosinger/patch-1
...
Fix typo which prevented example from working
2015-10-25 22:15:09 +00:00
Tony Grosinger
c0de553370
Fix typo which prevented example from working
2015-10-25 13:56:21 -07:00
Jeremy Ruston
f593bae2b2
Merge pull request #1999 from BramChen/zh
...
Update chinese translations
2015-10-25 09:13:11 +00:00
Bram Chen
a6fe696269
Update chinese translations for the recently new localisable strings
2015-10-25 12:24:36 +08:00
Bram Chen
e6963cbccd
Remove extraneous spaces
2015-10-25 11:25:09 +08:00
Bram Chen
5d61dfb1d7
Merge branch 'master' into zh
2015-10-25 11:11:12 +08:00
Jermolene
7ecaba9a65
Update release note
2015-10-24 19:14:29 +01:00
Jermolene
0996f06a32
Merge branch 'pr/2007'
...
Conflicts:
licenses/cla-individual.md
2015-10-24 19:13:42 +01:00
Jeremy Ruston
7040d483f2
Merge pull request #2028 from kixam/master
...
communicate on a new datepicker plugin
2015-10-24 18:56:49 +01:00
Jeremy Ruston
7cd81efa37
Merge pull request #2041 from araname/master
...
Update korean translation
2015-10-24 18:56:12 +01:00
Jeremy Ruston
612a2707c6
Merge pull request #2040 from afeldspar/patch-2
...
add explanation on 'set' attribute
2015-10-24 18:55:49 +01:00
Jeremy Ruston
3e1c6c1972
Merge pull request #2043 from afeldspar/patch-3
...
fix typo in FilterRun.tid diagram
2015-10-24 18:54:47 +01:00
Jeremy Ruston
36f0a50ec1
Merge pull request #2039 from afeldspar/patch-1
...
Update cla-individual.md
2015-10-24 18:54:16 +01:00
afeldspar
0d6450cfb5
fix typo in FilterRun.tid diagram
...
corrected typo in the railroad diagram, which showed a double-quote where a single-quote should have been.
2015-10-24 09:52:03 -04:00
Evolena
717e9ae913
Better wording and naming
2015-10-24 12:01:43 +02:00
Jermolene
ba15086381
Remove extraneous apostrophe
...
Thanks @paul-cross (2354271723243753a8a19c6181d4822592d02a3e)
2015-10-23 17:54:59 +01:00
Myeongjin Lee
52022691f9
Update korean translation
2015-10-23 17:24:55 +09:00
Jermolene
a089fb94a6
Add clean.sh for removing build output
...
We use a regex to delete all files in `./editions/*/output/*`
2015-10-22 22:46:47 +01:00
William Jackson
3e445b8853
Update x-listops.js
...
Corrected the logic of the 'allafter' filter and added a new 'move' filter.
2015-10-22 16:40:36 +02:00
afeldspar
7492086f31
add explanation on 'set' attribute
...
Attempted a fix for the problem I raised in #2038 , by adding an explanation of why a TextReference in a button widget's 'set' attribute will lack the curly braces seen nearly anywhere else a TextReference is used as a widget attribute.
2015-10-20 21:15:58 -04:00
afeldspar
5232d5a0a7
Update cla-individual.md
2015-10-20 21:04:35 -04:00
Jeremy Ruston
9f954ce55d
Merge pull request #2036 from araname/master
...
add localisable strings
2015-10-20 18:15:28 +01:00
William Jackson
56d467fb47
Create action-listops.js
...
Action widget designed to apply filters to the current list and save the modified list back to the list. The widget is able to manipulate lists in any field or any data index of the target tiddler, and includes an option to manipulate the tags of the target tiddler. The widget is used in conjunction with the extended list operator filters (xlistops.js)
2015-10-18 18:41:40 +02:00
William Jackson
49894abaf4
Create x-listops.js
...
These filters are designed to be used with the action-listops widget.
2015-10-18 18:37:08 +02:00
Myeongjin
a0468a5e6c
add localisable strings for plugin library
2015-10-18 18:33:59 +09:00
Myeongjin
33bca3d390
add localisable strings for search
2015-10-18 18:09:41 +09:00
Myeongjin
4347d91c57
add localisable strings for Import/Imported
2015-10-18 17:29:04 +09:00
Myeongjin
2fee131aa4
add localisable strings for Internal JavaScript Error
2015-10-18 17:26:42 +09:00
Myeongjin
d7f1f973a9
replace type to rendertype at setfield help
2015-10-18 17:23:37 +09:00
Myeongjin
8e68f904f1
remove unnecessary spaces
2015-10-18 16:49:48 +09:00
Aurélien Correia
95f98d36d9
communicate on a new datepicker plugin
2015-10-15 09:33:42 +02:00
Evolena
0a220a09da
Text-slicer: Add support for definition lists
2015-10-14 20:25:11 +02:00
Jeremy Ruston
26d0029746
Merge pull request #1997 from Marxsal/patch-7
...
A primer on how to export tiddlers
2015-10-14 14:34:10 +01:00
Jeremy Ruston
b1633e0f2d
Merge pull request #1952 from tobibeer/1937-set-refresh-filter
...
fixes #1937 — filter refresh in set widget
2015-10-14 14:18:29 +01:00
Bram Chen
0703a257f3
Add chinese translations of Settings/PerformanceInstrumentation
2015-10-14 21:07:33 +08:00
Bram Chen
7609bcdf0e
Merge branch 'master' into zh
2015-10-14 20:40:26 +08:00
Jermolene
fe1b318987
Release note updates
2015-10-14 12:01:40 +01:00
Jermolene
e31abf89ac
Fix accidental commit of wrong default performance instrumentation setting
2015-10-14 12:01:35 +01:00
Jermolene
33563d01ba
Add user interface for enabling performance instrumentation
2015-10-14 10:59:55 +01:00
Jeremy Ruston
093f507319
Merge pull request #2015 from tobibeer/patch-1
...
updated Modules documentation
2015-10-13 18:59:31 +01:00
Tobias Beer
9f6fea7607
updated to point to new location
2015-10-13 12:23:58 +02:00
Jermolene
85553609b1
Ensure edit-text widget fixes height even if refresh isn't required
...
Fixes #1995
2015-10-12 17:54:51 +01:00
Jermolene
acc44c6f67
Tweaks to "Tight" theme
2015-10-12 17:54:17 +01:00
Tobias Beer
00f6aafed6
being specific about the tiddler to be deleted via action-deletetiddler
2015-10-10 21:01:07 +02:00
Tobias Beer
9a23c2471c
modified alert template and execute action-deletetiddler on currentTiddler by default
2015-10-10 16:47:11 +02:00
Tobias Beer
5d36e17c18
Revert "no delete confirmation for alerts"
...
This reverts commit 88c1a1e062 .
2015-10-10 16:35:22 +02:00
Jermolene
98983c4072
Add badges from https://shields.io
2015-10-10 14:30:58 +01:00
Jermolene
69b4f174c3
Introduce new "tight" theme
...
Fixing #2008
2015-10-09 17:59:56 +01:00
Jermolene
2d9471fe3b
Text-Slicer: Add support for static rendering of external images
2015-10-09 17:09:30 +01:00
senevoldsen90
ed1a306f88
Signing the CLA
2015-10-09 15:24:59 +02:00
senevoldsen90
e5cef9a5a6
Local relative urls in Markdown map to WikiLinks
2015-10-09 15:11:24 +02:00
Tobias Beer
51739e3fd2
moved if-macro, see #2005
...
as per #2005 from @Evolena
2015-10-09 10:39:00 +02:00
jed
4c95dc9bbb
Modified fieldmangler to create a tiddler if adding a tag to one that doesn't exist
...
This came up as an issue and I don't have any reason it shouldn't be here. It could be useful.
2015-10-08 20:39:19 +02:00
Jermolene
5faba15446
Text-slicer updates
2015-10-08 18:04:24 +01:00
Jermolene
7e9f7afa94
Tweak the sidebar tabs gradient
2015-10-08 15:10:54 +01:00
Jermolene
6add992bf2
Fix issue with tiddlers such as $:/templates/something not being synced
...
Fixed #2002
2015-10-08 15:10:46 +01:00
Tobias Beer
2acea55711
added example documentation
...
the documentation for the feature seems already there / merged
2015-10-08 14:22:05 +02:00
Tobias Beer
26114eb3ff
removed pushOnce
2015-10-08 14:22:01 +02:00
Tobias Beer
b34e4f628d
adopted style recommendations
2015-10-08 14:21:57 +02:00
Tobias Beer
71968e0973
added $tw.utils.pushOnce
...
retained check for basic each nonetheless
tests pass
2015-10-08 14:21:51 +02:00
Tobias Beer
843f18dc7e
reverted test.cmd
...
not sure how handling these files in the console works, reverted back to
previous version, to be run from repo folder
2015-10-08 14:21:27 +02:00
Tobias Beer
8b74706e35
fixed helper function and added tests
...
tests: ok
2015-10-08 14:21:24 +02:00
Tobias Beer
32c41479cc
using variable declaration for readability
2015-10-08 14:18:55 +02:00
Tobias Beer
95eb8810b6
removed pushOnce
2015-10-08 14:07:12 +02:00
Tobias Beer
91b5547cdf
adopted style recommendations
2015-10-08 14:07:08 +02:00
Tobias Beer
d0a24bd9f0
added $tw.utils.pushOnce
...
retained check for basic each nonetheless
tests pass
2015-10-08 14:07:06 +02:00
Tobias Beer
4788725ccf
reverted test.cmd
...
not sure how handling these files in the console works, reverted back to
previous version, to be run from repo folder
2015-10-08 14:07:03 +02:00
Tobias Beer
f684a6beb0
fixed helper function and added tests
...
tests: ok
2015-10-08 14:07:00 +02:00
Tobias Beer
a88ead9c0f
removed conditional from iterator
...
I'd really like to see a profiler run against the two to see the
performance impact of one over the other
2015-10-08 14:06:57 +02:00
Tobias Beer
c3cbbc3f66
renamed value to items
2015-10-08 14:06:54 +02:00
Tobias Beer
f9464dfaf8
using variable declaration for readability
2015-10-08 14:06:51 +02:00
Tobias Beer
baca2703f1
added list suffix for each filter
...
implements #1369
when the suffix is `list`, interprets the field as a list of individual
tiddler titles and returns all titles referenced in the list field of
the source list, existing or not
2015-10-08 14:06:48 +02:00
Bram Chen
a42dff1a41
Add chinese translations of Tiddler/DateFormat
2015-10-08 09:21:01 +08:00
Bram Chen
3853a76c9a
Add chinese translations of clarification about password command
2015-10-08 09:09:31 +08:00
Jermolene
8a763e9d83
Re-establish gradient for sidebar tab divider
2015-10-07 20:45:14 +01:00
Jermolene
acbf87657b
Switch to absolute date format
...
The present implementation of relative dates doesn’t auto-update, nor
does it work effectively in static renderings. Until that’s fixed, I
think it is better to switch to absolute dates.
2015-10-07 18:35:23 +01:00
Marxsal
79972fe57f
Applying recomendations
...
Giving better descriptive names to sub-headings
2015-10-06 10:36:19 -07:00
Marxsal
5163b541cf
A primer on how to export tiddlers
...
Showing how to export individual, selection, or all tiddlers.
2015-10-06 09:11:21 -07:00
Jermolene
1e06824ed1
Release note update
2015-10-05 15:57:44 +01:00
Jermolene
2803890baf
Release note update
2015-10-05 10:23:42 +01:00
Jermolene
0035a00463
Switch to transparent colours for "more" sidebar tabs
...
Although falling short of the proposal in #1976 , this change makes the
sidebar tabs work much better with different colour page backgrounds
and background images.
2015-10-05 09:53:18 +01:00
Jermolene
6b3dd1bb63
Release note and docs updates
2015-10-05 09:53:18 +01:00
Jeremy Ruston
5fafa0fb07
Merge pull request #1978 from BramChen/zh
...
Update chinese translations
2015-10-04 22:19:52 +01:00
Jeremy Ruston
a30f9e1739
Merge pull request #1992 from tgrosinger/master
...
Add documentation to tw5.com for CodeBlock widget
2015-10-04 21:46:57 +01:00
Jeremy Ruston
9db8a9326f
Merge pull request #1994 from tgrosinger/patch-2
...
Provide clarification about running with password
2015-10-04 21:41:54 +01:00
Tony Grosinger
2e1ad771d6
Whitespace clean up and missing close tag
...
Clean up for CodeblockWidget documentation.
2015-10-04 13:05:46 -07:00
Tony Grosinger
11b09be523
Provide clarification about running with password
2015-10-04 10:51:27 -07:00
Jeremy Ruston
1b25962948
Merge pull request #1990 from tobibeer/patch-1
...
example description for tagging filter
2015-10-04 17:05:41 +01:00
Tobias Beer
db2eaf56d4
overlooked "either", removed
2015-10-04 18:03:49 +02:00
Tobias Beer
2f8ae31377
better wording
2015-10-04 18:02:48 +02:00
Jeremy Ruston
6ef894f240
Merge pull request #1991 from tgrosinger/patch-1
...
Signing the CLA
2015-10-04 16:55:36 +01:00
Tony Grosinger
650a9a76df
Add documentation to tw5.com for CodeBlock widget
...
Partial fix for #1985
2015-10-03 16:48:47 -07:00
Tony Grosinger
c3356e50e3
Signing the CLA
2015-10-03 16:17:00 -07:00
Tobias Beer
adb81f7eab
example description for tagging filter
2015-10-04 01:01:34 +02:00
Jeremy Ruston
4e281d51c4
Merge pull request #1988 from zahlman/patch-2
...
Documentation for filter operators
2015-10-03 19:11:19 +01:00
Jeremy Ruston
a14eb78d76
Merge pull request #1986 from zahlman/patch-1
...
Signing the CLA
2015-10-03 19:10:02 +01:00
Karl Knechtel
3ab7db1a59
One more fix
2015-10-03 08:43:55 -04:00
Karl Knechtel
d806f1d0f1
Assorted wikitext fixes
2015-10-03 08:42:56 -04:00
Karl Knechtel
b23d53e9b0
Fix stray line
2015-10-03 08:36:56 -04:00
Karl Knechtel
6598455e83
Create Filter Operators.tid
2015-10-03 08:32:47 -04:00
Karl Knechtel
8d58e2d651
Signing the CLA
2015-10-03 07:11:35 -04:00
Tobias Beer
88c1a1e062
no delete confirmation for alerts
2015-10-02 11:36:07 +02:00
Bram Chen
8f5ad753af
Improve chinese translations of help texts
2015-10-01 21:53:49 +08:00
Jermolene
c0c0b6653c
Blog updates
2015-10-01 12:13:48 +01:00
Jermolene
99df9f46f7
Add support for tiddlers containing mp4 videos
2015-10-01 12:13:38 +01:00
Jermolene
814353d8ce
Fix accidental inconsistency between savetiddlers and rendertiddlers
...
“-do-not-delete” flag for savetiddlers command was introduced in 5.1.10
without consistency with the already implemented “noclean” flag for the
rendertiddlers command
2015-09-29 17:04:01 +01:00
Jermolene
7b8928886b
Add tw.utils.tagToCssSelector() helper method
2015-09-28 20:27:43 +01:00
Jermolene
6ac178323f
Docs: better definition of a plugin
2015-09-28 17:59:44 +01:00
Jermolene
72941f3e9a
Addresses #1066 by moving the search results into a dropdown.
...
The dropdown can be summoned by clicking on the search field. It will
only appear if the search field is not empty. When the search field is
not empty the dropdown can be also be summoned by clicking on the arrow
or search result count.
There are still some wrinkles where the dropdown doesn’t appear when
expected; I’d appreciate feedback to help reproduce those cases.
This change should still work with custom search result tabs.
2015-09-27 22:53:46 +01:00
Jermolene
b30126ec22
Text-slicer: add support for document metadata fields
...
The metadata for each field is in a tiddler tagged
`$:/tags/DocumentMetaData` with the field `caption` being the displayed
caption for the field and `field` being the name of the field.
`field-type` is the type of the field, and can be “string” or “list”.
2015-09-27 22:53:46 +01:00
Jermolene
ebb3a62d9a
Docs updates
2015-09-27 22:53:46 +01:00
Jermolene
b27a41eb86
Hide the fold-bar by default
2015-09-27 22:53:46 +01:00
Andreas Hahn
99c5fa46dd
fixed bug in $action-setfield introduced by #1963 : At least one of '$field', '$value' or '$index' must be specified in order to act upon the information from the fields. Prevents default deletion of the 'text' field when none are specified.
2015-09-27 15:35:54 +02:00
Jeremy Ruston
6107bbfd6e
Merge pull request #1966 from matabele/patch-1
...
Update cla-individual.md
2015-09-27 09:36:30 +01:00
William Jackson
8c538af9df
Update cla-individual.md
...
Signing CLA
2015-09-26 20:39:34 +02:00
Jeremy Ruston
115c40dc4a
Merge pull request #1964 from tobibeer/clear-tiddler-body
...
clears tiddler body for when one adds right-floating element to subtitle
2015-09-26 17:42:54 +01:00
Tobias Beer
6b1e6b7545
clears tiddler body for when one adds right-floating element to subtitle
...
otherwise has no effect
2015-09-26 12:22:17 +02:00
Jeremy Ruston
fd997c4581
Merge pull request #1963 from tobibeer/action-setfield-remove-index-or-field
...
updated #1480 "undefined value removes field or index"
2015-09-25 16:34:03 +01:00
Tobias Beer
1b2d54b4bf
wording for docs
2015-09-25 15:43:31 +02:00
Tobias Beer
6b3fc8d538
updated #1480 "undefined value removes field or index"
...
when $value is unspecified, $action-setfield removes field or index...
modified
setText() — $:/core/modules/wiki.js
invokeAction() — $:/core/modules/widgets/action-setfield
demo
http://tobibeer.github.io/tw/batch/#ActionSetField-RemoveIndex
2015-09-25 15:20:37 +02:00
Jermolene
57c40a8a56
Text-slicer: Tweaks to fix recently introduced bugs!
...
* Fixes problem with slicing wikitext tiddlers
* Adjusts position of heading expand/collapse icons in the view
template segment
2015-09-22 12:57:53 +02:00
Tobias Beer
a1ce254e95
fixes #1937 — filter refresh in set widget
...
as per @EvanBalster
2015-09-21 17:24:26 +02:00
Jermolene
90e0b6f555
Remove extraneous whitespace from view template
2015-09-19 21:12:37 +01:00
Jermolene
6ee8c14d89
Updates to the Danish translation
2015-09-19 18:59:23 +01:00
Jermolene
c03dc4c37c
Make the fold-bar be selectable as though it were a toolbar button
2015-09-19 09:36:26 +01:00
Jermolene
e6529af04e
Tiddler editor: accept new tags and fields when clicking "confirm"
...
Fixes #1939
2015-09-19 09:36:11 +01:00
Jermolene
21175012dc
Text-slicer: Fixes for images
2015-09-18 19:45:34 +01:00
Jermolene
cf00658ddf
Add full-width "unfold" button for folded tiddlers
...
And also a full-height “fold” button for unfolded tiddlers.
Trying to address #1908
2015-09-18 19:45:34 +01:00
Jermolene
b641cb402d
Add banner for unfolding tiddlers
2015-09-18 19:45:34 +01:00
Jeremy Ruston
6309d41b42
Merge pull request #1942 from BramChen/zh
...
Update chinese translations
2015-09-18 17:29:43 +01:00
Jermolene
268da52f8c
Documentation updates
...
Adding “Story River” to the “Concepts” category, and doing some
clean-up of other entries in the category by moving some concepts to
become sub-concepts in the TOC
2015-09-18 09:19:21 +01:00
Jermolene
dc020276b0
Update filesystemadaptor to use a metafile for all binary files
...
Previously, newly created image files would end up being saved as a
base64-encoded .tid file. Now they are saved as an ordinary binary file
with an accompanying .meta file for the metadata.
2015-09-17 19:43:10 +01:00
Jermolene
e2d63a03b2
Text-slicer: Improvements to image handling
2015-09-17 19:41:41 +01:00
Jermolene
1fef272388
Text-slicer: starting to support images
2015-09-17 08:41:21 +01:00
Jermolene
7b8cb928cf
Text-slicer: initial support for anchors
2015-09-16 18:59:03 +01:00
Florent V.
bbc802e228
Fix the title
...
to match the one required by the "FieldManglerWidget" tiddler's link to examples, broken for now. (pointing to a non existant tiddler because of the wrong name)
2015-09-16 04:55:07 +02:00
Bram Chen
8e98102281
Improve chinese translations of "tools" button tooltip
2015-09-16 10:15:31 +08:00
Jermolene
207406eeb3
tw5.com-docs improvements
...
Better not to override any of the tw5.com documentation tiddlers!
2015-09-15 17:51:20 +01:00
Jermolene
f4d11cb471
Add text-slicer to full edition
2015-09-15 17:50:57 +01:00
Jermolene
a19f7454ca
Improve "tools" button tooltip
...
Thanks @Evolena
2015-09-15 17:50:49 +01:00
Jermolene
5dbaf187f1
Text-slicer: more refactoring
2015-09-15 13:37:12 +01:00
Jermolene
746aab2cf6
Create a plugin and edition for tw5.com docs
...
By making the docs available as a plugin we make it easier for people
to fork their own copy of the docs without losing the ability to get
updates in the future (which can be done just be updating the docs
plugin)
2015-09-15 13:37:01 +01:00
Jermolene
803d70225a
Allow tiddlywiki.files to load directories recursively
2015-09-15 13:35:54 +01:00
Jermolene
f917c4da1a
Clarify hint for import button
...
Triggered by this discussion:
https://groups.google.com/forum/?utm_medium=email&utm_source=footer#!msg
/tiddlywiki/lVu-WIP4GXs/QvJB7by3NEAJ
2015-09-15 13:35:17 +01:00
Jermolene
d4bd253779
Release note update
2015-09-15 13:34:15 +01:00
Jeremy Ruston
5ef0259ab2
Merge pull request #1935 from hegart-dmishiv/patch-1
...
My first attempt at editing the TW documentation
2015-09-14 16:24:43 +01:00
Jeremy Ruston
f7cf62de57
Merge pull request #1936 from hegart-dmishiv/patch-2
...
Signing the CLA
2015-09-14 16:24:05 +01:00
Hegart Dmishiv
6976e57af6
Signing the CLA
...
You may not believe the date, but I'm in Auckland, New Zealand, which is GMT+12 timezone, so I come from the future!
2015-09-15 02:20:32 +12:00
Hegart Dmishiv
3c71c10da9
My first attempt at editing the TW documentation
...
Feel free to ignore this pull request if you want to, although it might be a useful addition to this page. I use NZ English normally, which is closer to UK English than to US English, but I still get confused between the two sometimes, having spent so long around the (predominately American) Internet.
2015-09-15 02:01:06 +12:00
Erwan Moreau
fb69a43325
Update TWCommunitySearch.tid
2015-09-13 19:23:25 +01:00
Erwan Moreau
7f93cea6d0
Create TWCommunitySearch.tid
2015-09-13 18:47:55 +01:00
Jermolene
e19617a5ce
Text-slicer updates
2015-09-13 09:37:57 +01:00
Jermolene
e62778a50f
Text-slicer: Make sliced documents collapsible
2015-09-12 09:41:25 +01:00
Jermolene
3592a9560b
Highlight plugin: add static demo
...
Also clean up some coding style issues
2015-09-11 22:36:30 +01:00
Jermolene
c80db86b67
Update to v8.8.0 of highlight.js
2015-09-11 19:53:06 +01:00
Jermolene
b379ab4f87
Text-slicer: better static HTML generation
2015-09-11 13:34:01 +01:00
Jermolene
c20e5b47b6
Clarify external text tiddler limitations
2015-09-11 13:34:01 +01:00
Jermolene
939596bd47
Add new "htmlencodedplainwikified" format to view widget
...
Triggered by the text-slicer plugin, but general purpose.
The clunky implementation shows the shortcomings of the view widget. It
was one of the first widgets to be implemented; subsequently, the
implementation of macros gives us a potentially more flexible way of
implementing these kinds of text transformations.
2015-09-11 13:34:01 +01:00
Jermolene
eb9fb6635d
Fix issues with creation and modification dates
...
There were several places where tiddlers were being written without the
creation/modification details being updated.
See
https://groups.google.com/d/msgid/tiddlywiki/17ef8ab0-0128-4467-8a9d-f17
bdbcf3618%40googlegroups.com
2015-09-11 13:34:01 +01:00
Jeremy Ruston
35e84c41ed
Merge pull request #1923 from BramChen/zh
...
Update chinese translations
2015-09-09 19:35:59 +01:00
Jermolene
3a700c025d
Fix thumbnail macro tiddler title
2015-09-09 17:46:42 +01:00
Jeremy Ruston
06ba6f62cb
Merge pull request #1927 from Evolena/master
...
Fix thumbnail macro when no caption parameter is provided
2015-09-09 17:46:10 +01:00
Jermolene
79132a1797
Revert incomplete experimental change to narrow screen layout
...
Fixes #1911
2015-09-09 17:12:36 +01:00
Jermolene
51d71f9858
Update blog edition docs
...
Fixes #1928
2015-09-09 17:03:26 +01:00
Jermolene
470238acbf
Fixes to KaTeX v0.5.1 upgrade
...
I hadn’t noticed that the fonts had changed…
2015-09-09 13:56:52 +01:00
Evolena
a25955d8c6
Fix thumbnail macro when no caption parameter is provided
2015-09-08 20:32:07 +02:00
Jermolene
424b2fea32
Add th-saving-tiddler hook for autotagging etc.
...
@danielo515 this enhancement is intended to make it easier to implement
things like the auto tag plugin. Does it meet your needs?
2015-09-08 16:16:50 +01:00
Bram Chen
0861e1bb3a
Add chinese Translations of lazy loading message
2015-09-08 22:14:25 +08:00
Bram Chen
8cf02fcb0f
Merge branch 'master' into zh
2015-09-08 21:10:30 +08:00
Jermolene
ecdae4ceff
Make lazy loading message be translateable
2015-09-08 10:41:27 +01:00
Jermolene
f405a89b28
Update to KaTeX v0.5.1
2015-09-08 10:37:33 +01:00
Jermolene
026c84197f
Text-Slicer: Support folding and fix bug with filter for retrieving list contents
2015-09-07 17:01:11 +01:00
Jermolene
76c12a9ecc
Make it easier for other view template segments to support folding
2015-09-07 17:00:03 +01:00
Bram Chen
1d33f5ed48
Add chinese translations of warning message for detected TiddlyWiki Classic plugins
2015-09-05 10:27:56 +08:00
Jermolene
2e0845b806
Release note update
2015-09-04 17:22:41 +01:00
Jermolene
2c9b1ae257
Add warning when trying to use plugins designed for TiddlyWiki Classic
2015-09-04 17:18:34 +01:00
Jeremy Ruston
1491ba71aa
Merge pull request #1921 from BramChen/zh
...
Update zh-Hant and zh-Hans
2015-09-04 17:11:38 +01:00
Jermolene
f0a655d8b2
Text-slicer: Switch from weaving with tags to lists alone
...
Many reasons:
* to allow subtrees to be grafted more easily
* to keep the tags for an entry clean by removing structural tags and
leaving the semantic tags
* to avoid the duplication of expressing the same relationship through
both the tags and list fields
2015-09-04 09:05:33 +01:00
Jermolene
4ea5dce284
Text-slicer improvements
...
1. Switch from using the text field of lists for storing the associated
filter to using the field `toc-list-filter` (to make it harder to
accidentally parse the text of an ordinary tiddler as a filter)
2. Fix several bugs
2015-09-04 08:42:07 +01:00
Bram Chen
34619481ad
Add chinese translations for new options of rendertiddler and savetiddlers commands
2015-09-03 21:34:55 +08:00
Jermolene
5dcb53abae
Docs update for text-slicer
2015-09-03 08:54:48 +01:00
Jermolene
ad6a6f3b75
Introduce the blog plugin
2015-09-03 08:54:41 +01:00
Jermolene
5176f008f0
Enhance savetiddlers command with do not delete option
2015-09-03 08:54:17 +01:00
Jermolene
4ccdaf3faf
Enhance rendertiddler command with template option
2015-09-03 08:53:08 +01:00
Jermolene
c4244e8f04
Text-slicer improvements
...
# Allow the slicer to be used as a command
# Sort the document preview column
2015-09-01 17:25:45 +01:00
Jermolene
1d30ee955c
Remove accidentally committed change
...
I’d added text-slicer to the main wiki just to check that it worked.
2015-09-01 17:12:38 +01:00
Jermolene
b4aa895cac
Text-slicer: add support for exclude filters
...
The exclude filter `+[tag[intro]]` will produce a document that only
includes the paragraphs with the tag “intro”. These are derived from
the paragraphs in the original document with the CSS class “intro”.
2015-09-01 09:59:23 +01:00
Jermolene
17dc21b809
Text-slicer refactoring
2015-08-31 20:32:32 +01:00
Jermolene
0be82ea7fb
Text-slicer: Introduce separate static templates
...
Much easier to have separate sets of templates for interactive vs
static document trees
2015-08-31 19:50:56 +01:00
Jermolene
cc4bef9c0e
Text-slicer: reorganise plugin shadow tiddler titles
2015-08-31 16:49:47 +01:00
Jermolene
ae80f9176d
Typo from last commit
2015-08-31 16:25:03 +01:00
Jermolene
73f3244113
Hide the fold-all and unfold-all buttons by default
2015-08-31 15:48:43 +01:00
Jermolene
709126dd64
Don't queue change events for deleting non-existent tiddlers
...
Fixes #1919
2015-08-31 15:48:32 +01:00
Jermolene
684fbb1ee8
Update to KaTeX v0.5.0
2015-08-31 15:10:07 +01:00
Jermolene
faa32bc424
Text-slicer: Make sure hide/show gadgets hidden in preview
2015-08-31 14:54:39 +01:00
Jermolene
bc448ce1fd
Text-slicer: updates
...
* Add warning in document tiddler toolbar if tiddler already exists
* Live preview document in new window
* Fix slicer.js bug that was preventing the list field of headings from
being filled in correctly
* Rationalise some class names
2015-08-31 14:15:44 +01:00
Jermolene
51d771a074
Extend tm-open-window to pass variables
2015-08-31 14:13:32 +01:00
Jermolene
4d4181b048
Missed off last commit
2015-08-30 19:15:12 +01:00
Jermolene
4cac7b6784
Lots of enhancement to the text-slicer plugin
...
Now includes a special document view column on the left. Headings can
be expanded/collapsed, and tiddler titles can be inspected and renamed
via the toolbar. Clicking on an entry opens the associated tiddler. The
default tiddler view template includes a special section for tiddlers
that are part of a document
2015-08-30 19:15:04 +01:00
Jermolene
0d55f2c46b
Observe storyleft position in fluid-fixed mode
2015-08-30 19:12:34 +01:00
Jermolene
3fbe07f1f8
Fix link widget propogation behaviour
...
Without this fix, using nested link widgets with custom elements causes
clicks on the inner element to trigger links on each of the containing
widgets
2015-08-30 19:12:12 +01:00
Jermolene
68e15c1064
Move rename tiddler handling into navigator widget
...
For consistency with the other tiddler manipulation primitives.
2015-08-30 19:11:14 +01:00
Jermolene
a204784c0c
Limited implementation of external text tiddlers in the browser
...
Triggered by the discussion in #1917
2015-08-29 16:33:04 +01:00
Jermolene
abd8201aaa
Text-slicer refactoring
...
Substantially cleaning up the main slicer code
2015-08-29 15:23:31 +01:00
Jermolene
97979e1fb1
Text-Slicer: update docs and change default view
2015-08-28 19:40:58 +01:00
Jermolene
46087fd270
Text-slicer update
...
* Improved docs on the created structure
* Added support for converting CSS classes as tags
* Added display of tags within the toolbar
2015-08-28 19:13:50 +01:00
Jermolene
f443719223
Text-slicer: Add selectable output views
2015-08-17 11:16:53 -04:00
Jermolene
74bd6e8232
Remove old code
...
Experimental code, accidentally committed
2015-08-10 22:20:40 +01:00
Jermolene
abcb2d3a1c
Text-slicer: improved generation of paragraph names
2015-08-10 20:32:30 +01:00
Jermolene
2eb645e5e5
Add getAttribute to fakeDom
2015-08-10 20:32:13 +01:00
Jermolene
d3ca636a5b
Text-slicer: switch to use tabbed internal navigation
2015-08-10 19:39:04 +01:00
Jeremy Ruston
c06b3c4ef7
Merge pull request #1906 from BramChen/zh
...
Update zh-Hant and zh-Hans
2015-08-10 11:43:19 +01:00
Jermolene
3cfad8b044
Refactoring of text-slicer
...
Now we process the rendered HTML of tiddlers, which allows us to
process HTML generated by MS Word. In fact, the HTML that MS Word
generates is so awful, I’ve instead been using Mammoth to do the
conversion: https://github.com/mwilliamson/mammoth.js
Also some necessary improvements to the fake dom implementation.
2015-08-10 11:41:23 +01:00
Jermolene
010b01f205
Remove extra DIV added to view template
...
One of the changes for introducing folded tiddlers was the extra reveal
widget here, which introduces an extra DIV element, breaking some CSS
rules. To fix it, we re-use the reveal widgets generated DIV as the
tiddler body DIV
2015-08-10 11:39:11 +01:00
Bram Chen
66b405ac81
Update chinese translation of all fold/ unfold buttons
...
* new "fold all" and "unfold all" page buttons
* new "unfold tiddler" toolbar button
2015-08-10 13:49:13 +08:00
Jermolene
4d5c14bca7
Release note update
2015-08-09 17:25:26 +01:00
Jermolene
ac08dc2e35
Added fold/unfold all buttons
...
More translations, @BramChen, apologies…
2015-08-09 17:25:01 +01:00
Jermolene
4bcf1e298b
Release note updates
2015-08-09 16:44:47 +01:00
Jermolene
4152fbbfeb
Use different wording for unfolding vs folding
...
Apologies for making more work @BramChen!
2015-08-09 16:40:58 +01:00
Jermolene
16c69bb419
Tweaks to fold button
2015-08-09 16:11:37 +01:00
Jeremy Ruston
27ec05e521
Merge pull request #1905 from BramChen/zh
...
Update zh-Hant and zh-Hans
2015-08-09 14:33:39 +01:00
Bram Chen
0f32af1cce
Add chinese translations of "fold" button for the tiddler toolbar
2015-08-09 21:03:51 +08:00
Jermolene
bad4a19f8e
Add fold others button
2015-08-09 12:56:48 +01:00
Jermolene
c91c7b7cbb
Updates to Korean translation
2015-08-09 12:44:57 +01:00
Jermolene
ef87dd0687
Update release note
2015-08-09 11:11:04 +01:00
Jermolene
5d43cd7408
Add fold tiddler toolbar button
...
Addressing this tweet:
https://twitter.com/s_stryjecki/status/629349768280604672
2015-08-09 11:10:04 +01:00
Jermolene
6a3c4d6c91
Flip logic for suppressing timestamps
...
Fixing a mistake from the earlier commits, so that the default remains
that the timestamps are applied.
2015-08-09 11:09:02 +01:00
Jermolene
318a1cf212
Release note updates
2015-08-08 14:43:01 +01:00
Jeremy Ruston
1022854900
Merge pull request #1904 from araname/master
...
Signing the CLA
2015-08-08 14:39:02 +01:00
Myeongjin
be0ab28e89
Signing the CLA
2015-08-08 22:32:39 +09:00
Jermolene
fbe4bc18b9
Move JS-oriented mechanism docs to /dev
...
Fixes #1889
2015-08-08 13:56:42 +01:00
Jermolene
7421616754
Make keyboard shortcuts configurable
...
Fixes #1892
2015-08-08 13:43:14 +01:00
Jermolene
6c6b723a0d
Tweak sidebar height for narrow screens
2015-08-08 13:08:10 +01:00
Jermolene
4f5cf4597a
Remove blur effect from modals
...
Fixes #1893
2015-08-08 13:08:10 +01:00
Jeremy Ruston
e27e49e00c
Merge pull request #1894 from BramChen/zh
...
Update chinese translations
2015-08-08 13:04:43 +01:00
Jermolene
cac6d3b4d9
Improve sidebar behaviour on narrow screens
...
Now the sidebar is a fixed overlay. It is scrollable, taking up 50% of
the height of the screen, so that the underlying page can be partially
seen.
There’s more to be done: on narrow screens we probably want the sidebar
to be hidden by default.
2015-08-08 08:39:37 +01:00
Bram Chen
d01d8539a6
Merge branch 'master' into zh
2015-08-07 09:51:48 +08:00
Jermolene
e5cd8313a0
Update actionsetfield widget to allow timestamp to be preserved
2015-08-06 18:17:09 +01:00
Jeremy Ruston
821617058d
Merge pull request #1901 from SuperDOS/master
...
Update cla-individual.md
2015-08-06 17:43:57 +01:00
SuperDOS
22563792c4
Update cla-individual.md
2015-08-06 15:16:19 +02:00
Jermolene
b1cf0fdd68
Text-slicer tweaks
...
* Add site title/subtitle
* Remove proxy title tiddler used for renames when no longer used
2015-08-05 19:21:48 +01:00
Jermolene
cbbe90313b
Add in-place editing for text-slicer plugin
...
@pmario \o/
2015-08-05 15:08:03 +01:00
Jermolene
fdce67399d
Provide option to suppress navigation for edit/cancel/save
2015-08-05 15:07:19 +01:00
Bram Chen
d7263d8413
Merge branch 'master' into zh
2015-08-05 15:01:48 +08:00
Jermolene
72ed4b2673
Add renaming to text-slicer tiddler toolbar
...
The plan is to expose the functionality in other places, too - for
example, the edit template and the tag manager
2015-08-04 17:44:07 +01:00
Jermolene
be0ebfeeae
Make the text slicer tiddler toolbar be tag-driven
2015-08-04 17:34:28 +01:00
Jermolene
535d8d6fa0
Stop using an import tiddler for text slicer
...
Instead we directly output the tiddlers (we keep the old code around;
later we’ll make the output mode switchable).
Also improve the icon
2015-08-04 08:04:57 +01:00
Jermolene
dd1f82c1aa
Improve the text-slicer icon
2015-08-03 17:09:48 +01:00
Jermolene
898e992694
Improvements to text-slicer plugin
...
1. Introduce template tiddlers for the document, each tiddler, and the
tiddler toolbar
2. Move the text slicer toolbar button to the left of the edit button
3. Add a selectable toolbar, currently just containing the tiddler title
2015-08-03 15:10:35 +01:00
Jermolene
2e5c500300
Fix slice button tooltip
2015-08-03 09:13:45 +01:00
Jermolene
8b9e790e69
Improve text slicer docs
2015-08-03 09:13:36 +01:00
Jermolene
cc1acdaf74
Add ko-KR and sv-SE to translators edition
2015-08-03 08:43:21 +01:00
Bram Chen
b57feaa6a8
Correct encoding of chinese character
2015-08-03 14:19:26 +08:00
Bram Chen
db20d8f812
Merge branch 'master' into zh
2015-08-03 13:56:06 +08:00
Jermolene
9168480d18
Clear caches when changing plugins
2015-08-02 22:22:33 +01:00
Jermolene
bc0d8c7c65
Add Korean (Korean Republic) translation
2015-08-02 13:59:26 +01:00
Jermolene
c6c9abeb1b
Add Swedish translation by Superdos
2015-08-02 11:39:57 +01:00
Jermolene
d2c14ba203
Use nested icon for text-slicer
...
We transclude the existing text-slicer icon on top of the hexagonal
background image.
2015-08-02 11:38:55 +01:00
Jermolene
1e25de984b
More specificity for plugin listing CSS rules
...
This is to enable us to use nested SVGs as icons (see next commit)
2015-08-02 11:38:25 +01:00
Bram Chen
0691286092
Merge branch 'master' into zh
2015-08-02 09:11:56 +08:00
Jermolene
9ec38eef32
Improve text-slicer macros
...
Encapsulate tiddler display so that we can detect draft tiddlers and
display them through their own template
2015-08-01 18:10:00 +01:00
Jermolene
d938c10144
Use new story object to navigate to slicer output
2015-08-01 18:09:30 +01:00
Jermolene
c23e26be5f
No longer need to keep text slicer output open
2015-08-01 18:09:14 +01:00
Jermolene
8444961cd2
Introduce Story object
...
A lightweight object to encapsulate manipulation of the story and
history lists
2015-08-01 18:09:00 +01:00
Bram Chen
e1cce60df3
Add chinese translations for parser rule configuration in control panel
2015-08-01 21:19:03 +08:00
Jermolene
a4d0210f90
Use $:/TextSlicer for text-slicer output
2015-08-01 13:48:57 +01:00
Jermolene
cd29eed067
Fix problem with importing using wrong import tiddler name
2015-08-01 13:48:46 +01:00
Jermolene
3b321b5d26
Add buttons to the top of the $:/Import tiddler too
2015-08-01 13:19:39 +01:00
Jermolene
8488a13761
Introduce text-slicer plugin and edition
...
A first pass at a plugin that splits formatted text into individual
tiddlers according to lists and headings.
2015-08-01 13:15:24 +01:00
Jermolene
8f746f9dde
Add parse tree utility for collecting text
2015-08-01 13:14:32 +01:00
Jermolene
7cc85e8162
Use relative links for editions
...
Thus making the links work properly in both the release and prerelease
2015-08-01 13:14:17 +01:00
Jermolene
f708b4df65
Turn off performance instrumentation
...
The plan is to make it be a user configurable option
2015-08-01 13:13:47 +01:00
Jermolene
58188cf805
Improvements to parser rule configuration
...
* Ignore parser rule configuration in safe mode
* Made text translatable
* Added new setting for camelcase links
* Added warning on parser rule configuration tab
See #1875
2015-07-31 13:33:33 +01:00
Jermolene
d5e690a06d
First pass at global disabling of parser rules
...
This is to address #1875 more quickly than via #345 .
This commit only includes a partial implementation of the UI - see the
ticket for details.
2015-07-30 12:28:29 +01:00
Jermolene
9e1741a549
Move 5.1.10-specific content to "staging" folder
...
So that we can build tw5.com with 5.1.9 for content updates.
2015-07-29 08:23:38 +01:00
Jermolene
73210a7b8c
Refine the way that we support serialised external tiddler files
...
The old way was sufficiently backwards compatible that it was
impossible to use TiddlyWiki 5.1.9 to build the tw5.com edition.
2015-07-28 19:56:56 +01:00
Jeremy Ruston
273daa9613
Fix unicode characters in filename
2015-07-20 19:07:55 +01:00
Jeremy Ruston
6de92a0293
Fix unicode characters in filename
2015-07-20 19:07:26 +01:00
Jeremy Ruston
66bdb71c4a
Fix unicode characters in filename
2015-07-20 19:07:08 +01:00
Jeremy Ruston
90b12676c4
Merge pull request #1887 from inmysocks/ResumeBuilder
...
Updated spelling of résumé, fixed settings for new resumes, other minor fixes
2015-07-20 19:03:52 +01:00
inmysocks
e508b7b765
Updated spelling of résumé, fixed settings for new resumes, other minor fixes
...
The spelling for résumé should include the accents everywhere but in some tiddler titles.
Newly created resumes now automatically have the default settings for visibility and templates
The first page of the resume wizard now has options for which sections are displayed along with the order and templates to use
The print option no longer puts a black box around the text area out the output
Some temp tiddlers are included to prevent the default 'Enter text for <tiddlername> tiddler' from showing up in some text entry boxes
There are some other minor layout improvements
2015-07-20 11:52:58 -06:00
Jermolene
c25f7e786f
Correct accents for "résumé"
...
@inmysocks this may be a bit of pedantry too far, but I found I keep
reading it as “resume” in the sense of “normal services was resumed”.
We definitely shouldn’t try to add accents to the URLs, but I wonder if
it might be worth updating the edition itself, too?
2015-07-20 10:52:24 +01:00
Jeremy Ruston
92bfbc578c
Merge pull request #1886 from inmysocks/ResumeBuilder
...
Resume builder update
2015-07-20 08:29:10 +01:00
inmysocks
756ebae1f6
Added a section creation tool and some minor fixes
...
The section creation tool is a semi-automated tool for adding new resume sections.
It still requires knowledge of wikitext but it requires far less knowledge of the inner workings of the resume builder
than just creating a section on your own would.
2015-07-19 17:54:46 -06:00
inmysocks
45bf43d8d0
Added Print button, cleaned up a lot of other minor stuff
...
Notable changes:
Removed the sidbar tabs other than the resume preview
Fixed ordering problems for the sections in the resume wizard
Fixed some minor display problems in some of the input tiddlers
Updated the documentation a little
2015-07-19 13:04:10 -06:00
Jermolene
ea10d85604
Add link to "resume builder" edition
2015-07-18 13:34:30 +01:00
Jeremy Ruston
7e94fa8e84
Merge pull request #1885 from inmysocks/ResumeBuilder
...
Added resume builder edition
2015-07-18 12:33:20 +01:00
Jermolene
3fbf29093b
Use tiddler control colour for search icons
...
Fixes #1787
2015-07-18 12:22:35 +01:00
Jermolene
ecbd97b4b4
Revise support for external tiddler files
...
Fixes #1884
2015-07-18 11:45:30 +01:00
inmysocks
684d6e4377
Added the state tiddler to make the preview open by default
...
Yep, I may actually be learning to use git. It only took 10 years of using it.
2015-07-18 00:32:26 -06:00
inmysocks
8bb0a9b7c8
Moved files to be keep consistent organization
...
Also remembered to add tiddlywiki.info, that is important.
2015-07-18 00:23:51 -06:00
inmysocks
56ea55ddc4
Added resume builder edition
...
Lets see if this works this time
2015-07-18 00:05:26 -06:00
Jermolene
dfc935b520
Fix link to SocialCalc
...
Fixes #1884
2015-07-17 08:59:29 +01:00
Jermolene
72cf85f0d4
Restore error trapping for KaTeX rendering
2015-07-17 08:58:58 +01:00
Jermolene
69ae017f49
Update the plugin library version
2015-07-17 08:58:39 +01:00
Jermolene
9b6151c6c4
Update dev docs
2015-07-14 17:03:37 +01:00
Jermolene
f8027a3708
Fixed problem with static generation of KaTeX in the browser
2015-07-14 08:45:14 +01:00
Jermolene
18e38bb2bc
Fix bug with 2cb6400773
...
The problem was that we failed to escape the dash in the regexp,
meaning that it was matching all characters from “.” to “_”.
2015-07-14 08:33:12 +01:00
Jermolene
2cb6400773
Extend automatic system tiddler linking to digits and underscore
...
Fixes #1877
2015-07-13 14:42:55 +01:00
Jermolene
396af28d16
Update SavingMechanism docs
2015-07-12 09:08:19 +01:00
Jermolene
e0aacc84d5
Add publishFilter to default save template
...
Making #1800 a bit more useful
2015-07-12 09:08:11 +01:00
Jermolene
7ae5eab3a8
Refactored file save filter docs
...
@danielo515 I hope this still makes sense.
2015-07-10 17:02:27 +01:00
Jeremy Ruston
c2342fce7a
Merge pull request #1876 from danielo515/patch-10
...
Filters involved saving mechanism of standalone
2015-07-10 16:44:14 +01:00
Jermolene
32f6d7f1b0
Revert getTiddlerData() and add getTiddlerDataCached()
...
For backwards compatibility, we now explicitly request the cacheable
version of this method.
Fixes #1873
2015-07-10 16:43:50 +01:00
Daniel Rodríguez Rivero
0e75497d58
Filters involved saving mechanism of standalone
...
This is directly extracted from the groups. I though that putting this info into documentation will be useful, because it is not stated in any other place.
ref: https://groups.google.com/d/msg/tiddlywiki/zB40PBIDkBE/DzV1ZHudM3sJ
2015-07-09 17:11:09 +02:00
Jeremy Ruston
0c276c327b
Merge pull request #1874 from nameanyone/master
...
Expanded example
2015-07-09 08:30:19 +01:00
nameanyone
4cfb6813f5
Expanded example
2015-07-08 23:26:15 -07:00
Jeremy Ruston
d327d6fbed
Merge pull request #1868 from idoine/patch-44
...
Update FieldManglerWidget.tid
2015-07-08 16:29:46 +01:00
Jeremy Ruston
fad9fd13b5
Merge pull request #1869 from idoine/patch-45
...
Create FieldMangler Widget (Examples).tid
2015-07-08 16:29:39 +01:00
Jeremy Ruston
82fac2599d
Merge pull request #1867 from idoine/patch-43
...
Update variable-macros.tid
2015-07-08 16:29:16 +01:00
Jermolene
862e358b57
Refine check for client server plugins
...
Fixes #1870
2015-07-08 15:48:13 +01:00
Jermolene
7dddc925ae
Allow delete button to be used in view toolbar
...
Fixes #1871
2015-07-08 15:33:18 +01:00
Jermolene
8f63e2a959
Optimise iterating through tiddlers
...
Astonishingly, it’s much quicker to use `Object.keys()` to get an array
of key names, and then iterate through that. I’m seeing 25% speed
improvements for an empty tiddler iterator.
2015-07-08 08:27:28 +01:00
Jermolene
8bfc6f3557
Adjust cache names for parse caches
...
The old names were a hangover from an old refactoring.
2015-07-08 08:26:19 +01:00
Marc Viot
5be980c64e
Rename FieldMangler Widget (Examples) to FieldMangler Widget (Examples).tid
2015-07-06 19:52:11 +02:00
Marc Viot
5924616ee9
Create FieldMangler Widget (Examples)
2015-07-06 19:46:21 +02:00
Marc Viot
caeb736c2b
Update FieldManglerWidget.tid
...
Add a link to example
2015-07-06 19:09:17 +02:00
Marc Viot
a75cfefe88
Update variable-macros.tid
...
Add ability to handle widget example
2015-07-06 19:05:44 +02:00
Jermolene
203bc4b242
Prepare for 5.1.10
2015-07-06 11:23:49 +01:00
Jermolene
48d452c535
Update test for recent parser changes
2015-07-06 11:23:30 +01:00
Jermolene
848a7f4e74
Optimise getStateQualifier()
...
Another fix for #1864 , this time we’re caching state qualifiers as they
are expensive to compute.
2015-07-06 11:23:12 +01:00
Jermolene
c6e48ebc2d
Performance optimisations
...
In some situations, I’m seeing x2.5 speedups with these optimisations
Starts fixing #1864
2015-07-05 19:47:44 +01:00
Jermolene
a86cfe2663
Minor coding style tweaks
2015-07-05 18:09:35 +01:00
Jermolene
31fc9babfe
Move "recent" filter docs to prerelease
...
This is to ensure that the changes don’t appear in any subsequent build
of tiddlywiki.com while we’re on 5.1.9.
2015-07-05 18:08:38 +01:00
Jeremy Ruston
c4397792f5
Merge pull request #1863 from nameanyone/master
...
New filter "recent"
2015-07-05 18:04:05 +01:00
Jermolene
4b2cf2eeee
2nd attempt to fix creation date
...
Thanks @nameanyone
2015-07-05 18:02:57 +01:00
Jermolene
b0cb17cd83
Re-establish caching of results of parsing a tiddler
...
I switched this optimisation off back in
ed35d91be6 , in October 2013, as part of a
big refactoring of the parsing and widget mechanism. I’ve been meaning
to switch it back on for some time.
My rough measurements suggest that this optimisation can reduce
rendering time by 5-10%.
2015-07-05 17:48:18 +01:00
Jermolene
c1005b9d12
Fix invalid creation date
...
Thanks @nameanyone
2015-07-05 09:27:54 +01:00
nameanyone
9d17127144
Filter operator "recent": examples
2015-07-03 15:31:37 -07:00
nameanyone
a1e5000984
Filter operator "recent": documentation
2015-07-03 15:31:18 -07:00
Jermolene
a58dc869bd
Correct typo
2015-07-03 17:44:55 +01:00
Jermolene
f1ae41da9a
Update release documentation
2015-07-03 16:59:40 +01:00
Jermolene
56403a21bf
Update 5.1.9 release date
2015-07-03 16:59:30 +01:00
Jermolene
cc4d231942
Version number update for 5.1.9
2015-07-03 16:47:58 +01:00
Jermolene
266eee946c
Update readmes
2015-07-03 16:47:39 +01:00
Jermolene
bc076eee27
Docs updates preparing for 5.1.9 release
2015-07-03 16:39:42 +01:00
Jermolene
4754356f5a
Add @infurnoape to 5.1.9 contributors
2015-07-03 15:28:30 +01:00
Jeremy Ruston
c47ff42589
Merge pull request #1859 from BramChen/zh
...
Update zh-Hant and zh-Hans
2015-07-03 10:12:01 +01:00
Jermolene
5f346ff0be
Remove unneeded file
2015-07-03 10:00:27 +01:00
Jeremy Ruston
e8348edd8d
Merge pull request #1860 from xcazin/fr-FR
...
fr-FR translation of Fields/Add/Dropdown strings in Edit template
2015-07-03 09:49:18 +01:00
Jeremy Ruston
6bf0bbe160
Merge pull request #1861 from r1chard5mith/patch-4
...
changed the tag value used in the final example
2015-07-03 09:47:47 +01:00
Xavier Cazin
525e55c7ea
Corrections to Encryption strings in fr-FR translation
2015-07-03 10:45:55 +02:00
Richard Smith
f3d915f578
changed the tag value used in the final example
...
Because "Introduction" is no longer used on Tiddlywiki.com, so the example is a bit confusing
2015-07-03 14:09:59 +10:00
Bram Chen
109eebaaa2
Add chinese translations for ToolbarButtonStyle in $:/ControlPanel Settings tab
2015-07-03 09:29:48 +08:00
Bram Chen
55530e80a8
Merge branch 'master' into zh
2015-07-03 09:08:08 +08:00
Jermolene
3a7e29674b
Fix problem with checkbox widget and missing tiddlers
...
The newly added invertTag code was crashing if the tiddler doesn’t
exist.
2015-07-02 17:33:51 +01:00
Jermolene
8b7aad11c0
Update release notes
2015-07-02 17:33:26 +01:00
Jermolene
35703d846b
Release note update
2015-07-02 17:10:28 +01:00
Jermolene
db0d95afcd
Style tweaks for toolbar buttons
2015-07-02 16:59:35 +01:00
Xavier Cazin
9061e76670
fr-FR translation of Fields/Add/Dropdown strings in Edit template
2015-07-02 14:12:41 +02:00
Jermolene
f3b5dc530e
First pass at selectable toolbar button styles
...
There’s not much to making the toolbar button styles switchable: the
change to the PageTemplate introduces a new configuration tiddler that
controls the button styling. Most of this commit is the user interface
for changing that setting, including the translatable text. I think
this again demonstrates that we need to be very selective about which
configuration options have a UI included in the core. Otherwise, a few
dozen more of these settings will start to become a significant
fraction of the core.
2015-07-02 08:57:06 +01:00
Bram Chen
a4e7ac9b2e
Add chinese translations of Fields/Add/Dropdown
2015-07-02 09:35:28 +08:00
Jermolene
68564eaeff
Update release note
2015-07-01 15:59:43 +01:00
Jermolene
31ebbb2d7d
Add translatable strings for type dropdown
2015-07-01 15:58:49 +01:00
Jeremy Ruston
062aa03c5a
Merge pull request #1849 from Infurnoape/master
...
Update fields.tid
2015-07-01 15:40:25 +01:00
Jeremy Ruston
755404958e
Merge pull request #1858 from BramChen/zh
...
Update zh-Hant and zh-Hans
2015-07-01 14:27:03 +01:00
Bram Chen
ba188b70f5
Add chinese translations of TagManager/Count/Heading
2015-07-01 19:44:36 +08:00
Jeremy Ruston
908bb87505
Merge pull request #1857 from sukima/feature/move-tag-count-to-tag-manager
...
Move tag counts to TagManager
2015-07-01 09:24:32 +01:00
Jermolene
497a7ebf81
Revert e2d4e41e96
...
There were unintended sideeffects on the toolbar dropdown menus
2015-07-01 09:24:12 +01:00
Jermolene
8ada96eaa8
Add additional contributors
...
5.1.9 is shaping up to have an unusually large number of contributors.
I can’t thank everyone enough; it’s a source of great pride that
TiddlyWiki is sufficiently good that other people are prepared to help
me work on it.
2015-07-01 09:24:12 +01:00
Devin Weaver
7057c6252e
Fix bad table rendering with info button
...
When the info button in the TagManager was press it revealed the info
table but it was squished in one cell and that pushed the right side of
the table past the width of the tiddler. So using a colspan optimises
the spacing (plus it looks better).
2015-06-30 23:59:23 -04:00
Devin Weaver
98a1ee1a8d
Add untagged to TagManager
...
Used for stats and easy access to the untagged pill
2015-06-30 23:56:16 -04:00
Devin Weaver
7d348b3733
Move counts to TagManager
2015-06-30 23:56:02 -04:00
Jeremy Ruston
533c8eec7a
Merge pull request #1851 from slovuj/patch-1
...
Wrong macro name in example description
2015-06-30 22:30:29 +01:00
Jeremy Ruston
ac2e6fff7e
Merge pull request #1855 from slovuj/patch-2
...
Update cla-individual.md
2015-06-30 22:28:41 +01:00
Slo
03a216d756
Update cla-individual.md
2015-06-30 23:20:06 +02:00
nameanyone
a37ba2afbe
New filter operator "recent"
...
Select tiddlers with a specified date field (default "modified") within the last N days (default 0, meaning today).
2015-06-30 14:05:03 -07:00
Jermolene
15c76d997e
Docs updates
2015-06-30 22:01:06 +01:00
Jermolene
e2d4e41e96
Update font size of text toolbar buttons
2015-06-30 18:58:13 +01:00
Jermolene
7318805077
Update release notes
2015-06-30 18:25:47 +01:00
Jeremy Ruston
1376eaa40a
Merge pull request #1847 from marcor/master
...
Italian update
2015-06-30 18:25:06 +01:00
Jeremy Ruston
d4dc1a2441
Merge pull request #1848 from felixhayashi/improvement/docs
...
improved docs
2015-06-30 18:16:27 +01:00
Jermolene
8438be5256
Update docs
2015-06-30 17:56:23 +01:00
Jeremy Ruston
c2ca1d3ed4
Merge pull request #1850 from nameanyone/master
...
Add publishFilter to tiddlyweb save-offline
2015-06-30 17:53:34 +01:00
Slo
5b20255749
Wrong macro name in example description
...
The \define pragma below defines a macro called tags.
should be:
The \define pragma below defines a macro called tags-of-current-tiddler.
2015-06-30 11:01:49 +02:00
nameanyone
8ce3f9983f
Update save-offline.tid
2015-06-29 14:31:33 -07:00
Jermolene
5f3587c38c
Update to KaTeX 0.4.3
2015-06-29 21:07:26 +01:00
Andrew J Harrison
7ad15bc248
Update fields.tid
...
Add a new field drop down
2015-06-29 10:45:41 -07:00
Felix Hayashi
f69d1270ad
improved docs
...
* Updated tiddlymap website
* Improved GitHub description
2015-06-28 13:43:11 +02:00
marcor
841f1b392c
Yet another signature
2015-06-26 22:59:59 +02:00
Jermolene
bc885027c3
Updated Dutch translation
2015-06-26 16:31:11 +01:00
Jermolene
63f802efda
Rename checkbox "invert" attribute to "invertTag"
...
And update docs
2015-06-26 10:18:15 +01:00
Jeremy Ruston
22d35bf989
Merge pull request #1846 from welford/xobkcehc
...
add invert parameter to checkbox plugin
2015-06-26 10:08:41 +01:00
marcor
cc59d445a2
Italian update
2015-06-26 00:15:44 +02:00
James Welford Anderson
379181ded5
add invert parameter to checkbox plugin
...
for when you want a tag to denote the lack of a check rather than the
presence of one.
2015-06-26 05:10:13 +09:00
Jeremy Ruston
f3c066ff48
Merge pull request #1837 from sukima/feature/multi-tiddler-file-syntax
...
Add a syntax specification to MultiTiddlerFiles
2015-06-25 17:33:15 +01:00
Jeremy Ruston
f74828f76d
Merge pull request #1838 from sukima/patch-1
...
Add GitFixUm community example
2015-06-25 17:01:47 +01:00
Jeremy Ruston
1d94eac76e
Merge pull request #1844 from sukima/feature/sjcl-tiddler
...
Add Stanford JavaScript Crypto Library tiddler
2015-06-25 14:28:04 +01:00
Jeremy Ruston
7050a8d8cf
Merge pull request #1841 from xcazin/fredmv
...
Additions to the fr-FR edition by @idoine, slightly amended by @xcazin
2015-06-25 11:47:05 +01:00
Devin Weaver
b33c9625fb
Add Stanford JavaScript Crypto Library tiddler
2015-06-24 19:56:26 -04:00
Xavier Cazin
3918286221
Replace occurrences of *tiddler ombre* by *tiddler shadow* in fr-FR edition
2015-06-24 15:29:12 +02:00
Xavier Cazin
b1dd1bc93c
Additions to the fr-FR edition by @idoine, slightly amended by @xcazin
2015-06-24 12:25:58 +02:00
Jermolene
ff7824af11
Update release note
2015-06-24 09:25:33 +01:00
Jermolene
50c6ce8b73
Improve syslink parsing
...
Fixes #1767
2015-06-24 09:24:03 +01:00
Jermolene
948b72dc7a
Add language icons to tw5.com
2015-06-23 10:49:59 +01:00
Jermolene
f3a66c17a6
Tweak translator docs
2015-06-23 10:49:59 +01:00
Jermolene
53072dd7aa
Extended tiddlywiki.files to support tiddler files
...
Previously, we just read the target file as a block of UTF-8. With this
update, we deserialise the file, allowing us to use file formats like
.tid within the tiddlywiki.files file.
2015-06-23 10:49:59 +01:00
Jermolene
8e12d4cb70
Correct typo
2015-06-23 10:49:58 +01:00
Devin Weaver
162735303b
Add GitFixUm community example
...
Thought this was a unique enough example to be part of the TW5.com site.
2015-06-21 17:49:59 -04:00
Devin Weaver
1ff1390863
Add a syntax specification to MultiTiddlerFiles
...
Been playing with the railraod plugin and I thought I'd try my hand at
writing some syntax specs for the MultiTiddlerFiles tiddler.
2015-06-21 14:35:55 -04:00
Jeremy Ruston
88c2f5a985
Merge pull request #1820 from idoine/patch-23
...
New fr_fr "Filter Whitespace.tid"
2015-06-21 13:47:03 +01:00
Jeremy Ruston
a006f44334
Merge pull request #1819 from idoine/patch-22
...
New fr_fr "Filter Parameter.tid"
2015-06-21 13:46:59 +01:00
Jeremy Ruston
5678605241
Merge pull request #1818 from idoine/patch-21
...
New fr_fr "Filter Run.tid" & "Filter Step.tid"
2015-06-21 13:46:52 +01:00
Jeremy Ruston
d9240b25fd
Merge pull request #1817 from idoine/patch-20
...
New fr_fr "Filter Expression.tid"
2015-06-21 13:46:47 +01:00
Jeremy Ruston
0fa661f473
Merge pull request #1816 from idoine/patch-19
...
Upgrade fr FilterOperators.tid
2015-06-21 13:46:43 +01:00
Jeremy Ruston
fb1c7078a7
Merge pull request #1815 from idoine/patch-18
...
New fr_fr "Filter Syntax.tid"
2015-06-21 13:46:34 +01:00
Jeremy Ruston
145f5d8cc1
Merge pull request #1814 from idoine/patch-17
...
Upgrade fr Introduction to Filters.tid
2015-06-21 13:46:27 +01:00
Jeremy Ruston
14d3b0ffa8
Merge pull request #1813 from idoine/patch-16
...
Upgrade fr Filters.tid
2015-06-21 13:46:16 +01:00
Jeremy Ruston
f13b1d0ada
Merge pull request #1812 from idoine/patch-15
...
Add fr TOCMacro Tabbed Ex 2/2 (warning)
2015-06-21 13:46:09 +01:00
Jeremy Ruston
6322c9bef2
Merge pull request #1811 from idoine/patch-14
...
Upgrade fr TOCMacro Tabbed Ex 1/2 (warning)
2015-06-21 13:45:59 +01:00
Jeremy Ruston
e55db75135
Merge pull request #1810 from idoine/patch-13
...
Upgrade fr TOCMacro Selective Expandable Example.tid (warning)
2015-06-21 13:40:16 +01:00
Jeremy Ruston
23b7b1120a
Merge pull request #1809 from idoine/patch-12
...
Upgrade fr TOCMacro Sorted Expandable Example.tid (warning)
2015-06-21 13:40:08 +01:00
Jeremy Ruston
8c419eec20
Merge pull request #1808 from idoine/patch-11
...
Upgrade fr TOCMacro Expandable Example (warning)
2015-06-21 13:40:04 +01:00
Jeremy Ruston
ac79b14ef3
Merge pull request #1807 from idoine/patch-10
...
Upgrade fr TOCMacro Simple Example.tid (warning)
2015-06-21 13:39:34 +01:00
Jeremy Ruston
f6268f811e
Merge pull request #1806 from idoine/patch-9
...
Usefull translated "T.o.C Macros (Examples)" for the new translated "T.o.C macro"
2015-06-21 13:39:09 +01:00
Jeremy Ruston
e0869271aa
Merge pull request #1805 from idoine/patch-6
...
Corrections for the fr-FR edition
2015-06-21 13:38:59 +01:00
Jeremy Ruston
4c2900c9c3
Merge pull request #1804 from idoine/patch-5
...
Add New translated "$__CurvedText.tid" to fr
2015-06-21 13:38:48 +01:00
Jeremy Ruston
319d9a71af
Merge pull request #1803 from idoine/patch-4
...
Translated "Un wiki sur votre BiblioBox" ... to french
2015-06-21 13:38:33 +01:00
Jeremy Ruston
6d35101bf7
Merge pull request #1802 from idoine/patch-3
...
Extend Glossaire en-GB -> fr-FR with new words
2015-06-21 13:38:24 +01:00
Jeremy Ruston
ddb28681a7
Merge pull request #1765 from idoine/patch-2
...
l20 "demande de TiddlyFox qui vous demande s'il faut activer"
2015-06-21 13:37:36 +01:00
Marc Viot
8255d0d855
Rename Table-of-Contents Macros (Examples) to Table-of-Contents Macros (Examples).tid
2015-06-21 14:17:15 +02:00
Marc Viot
25683c64da
New translated tiddler for fr_fr
2015-06-21 13:12:31 +02:00
Marc Viot
030b032f0d
New translated tiddler for fr_fr
2015-06-21 13:06:48 +02:00
Marc Viot
d41563af6e
New translated tiddler for fr_fr
2015-06-21 12:49:15 +02:00
Marc Viot
2e9848c169
New translated tiddler for fr_fr
2015-06-21 12:41:29 +02:00
Marc Viot
3d226eca3c
New translated tiddler for fr_fr
2015-06-21 12:32:10 +02:00
Marc Viot
cd083a4980
Upgrade fr translation
2015-06-21 12:18:14 +02:00
Marc Viot
2803ed0a23
Add a Translated to french
2015-06-21 12:00:12 +02:00
Marc Viot
f4c630d5f7
Upgrade fr translation
2015-06-21 11:44:58 +02:00
Marc Viot
dc49c4410a
Upgrade fr translation
2015-06-21 11:30:25 +02:00
Marc Viot
b1334b7d79
Upgrade fr translation TOCMacro Tabbed Ex 2/2 (warning)
...
Title was modified. 2 new tiddlers was created. The last one deleted. I just modified one and created this one (Perhaps, i'ts not the good way)
TableOfContentsMacro Tabbed Example => Example Table of Contents: Tabbed External
2015-06-21 11:17:28 +02:00
Marc Viot
5f20f37b15
Upgrade fr translation TOCMacro Tabbed Ex 1/2 (warning)
...
Title was modified. 2 new tiddlers was created. Here, the first. Just last one deleted (Perhaps, i'ts not the good way)
TableOfContentsMacro Tabbed Example => Example Table of Contents: Tabbed Internal
2015-06-21 11:04:57 +02:00
Marc Viot
e2cd12c6f3
Upgrade fr translation (warning)
...
Be carefull. Title was modified. A new tiddler was created. The old one deleted. I just modified this one.
TableOfContentsMacro Selective Expandable Example => Example Table of Contents: Selectively Expandable
2015-06-21 10:50:04 +02:00
Marc Viot
d7951cdfe8
Upgrade fr translation (warning)
...
Title was modified. A new tiddler was created, last tiddler was deleted. I just modified this one (perhaps it's not the good way)
TableOfContentsMacro Sorted Expandable Example => Example Table of Contents: Sorted Expandable
2015-06-21 10:39:05 +02:00
Marc Viot
437bb2e669
Upgrade fr translation (warning)
...
Be carefull, title was modified. A new tiddler was created, the last one deleted. But I just modified this one (perhaps its not the good way)
"TableOfContentsMacro Expandable Example" => "Example Table of Contents: Expandable"
2015-06-21 10:27:55 +02:00
Marc Viot
2b44189eb5
Upgrade fr translation (warning)
...
Be carefull, the last title was modified, a new tiddle was created, the last one deleted.
TableOfContentsMacro Simple Example.tid => Example Table of Contents: Simple
So I just modified this one. Perhaps it's not the good way.
2015-06-21 10:17:22 +02:00
Marc Viot
69d6ec3147
Add usefull for the new translated toc macro
2015-06-21 10:00:55 +02:00
Marc Viot
d545ea6bec
Corrections for the fr-FR edition
...
button "try" => "Essayez"
button "hide" => "Cachez"
translate .toc-lorem()
2015-06-20 23:18:39 +02:00
Marc Viot
dc1c6ce756
Translate body to fr
2015-06-20 18:54:26 +02:00
Marc Viot
a82f31d831
translate to french
2015-06-20 18:45:41 +02:00
Marc Viot
8e7618ff7c
Extend glossary with new words
...
a few changes :
- "shadow" (eng) to "ombre" (fr) ,
- "brouillon" (fr) to "ébauche" (fr), because "brouillon" often means "dirty"
- "tagging" (eng) to "étiquetage" (fr).
2015-06-20 17:35:39 +02:00
Jermolene
9283dc1de9
Correct filename typo
...
Thanks @BramChen
2015-06-20 12:56:54 +01:00
Jermolene
98a2afc4d2
Add commit link to release note
2015-06-20 09:33:46 +01:00
Jermolene
f42842f801
Add variable indicating preview region
...
@felixhayashi does this do the trick for you?
2015-06-20 09:33:11 +01:00
Jermolene
16546a5e2e
Rename "configurations" to "platforms"
...
Because “configurations” was too overloaded with other meanings.
“Platforms” seems like the closest common usage for us
2015-06-20 09:24:14 +01:00
Jermolene
61b705b632
Further Catalan updates
2015-06-19 17:32:45 +01:00
Jermolene
d785d7a1e2
Docs tweak
2015-06-19 17:30:55 +01:00
Jermolene
11421f371c
Add hidden settings docs
2015-06-19 17:29:05 +01:00
Jermolene
a89ae45188
Add hidden setting for autofocusing search box
...
Fixes #1748
2015-06-19 17:28:57 +01:00
Jermolene
46419cff72
Updates to Catalan translation
2015-06-19 16:56:33 +01:00
Jermolene
b31803608b
Refactor navigator widget configuration
...
@felixhayashi sorry I should have realised earlier that it’s worth
doing it this way so that we can have different settings for different
story rivers.
2015-06-19 16:44:20 +01:00
Jermolene
61a722c7fd
Docs updates
2015-06-19 16:39:47 +01:00
Jermolene
4a30d8772c
Update button widget docs
2015-06-19 12:12:41 +01:00
Jermolene
37eb7cf507
Add an npmignore file
...
Previously, `npm publish` was ignoring the gitignore file, and
including the `output` folders that were scattered in the editions
folders.
Fixes #1758
2015-06-16 19:18:44 +01:00
Jermolene
3ed5c92361
Remove the tw2 edition
...
It was used for testing the TW2 build process, but now we can use
https://github.com/tiddlywiki/tiddlywiki.com for that
2015-06-16 19:13:10 +01:00
Jeremy Ruston
7e99bf1255
Merge pull request #1795 from pmario/de-DE
...
Last minute translations and responsive iframe fix for ff
2015-06-16 09:01:40 +01:00
Jeremy Ruston
39de87a1d4
Merge pull request #1797 from pmario/jack-ascii
...
First take: Motovun Jack.ascii art
2015-06-16 08:48:23 +01:00
Jermolene
32e6aafd4a
Update release note
2015-06-16 08:39:44 +01:00
Jermolene
6e30403eb9
Make the pinstripe a little less subtle
2015-06-16 08:32:40 +01:00
Mario Pietsch
955628a383
First take: Motovun Jack.ascii art
2015-06-15 21:46:06 +02:00
Jermolene
d3ea7e3bb4
Tweaks for Catalan translation
2015-06-15 16:41:43 +01:00
Jermolene
37f5a9f725
Update plugin library versions
2015-06-15 15:42:52 +01:00
Jeremy Ruston
5597110aa6
Merge pull request #1796 from danielo515/patch-9
...
Added ActionSendMessageWidget
2015-06-15 15:42:04 +01:00
Daniel Rodríguez Rivero
6ed6ed3953
Added ActionSendMessageWidget
...
Added ActionSendMessageWidget to the list of possible message emiters on edit-tiddler message
2015-06-15 15:46:11 +02:00
Mario Pietsch
de0d9ef186
small text fix
2015-06-15 15:37:47 +02:00
Mario Pietsch
ec3e6f8694
translations and temporary iframe-responsive fix
2015-06-15 15:32:35 +02:00
Jermolene
98f78e50b8
Convert Dropbox macro to naked js file
...
@sukima - this avoids duplicating the metadata
2015-06-15 10:07:19 +01:00
Jeremy Ruston
317f92b8a2
Merge pull request #1793 from sukima/feature/dropbox-url
...
Add ability to auto generate Dropbox URL
2015-06-15 10:02:26 +01:00
Jeremy Ruston
84c45cfc70
Merge pull request #1794 from BramChen/zh
...
Update chinese translations
2015-06-15 10:02:07 +01:00
Jermolene
9aa9b59284
Include tiddler caption/title in static page titles
2015-06-15 09:54:56 +01:00
Bram Chen
a6297170a2
Add chinese translations of title links setting
2015-06-15 16:36:28 +08:00
Devin Weaver
8bcf38b0ae
Add ability to auto generate Dropbox URL
...
I felt the conversion from the Dropbox share URL to the "secret" URL was
complicated enough to have the tiddler do it for the user. And so I
wrote a widget to do that. The user enters in the shared URL given by
Dropbox and the widget outputs the secret URL that they can copy / paste
with.
See if it is worth having on the TW5.com site.
2015-06-14 19:17:17 -04:00
Jermolene
610b2c3e33
Update release note
2015-06-13 20:37:27 +01:00
Jermolene
b4e5b3b9a0
Add Catalan translation
2015-06-13 20:30:12 +01:00
Jeremy Ruston
a5c49f2a0a
Merge pull request #1751 from r1chard5mith/patch-1
...
Update Variables in WikiText.tid
2015-06-13 18:10:53 +01:00
Jermolene
4a3a5bf1f0
Don't autosave when cancelling an edit
...
Fixes #1762
2015-06-13 18:08:09 +01:00
Jermolene
2d7a05de98
Coding style tweaks
2015-06-13 18:06:34 +01:00
Jeremy Ruston
e4ea8c0cc2
Merge pull request #1763 from Drakor/fixCMRefresh
...
CodeMirror plugin now refreshes the tiddler type
2015-06-13 18:05:18 +01:00
Jeremy Ruston
10e75738d4
Merge pull request #1789 from xcazin/fr-FR
...
fr-FR translation of titles-as-links option in ControlPanel
2015-06-13 17:47:57 +01:00
Jeremy Ruston
ebe0d97914
Merge pull request #1766 from xcazin/fred
...
Corrections and new tiddlers by Marc Viot for the fr-FR edition
2015-06-13 17:31:37 +01:00
Jeremy Ruston
c589c32eba
Merge pull request #1771 from lolole13/patch-1
...
or -> ou
2015-06-13 17:27:46 +01:00
Jeremy Ruston
b38351a5a5
Merge pull request #1777 from sukima/feature/issue-1776-clarify-edit-text-edge-case
...
Make EditTextWidget docs clearer
2015-06-13 17:25:44 +01:00
Jeremy Ruston
f54dcc7d11
Merge pull request #1780 from Marxsal/patch-5
...
Update: How to Apply Custom Styles
2015-06-13 17:12:57 +01:00
Jermolene
c168a79bda
Merge branch 'r1chard5mith-patch-2'
2015-06-13 17:11:46 +01:00
Jermolene
3d22b1acc0
Merge branch 'patch-2' of https://github.com/r1chard5mith/TiddlyWiki5 into r1chard5mith-patch-2
2015-06-13 17:11:14 +01:00
Jermolene
8858193cb9
Merge branch 'StevenMcD-patch-2'
2015-06-13 17:09:50 +01:00
Xavier Cazin
b31416acfe
fr-FR translation of titles-as-links option in ControlPanel
2015-06-13 18:09:15 +02:00
Jermolene
75e7188d5e
Merge branch 'patch-2' of https://github.com/StevenMcD/TiddlyWiki5 into StevenMcD-patch-2
2015-06-13 17:08:35 +01:00
Xavier Cazin
2e06f24d33
Merge remote-tracking branch 'upstream/master' into fred
2015-06-13 17:58:45 +02:00
Jermolene
6f4ec20c47
Merge branch 'master' of https://github.com/lolole13/TiddlyWiki5
2015-06-13 16:48:06 +01:00
Jeremy Ruston
cf9aceecbd
Merge pull request #1786 from silvyn/patch-2
...
sign the CLA
2015-06-13 15:58:36 +01:00
Jermolene
0d5033e2a0
Add title links setting
2015-06-13 15:22:50 +01:00
Jermolene
e3965dcd0c
Add info about TiddlyWiki Camp Paris
2015-06-12 11:03:18 +01:00
Jermolene
6d4953a5aa
Higher resolution favicon
...
Annoyingly, I’m still seeing a 16x16 icon on most browsers.
2015-06-10 20:21:47 +01:00
Jermolene
88ce6d0f16
Scale back the warnings on TiddlyDesktop 0.0.4
...
It seems that the previous wording was still encouraging people to run
0.0.3.
2015-06-10 20:21:22 +01:00
Sylvain Naudin
eadb31a560
Update cla-individual.md
2015-06-10 18:56:01 +02:00
Sylvain Naudin
b3694ec3cb
sign the CLA
2015-06-10 18:49:18 +02:00
Marxsal
d18ad1e853
Update: How to Apply Custom Styles
...
The former instructions didn't explain how class names with special characters could be used in stylesheets. This adds explanation about escaping the % symbol.
2015-06-08 11:11:24 -07:00
Devin Weaver
f7b2e41f3a
Make EditTextWidget docs clearer
...
This is my attempt to make the EditTextWidget clearer. I found it was
confusing and sent me down the wrong path prompting me to open
issue #1776 .
Fixes #1776
2015-06-07 12:02:36 -04:00
Lolo le 13
9075a05758
cla singing
2015-06-07 15:46:27 +02:00
Jeremy Ruston
c971c3b22f
Merge pull request #1768 from danielo515/patch-8
...
Add Encrypt Tiddler Plugin to ressources
2015-06-07 13:53:23 +01:00
Jermolene
62846ca745
Fix vertical tabs overflow problem
...
Fixes #1772 by reverting #1632
2015-06-07 12:51:25 +01:00
Jermolene
aa6326be5c
Improve encryption docs
2015-06-07 12:26:11 +01:00
Jermolene
ec2a79ea3b
Remove unneeded .java and .class files
...
Fixes #1775
2015-06-07 12:25:55 +01:00
Lolo le 13
37f8ee1c70
or -> ou
...
Just a one letter change for my first commit.
2015-06-04 23:14:34 +02:00
Daniel Rodríguez Rivero
4cb4a130ae
Add Encrypt Tiddler Plugin to ressources
...
Encrypt tiddler plugin has its own demonstration wiki. Added as resource to tw.com edition.
2015-06-02 09:03:06 +02:00
Xavier Cazin
e361014b5c
Corrections and new tiddlers by Marc Viot for the fr-FR edition
2015-06-01 14:58:21 +02:00
Marc Viot
0f5f961d5d
l20 "demande de TiddlyFox qui vous demande s'il faut activer" => "demande de TiddlyFox d'activer"
2015-06-01 09:03:51 +02:00
Jermolene
ee2be63e31
Add @twMat's TWaddle to community resources
2015-05-29 09:48:02 +01:00
Andreas Hahn
d8366cc45f
CodeMirror plugin now refreshes the tiddler type
2015-05-28 14:24:04 +02:00
Jermolene
fdbde1b389
Tweak contrast themes
2015-05-28 09:47:42 +01:00
Jeremy Ruston
483253798d
Merge pull request #1760 from kixam/master
...
Communicate on the revival of vis.js Timeline plugin
2015-05-28 09:46:40 +01:00
Aurélien Correia
e195aea2c8
Sign the license agreement
2015-05-27 20:09:32 +02:00
Aurélien Correia
76c5ea5f6f
Communicate on the revival of vis.js Timeline plugin
2015-05-27 12:32:55 +02:00
r1chard5mith
7a3ef3d9aa
Update cla-individual.md
...
Added @richardwsmith
2015-05-22 19:43:15 +10:00
Jermolene
19fe567784
Update release note
2015-05-22 09:05:25 +01:00
Jermolene
1c72e77106
Add warning if required client-server plugins are missing
2015-05-22 09:05:25 +01:00
Jermolene
cf0671f97f
Docs folder adjustments
2015-05-22 09:05:25 +01:00
Jermolene
74f3055b9c
Add tooltips to image gallery demo
2015-05-22 09:05:25 +01:00
r1chard5mith
0e6517edd4
Update Variables in WikiText.tid
...
swapped `$(name$)` for `$(name)$` in line 12
2015-05-22 10:24:39 +10:00
Steven McDonald
b29e140119
Update cla-individual.md
...
Added my name to the CLA
2015-05-21 08:10:41 +02:00
Jeremy Ruston
8a999ea745
Merge pull request #1706 from buggyj/zoomin_nav
...
fix for issue - Story freezing in zooming mode #1704
2015-05-18 22:39:55 +01:00
Jermolene
3e1b84064a
Improved fix for illegal field name problem
...
Better fix for the problem identified in 9b4b9d4
2015-05-18 22:16:04 +01:00
Jermolene
9b4b9d4d88
Update sendmessage widget to allow name/value parameters
...
Using `$name` and `$value` attributes allows more flexibility in how
parameter names are specified, allowing parameter names that are not
valid attribute names.
2015-05-18 22:15:23 +01:00
Jermolene
ccd0b30b5c
Add "SolarFlare" palette
...
Created by @nameanyone
2015-05-18 20:48:52 +01:00
Jermolene
5a6249894d
Fix problem with field names containing special characters
...
The characters `> / ' " =` were causing problems.
Thanks @ericshulman
2015-05-18 19:29:10 +01:00
Jermolene
16ebdff1cc
Clarify TextReference documentation
...
Prompted by this comment:
https://github.com/Jermolene/TiddlyWiki5/pull/1721#issuecomment-10217516
5
2015-05-18 19:07:14 +01:00
Jermolene
230f40c3bd
Fix static banner on mobile
...
Fixes #1736
2015-05-18 18:48:36 +01:00
Jeremy Ruston
420eaa1c88
Merge pull request #1745 from pmario/improve-german-docs
...
Improve german docs
2015-05-18 17:52:36 +01:00
Jermolene
09debe56c1
Clarify use of "slider" terminology
...
Fixes #1735
2015-05-18 17:34:03 +01:00
Jermolene
57cfa95b83
Add "powered by" plugin to release note
2015-05-18 17:33:28 +01:00
Mario Pietsch
668286ae2e
fix umlauts in filename
2015-05-18 17:01:07 +02:00
Mario Pietsch
405cec3fe1
Adopted the new Layout for the landing page. A bit more info
2015-05-18 16:53:58 +02:00
Jermolene
c11e1bb929
Add simple "powered by TiddlyWiki" plugin
2015-05-14 17:04:20 +01:00
Jermolene
6942efa628
Add styling for <kbd> elements
2015-05-14 10:16:33 +01:00
Jeremy Ruston
188f29df92
Merge pull request #1711 from xcazin/fr-FR
...
fr-FR translation of recent changes in core interface
2015-05-14 10:05:54 +01:00
Mario Pietsch
b3ee75b7c3
removed some files
2015-05-14 01:58:40 +02:00
Mario Pietsch
cd15dadbb9
first run
2015-05-14 01:56:00 +02:00
Jermolene
ecdcfe41ac
Fix problem with #1723
...
Restoring operation of the “default” attribute
2015-05-14 00:07:53 +01:00
Jermolene
f88402b195
Don't set colour of SVG elements
...
Instead set the default colour on the body element so that it will be
inherited
2015-05-13 23:59:55 +01:00
Jeremy Ruston
1a09a38f66
Merge pull request #1729 from pmario/fix-thumbnail-icon-css
...
fix youtube icon cut of in FF win.
2015-05-13 23:55:54 +01:00
Jeremy Ruston
bdd2c3256f
Merge pull request #1730 from pmario/german-translation
...
german UI translations
2015-05-13 23:55:26 +01:00
Jermolene
648f670bcb
Tweaked icons
2015-05-13 23:55:00 +01:00
Jermolene
637aaca2fc
Add pinstripe pattern
...
Useful for window backgrounds
2015-05-13 23:55:00 +01:00
Jermolene
81e4d43a25
Debug hooks for tracing tiddler deletions
2015-05-13 23:55:00 +01:00
Jeremy Ruston
f899f33a4a
Merge pull request #1731 from pmario/fix-palette-chooser-styling
...
fix palette switcher popup overflow
2015-05-13 23:54:38 +01:00
Mario Pietsch
e8ab4a9687
fix palette switcher popup overflow
2015-05-13 13:26:11 +02:00
Mario Pietsch
47600584a2
german UI translations
2015-05-13 10:54:01 +02:00
Mario Pietsch
79caa56ae1
fix youtube icon cut of in FF win. also see: 28050fb488 (commitcomment-11170096)
2015-05-13 09:22:52 +02:00
Jeremy Ruston
363004ad60
Merge pull request #1712 from heroboy/patch-4
...
Update my real name
2015-05-12 18:13:07 +01:00
Jeremy Ruston
aa959912c0
Merge pull request #1728 from Jermolene/revert-1718-patch-5
...
Revert "Added a close library butten to add plugins modal"
2015-05-12 17:36:40 +01:00
Jeremy Ruston
9935902b92
Revert "Added a close library butten to add plugins modal"
2015-05-12 17:36:27 +01:00
Jeremy Ruston
2d65488e06
Merge pull request #1718 from inmysocks/patch-5
...
Added a close library butten to add plugins modal
2015-05-12 17:25:21 +01:00
Jeremy Ruston
04d293b9b1
Merge pull request #1721 from nameanyone/master
...
RevealWidget state can be a text reference
2015-05-12 13:09:43 +01:00
Jermolene
97ae0cd4f0
Remove CodeMirror plugin from default client-server editions
...
Fixes #1716
2015-05-12 12:52:37 +01:00
Jeremy Ruston
142770c248
Merge pull request #1720 from pmario/fix-thumbnail-icon-css
...
fix HelloThere video link icon for FF
2015-05-12 11:22:21 +01:00
Jeremy Ruston
f0206283cf
Merge pull request #1723 from cehmke/fix-buttonwidget-textreference-selected
...
Use of getTextRefence in ButtonWidget.isSelected
2015-05-12 11:20:47 +01:00
Jeremy Ruston
cf3b63c13c
Merge pull request #1724 from cehmke/select-refresh-children-first
...
SelectWidget: Update selected value if children have been refreshed
2015-05-12 11:20:06 +01:00
Jeremy Ruston
b55ec38bd8
Merge pull request #1722 from cehmke/patch-1
...
Added @cehmke to cla-individual.md
2015-05-12 11:19:45 +01:00
Jermolene
eb1bce2ff2
Switch to fluid-fixed just for the prerelease edition
...
Fixes #1719
2015-05-11 22:04:31 +01:00
Jermolene
af1096f6fc
Adjust zoomin tiddler width for narrow screens
...
Fixes #1725
@felixhayashi could you verify that this works for you?
2015-05-11 20:57:02 +01:00
Jermolene
a961a40ece
Prerelease tweaks
2015-05-11 20:16:15 +01:00
Jermolene
a98c042f33
Refactor prerelease greeting tiddler
2015-05-11 20:15:55 +01:00
Jermolene
b5ad255d0c
Allow drafts typing timeout to be configured
2015-05-11 20:15:42 +01:00
cehmke
4d3103ff25
Update selected value if children have been refreshed
...
If the children have been refreshed, it is necessary to check, whether
the value of the select box has been changed.
2015-05-10 19:32:38 +02:00
Christian Ehmke
652abed3f6
Added @cehmke to cla-individual.md
2015-05-10 13:45:11 +02:00
cehmke
b8addaa520
use of getTextRefence in isSelected
...
Instead of a particular implementation make use of the overall function
getTextReference to determine the current value.
Add a missing semicolon.
2015-05-10 13:26:00 +02:00
nameanyone
29db528d74
RevealWidget state can be a text reference
2015-05-10 03:58:09 -07:00
Mario Pietsch
b070bd6bde
fix HelloThere video link icon for FF
2015-05-10 10:25:37 +02:00
jed
ad4cd7326a
Added a close library butten to add plugins modal
...
The button deletes the local tiddlers that contain information about the library. This allows you to:
*hide the library contents
*reload the library to see any updates to the plugins it contains. If this isn't done than local information about the available plugins is never updated (this problem may need a separate fix that doesn't require reloading the library).
I have three problems that should be addressed:
*I am not sure that the location and color of the close library button is appropriate
*When you click on the close library button a message asking you if you want to delete the $:/temp/ServerConnection/(url) tiddler appears, if you click 'cancel' than the library is shown as open and empty, the only way to fix this condition is to delete the server connection tiddler manually. I think there is a simple fix to this but I can't think of anything.
*Sometimes if you try to open a library that you have just closed it won't open properly. The tiddlers that contain the plugin information are created, but the server connection tiddler isn't created until you reload the wiki. This behavior is inconsistent and sometimes opening the library again works with no problems. I do not know why. I would be fine with requiring a refresh before a library could be reopened so that the startup module acts, but I am not sure what to do about this inconsistent behaivor. I have not been able to find any cause.
2015-05-08 18:24:10 -06:00
heroboy
aced47414c
Update my name
2015-05-08 20:03:58 +08:00
Xavier Cazin
9ea02da8be
fr-FR translation of recent changes in core interface.
2015-05-08 12:30:21 +02:00
Jermolene
42a3e31b1b
Tweaks to #1678
2015-05-07 19:44:08 +01:00
Jeremy Ruston
e93d32cdd7
Merge pull request #1678 from felixhayashi/feature/vars_widget
...
Introducing the vars widget
2015-05-07 19:36:25 +01:00
Jermolene
e9a1a53922
Better error checking for reading field lists
...
This change ensures that lines starting with a colon are ignored,
allowing them to be used as comments.
2015-05-07 19:24:58 +01:00
Jeremy Ruston
3644462a80
Merge pull request #1693 from vouko/patch-4
...
Typo
2015-05-07 19:04:22 +01:00
Jeremy Ruston
f8dd5bd52f
Merge pull request #1692 from vouko/patch-3
...
Update cla-individual.md
2015-05-07 19:02:15 +01:00
Jeremy Ruston
bb80f25527
Merge pull request #1703 from BramChen/zh
...
Update chinese translations
2015-05-07 18:55:08 +01:00
Jermolene
f87e74f131
Tweak palette icon
2015-05-07 18:54:56 +01:00
Jermolene
65a3a89746
Size single tiddler window content to fit
2015-05-06 18:09:22 +01:00
Bram Chen
11d9631ea4
Fix wording
2015-05-06 22:59:36 +08:00
Jermolene
61b75be94c
Add "navigateFromTitle" to action-sendmessage
...
Fixes #1665
2015-05-06 08:14:26 +01:00
Jermolene
86e901f375
Fix event handler leak for modals and notifications
...
Also add support for passing custom variables into notifications.
Fixes #1694
2015-05-06 08:07:12 +01:00
buggyj
45e0f09ade
fix multiply displayed tiddlers zoomin error
2015-05-06 07:42:55 +01:00
Bram Chen
35341d4e97
Add chinese translations of palette page control button
2015-05-06 09:53:14 +08:00
Jermolene
03f3b1fdb4
Fix tiddler filename
2015-05-05 21:53:45 +01:00
Jeremy Ruston
e0eb5186e6
Merge pull request #1702 from nameanyone/master
...
Transclusion and Substitution - fixed the link
2015-05-05 21:53:03 +01:00
Jermolene
97fd1330d6
Disable wikilinks within tab buttons
...
Thanks to @BramChen for the suggestion:
https://github.com/Jermolene/TiddlyWiki5/issues/1697#issuecomment-990092
50
2015-05-05 21:48:48 +01:00
nameanyone
a19452f819
Transclusion and Substitution - fixed the link
...
The tiddler got renamed a while ago, the link was pointing to non-existent old name.
2015-05-05 13:48:48 -07:00
Jermolene
02acbb1169
Hide palette page control button by default
2015-05-05 21:47:47 +01:00
Jermolene
cad5917eeb
Request scrollbars in external windows
2015-05-05 21:47:37 +01:00
Jermolene
789069bb6b
Add palette page control button
2015-05-05 18:53:35 +01:00
Jeremy Ruston
0fa806e202
Merge pull request #1701 from BramChen/zh
...
Update chinese translations
2015-05-05 15:09:49 +01:00
Bram Chen
8f372ff959
Add chinese translations of new Settings/LinkToBehaviour
2015-05-05 22:01:08 +08:00
Bram Chen
5afe8a7a0b
Add chinese translations of "open new window" button
2015-05-05 21:41:34 +08:00
Bram Chen
6968be563e
Merge remote-tracking branch 'upstream/master'
2015-05-05 15:58:58 +08:00
Jermolene
98a8df0ace
Improve SVG curved text docs
2015-05-05 07:38:00 +01:00
Jermolene
dc980a19c8
Make the stacked view play well with the new fluid-fixed mode
2015-05-05 07:24:14 +01:00
Bram Chen
c64f6d3dd3
Merge remote-tracking branch 'upstream/master'
2015-05-05 07:39:23 +08:00
Jermolene
5528906a6b
Fixes for zoomin storyview and fluid-fixed mode
2015-05-04 21:35:11 +01:00
Jermolene
1e2514f0a8
Default to fluid-fixed for the prerelease
...
Maybe we should change the default for tiddlywiki.com, but let’s hear
some views on that.
2015-05-04 21:34:42 +01:00
Jeremy Ruston
7adca1fd83
Merge pull request #1684 from nameanyone/master
...
Close outermost div element
2015-05-04 21:07:17 +01:00
Jeremy Ruston
99ea341ae1
Merge pull request #1685 from roma0104/issue1434
...
Added text notifying users of issue #1434
2015-05-04 20:59:48 +01:00
Jeremy Ruston
be3c41249b
Merge pull request #1686 from BramChen/master
...
Update chinese translations
2015-05-04 20:51:59 +01:00
Jermolene
a79e7a1c57
Tweaks for #1662
...
Coding style and ui copy
2015-05-04 20:29:00 +01:00
Jeremy Ruston
4656a7e8f6
Merge pull request #1662 from felixhayashi/feature/navigator_widget
...
upgrading the navigator widget
2015-05-04 20:21:38 +01:00
Jermolene
b51603f3e2
Introduce fluid story/fixed sidebar mode
...
A new mode where the sidebar width is fixed and the story river expands
to fill the remaining space.
2015-05-04 19:19:40 +01:00
Jermolene
ef971bb521
Correct tiddler background colour
...
Bitmap backgrounds won’t get overridden unless we override the entire
background property.
2015-05-03 17:05:34 +01:00
Jermolene
403a460002
Check for dom node not found
2015-05-03 16:56:37 +01:00
Jermolene
0932c15e5c
Clarify rendering parameters
...
srcDocument.body.firstChild will in fact be null, but it’s clearer to
write it out
2015-05-03 16:56:27 +01:00
Jermolene
3f26492ac8
Close subwindows when closing main window
2015-05-03 16:24:02 +01:00
Jermolene
48dcf959ff
Refactor browser unload task handling
...
Make it possible to register multiple task functions that will be
called when the window is unloaded
2015-05-03 16:23:35 +01:00
Bram Chen
be0f82c280
Merge remote-tracking branch 'upstream/master'
2015-05-03 22:11:49 +08:00
Jermolene
d23f174d01
Add a margin for single tiddler windows
2015-05-03 15:05:26 +01:00
Jermolene
fdeb8a925f
Introduce template for single tiddler windows
...
Lets us include global macros etc.
2015-05-03 14:58:33 +01:00
Felix Hayashi
9693f97b16
upgrading the navigator widget
...
Motivation / Agenda
* https://github.com/Jermolene/TiddlyWiki5/issues/1651
* https://github.com/Jermolene/TiddlyWiki5/issues/1650
Summary
* Changed the NavigatorWidget (primarily `addToStory()`)
* Applied lingo to settings
* Applied lingo to selectbox options
2015-05-03 13:24:16 +02:00
Bram Chen
945de74494
Merge remote-tracking branch 'upstream/master'
2015-05-03 19:15:09 +08:00
Jermolene
41d5031279
Position and hide the open-window button
2015-05-03 08:49:49 +01:00
Jermolene
ec567f67d3
Set title of external window
2015-05-03 08:49:37 +01:00
Bram Chen
dc9d9d05b4
Merge remote-tracking branch 'upstream/master'
2015-05-03 07:35:55 +08:00
Jermolene
8708f817fa
Improve garbage collection of external windows
...
Now we remove event listeners when a window is closed
2015-05-02 17:22:53 +01:00
Jermolene
7866f9b2de
Typo
...
Typically for JavaScript, initialising an object as an array doesn’t
break anything because an array is an object. Anyhow, it should be an
object in this case.
2015-05-02 17:22:23 +01:00
Bram Chen
8040e6338c
Merge remote-tracking branch 'upstream/master'
2015-05-02 20:34:57 +08:00
Jermolene
7667225840
Docs update
2015-05-02 12:13:01 +01:00
Jermolene
9cf5d88cc9
Add "open new window" tiddler toolbar button
2015-05-02 12:12:51 +01:00
Jermolene
52529f9b32
Contrast palette tweaks
2015-05-02 12:12:31 +01:00
Vouko
e0ec325afa
Update SetWidget.tid
2015-05-02 10:56:24 +02:00
Vouko
a12100457d
Update cla-individual.md
2015-05-02 10:55:49 +02:00
Jermolene
7b4153f87f
No longer autofocus the search box in the plugin library
...
It messes things up in iOS, and perhaps other browsers too
2015-04-30 17:45:22 +01:00
Jermolene
825f0f4e2b
Docs updates
2015-04-30 16:44:49 +01:00
Jermolene
e16453acbc
Docs update
2015-04-30 16:22:39 +01:00
Jermolene
3b78ebb9c0
Typos
2015-04-30 11:30:32 +01:00
Jermolene
94817911c3
Typo
2015-04-30 09:06:21 +01:00
Jermolene
6f7d80a2ac
Missed off last commit
2015-04-29 22:24:46 +01:00
Jermolene
3e166f5fe9
Palette tweaks
...
Making it easier to tweak the two colours in the monochrome palettes
2015-04-29 22:24:36 +01:00
Jermolene
f270788f33
Typo
2015-04-29 22:15:52 +01:00
Jermolene
70a2019d85
Add new feature demos to prerelease
2015-04-29 22:13:06 +01:00
Jermolene
ead208332b
Improvement to Contrast palette
...
Also add a light variant
2015-04-29 22:11:39 +01:00
Bram Chen
dab50c8470
Fix wording
2015-04-28 18:08:02 +08:00
Bram Chen
ee4064fbd7
Add chinese transaltions of descriptions for new palette colours
2015-04-28 18:04:16 +08:00
Jermolene
28050fb488
Palette tweaks
2015-04-28 09:12:04 +01:00
Jermolene
ea9f8a4ef1
Use vanilla theme to demo contrast palette
...
Because the Snow White theme includes gradients and shadows
2015-04-28 09:11:57 +01:00
Jermolene
0e7ae7ce20
Add descriptions for new palette colours
2015-04-28 09:11:26 +01:00
Jermolene
28421038e4
Tweak SVG example for dark palettes
2015-04-28 09:11:11 +01:00
Jermolene
3567e4c2c7
Palette editor: use colour name if description not available
2015-04-28 09:10:57 +01:00
Roma Hicks
5b7a7268d8
Changed structure to use less space.
2015-04-27 21:40:20 -05:00
Roma Hicks
f9c50d9a6d
Added text notifying users of issue #1434
2015-04-27 21:31:18 -05:00
nameanyone
29829bb68a
Update Latest.tid
2015-04-27 15:24:38 -07:00
nameanyone
8d12028374
Update Latest.tid
2015-04-27 15:23:41 -07:00
Jermolene
1b25d4b51a
Improve "Contrast" palette
...
Trying to make it more useful for visually impaired users - see #1682
2015-04-27 21:46:31 +01:00
Jermolene
16301532bf
Add button palette colours
...
We leave them blank by default so that we get the browser default
button colours
2015-04-27 21:46:07 +01:00
Felix Hayashi
740627795f
This widget allows the user to set multiple variables in one go.
...
It thereby reduces code complexity that would arise when setting
many variables using "<$set>".
```
\define helloworld() Hello world!
<$vars greeting="Hi" me={{!!title}} sentence=<<helloworld>>>
<<greeting>>! I am <<me>> and I say: <<sentence>>
</$vars>
```
How this Widget differs from the set widget:
* Variables may be created by using the "key=value" notation
that you already know from widgets like action-setfield.
* You cannot specify a fallback ("emptyValue")
* You cannot use a filter to produce a conditional variable assignement
Original discussion that led to the creation of this widget:
https://github.com/Jermolene/TiddlyWiki5/issues/1610
2015-04-27 17:07:13 +02:00
Jermolene
df84e93283
Add position: relative to scrollable widget
...
So that popups within the scrollable behave correctly.
Fixes #1679
2015-04-27 13:38:20 +01:00
Jermolene
e518c0e88e
Fix typo #1681
...
Thanks @Ishindri
2015-04-27 13:25:43 +01:00
Jermolene
9f92c086c3
Add TiddlyDesktop releases to tiddlywiki.com
...
Fixes #1680
2015-04-27 13:19:50 +01:00
Jermolene
07e3a50e66
Missed off previous commit
2015-04-27 13:18:57 +01:00
Jermolene
b06b21222e
Add TiddlyDesktop releases to tiddlywiki.com
2015-04-27 13:18:45 +01:00
Jeremy Ruston
edf939f4f1
Merge pull request #1677 from gernert/patch-5
...
Update SystemTags.tid
2015-04-26 09:55:07 +01:00
gernert
1d4c387113
Update SystemTags.tid
...
Add missing tags
2015-04-25 20:52:56 +02:00
Jermolene
3c7082e181
Fix contrastcolour typo
2015-04-24 11:13:10 +01:00
Jermolene
2cb1c1d017
Update copyright year
2015-04-24 11:13:10 +01:00
Jeremy Ruston
69e1e5a2aa
Merge pull request #1659 from heroboy/patch-2
...
fix Simplified Chinese
2015-04-21 22:19:02 +01:00
Jeremy Ruston
cc0fc2b392
Merge pull request #1658 from heroboy/patch-1
...
fix Simplified Chinese
2015-04-21 22:18:47 +01:00
Jeremy Ruston
dd9f3a6ae0
Merge pull request #1667 from heroboy/patch-3
...
Update cla-individual.md
2015-04-21 22:18:20 +01:00
Jeremy Ruston
734d815c9d
Merge pull request #1668 from BramChen/master
...
Improve chinese editions
2015-04-21 22:18:00 +01:00
Jermolene
75a33f5dff
Fix problem with "foreground"/"background" palette colours using <<colour>> macro
...
See discussion here:
https://groups.google.com/d/topic/tiddlywiki/XDlO0EydXtY/discussion
2015-04-21 22:07:16 +01:00
Jermolene
a3ed82b703
Update dutch translation
2015-04-21 19:30:02 +01:00
Jermolene
139496209f
Add support for custom elements to the button widget
2015-04-21 19:29:54 +01:00
Jermolene
bc6713007f
TiddlySpot docs update
2015-04-21 19:29:44 +01:00
Jermolene
8776c3c7e5
Preparing for 5.1.9
2015-04-21 19:29:36 +01:00
Bram Chen
485de75ffc
Add download-empty for chinese editions
2015-04-20 11:39:08 +08:00
Bram Chen
b798743b3e
Improve metadata of chinese editions
2015-04-20 11:21:50 +08:00
heroboy
c5f1f4101e
Update cla-individual.md
2015-04-19 19:30:58 +08:00
Jermolene
ac716755e8
Version number update for 5.1.8
2015-04-17 17:37:09 +01:00
Jermolene
afb250cef3
Whoops too early to bump the version
2015-04-17 17:36:49 +01:00
Jermolene
b9ec50ecff
Updated readme
2015-04-17 17:35:53 +01:00
Jermolene
ee81425968
Preparing for 5.1.8 release
2015-04-17 17:34:31 +01:00
Jermolene
4dbf46e3d7
Docs updates
2015-04-17 17:07:47 +01:00
Jermolene
b08a2080ee
Revert to a pale default theme for highlight plugin
...
Fixes #1656
2015-04-17 16:05:54 +01:00
Jermolene
98011b611a
Release note updates
2015-04-17 15:58:13 +01:00
Jeremy Ruston
0d259a5d3f
Merge pull request #1657 from BramChen/master
...
Update chinese translations
2015-04-17 15:08:39 +01:00
Jermolene
bef333e52b
Typos in nsortcs and sortcs docs
2015-04-17 13:58:32 +01:00
Jermolene
6e2bfc8c77
Remove icon from gentle guide link panel
2015-04-17 13:58:07 +01:00
Jermolene
8d231f4a9f
Give link panels rounded corners
...
The idea is that the rounded corners help the video preview to look
like a video preview.
2015-04-16 18:34:42 +01:00
Jermolene
f44bf1e458
Remove extraneous file
2015-04-16 18:34:04 +01:00
Jermolene
534f2bc12d
Docs updates
2015-04-16 18:33:55 +01:00
heroboy
0babda5120
fix Simplified Chinese
...
`缺失` is better in Simplified Chinese
2015-04-13 23:31:16 +08:00
heroboy
8203c7df5e
fix Simplified Chinese
...
`缺失` is better than `佚失` in Simplified Chinese.
2015-04-13 23:26:30 +08:00
Bram Chen
b9bccbf1ae
Update chinese wording of exporter descriptions
2015-04-13 21:24:15 +08:00
Jermolene
3e966d4cf3
Simplify wording of exporter descriptions
2015-04-13 07:53:36 +01:00
Jermolene
8dca128725
Docs updates
2015-04-13 07:51:01 +01:00
Jermolene
ba0ddb939c
Re-establish "Configurations" TOC heading
2015-04-12 19:57:06 +01:00
Jermolene
0b4ed3c72d
Use palette colours for text areas and text inputs
2015-04-10 17:04:41 +01:00
Jermolene
b2cb992538
Fix thumbnail flex properties for Safari
2015-04-10 17:01:18 +01:00
Jermolene
301bc4988d
Ensure static banner is above the story river
2015-04-09 19:56:54 +01:00
Jeremy Ruston
543e95a436
Merge pull request #1645 from reflectionalist/patch-1
...
Add the missing operator to `sameday`
2015-04-09 19:20:51 +01:00
Jermolene
2dabb6a1fc
Fix modal scroll behaviour
...
The previous behaviour didn’t allow scrolling of the modal itself
through the scroll bar because the scrollbar was hidden behind the
backdrop.
Fixes #1642
2015-04-09 11:03:06 +01:00
Jermolene
89679c1b6a
Add local plugin library to prerelease for debugging
2015-04-09 11:02:14 +01:00
Jermolene
596caafd5f
Docs tweaks
2015-04-09 11:01:49 +01:00
Hong-Yi Dai
279ae2af79
Add the missing operator to sameday
...
Otherwise, the `sameday` macro will default to `modified`. In case the user set `dateField:"created"` when calling `timeline`, the result will be inconsitent.
2015-04-09 11:10:09 +08:00
Jeremy Ruston
13a5e8f31c
Merge pull request #1520 from roma0104/master
...
Update the sameday and eachday filter to accept TW5 date strings.
2015-04-06 17:40:32 +01:00
Jermolene
5c6cee62e3
Updates to Danish translation
...
Thanks to Birthe C
2015-04-06 16:42:31 +01:00
Jermolene
660090912b
Release note update
2015-04-06 16:39:18 +01:00
Jeremy Ruston
66a52c1308
Merge pull request #1639 from xcazin/fr-FR
...
fr-FR translations for recent changes in localisable strings
2015-04-04 15:10:12 +01:00
Xavier Cazin
a912b9b982
Merge remote-tracking branch 'upstream/master' into fr-FR
2015-04-04 15:53:10 +02:00
Xavier Cazin
32ebb64638
fr-FR translations for recent changes in localisable strings
2015-04-04 15:52:27 +02:00
Jermolene
fd9bbcd21e
Release note updates
2015-04-04 10:39:58 +01:00
Jeremy Ruston
aacde0d703
Merge pull request #1635 from reflectionalist/patch-1
...
Document how to use relative paths (fix #1628 )
2015-04-04 08:35:36 +01:00
Jeremy Ruston
dd68792282
Merge pull request #1638 from reflectionalist/patch-3
...
Fix a typo
2015-04-04 08:35:18 +01:00
Jeremy Ruston
4b60b4aa59
Merge pull request #1637 from reflectionalist/patch-2
...
Sign CLA-individual to contribute
2015-04-04 08:33:38 +01:00
Hong-Yi Dai
2140ae2b51
Fix a typo
2015-04-04 07:48:32 +08:00
Hong-Yi Dai
2cd10ad9c0
Sign CLA-individual to contribute
2015-04-04 06:36:51 +08:00
Jermolene
eb8d44e288
Add new community links
2015-04-03 12:22:21 +01:00
Jermolene
f3ed9bf7e4
Fix problem with double quotes in new field value
...
Fixes #1634
2015-04-03 09:06:57 +01:00
Hong-Yi Dai
6410f31aaa
Document how to use relative paths ( fix #1628 )
2015-04-03 11:11:37 +08:00
Jermolene
42debd489d
Fix problem with overflowing content in vertical tabs
...
Fixes #1632
2015-04-02 17:53:40 +01:00
Jermolene
21b6ce71ff
Revised wording for "save tiddler" button
...
See #1274
2015-04-02 17:49:42 +01:00
Jermolene
b7465c5eb1
Missed off 7c9976f1d9
2015-04-02 15:22:50 +01:00
Jermolene
7c9976f1d9
Partially revert to 5.1.7 scroll behaviour
...
We’re keeping the new logic that prevents unnecessary scrolling at
startup
Fixes #1543
2015-04-02 15:21:49 +01:00
Jermolene
22f4f07a16
Theme tweaks docs update
2015-04-02 14:02:58 +01:00
Jermolene
a35425e579
Add a light background photo for comparison
2015-04-02 13:19:06 +01:00
Jermolene
515be0c22e
New DarkPhotos palette that's good with background photos
2015-04-02 12:39:24 +01:00
Jermolene
816363408e
Introduce site-title-foreground to palette
2015-04-02 12:39:08 +01:00
Jermolene
a3f4221008
Tweaks to background image support
...
And some demo images for use as backgrounds
2015-04-02 12:11:13 +01:00
Jermolene
5101ae4ce6
Add background image size theme tweak
...
Makes it possible to create a background image that fully covers the
window, as well as the tiled images that were working before.
2015-04-01 21:08:42 +01:00
Jermolene
987bfcfd5b
Add background image to Vanilla theme tweaks
...
Now one can choose an image tiddler from a dropdown and choose how the
image is attached.
2015-04-01 18:28:33 +01:00
Jermolene
5effb3fdc3
Tweak HelloThere
2015-04-01 14:09:10 +01:00
Jermolene
4f8982f44d
Link panel styling tweaks
2015-04-01 14:08:16 +01:00
Jermolene
46848b817c
Remove help plugin from main release
...
The help plugin really needs some up-to-date screencasts before it is
useful.
2015-04-01 14:08:06 +01:00
Jermolene
4f927cb492
Tweak link panels
2015-04-01 14:07:24 +01:00
Jermolene
ae817a441f
Bigger link panels
2015-04-01 14:07:09 +01:00
Jermolene
6314d7f8ba
Fix thumbnail macro to set foreground colour for icons
2015-04-01 14:06:59 +01:00
Jermolene
b34530e86a
Make upgrade wizard download link be relative
...
Ensures that the prerelease upgrade wizard download link doesn’t point
to the non-prerelease version
2015-03-31 19:14:49 +01:00
Jermolene
ea5fb19fb2
Experimental SVG Compression
...
I used this tool to compress the core icon:
https://jakearchibald.github.io/svgomg/
It’s a 50% saving, from 3,491 bytes to 1,709 bytes.
2015-03-31 14:39:36 +01:00
Jeremy Ruston
57e71b5506
Merge pull request #1618 from le-pako/patch-3
...
Update Introduction to Filters.tid
2015-03-31 13:17:42 +01:00
Jeremy Ruston
394830ad96
Merge pull request #1624 from BramChen/master
...
Update chinese translations
2015-03-31 12:20:08 +01:00
Bram Chen
8185c29738
Change chinese translations for Exporters/StaticRiver
2015-03-31 19:02:27 +08:00
Jermolene
390b7553f6
Change "River of tiddlers" to "Static HTML tiddlers"
...
For clarity; see this discussion:
https://groups.google.com/d/msg/tiddlywiki/hReAZYepG5U/bQt8McdkQMUJ
2015-03-31 11:03:21 +01:00
Jeremy Ruston
05cb81a644
Merge pull request #1622 from Jermolene/revert-1619-motovun-jack
...
Revert "Motovun jack"
2015-03-31 09:06:36 +01:00
Jeremy Ruston
b460bac579
Revert "Motovun jack"
2015-03-31 09:06:22 +01:00
Jermolene
b9a2150f4e
Tweaks for big green buttons
...
Make the images larger, and switch to display: inline-block so that we
get better behaviour with line wrapping.
2015-03-31 09:00:27 +01:00
Jermolene
33953f2634
Docs update
2015-03-31 09:00:27 +01:00
Jeremy Ruston
0071796546
Merge pull request #1619 from pmario/motovun-jack
...
Motovun jack
2015-03-31 09:00:12 +01:00
Mario Pietsch
93cc9af145
also changed core icon. changed ids
2015-03-30 19:41:08 +02:00
Mario Pietsch
d0e6b1ddff
added doctype to pass w3c validator
2015-03-30 13:10:16 +02:00
Mario Pietsch
ea943b551a
fix motovun jack paths, remove unnecessary nodes, fix back feets and left ear
2015-03-30 12:01:00 +02:00
Jermolene
6dc443f3ef
Docs tweaks for HelloThere
2015-03-26 11:15:55 +00:00
Jermolene
bf67ea02ac
Docs tweaks
2015-03-26 11:15:43 +00:00
Jermolene
7fa3803de8
Add mail icon
2015-03-26 11:15:34 +00:00
Jermolene
47dc16a179
Docs tweaks
2015-03-25 22:15:51 +00:00
Jermolene
3e8d1b3955
Incomplete docs about the thumbnail macro
2015-03-25 22:15:34 +00:00
Jermolene
8c7a6c5030
Remove github fork ribbon from tiddlywiki.com
...
We’ll keep using it on the /dev site, but now that we’ve got the link
panels we don’t need it on the main site
2015-03-25 22:15:17 +00:00
Jermolene
758ba5edc2
Allow widgets to choose not to propagate actions
...
Allow widgets to choose not to propagate actions. This is important for
widgets that themselves trigger actions.
Note that this change will cause problems with any existing
5.1.8-prerelease plugins that call `invokeActions()`.
2015-03-25 22:13:22 +00:00
Jermolene
055a38ea4c
Further link panel tweaks
2015-03-25 17:06:29 +00:00
Jermolene
2186a393a7
Simplify the link panels
2015-03-25 11:11:18 +00:00
Jermolene
4eb2e3d3b4
Fix undefined tabindex problem with link widget
...
The tabindex attribute was being set to the string “undefined” if the
attribute was not specified. The fix is to only set the tabindex
attribute if the attribute was specified.
2015-03-25 11:11:07 +00:00
Jermolene
0ea1dad2c8
Better background for developer link
2015-03-25 08:38:15 +00:00
Jermolene
c18e9d170b
Add GitHub and Twitter buttons
2015-03-25 08:38:06 +00:00
Jermolene
feefdefc6b
Tweak theme tweak description
2015-03-25 08:37:51 +00:00
Jermolene
e56f204633
Remove icon from Jack's midriff
...
It looks strange to have an icon overlaid on Motovun Jack.
2015-03-24 08:34:54 +00:00
Jermolene
8268087b48
Tweaks for default colour palette
...
Slightly lighter page background does seem to reduce the sombreness.
2015-03-24 08:34:12 +00:00
Jermolene
ff103665cf
More link panel tweaks
2015-03-23 19:47:55 +00:00
Jermolene
843871e195
Tweaks to link panels
...
Taking into account some of @pmario’s feedback
2015-03-23 19:40:52 +00:00
Jermolene
32c6d01943
Add GitHub and Twitter icons
2015-03-23 19:40:32 +00:00
Jermolene
958621f0c0
Fix vertical alignment of link panels
...
Improves #1609
2015-03-23 17:29:51 +00:00
Jermolene
b31237c86d
Front page link panels prototype
...
Starting to explore #1609
2015-03-23 16:05:25 +00:00
Jermolene
bd6472c1d1
Add style attribute to reveal widget
2015-03-23 15:28:26 +00:00
Jermolene
b97336f171
Feedback for Control Panel (etc) button
...
Give the toolbar buttons for control panel, advanced search and tag
manager the selected state when the corresponding tiddlers are open in
the story river.
2015-03-23 11:36:54 +00:00
Jermolene
5b38f2a17c
Remove youtube specificity from thumbnail macros
2015-03-23 11:36:11 +00:00
Jermolene
66f4faaef4
Better margin and style handling for youtube macro
2015-03-22 19:52:09 +00:00
Jermolene
171e6fcc92
Added margin to YouTube thumbails
2015-03-22 19:10:42 +00:00
Jermolene
9c27d22ea6
Add caption and tweak styling for youtube macro
...
More fixes for #1547
2015-03-22 18:01:46 +00:00
Jermolene
ec598d5cf4
Add hover effects to youtube thumbnails
2015-03-22 17:52:09 +00:00
Jermolene
542372c722
Replace big red introduction video with thumbnail
...
Hopefully fixes #1547
2015-03-22 17:35:37 +00:00
Jermolene
e00d417a31
Punctuation tweak
2015-03-22 15:53:26 +00:00
Jermolene
ef729487c3
Tweak size of help panel
...
Now that we don’t have the cheatsheet, reducing the height makes the
panel more useful for watching tutorial videos.
2015-03-22 15:52:17 +00:00
Jeremy Ruston
077e5378ef
Merge pull request #1603 from pmario/fix-twitter-link
...
fix the problem with an invisible link if addblocking is active
2015-03-22 15:51:20 +00:00
Mario Pietsch
ffa7988fd0
remove TW wikilink
2015-03-22 12:00:31 +01:00
Mario Pietsch
cf57777556
fix the problem with an invisible link if addblocking is active
2015-03-22 11:57:01 +01:00
Jermolene
fc315d1df7
Make sticky titles be a theme tweak for Vanilla theme
...
Fixes #1599 (albeit brutally!)
2015-03-22 10:15:43 +00:00
Jermolene
9d2b782ae9
Adjust ribbon text and link to "Spread the Word"
...
Fixes #1590
2015-03-22 09:55:47 +00:00
Jeremy Ruston
508eda72b5
Merge pull request #1602 from BramChen/master
...
Update chinese translations
2015-03-22 09:45:19 +00:00
Jermolene
0b2f1fb41f
Fix plugin library location
...
I use 127.0.0.1 during testing
2015-03-22 09:39:02 +00:00
Bram Chen
ababfa772e
Merge remote-tracking branch 'upstream/master'
2015-03-22 10:49:32 +08:00
Bram Chen
6ed53d6b93
Add chinese translation for encryption dialog
2015-03-22 10:47:00 +08:00
Jeremy Ruston
7daddfc5ea
Merge pull request #1588 from andreasabeck/passwd-lang
...
added localisation for encryption dialog & de-DE translation
2015-03-21 19:05:39 +00:00
Jermolene
17696e4505
Fix for selected toolbar buttons in Firefox
...
See https://github.com/Jermolene/TiddlyWiki5/issues/1599
2015-03-21 16:33:15 +00:00
Jermolene
a60ea1d89b
Remove cheatsheet from help panel
...
We’d rather present this information as a panel within the tiddler
editor so that we can (for example), allow clicks on a snippet to
insert it automatically into the editor at the current cursor position.
For the moment, we’ll just remove the cheatsheet. Post-5.1.8 we’ll add
it back to the editor
2015-03-21 15:52:28 +00:00
Jermolene
00f35fe41a
Don't HTML encode single quotes
...
They don’t get automatically decoded when the browser reads the
resulting HTML. So, instead, we’ll solve
1e9e1a1fdc by switching to double quotes
for attribute values.
2015-03-21 14:17:42 +00:00
Jermolene
743c325b0d
Fix problem with tiddler titles overlaying help panel
2015-03-20 16:18:24 +00:00
Jeremy Ruston
a7b1b3ec10
Merge pull request #1598 from pmario/fix-plugin-button-tooltip
...
fixes the [Get more plugins] button tooltip
2015-03-20 15:31:13 +00:00
Jeremy Ruston
05d5f2d4fd
Merge pull request #1595 from pmario/de-De
...
new german strings, some help text adjustments
2015-03-20 15:30:53 +00:00
Jeremy Ruston
1e88f2a22f
Merge pull request #1592 from BramChen/master
...
Update chinese translations
2015-03-20 15:30:40 +00:00
Jeremy Ruston
b1ef8ba0dd
Merge pull request #1587 from andreasabeck/cla
...
Update cla-individual.md
2015-03-20 15:24:57 +00:00
Jermolene
17c1213635
Expand help panel label to "Help Panel"
2015-03-20 15:16:40 +00:00
Mario Pietsch
9ae3b5588c
fixes the [Get more plugins] button tooltip
2015-03-20 11:34:14 +01:00
Mario Pietsch
586cdaae28
new german strings, some help text adjustments
2015-03-20 10:22:27 +01:00
Bram Chen
93a29b0999
Update zh translations of the last changes to the plugin library
2015-03-19 21:16:14 +08:00
Jermolene
b46ce419a7
Left off last commit
2015-03-19 10:53:51 +00:00
Jermolene
f2a7f00870
Improve plugin readmes
...
Now every plugin has a short, introductory readme tiddler that is shown
in the online plugin library.
2015-03-19 10:53:45 +00:00
Jermolene
2f8837a445
Revert to original fix for #1542
...
The trouble with tweaking the ViewBox was that the amount of the
adjustment is expressed in the coordinate system of the image, not the
coordinate system of the bitmap that is being rendered. That means that
the additional space doesn’t necessarily extend to the single physical
pixel needed to resolve the issue.
2015-03-19 10:52:58 +00:00
Pako
d1a8c683a2
Update Introduction to Filters.tid
...
Corrected an error in the explanation of the `+` prefix.
It actually adds the filter to the list of filters, thus keeping only the tiddlers matching the additional filter.
2015-03-18 21:30:23 +01:00
Andreas Abeck
2c367c5476
added localisation for encryption dialog & de-DE translation
2015-03-18 18:52:33 +01:00
Andreas Abeck
c200d10274
Update cla-individual.md
2015-03-18 18:37:43 +01:00
Jermolene
77db136d4f
Missed off previous commit
2015-03-18 11:46:37 +00:00
Jermolene
24435a46be
Lots of improvements to the plugin library
...
* Moved “add new plugin” into a modal wizard
* Adopt big friendly buttons
* Add plugin icons and readmes to “add new plugin” modal
* Use tabs for splitting plugins/themes/languages
* Consistent styling between the “add new plugin” modal and the
“installed plugins” control panel tab
* Behind the scenes, moved from addressing the library as
`recipes/defaults/tiddlers/<etc>` to `recipes/library/tiddlers<etc>`
2015-03-18 11:46:28 +00:00
Jermolene
421ac16389
Use inline parsing for header and footer of modals
...
This may cause backwards compatibility problems for people relying on
the block mode parsing, but it’s much better for the rest of us as it
avoids an unsightly paragraph tag
2015-03-18 11:41:10 +00:00
Jermolene
22b7400de8
Move making a data uri into reusable utilities
2015-03-18 11:40:09 +00:00
Jermolene
a4a9daa40b
Extend wiki.makeTranscludeWidget() to control mode
2015-03-18 11:39:50 +00:00
Jermolene
cf11741df9
Include the version number in the plugin library path
...
See also:
https://github.com/Jermolene/build.jermolene.github.io/commit/a00a8a6df6
09ef5e4b2ed85039da72780ac81512
2015-03-16 15:44:24 +00:00
Jermolene
d4d69d7dd3
Remove click-to-navigate on tiddler bodies
...
This was introduced to make it possible in the new stacked story view
to click on a tiddler to bring it to the front. By allowing a tiddler
in view mode to be focussed, it also prepared for view mode keyboard
shortcuts. (Eg, a key to edit the current tiddler).
However, there are several minor issues with the unexpected behaviour
of clicking on a tiddler navigating to it, so we’ll leave this out of
5.1.8
2015-03-16 09:43:12 +00:00
Jermolene
055f6bdfa5
Release note update
2015-03-16 09:40:31 +00:00
Jermolene
7ea0109961
Restore sticky titles
2015-03-16 09:40:22 +00:00
Jeremy Ruston
1f11fd5128
Merge pull request #1582 from le-pako/master
...
Added missing images : left and up arrows
2015-03-16 09:25:00 +00:00
Pako
f2a328950e
Rename up-arrow to up-arrow.tid
2015-03-16 01:13:25 +01:00
Pako
c701e96427
Create up-arrow
2015-03-16 01:11:09 +01:00
Pako
faf9b30e9c
Create left-arrow.tid
...
I needed a left arrow for a menu, but as the core image library doesn't have one I created one by rotating the svg of the built-in right arrow.
Also changed the corresponding class name.
2015-03-16 01:01:24 +01:00
Jermolene
1447c955a5
Release note update
2015-03-14 17:21:37 +00:00
Jeremy Ruston
fe0e726c79
Merge pull request #1574 from le-pako/patch-1
...
Update TiddlyClip by buggyjay.tid
2015-03-14 17:21:13 +00:00
Jeremy Ruston
d1e75a3ad4
Merge pull request #1579 from le-pako/patch-2
...
Update cla-individual.md
2015-03-14 17:20:27 +00:00
Pako
8e9cd447c1
Update cla-individual.md
2015-03-14 18:16:16 +01:00
Jeremy Ruston
afd30aec07
Merge pull request #1578 from xcazin/fr-FR
...
fr-FR translation re: the help button and the default sidebar tab
2015-03-14 17:13:18 +00:00
Xavier Cazin
9cca8772a7
fr-FR translation re: the help button and the default sidebar tab
2015-03-14 18:06:59 +01:00
Jermolene
ae001a19e5
Upgrade to KaTeX v0.2.0
2015-03-14 08:34:16 +00:00
Roma Hicks
55ee327885
Removed uneeded function but still converts TW5 Date strings.
2015-03-13 13:14:30 -05:00
Jermolene
3165eb1429
Update contributors list
2015-03-13 16:27:16 +00:00
Jermolene
0444420346
Update plugin installation instructions
2015-03-13 10:18:42 +00:00
Jermolene
253859cc7c
Update release note
2015-03-13 10:18:28 +00:00
Jermolene
70e454fa6d
Release note update
2015-03-13 10:07:16 +00:00
Pako
374682a306
Update TiddlyClip by buggyjay.tid
...
Small edit to correct a type on Firefox name and add a link.
2015-03-13 10:36:25 +01:00
Jermolene
550ad4a1a9
Partial fix for #1570
...
Stop the logger from creating alert tiddlers on the server. They
propagate to the client but are not deletable from the client because
they are in the `$:/temp` namespace.
cc @loleg
2015-03-12 22:35:03 +00:00
Jeremy Ruston
0e75a6f41c
Merge pull request #1572 from Spangenhelm/patch-2
...
Adding the 'language' type to the table of plugins options
2015-03-12 18:19:47 +00:00
Florent V.
c4da71e2fd
Adding the 'language' type to the table of plugins options
2015-03-12 13:46:42 +01:00
Jeremy Ruston
6248c29a14
Merge pull request #1571 from BramChen/master
...
Update chinese translations
2015-03-12 08:48:16 +00:00
Bram Chen
fc84ede773
For zh-Hant and zh-Hans, add text and tooltip of help button
2015-03-12 13:29:10 +08:00
Jermolene
b69dff861d
Fix tests for c33a17a475
2015-03-11 21:58:45 +00:00
Jeremy Ruston
d1a4855bfc
Merge pull request #1546 from aelocson/upgrade-typo
...
Correct WikiText in the upgrade wizard
2015-03-11 21:45:13 +00:00
Jeremy Ruston
e4cc5dca77
Merge pull request #1545 from aelocson/variable-docs
...
Document the tv-* variables
2015-03-11 21:44:32 +00:00
Jeremy Ruston
a64575f07f
Merge pull request #1544 from BramChen/master
...
Update chinese translations
2015-03-11 21:26:27 +00:00
Jermolene
c33a17a475
Revert "sort unlisted tags by title"
...
Revert “sort unlisted tags by title”
a8ab08e8fa by @tobibeer
The problem was that this commit changed the order of stylesheet
processing. For background see:
https://groups.google.com/d/topic/tiddlywiki/BPuuSkG6siU/discussion
2015-03-11 19:17:14 +00:00
Jeremy Ruston
c98990d3d6
Merge pull request #1556 from felixhayashi/patch-2
...
Missing advice in Contributing.tid
2015-03-11 18:26:23 +00:00
Jermolene
3431b84625
Use explicit parameter name
...
As suggested by @pmario in
https://github.com/Jermolene/TiddlyWiki5/pull/1536/files#r26186766
2015-03-11 17:09:25 +00:00
Jeremy Ruston
07d0609083
Merge pull request #1560 from sukima/remove-freedom-bits
...
Remove freedombits community example
2015-03-10 20:32:11 +00:00
Jeremy Ruston
2710049865
Merge pull request #1565 from felixhayashi/patch-5
...
Bugfix: Object.freeze() called on null
2015-03-10 20:31:15 +00:00
Jeremy Ruston
0f5cebc6b0
Merge pull request #1567 from sukima/fix-codemirror-readme
...
Fix CodeMirror README formatting
2015-03-10 20:24:07 +00:00
Jeremy Ruston
9097697c52
Merge pull request #1536 from aelocson/macro-syntax-fix
...
Fix a broken use of the list-links macro
2015-03-10 20:23:23 +00:00
Jeremy Ruston
b430f46d78
Merge pull request #1534 from aelocson/monospaced-font
...
Expose code font family in Control Panel
2015-03-10 20:23:11 +00:00
Jermolene
657c266522
Coding style tweaks
2015-03-10 20:04:34 +00:00
Jermolene
ab9bdb208e
Add thumbnail and links for TiddlyWiki Poster
2015-03-10 17:24:17 +00:00
Jermolene
e80a08f43b
Fix problem with custom tag in reveal widget
2015-03-10 16:59:25 +00:00
Jermolene
e46d3d74be
Rename node-webkit to NW.js
2015-03-10 16:54:53 +00:00
Jermolene
1141911a70
Add strings for help button
2015-03-10 14:27:51 +00:00
Jermolene
1808b1597e
Support custom HTML element tags for reveal widget
2015-03-10 12:44:47 +00:00
Jermolene
64e1a76987
Prevent edit-text widget from generating unsafe elements
2015-03-10 12:34:50 +00:00
Jermolene
d3954af478
Soften colour of system tiddler icons
2015-03-10 12:29:39 +00:00
Jermolene
8ab73894e9
Remove extraneous colon
2015-03-10 11:04:35 +00:00
Jermolene
49a9a2c44c
Add Slovak translation
...
Thanks to Vlado Luknar
2015-03-10 11:04:25 +00:00
Jermolene
bd175504f8
Add "full" edition for testing plugins
2015-03-10 10:49:44 +00:00
Devin Weaver
dcb9e161de
Fix CodeMirror README formatting
...
There was a rendering mess in the CodeMirror readme file. This was cause
by attempting to bold the `$:/tags/Stylesheet` text. Also the context of
the sentence implies this should be backticked not bold (it refers to a
tag not a tiddler).
2015-03-08 16:38:16 -04:00
Felix Küppers
f99a4e7664
Bugfix: Object.freeze() called on null
...
For five minutes I stared at the following code...
if(value != null && typeof value === "object") {
Object.freeze(value);
}
... and at the error message that led me to this code: `Object.freeze called on non-object`
And then I remembered that js treads null as object (http://www.ecma-international.org/ecma-262/5.1/#sec-11.4.3 ). This means the `typeof === "object"` will not discover null and freeze will throw an error...
So `value != null` will also work when value is undefined.
A hard to find bug ;)
2015-03-07 20:47:43 +01:00
Devin Weaver
74deae3c38
Remove freedombits community example
...
The URL (freedombits.org) is no longer hosting this example. It no
longer provides a good example as there is no TiddlyWiki linked anymore.
With much regret it needs to be removed till the original author can fix
the problem.
2015-03-06 16:28:43 -05:00
Felix Küppers
3e47f5c454
Update Contributing.tid
2015-03-06 15:47:56 +01:00
Felix Küppers
8ffe517736
Update Contributing.tid
2015-03-06 14:42:09 +01:00
Bram Chen
6070c4abee
Minor wording tweak for BramChen/TiddlyWiki5@385533e528
2015-03-04 09:24:04 +08:00
Bram Chen
d6ae9ea686
Merge remote-tracking branch 'upstream/master'
2015-03-04 09:12:57 +08:00
Jermolene
42499ea6ff
Minor tweaks and fixes for #1529
...
1. Display friendlier caption field in select dropdown
2. Remove extraneous line break from end of default config tiddler
3. Minor wording tweak
2015-03-03 18:10:01 +00:00
Astrid Elocson
320664a0c7
Correct WikiText in the upgrade wizard
2015-02-28 15:43:48 +00:00
Astrid Elocson
e369bc1eb2
Remove created field accidentally added
2015-02-28 14:47:38 +00:00
Astrid Elocson
27e6c7bb8d
Add links to tv-* variables in LinkWidget.tid
2015-02-28 14:45:22 +00:00
Astrid Elocson
f73891c083
Document the tv-* variables
2015-02-28 14:38:00 +00:00
Bram Chen
385533e528
For chinese translations, add caption and hint text of setting default sidebar tab
2015-02-28 22:33:35 +08:00
Jeremy Ruston
7a326f022b
Merge pull request #1529 from felixhayashi/sidebar-default
...
Option to define the default sidebar tab
2015-02-28 12:13:46 +00:00
Jeremy Ruston
27454dabb1
Merge pull request #1525 from Spangenhelm/patch-1
...
Adding the missing 'language' type
2015-02-28 12:12:11 +00:00
Jeremy Ruston
f89da8522f
Merge pull request #1539 from aelocson/doc-macros-fix
...
Remove extraneous \end from doc-macros.tid
2015-02-28 12:11:07 +00:00
Jermolene
e884192baf
Alternative fix for #1542
...
As suggested by @aelocson, adjusting the viewport has less impact on
the icon size.
2015-02-28 11:28:58 +00:00
Jermolene
bc0a25bc6c
Fix 1px clipping on SVG icons
...
Fixes #1542
2015-02-28 10:47:38 +00:00
Astrid Elocson
af34b1af05
Remove extraneous \end from doc-macros.tid
2015-02-28 08:16:10 +00:00
Astrid Elocson
999e0c3ba4
Fix a broken use of the list-links macro
2015-02-27 19:33:22 +00:00
Jeremy Ruston
b30d43215c
Merge pull request #1532 from aelocson/icon-macros
...
Macros and styles for tips and warnings
2015-02-27 18:27:57 +00:00
Jeremy Ruston
eb2b877b9b
Merge pull request #1533 from simonbaird/master
...
Revert "Add navigation support to the edit template"
2015-02-27 18:10:52 +00:00
Astrid Elocson
3b0e6102ec
Expose code font family in Control Panel
2015-02-27 12:46:19 +00:00
Simon Baird
5713e48541
Revert "Add navigation support to the edit template"
...
For some reason this is causing the focus to be repeatedly set to
the title field when editing a tiddler's text. Let's revert it for
now.
See Issue #1527 .
This reverts commit fdc635007b .
2015-02-27 13:44:24 +10:00
Astrid Elocson
b001c7b558
Macros and styles for tips and warnings
2015-02-26 16:32:00 +00:00
Jermolene
1e02df61d0
Add tip and warning icons
...
@aelocson I thought these might be useful for the docs; we’ll need some
macros and styles, though.
2015-02-25 20:37:07 +00:00
Jermolene
65d81921f9
Further fixes to scrolling behaviour
2015-02-25 20:24:07 +00:00
Jeremy Ruston
6fcca43fd2
Merge pull request #1519 from aelocson/variable-docs
...
Overhaul the macro and variable documentation
2015-02-25 19:15:17 +00:00
Jermolene
8d46c18fc7
Refine fix for #1526
...
The previous fix changed the scrolling behaviour such that it only
scrolled to the top of a tiddler if the tiddler was entirely offscreen.
It wasn’t entirely satisfactory because scrolling was prevented even if
only a few pixels of a tiddler are in view. This commit ensures that
the scroll does occur if less than 50 pixels of the target is in view
2015-02-25 19:09:53 +00:00
Jermolene
489bc7a50b
Only scroll to top when tiddlers are completely off-screen
...
Fixes #1526
2015-02-25 19:01:40 +00:00
Felix Hayashi
13f02992f5
changed wrong file
2015-02-25 18:00:02 +01:00
Felix Hayashi
21b738936f
setting default sidebar tab
2015-02-25 17:53:32 +01:00
Astrid Elocson
61b8180562
Resolve merge conflict in LinkWidget.tid
2015-02-25 12:53:57 +00:00
Astrid Elocson
e4525a95c5
Try again to resolve merge conflict in LinkWidget.tid
2015-02-25 08:01:38 +00:00
Astrid Elocson
40c6362fbe
Resolve merge conflict in LinkWidget.tid
2015-02-25 07:57:55 +00:00
Florent V.
41696e725d
Adding the missing 'language' type
...
What about the 'core-version' field ? Should we add it ? Therefore we will need to add some doc about it. (how to use it correctly etc...)
2015-02-25 03:58:18 +01:00
Jermolene
b13d87fdf2
Overhaul the macro and variable documentation #1519
2015-02-24 17:41:16 +01:00
Jermolene
fdc635007b
Add navigation support to the edit template
...
Matching the change we’ve already made to the view template
2015-02-23 18:59:46 +01:00
Jermolene
a2493f80a9
Add support for zip files
2015-02-23 11:57:16 +01:00
Jermolene
6a497eff6c
Add prototype stacked storyview
2015-02-23 11:28:50 +01:00
Jermolene
4dd2b38faa
Make tiddler frames clickable
...
With this enhancement, clicking on a tiddler in the story view will
navigate to that tiddler. This is needed for eg the stacked storyview,
where we want to be able to click on tiddlers to bring them to the
front of the stack.
There are some problems though - as things stand, clicking on a tiddler
in classic storyview will scroll to the top of that tiddler.
2015-02-23 11:28:36 +01:00
Jermolene
23981bc2fd
Adjust tiddler shadows
...
Previously the shadow was to the bottom right. Overlapping tiddlers
look better if the shadow seeps out from each of the sides of the
tiddler
2015-02-23 11:27:17 +01:00
Jermolene
d7c0bda15d
Don't use sticky titles by default
...
Layout bugs with position: sticky in Firefox mean that we probably
shouldn’t have sticky titles as the default. Rather than reverting to
putting them in a separate theme, it is proposed to expose the sticky
titles setting in Vanilla theme tweaks.
2015-02-23 11:25:10 +01:00
Jermolene
05c3de3245
Extend list widget to invoke storyview for refreshes
2015-02-23 11:24:03 +01:00
Jermolene
950a86c7b7
Extend link widget with additional attributes
...
Add “tabindex”, “draggable” and “tag” attributes
2015-02-23 11:23:44 +01:00
Jermolene
0bd2ec50e1
Add stacked storyview plugin
2015-02-23 11:21:57 +01:00
Jermolene
682cfebe73
Adjust tiddler shadows
...
Previously the shadow was to the bottom right. When tiddlers overlap
(as with the stacked storyview) it makes them “pop” more if the shadow
extends round all sides of the tiddler.
2015-02-23 11:21:32 +01:00
Jermolene
122a6f043d
Temporarily remove position sticky from titles
...
Firefox bugs with position:sticky mean that we probably shouldn’t have
sticky titles turned on by default.
Previously, sticky titles were packaged into a pluggable theme. Now, I
think it may make more sense to make the sticky titles status be a
theme tweak for the Vanilla theme.
2015-02-23 11:20:41 +01:00
Jermolene
83011ddcff
Turn tiddler frames into links
...
By turning the tiddler frame into a link it is now possible to click on
a tiddler to navigate to it. This is needed for the new
stacked-storyview, but it also useful in other storyviews.
Note that there are currently some issues. For example, in classic
storyview, clicking on a tiddler will scroll to the top of it, which
isn’t helpful if you’ve scrolled halfway down a long tiddler.
2015-02-23 11:18:47 +01:00
Jermolene
0da1f3f554
Extend list widget to pass refreshes to the story view
2015-02-23 11:17:00 +01:00
Jermolene
60e6b584bf
Extend link widget with new attributes
...
Add “draggable”, “tag” and “tabindex” attributes to link widget.
2015-02-23 11:16:44 +01:00
Astrid Elocson
ad9aa58528
Overhaul the macro and variable documentation
2015-02-21 23:03:24 +00:00
Roma Hicks
a5591dc7a5
Update the sameday and eachday filter to accept ISO date strings. Extends coverage to fields that are not automatically converted to Date objects.
2015-02-21 11:39:03 -06:00
Jermolene
a507d58211
Use position:fixed for the drop indicator
2015-02-21 11:12:38 +00:00
Jermolene
ccc2f6d153
Revert "Update documentation for action-setfield widget"
...
This reverts commit 3746b1b9e8 .
2015-02-21 09:40:41 +00:00
Jermolene
73a188d411
Improve description for help plugin
2015-02-21 08:53:04 +00:00
Jermolene
70e419824f
Add first pass of help panel
...
This is just an idea really.
The help plugin is only included in the tw5.com wiki; the idea is to
also include it in the empty.html wiki, either as a plugin or as part
of the core.
If it stays as a plugin, the idea would be to have different help
plugins for different languages.
2015-02-20 22:44:55 +00:00
Jermolene
2d2924d918
Add help icon
2015-02-20 22:42:25 +00:00
Jermolene
d004c9f951
Provide styles for selected page control buttons
2015-02-20 22:42:14 +00:00
Jermolene
bba4794c0a
Coding style updates
...
@welford there were some minor tweaks with whitespace, coalescing
consecutive var statements, camelcase rather than underscores in
variable names.
2015-02-20 22:17:28 +00:00
Jeremy Ruston
7eeb286551
Merge pull request #1517 from welford/static_export_macro
...
bug fix
2015-02-20 22:11:38 +00:00
James Welford Anderson
1901702557
bug fix
...
Createdirectory is removed as $tw.utils.createFileDirectories does it's
work
Fixed a bug for when tv-get-export-path returns null.
2015-02-21 07:06:59 +09:00
Jermolene
a80b20e8df
Merge branch 'welford-static_export_macro'
2015-02-20 21:56:18 +00:00
James Welford Anderson
cf59e7a71b
re-add outputpath variable
2015-02-21 06:49:34 +09:00
James Welford Anderson
ee6b6a0f0c
add macros for custom statically exported paths/links/images
...
tv-get-export-path tells render tiddlers where to export files
tv-get-export-image-link tells images.js where to look for images
tv-get-export-link tells tells link.js where to look for links to other
exported tiddlers
2015-02-21 06:45:40 +09:00
Jermolene
3df341621d
Alternative fix for unnecessary startup scrolling
...
@aelocson here’s an alternative fix for #981 , as discussed in
https://github.com/Jermolene/TiddlyWiki5/commit/691e5719a4ff74a04d389bd1
26ba2a69e7651a2a#commitcomment-9848682
It does seem a lot nicer. It avoids the problem you raised, and also
avoids scrolling when a permalink is used.
I suspect that we’d need to make the hard-coded 50 pixels be
configurable.
2015-02-20 20:04:18 +00:00
Jermolene
3746b1b9e8
Update documentation for action-setfield widget
2015-02-20 19:33:17 +00:00
Jermolene
ead6eb00d4
Revert "Merge pull request #1509 from welford/static_export_macro"
...
This reverts commit b2b8006b58 , reversing
changes made to e7e16137b2 .
@welford my apologies it turns out there are a couple of problems, I’ll
comment more on the pull request
2015-02-20 18:39:13 +00:00
Jeremy Ruston
b2b8006b58
Merge pull request #1509 from welford/static_export_macro
...
Static export macro for custom paths
2015-02-20 18:15:43 +00:00
Jeremy Ruston
e7e16137b2
Merge pull request #1512 from aelocson/plugin-descriptions
...
Consistent plugin descriptions
2015-02-20 18:08:34 +00:00
Jermolene
9e9b9a3bf1
Avoid navigating to an empty title
...
Fixes #1515
2015-02-20 16:19:53 +00:00
Jermolene
396efedc3f
Update tests for 1e9e1a1fdc
2015-02-20 16:19:06 +00:00
Jermolene
1e9e1a1fdc
Single quotes should be HTML encoded
...
As raised here:
https://groups.google.com/d/topic/tiddlywiki/nYvgcImvBt8/discussion
2015-02-20 16:09:38 +00:00
Jermolene
50cf85ae86
Move arrows to the left in the explorer view
2015-02-19 13:58:27 +00:00
Jermolene
4931462981
Remove index numbers from explorer view
2015-02-19 13:58:09 +00:00
Jeremy Ruston
6c62954116
Merge pull request #1505 from pmario/fix-search-path-runtime-error
...
Fix trailing semicolon in TIDDLYWIKI_EDITION_PATH
2015-02-17 20:56:14 +00:00
Astrid Elocson
28f78730ba
Consistent plugin descriptions
2015-02-17 10:28:54 +00:00
Jeremy Ruston
13fa3fb849
Merge pull request #1511 from BramChen/master
...
For chinese translations, fix GettingStarted text input field widths
2015-02-17 08:17:05 +00:00
Mario Pietsch
e1b57bf9e5
remove temporary variable
2015-02-17 01:29:42 +01:00
Bram Chen
0b8498bc6c
For chinese translations, fix GettingStarted text input field widths
2015-02-17 08:28:40 +08:00
James W. Anderson
d1809f352c
explicitly pass through source params
...
from the image/link widget to the respective static export macros
2015-02-17 07:11:00 +09:00
Jermolene
6e0c7d9022
Improve font rendering on OX S
...
See
https://medium.com/@mwichary/death-to-typewriters-technical-supplement-8
f3c754626f2#5916
2015-02-16 21:27:11 +00:00
Jermolene
42d130d49d
Revert #1496
...
The change affects the default display of the story river, reversing
the order of entries.
2015-02-16 19:17:10 +00:00
Jermolene
25442e349e
Restore missing whitespace
...
Accidentally deleted in e1a825f6b9
2015-02-16 17:31:50 +00:00
Jeremy Ruston
e1a825f6b9
Merge pull request #1496 from tobibeer/just-fix-list-filter-no-refactoring
...
just fixes list filter, no further refactoring
2015-02-16 17:30:54 +00:00
Jeremy Ruston
7d842bedd7
Merge pull request #1500 from aelocson/railroad-desc
...
Improve description of railroad plugin
2015-02-16 17:29:48 +00:00
Jeremy Ruston
66808f11d7
Merge pull request #1501 from pmario/language-de
...
german translations + fix TypedTiddlers missing file extension
2015-02-16 17:28:55 +00:00
Jeremy Ruston
01d9af8107
Merge pull request #1502 from pmario/fix-invalid-example-links
...
change existing, unsuitable links mysite.com and me.com to example.com
2015-02-16 17:28:41 +00:00
Jeremy Ruston
14789e1d21
Merge pull request #1503 from pmario/fix-getting-started-input-width
...
fix empty.html GettingStarted text input field widths
2015-02-16 17:28:22 +00:00
Jermolene
e900b388b5
Add example of JSON tiddler file
2015-02-16 17:27:49 +00:00
Jeremy Ruston
bb0f960ccc
Merge pull request #1504 from tobibeer/tiddler-files-doc
...
TiddlerFiles — above all fixing the wrong example at the bottom
2015-02-16 17:24:06 +00:00
Jermolene
74f423af2a
Restoring some of @tobibeer's other edits to ListWidget docs
2015-02-13 22:56:28 +00:00
Jermolene
4ba53564e2
Missed of reverting the list widget iterator variables commits
2015-02-13 22:56:11 +00:00
Jermolene
68165af081
Revert #1330 ("implements list iterator variables")
...
As discussed on the ticket, there is a problem:
https://github.com/Jermolene/TiddlyWiki5/pull/1330#issuecomment-74339195
2015-02-13 22:42:36 +00:00
Jermolene
e386e26b2d
Fix problems with $tw.utils.checkVersions()
...
Previous changes since 5.1.7 broke the documented semantics by no
longer returning true when the versions match. It affected the upgrade
process, making it impossible to upgrade to a later pre-release (ie
where the version numbers in the upgrade.html match those in the file
being upgraded).
Also reviewed and updated the calls to checkVersions.
@felixhayashi I think that this effectively reverts the change you
original submitted. Are you OK with it?
2015-02-12 23:04:20 +00:00
Mario Pietsch
95d7a826f0
space added
2015-02-12 20:03:20 +01:00
Mario Pietsch
17c38b1ec5
fix problem if edition search path is TIDDLYWIKI_EDITION_PATH=c:\test; because the trailing semicolon creates an empty directory name.
2015-02-12 14:44:10 +01:00
Tobias Beer
c1977552a2
above all fixing the wrong example at the bottom
...
and some more rewording
2015-02-12 13:56:26 +01:00
Mario Pietsch
8e106966d3
fix empty.html GettingStarted text input field withs
2015-02-12 13:18:51 +01:00
Mario Pietsch
2d07e3d661
change existing, unsuteable links mysite.com and me.com to example.com
2015-02-12 12:48:00 +01:00
Mario Pietsch
18d45a302d
german translations + fix TypedTiddlers missing file extension
2015-02-12 12:38:32 +01:00
Astrid Elocson
435267080f
Improve description of railroad plugin
2015-02-12 09:35:57 +00:00
Jermolene
ddac13317e
Disable plugin reload warnings in the upgrade edition
2015-02-11 13:01:43 +00:00
Tobias Beer
4991c4d6dc
just fixes list filter, no further refactoring
...
previously did not correctly handle / match the source but only output
the list as is
replaces https://github.com/Jermolene/TiddlyWiki5/pull/1419
2015-02-11 12:01:57 +01:00
Jermolene
c9ab873ba3
Fixes problem with drag and drop in Safari
...
Fixes #1415
The problem was that encodeURI() doesn’t encode slashes, which are not
legal in a data URI, although only Safari was failing. We switch to
encodeURIComponent(), which does encode slashes
2015-02-11 10:07:10 +00:00
Jermolene
1534fed4f7
Don't give the plugin warning for $:/Import
2015-02-10 23:17:50 +00:00
Jermolene
1924eda8a9
Improvements for #1483
...
* Rename the global to $tw.dragInProgress for clarity.
* Abort the dragenter so that we don’t get extraneous feedback during
the drag
2015-02-10 23:17:38 +00:00
Jeremy Ruston
1b87d9134b
Merge pull request #1483 from tobibeer/592-no-drag-n-drop-to-same-location
...
prevents drag and drop import in same window
2015-02-10 23:04:45 +00:00
Jermolene
691e5719a4
Avoid unnecessary scrolling at startup
...
The main fix is removing the fallback navigation to the first tiddler
in story.js. Also required is the fix to the startup behaviour of
zoomin.js.
Fixes #981
2015-02-10 22:40:38 +00:00
Tobias Beer
dc23963525
using $tw.dragging to prevent dnd in same window
...
Anything missing?
2015-02-10 23:34:37 +01:00
Tobias Beer
30f2c06c9e
Revert "prevents drag and drop import in same window"
...
This reverts commit 09afa8297a .
2015-02-10 23:33:19 +01:00
Jermolene
b166632bbb
Fix blurred modal backdrops for Firefox
2015-02-10 22:19:21 +00:00
Jermolene
8b53839e4e
Standardise filenames for building fr-FR edition
...
@xcazin - see also
https://github.com/Jermolene/build.jermolene.github.io/commit/f2d3031946
22fd0a8556de81a1d35542358c585a
2015-02-10 22:05:44 +00:00
Jeremy Ruston
956cc47cc2
Merge pull request #1492 from aelocson/eachday-modified
...
Default eachday to the modified field
2015-02-10 19:55:28 +00:00
Astrid Elocson
fd84370d7a
Default eachday to the modified field
2015-02-10 16:21:53 +00:00
Jermolene
2305385c08
Don't list all tiddlers in tag dropdown in edit template
...
@tobibeer I think that this was originally from you. I think it’s
problematic listing all available tiddlers for performance and
usability reasons.
I’ve instead taken advantage of your work to template the tag links by
splitting the system and non-system tags. What do you think?
2015-02-10 14:43:09 +00:00
Jermolene
4b61cae262
Add debugging hook for wiki.addTiddler()
2015-02-10 11:30:39 +00:00
Jermolene
cf36f6d090
Fix empty French translation
...
We also had two $:/language definitions
2015-02-10 11:30:38 +00:00
Jeremy Ruston
921e184d4f
Merge pull request #1485 from BramChen/master
...
Add chinese translations for the new Plugins tab of control panel
2015-02-10 10:56:24 +00:00
Jeremy Ruston
81ff046555
Merge pull request #1489 from xcazin/fred
...
First fixes to the fr-FR empty wiki generation
2015-02-10 10:37:23 +00:00
Jeremy Ruston
5f3e569ad7
Merge pull request #1488 from aelocson/is-fix
...
Fix documentation of is[missing]
2015-02-10 10:22:16 +00:00
Xavier Cazin
72160982ed
First fixes to the fr-FR empty wiki generation
...
Needs improvements (notably, fr-FR language has to be manually switched after load)
2015-02-10 11:17:03 +01:00
Astrid Elocson
3331f1d85f
Fix documentation of is[missing]
2015-02-10 09:06:05 +00:00
Bram Chen
f0ad83e4e1
Add chinese translations for the new Plugins tab of control panel
2015-02-10 10:54:56 +08:00
Bram Chen
a548321a8e
Merge remote-tracking branch 'upstream/master'
2015-02-10 08:48:54 +08:00
Tobias Beer
09afa8297a
prevents drag and drop import in same window
...
fixes #592
Introduces and preserves **_origin** field when using drag-and-drop —
bad idea? discard? different field name?
demo http://592.tiddlyspot.com
2015-02-09 23:49:04 +01:00
Jeremy Ruston
629c31eb51
Merge pull request #1475 from danielo515/patch-6
...
template parameter on view widget is not clear
2015-02-09 22:12:24 +00:00
Jermolene
120b1737a6
Ensure $:/StoryList is synced in client-server configuration
...
Fixes #1474
2015-02-09 22:02:23 +00:00
Jermolene
8dcd080cdd
Style fix
2015-02-09 21:46:54 +00:00
Jeremy Ruston
9cf1f8f96b
Merge pull request #1476 from tobibeer/fix-tm-delete-tiddler-doesnt-exist
...
Fix issue deleting non-existent tiddler
2015-02-09 21:46:08 +00:00
Jermolene
d7d560897d
Correct case of getindex filter operator
2015-02-09 21:42:25 +00:00
James Welford Anderson
0b68428bc5
add image export path macro
2015-02-10 05:59:56 +09:00
Jermolene
950a90e235
haschanged filter docs improvements from @aelocson
2015-02-09 19:51:02 +00:00
Jermolene
f0fa33985b
Inadvertently included in previous commit
2015-02-09 19:42:52 +00:00
Jermolene
b66db0dca9
Improvements to display of plugin libraries
2015-02-09 19:41:28 +00:00
Jermolene
e7c418089d
Correct plugin library URL
2015-02-09 19:29:14 +00:00
Jermolene
0c4fe6b602
Remove debugging code
2015-02-09 19:28:48 +00:00
Jermolene
2585f8932c
Left off previous commit
2015-02-09 19:04:22 +00:00
Jermolene
8643278a45
Add support for an integrated plugin library
...
Fixes #1450
Provides support for an integrated plugin library that can be used to
install plugins from tiddlywiki.com directly to wikis hosted online or
offline. See the Plugins tab of Control Panel.
Todo:
* Error checking(eg libraryserver.js HTTP GET)
* Translatability
* Documentation
** $:/tags/ServerConnection
** savelibrarytiddlers command
2015-02-09 19:04:11 +00:00
Tobias Beer
ca6ab6388a
no error when tiddler doesn't exist
...
Currently **tm-delete-tiddler** throws a red error box:
```
<$button>
<$action-sendmessage $message="tm-delete-tiddler" $param="DoesntExist"/>
delete non-existing
</$button>
```
**Uncaught TypeError: Cannot read property 'fields' of undefined**
2015-02-09 12:28:42 +01:00
Jermolene
aae56f20af
Display warning banner when plugins are modified
...
Fixes #1455
@aelocson have I got the docs right for the new filter?
2015-02-08 19:40:15 +00:00
danielo515
f20a09532a
templates are not clear
...
The template description is too ambiguous. I tried to use template tiddlers just to realize that the template should be a string. For example a date format.
2015-02-08 20:11:07 +01:00
Jermolene
e18825e897
Fix problem with stringifying missing fields
2015-02-08 18:46:22 +00:00
Jeremy Ruston
96f5098f46
Merge pull request #1441 from Spangenhelm/patch-3
...
Enhancements to plugin installation doc and new entry for uninstallation
2015-02-08 18:31:05 +00:00
Jermolene
cfea481ce8
Ensure stylesheet is re-rendered when the language changes
...
This ensures that things like the drop message are updated when the
language changes.
2015-02-08 17:56:17 +00:00
Jeremy Ruston
1191d60d61
Merge pull request #1456 from Spangenhelm/patch-4
...
Update cla-individual.md
2015-02-07 16:37:16 +00:00
Jermolene
d6b1525727
Add tweeting to release procedure
...
For @RichShumaker
2015-02-07 15:33:18 +00:00
Jermolene
d6918d737f
First commit of Interlingua translation
...
See http://en.wikipedia.org/wiki/Interlingua
2015-02-07 15:32:44 +00:00
Bram Chen
adbed21363
Merge remote-tracking branch 'upstream/master'
2015-02-07 22:54:09 +08:00
Jeremy Ruston
bb10e2b029
Merge pull request #1471 from tobibeer/basic-empty-story-message
...
basic empty story message
2015-02-07 13:12:01 +00:00
Tobias Beer
2017ae5ac4
basic empty story message
...
added documentation to HistoryMechanism
2015-02-07 13:17:32 +01:00
Jeremy Ruston
568515fef7
Merge pull request #1457 from aelocson/filter-fields
...
Define operators via fields and a view template
2015-02-07 12:02:43 +00:00
Jeremy Ruston
68930f333a
Merge pull request #1452 from tobibeer/getIndex-filter
...
getIndex filter
2015-02-07 11:53:07 +00:00
Jeremy Ruston
6c32ee578e
Merge pull request #1458 from BramChen/master
...
The cumulative updates for zh-Hans and zh-Hant
2015-02-07 11:49:32 +00:00
Jeremy Ruston
412451170b
Merge pull request #1469 from Jermolene/revert-1435-1428-empty-story-message
...
Revert "implements emptyStoryMessage"
2015-02-07 11:29:46 +00:00
Jeremy Ruston
9b600c23a2
Revert "implements emptyStoryMessage"
2015-02-07 11:29:12 +00:00
Jeremy Ruston
dceb68818a
Merge pull request #1435 from tobibeer/1428-empty-story-message
...
implements emptyStoryMessage
2015-02-07 11:25:46 +00:00
Tobias Beer
a72581ba26
removed language switcher text
2015-02-07 12:22:16 +01:00
Jeremy Ruston
7deea0cbf3
Merge pull request #1468 from tobibeer/fix-svg-newlines
...
removed trailing newlines in svg
2015-02-07 10:45:00 +00:00
Jermolene
6721a5eb1b
Add Portuguese Translation by Duarte Farrajota Ramos
2015-02-07 10:30:05 +00:00
Jermolene
b1bb52b67a
Fix typo from 8cd0c2afcd
2015-02-07 10:23:16 +00:00
Bram Chen
9cfbc3b001
Merge remote-tracking branch 'upstream/master'
2015-02-07 09:15:46 +08:00
Jeremy Ruston
718ce3e4aa
Merge pull request #1465 from roma0104/master
...
Added Class Mechanism to Checkbox Widget
2015-02-06 18:51:43 +00:00
Jermolene
f2cd743c17
Add TeXZilla plugin by Joe Renes
2015-02-06 17:04:58 +00:00
Roma Hicks
687d6350d4
Added class mechanism to checkbox widget. #1463
2015-02-06 01:02:01 -06:00
Roma
a11264ebb0
Merge pull request #1 from Jermolene/master
...
Update my fork.
2015-02-05 18:30:54 -06:00
Bram Chen
bac5bc02e2
The cumulative updates for zh-Hans and zh-Hant
2015-02-04 12:11:09 +08:00
Tobias Beer
7ed5c3ccfc
use extractTiddlerDataItem not parseTextReference
2015-02-04 01:49:31 +01:00
Tobias Beer
726ccdee49
updated documentation
...
thanks, @aelocson
2015-02-04 01:41:50 +01:00
Bram Chen
a3d51ef7c3
Merge remote-tracking branch 'upstream/master'
2015-02-04 08:15:42 +08:00
Astrid Elocson
c2d473fa29
Define operators via fields and a view template
2015-02-03 19:29:25 +00:00
Florent V.
42e72a7adc
Update cla-individual.md
2015-02-03 17:50:39 +01:00
Jeremy Ruston
d340277cb2
Merge pull request #1392 from tobibeer/1387-fix-tiddlyspot-backup-url
...
Add resolvepath macro
2015-02-03 14:22:48 +00:00
Tobias Beer
32fd03d2f5
rename macro
2015-02-03 15:19:03 +01:00
Tobias Beer
e4bd0c8633
added documentation
...
temporary documentation demo:
http://goto.bplaced.net/tw5/5.1.7.html#ResolvePath
2015-02-03 15:18:38 +01:00
Jeremy Ruston
6a01ec5770
Merge pull request #1447 from tobibeer/move-nodejs-to-editions
...
French docs: moved tw on node.js to editions
2015-02-03 14:17:01 +00:00
Tobias Beer
a8a0d0d09e
renaming in one go didn't work
2015-02-03 14:50:37 +01:00
Tobias Beer
8746e1ede0
renamed and documentation
...
* renamed to all lowercase
* added documentation
* added examples
2015-02-03 14:50:16 +01:00
Jeremy Ruston
5987bad821
Merge pull request #1446 from dullroar/master
...
Make sure all "get" access to $tw.config.fileExtensionInfo goes through...
2015-02-03 13:26:08 +00:00
Jeremy Ruston
195cc99679
Merge pull request #1436 from aelocson/filter-terminology
...
Revise filter terminology: constructors and modifiers
2015-02-03 13:12:57 +00:00
James Welford Anderson
4049affb31
initial pass at static export macros
2015-02-03 07:30:24 +09:00
Tobias Beer
0ee06bb144
moved tw on node.js to editions
...
removed empty toplevel "TiddlyWiki Configurations", also from French
added TiddlyDesktop to Editions
2015-02-01 20:04:10 +01:00
Jim Lehmer
8cd0c2afcd
Make sure all "get" access to $tw.config.fileExtensionInfo goes through a $tw.utils.getFileExtensionInfo helper function that ensures the parameter is cast to lowercase. Fixes #1418 .
2015-02-01 12:33:40 -06:00
Florent V.
48d9cad7c2
Enhancements to plugin installation and new entry for uninstallation
...
I have added bold markup to emphase and explain the need to refresh.
2015-02-01 12:41:52 +01:00
Astrid Elocson
3dd4f943ce
Rename to SelectionConstructors.tid
2015-01-29 13:41:11 +00:00
Astrid Elocson
9a7bda28e9
Revise filter terminology: constructors and modifiers
2015-01-29 13:40:18 +00:00
Astrid Elocson
a5d54a0ada
Rename AbsoluteOperators.tid
2015-01-29 13:23:24 +00:00
Tobias Beer
4a05bd10e9
renamed to resolvePath using $tw.utils.resolvePath
...
adapted ControlPanel / Saving accordingly
2015-01-29 00:38:08 +01:00
Tobias Beer
e9261a1b50
implements emptyStoryMessage
...
as well added ControlPanel settings — reordered ControlPanel basics to
have DefaultTiddlers next to EmptyMessage but not shifting important
stuff too far down
2015-01-28 23:55:29 +01:00
Tobias Beer
8b771555a5
initial commit
...
Is `wiki.parseTextReference()` the appropriate way?
2015-01-28 22:15:52 +01:00
Jermolene
2db6cbed2d
Add warning about not using File/Save menu option
2015-01-28 17:35:10 +00:00
Jermolene
3300ed9602
Update action widget docs for 4cd8466adb
2015-01-28 16:31:49 +00:00
Jeremy Ruston
4cd8466adb
Merge pull request #1396 from ng110/master
...
Allow widget actions to propagate to children
2015-01-28 16:28:11 +00:00
ng110
a7a205a754
Update select.js
2015-01-28 16:00:34 +00:00
Bram Chen
8c6d1c75c7
Merge remote-tracking branch 'upstream/master'
2015-01-28 22:43:20 +08:00
Jeremy Ruston
1f610c22f8
Merge pull request #1429 from aelocson/order-tagged
...
Adjust documentation following pull #1378
2015-01-28 13:54:50 +00:00
Jermolene
050b643948
Sandbox HTML iframes
...
Otherwise Firefox allows code in html tiddlers to access the main
window:
https://groups.google.com/d/topic/tiddlywiki/NwOI-QER2ig/discussion
2015-01-28 13:50:39 +00:00
Jeremy Ruston
040ed56de5
Merge pull request #1430 from tobibeer/1378-tests-sorting-unlisted-tiddlers
...
update tagging filter tests
2015-01-28 13:16:24 +00:00
Jeremy Ruston
9a74c31e13
Merge pull request #1383 from tobibeer/fix-topbar-position
...
place topbars first in page-layout
2015-01-28 12:55:19 +00:00
Jeremy Ruston
1e13eacd25
Merge pull request #1431 from aelocson/each-list-doc
...
Adjust documentation following pull #1422
2015-01-28 11:42:40 +00:00
Jermolene
99f24eefa4
Move if macro to macros directory
2015-01-28 11:42:12 +00:00
Bram Chen
23a8c0115e
Merge remote-tracking branch 'upstream/master'
2015-01-28 19:29:03 +08:00
Jermolene
ba971a2d2b
Improved drop message
2015-01-28 09:13:05 +00:00
Tobias Beer
7ec42f93ec
updated $:/tags/PageTemplate
...
reverted topleftbar & toprightbar
2015-01-28 01:13:29 +01:00
Astrid Elocson
d536030c5d
Adjust documentation following pull #1422
2015-01-27 20:38:30 +00:00
Tobias Beer
b40da093af
added tests to tagging for changes in #1378
...
using a single test-filters.js is (becoming) a pain... I'd rather have a
single test file per filter / module / function
2015-01-27 18:20:03 +01:00
Astrid Elocson
e6d204db0f
Adjust documentation following pull #1378
2015-01-27 15:44:55 +00:00
Jeremy Ruston
08f6e7f624
Merge pull request #1378 from tobibeer/tag-button-sort-tagging
...
sort unlisted tags by title
2015-01-27 14:30:36 +00:00
Jeremy Ruston
618bc166ed
Merge pull request #1382 from felixhayashi/patch-2
...
Releases.tid now switches to the newest releast per default
2015-01-27 14:12:15 +00:00
Jeremy Ruston
01cd5302f3
Merge pull request #1389 from aelocson/issue-1346
...
Fix #1346 : Quotes around filter steps
2015-01-27 13:55:12 +00:00
Jeremy Ruston
bc87486ee1
Merge pull request #1390 from aelocson/railroad
...
Improvements to railroad plugin
2015-01-27 13:54:50 +00:00
Jeremy Ruston
3ec87a5c9c
Merge pull request #1394 from tobibeer/use-filter-tiddler
...
changed tabs to use same filters as AdvancedSearch
2015-01-27 13:39:14 +00:00
Jeremy Ruston
5ccbe961f9
Merge pull request #1412 from alexhough/patch-3
...
change to current version
2015-01-27 13:08:14 +00:00
Jeremy Ruston
05215f1bd3
Merge pull request #1425 from alexhough/patch-4
...
added my name
2015-01-27 13:07:56 +00:00
Bram Chen
35afbe9edf
Merge remote-tracking branch 'upstream/master'
2015-01-27 09:34:54 +08:00
alexhough
225b6ac950
changed to use <<version>>
2015-01-26 22:26:00 +00:00
alexhough
f3e4d156ee
added my name
2015-01-26 22:23:32 +00:00
Jermolene
95f2f1a8fa
Merge branch 'ng110-patch-1'
2015-01-26 21:51:13 +00:00
Jermolene
59db869deb
Fix merge conflict
2015-01-26 21:46:12 +00:00
Jeremy Ruston
6dbe0e310d
Merge pull request #1408 from Mathobal/patch-1
...
WikiText error in documentation
2015-01-26 21:33:34 +00:00
Jeremy Ruston
be7cc50873
Merge pull request #1424 from Mathobal/master
...
Update cla-individual.md
2015-01-26 21:33:18 +00:00
Ben Williams
6179259958
Update cla-individual.md
2015-01-26 21:26:47 +00:00
Jeremy Ruston
e87aea6e1f
Merge pull request #1413 from tobibeer/1410-is-numeric
...
fix isNumeric in sortTiddlers in wiki.js
2015-01-26 21:00:26 +00:00
Jermolene
bdc5a38a84
Update copyright date
2015-01-26 20:56:15 +00:00
Jeremy Ruston
1afbd4c1f4
Merge pull request #1414 from aelocson/regexp-exception
...
Catch syntax errors in regexp filters
2015-01-26 20:55:58 +00:00
Tobias Beer
e9bdf6f542
trying to show the conditional nicely aligned
2015-01-26 19:58:00 +01:00
Jeremy Ruston
b81432aee2
Merge pull request #1417 from aelocson/filter-docs
...
Overhaul the filter operator documentation
2015-01-26 18:43:24 +00:00
Jermolene
b845751d3c
Add Punjabi and Hindi translations
...
Many thanks to Atul Grover
2015-01-26 16:48:11 +00:00
Astrid Elocson
baceb21fbb
Document splitbefore and storyviews operators
2015-01-26 14:42:22 +00:00
Astrid Elocson
89163e0e85
Adjust style of filter operator placeholders
2015-01-26 09:26:24 +00:00
Astrid Elocson
88ea60cc7e
correction to statement about filter whitespace
2015-01-25 10:53:56 +00:00
Astrid Elocson
15f05b076c
Retarget a couple of links and add trailing linefeeds
2015-01-24 21:53:28 +00:00
Astrid Elocson
aac2a63e05
Overhaul the filter operator documentation: part 2
2015-01-24 21:18:44 +00:00
Astrid Elocson
8d9f1e7477
Catch syntax errors in regexp filters
2015-01-23 14:32:57 +00:00
Tobias Beer
8a3991a619
extracted number comparision function
...
and added missing brackets
2015-01-23 14:57:04 +01:00
Tobias Beer
122e16d39c
putting the variables in the right scope
2015-01-23 12:24:47 +01:00
Tobias Beer
ad62d9a083
first attempt at fixing wrong sort order in nsort and nsortcs
...
not working yet, no idea why
2015-01-23 12:06:32 +01:00
Tobias Beer
e504530005
introduce serverpath macro
...
for now, computes path to backup directory, appending the relative path
of UploadBackupDir to the absolute one from the UploadURL
Also added example for store.php to hint
2015-01-23 11:26:14 +01:00
alexhough
910d59c166
change to current version
2015-01-23 09:16:16 +00:00
Ben Williams
e423c21912
WikiText error in documentation
...
A minor issue - the wrong slashes are used in part of this text for emphasis. This confused me until I realised what was going on (I thought the /'s were part of the template syntax).
2015-01-22 15:00:57 +00:00
ng110
211406b0c2
Update cla-individual.md
2015-01-20 16:16:47 +00:00
Tobias Beer
5e175ec7c1
changed tabs to use same filters as AdvancedSearch
...
...to have one place to configure / override
2015-01-20 16:51:41 +01:00
ng110
16fe9fd5ce
Update select.js
2015-01-20 13:02:06 +00:00
ng110
f9c4f6898e
Add capability for widgets to trigger all descendant action widgets, rather than just immediate children.
...
Preserves compatibility with existing invokeActions call in button widget by creating a separate 'invokeActionCall' function to carry out the recursion. Triggering all descendants permits use of action widgets inside list widgets or macros. Also makes it possible to add triggering capability to select widget.
2015-01-20 12:34:24 +00:00
Tobias Beer
77c9918338
shows better message for backup dir with custom store.php
...
relates to #1387
2015-01-20 12:06:09 +01:00
Astrid Elocson
0d406966b3
Improve railroad example tiddler
2015-01-20 09:08:29 +00:00
Astrid Elocson
a848c105a8
Refresh railroad diagrams when config tiddler changes
2015-01-20 08:38:00 +00:00
Astrid Elocson
9e5eaed4a8
Support a global railroad config tiddler
2015-01-19 23:11:25 +00:00
Astrid Elocson
998361de59
Introduce text/vnd.tiddlywiki.railroad
2015-01-19 22:24:15 +00:00
Astrid Elocson
1591b43066
Introduce text/vnd.tiddlywiki.railroad
2015-01-19 22:21:22 +00:00
Astrid Elocson
e5676d058a
Introduce text/vnd.tiddlywiki.railroad
2015-01-19 19:59:38 +00:00
Astrid Elocson
ade1c40911
Revise terminology around tiddler sets
2015-01-19 19:37:26 +00:00
Tobias Beer
495d5f258f
place topbars first in pagelayout
2015-01-18 22:39:24 +01:00
Felix Küppers
adfb31a572
Update Releases.tid
2015-01-18 22:07:10 +01:00
Astrid Elocson
9bd3fb7238
Rename filter operator .tid files
2015-01-18 19:20:02 +00:00
Tobias Beer
5cc68106ec
removed trailing newlines in svg
...
they create problems when using the icons as links
2015-01-18 20:09:10 +01:00
Astrid Elocson
6842a354ea
Improve appearance of railroad arrows
2015-01-18 18:50:51 +00:00
Astrid Elocson
172c7ef7dd
Overhaul the filter operator documentation: part 1
2015-01-18 18:39:00 +00:00
Tobias Beer
6006ed0ecf
added case-insensitivity using wiki.sortTiddlers
2015-01-17 12:02:54 +01:00
Tobias Beer
a8ab08e8fa
sort unlisted tags by title
...
when the tiddlers are not listed in the list field, sort them by title
nonetheless, otherwise we get a real poor taglist from
**$:/core/ui/TagTemplate**
2015-01-17 11:40:33 +01:00
Astrid Elocson
8fc404bbca
Make filter syntax explanations accurate
2015-01-14 21:27:07 +00:00
Astrid Elocson
07c1dcb685
Improve a couple of comments
2015-01-14 20:09:15 +00:00
Astrid Elocson
82c0152e04
Fix #1346 : Quotes around filter steps
2015-01-14 20:06:51 +00:00
Astrid Elocson
53953399c3
Correct spaces to tabs
2015-01-13 22:48:18 +00:00
Astrid Elocson
af7bbc0d06
Improve CSS of railroad diagrams
2015-01-13 19:58:30 +00:00
Astrid Elocson
34983dd874
Reduce size of railroad arrows
2015-01-12 23:07:11 +00:00
Astrid Elocson
2d86d8e47d
Introduce arrow option on railroad widget
2015-01-12 20:03:37 +00:00
Astrid Elocson
35b99dccee
Correct typo in sample tag name
2015-01-12 20:01:24 +00:00
Bram Chen
42bd29fe0b
Merge remote-tracking branch 'upstream/master'
2015-01-13 01:10:56 +08:00
Jermolene
f4005871b4
Correct extension for IteratorVariables
...
@tobibeer the problem was the missing .tid extension.
2015-01-11 22:29:41 +00:00
Jeremy Ruston
486827014f
Merge pull request #1361 from aelocson/em-fix
...
Correct typo in macro name
2015-01-11 21:21:51 +00:00
Astrid Elocson
5a20ac98fa
Correct typo in macro name
2015-01-11 21:03:07 +00:00
Jeremy Ruston
17f2e5e7e6
Merge pull request #1332 from tobibeer/list-widget-iterator
...
documentation for list iterators
2015-01-11 19:59:28 +00:00
Jermolene
531f019669
Release note update
2015-01-11 19:59:04 +00:00
Jeremy Ruston
d624066e73
Merge pull request #1352 from welford/rendertiddlers
...
add "noclean" parameter to rendertiddlers
2015-01-11 19:58:05 +00:00
Jeremy Ruston
33603e1bd2
Merge pull request #1358 from aelocson/fix-1357
...
Fix #1357 : Railroad plugin under Node.js
2015-01-11 19:57:36 +00:00
Jeremy Ruston
d197af7995
Merge pull request #1359 from aelocson/doc-macros
...
Introduce documentation macros
2015-01-11 19:57:19 +00:00
Jeremy Ruston
7067ba0326
Merge pull request #1360 from aelocson/filter-docs
...
Improve filter documentation
2015-01-11 19:56:45 +00:00
Astrid Elocson
28b6302a83
Improve filter documentation
2015-01-11 19:09:35 +00:00
Astrid Elocson
76a3a44d4c
Introduce documentation macros
2015-01-11 19:04:14 +00:00
Astrid Elocson
d5278866fd
Move style guide tiddlers to their own folder
2015-01-11 19:03:21 +00:00
Astrid Elocson
6a75c4623a
Fix #1357 : Railroad plugin under Node.js
2015-01-11 18:31:53 +00:00
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
Bram Chen
e6daa6c4f0
Merge remote-tracking branch 'upstream/master'
2015-01-11 23:10:18 +08: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
Bram Chen
5822954eb7
Merge remote-tracking branch 'upstream/master'
2015-01-11 07:31:38 +08: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
Bram Chen
4c7916b0e1
Merge remote-tracking branch 'upstream/master'
2015-01-10 22:06:51 +08: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
Bram Chen
fd649fc33a
Merge remote-tracking branch 'upstream/master'
2015-01-10 08:17:14 +08: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
Bram Chen
df3d346792
Merge remote-tracking branch 'upstream/master'
2015-01-07 14:07:04 +08: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
Bram Chen
d03f4585f6
Merge remote-tracking branch 'upstream/master'
2015-01-07 00:04:51 +08: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
Astrid Elocson
39d888b688
Update Introduction to Filters.tid
2015-01-05 20:58:36 +00:00
Astrid Elocson
90e43d5f5a
Further improvements around filter documentation
2015-01-05 14:06:10 +00:00
Xavier Cazin
a7d2fd4175
fr-FR translation of TableOfContentsMacro documentation
2015-01-05 11:38:32 +01:00
Xavier Cazin
203cb17271
Use the toc-caption() utility macro in Tabbed ToCs as well
2015-01-05 10:59:28 +01:00
Bram Chen
d19e2fa217
Merge remote-tracking branch 'upstream/master'
2015-01-05 08:44:19 +08:00
Felix Küppers
ea4b282ed8
Update and rename Taskgraph by Felix Kuppers.tid to TiddlyMap by Felix Kuppers.tid
2015-01-04 21:43:00 +01:00
Jeremy Ruston
71357a8e39
Merge pull request #1316 from aelocson/filter-syntax
...
Use railroad diagrams to explain filter syntax
2015-01-04 16:00:17 +00:00
Jeremy Ruston
548c99a984
Merge pull request #1314 from aelocson/railroad
...
Introduce railroad plugin
2015-01-04 16:00:03 +00:00
Jeremy Ruston
5e5330b315
Merge pull request #1312 from dullroar/master
...
Handle case-insensitive file systems.
2015-01-04 15:58:37 +00:00
Jeremy Ruston
a8b9d2455c
Merge pull request #1317 from twMat/patch-1
...
Update TiddlyWiki Hangouts.tid
2015-01-04 15:57:38 +00:00
Jermolene
ea6e60e669
Focus search box on startup
2015-01-04 15:53:48 +00:00
Jermolene
95897103ef
Update edit-text widget docs
2015-01-04 14:10:13 +00:00
ng110
7d6769f6fd
Update select.js
...
test change
2015-01-04 12:22:00 +00:00
twMat
e319e65574
Update TiddlyWiki Hangouts.tid
...
Delinkify word "YouTube" to not mistake it for a link.
2015-01-04 11:44:11 +01:00
Astrid Elocson
388464190d
Use railroad diagrams to explain filter syntax
2015-01-03 20:16:46 +00:00
Astrid Elocson
4f3cb8b9ae
Introduce railroad plugin
2015-01-03 20:02:27 +00:00
Jim Lehmer
c296f14210
Handle case-insensitive file systems.
2015-01-03 09:33:22 -06:00
Bram Chen
5adcf928e6
Merge remote-tracking branch 'upstream/master'
2015-01-03 07:52:45 +08:00
Jermolene
3f5e46011f
Remove inaccurate docs
2015-01-02 17:42:04 +00:00
Jeremy Ruston
7acbad43fe
Merge pull request #1305 from dullroar/master
...
Fix bug where a .tid extension was being added twice if tiddler name lon...
2015-01-02 17:31:35 +00:00
Jim Lehmer
809a59920a
Fix bug where a .tid extension was being added twice if tiddler name longer than 200 characters.
2015-01-02 11:25:54 -06:00
Jermolene
785e1c7789
Tweaks to tiddler widget docs
2015-01-02 17:11:37 +00:00
Jeremy Ruston
dcbe2d657e
Merge pull request #1300 from tobibeer/patch-3
...
fixes example and improves readability
2015-01-02 17:08:28 +00:00
James Welford Anderson
cc85368fd4
highlightjs in nodejs
2015-01-03 02:00:08 +09:00
Jermolene
652ca2a807
Add Jim Lehmer's site to resources
2015-01-02 16:00:00 +00:00
Bram Chen
24e9b7cbfa
Merge remote-tracking branch 'upstream/master'
2015-01-02 19:15:19 +08:00
Jermolene
42efd4116d
Update Japanese translation
2015-01-02 09:54:39 +00:00
Jermolene
75fd33070e
Fix translated core readme title
2015-01-02 09:54:19 +00:00
Bram Chen
31781d7dda
Merge remote-tracking branch 'upstream/master'
2015-01-01 16:58:35 +08:00
Tobias Beer
31c9998c62
fixes example and improves readability
2014-12-31 12:38:15 +01:00
Jermolene
544ee4668e
Typo correction
2014-12-31 09:34:32 +00:00
Jermolene
bb51e399ff
Resolve merge conflict
2014-12-30 18:45:21 +00:00
Jermolene
a2ac4ddd6c
Merge branch 'signCLA' of https://github.com/Arlen22/TiddlyWiki5 into Arlen22-signCLA
...
Conflicts:
licenses/cla-individual.md
2014-12-30 18:43:47 +00:00
Jeremy Ruston
ef6a6fea87
Merge pull request #1294 from aelocson/patch-4
...
Improvements to filter grammar presentation
2014-12-30 18:42:51 +00:00
Jeremy Ruston
8707d51b7d
Merge pull request #1293 from aelocson/patch-3
...
Improvements to wording
2014-12-30 18:42:03 +00:00
Jeremy Ruston
43250e028a
Merge pull request #1292 from Infurnoape/patch-1
...
Update cla-individual.md
2014-12-30 18:38:38 +00:00
Jermolene
a8854662e4
Keep documentation style guide in the TOC
2014-12-30 18:38:22 +00:00
Jermolene
b8f090e0c6
Clean up from merging @roma0104's changes
2014-12-30 18:37:12 +00:00
Jeremy Ruston
6672af7c62
Merge pull request #1289 from aelocson/patch-2
...
Expand the Document Style Guide
2014-12-30 18:37:05 +00:00
Jeremy Ruston
051bafaf41
Merge pull request #1287 from BramChen/master
...
Update chinese translations for tiddler toolbar button wording
2014-12-30 18:35:21 +00:00
Jeremy Ruston
399a80643a
Merge pull request #1283 from aelocson/patch-1
...
Improvements to wording
2014-12-30 18:34:55 +00:00
Jermolene
afda1c5344
Merge branch 'roma0104-master'
2014-12-30 18:24:43 +00:00
Jermolene
6d87b505b1
Merge branch 'master' of https://github.com/roma0104/TiddlyWiki5 into roma0104-master
...
Conflicts:
editions/tw5.com/tiddlers/community/resources/Briefcase mGSD.tid
licenses/cla-individual.md
2014-12-30 18:22:07 +00:00
Arlen22
b83d311951
Sign the CLA
2014-12-30 09:28:27 -05:00
Jermolene
21df296c2f
Docs: Clarify widgets generated by wikitext transclusion
2014-12-30 09:09:40 +00:00
Bram Chen
43c40d93d8
Merge remote-tracking branch 'upstream/master'
2014-12-29 17:40:58 +08:00
Astrid Elocson
e6ede67282
Further improvements suggested by felixhayashi
2014-12-28 16:16:24 +00:00
Jermolene
cb8caf6a01
Fix accidental commit of Czech translation as Polish
...
I inadvertently committed the new Czech translation as Polish.
2014-12-28 15:51:19 +00:00
Astrid Elocson
597a5fb2f2
Update and make easier to understand
2014-12-28 10:07:30 +00:00
Astrid Elocson
79a3beeaa6
Add concept of Tag Tiddlers
2014-12-28 09:55:36 +00:00
Astrid Elocson
4f1d6f71fc
Add concept of JSON Tiddlers
2014-12-28 09:54:44 +00:00
Astrid Elocson
9aafed511b
Add concept of Dictionary Tiddlers
2014-12-28 09:53:58 +00:00
Astrid Elocson
117d10275f
Improvements to wording
2014-12-28 09:51:53 +00:00
Astrid Elocson
e9c6610d74
Improvements to wording
2014-12-28 09:51:13 +00:00
Astrid Elocson
7290be9e47
Improvements to wording
2014-12-28 09:50:19 +00:00
Andrew J Harrison
bbcca4c784
Update cla-individual.md
...
Please correct my previous pull request. I guess my twitter name was already taken.
2014-12-27 12:49:32 -07:00
Jermolene
bae00fcbf6
Add Polish translation
2014-12-27 12:37:06 +00:00
Jermolene
5d947ed582
Add Spanish translation
2014-12-27 12:24:17 +00:00
Jermolene
fa9fc38be8
Fix "Hide Furniture" theme
...
To account for integrating “sticky titles” theme with “Vanilla”
2014-12-27 12:00:52 +00:00
Astrid Elocson
42050e1b03
Remove duplicate field line
2014-12-26 19:33:37 +00:00
Astrid Elocson
c5650708a7
Create Technical Prose Style.tid
2014-12-26 19:32:01 +00:00
Astrid Elocson
bcee212195
Create Typography.tid
2014-12-26 19:31:18 +00:00
Astrid Elocson
439154c0ea
Create Spelling.tid
2014-12-26 19:30:11 +00:00
Astrid Elocson
e415edb440
Create Tiddler Structure.tid
2014-12-26 19:29:41 +00:00
Astrid Elocson
1366ef3e1c
Create Tiddler Titles.tid
2014-12-26 19:29:03 +00:00
Astrid Elocson
dfd4c480d2
Create Reference Tiddlers.tid
2014-12-26 19:28:24 +00:00
Astrid Elocson
f952b8f1df
Create Instruction Tiddlers.tid
2014-12-26 19:27:38 +00:00
Astrid Elocson
421d75a207
Initial expansion of the Documentation Style Guide
2014-12-26 19:24:47 +00:00
Bram Chen
4f34f24111
Update chinese translations for tiddler toolbar button wording
2014-12-25 11:27:02 +08:00
Jeremy Ruston
7abe9aa53d
Merge pull request #1249 from felixhayashi/patch-1
...
make checkVersions consider build version
2014-12-24 12:43:30 +00:00
Jermolene
9f087e7667
Ensure creation fields set for data tiddlers
2014-12-24 10:29:00 +00:00
Jermolene
7481b6c49c
Adjust tiddler toolbar button wording
...
As discussed in #1247
2014-12-24 10:28:47 +00:00
Astrid Elocson
1905093411
Change TiddlerChain to TitleList
2014-12-23 21:57:18 +00:00
Astrid Elocson
5f3de6ec17
Change TiddlerChain to TitleList
2014-12-23 21:56:00 +00:00
Astrid Elocson
cc2688bf44
Update and rename TiddlerChain.tid to TitleList.tid
2014-12-23 21:55:04 +00:00
Astrid Elocson
25e447f69e
Rephrase route through tabs
...
Provisionally, rather than using any sort of arrow symbol. We need to standardise a notation for referring to hierarchical UI, but that will come with the documentation style guide.
2014-12-23 21:46:20 +00:00
Felix Küppers
70cbb5efc5
Update boot.js
...
if major, minor and patch are equal, the incoming wins.
2014-12-23 19:21:54 +01:00
Astrid Elocson
7ca37739aa
Simplify style of arrow in tab hierarchy
...
This is something that
2014-12-23 17:32:45 +00:00
Felix Küppers
d33b525067
Update boot.js
2014-12-23 18:13:59 +01:00
Astrid Elocson
304848f258
Add a TiddlerChain tiddler
...
For the common but unnamed concept of a "string [[of tiddler]] titles" like that.
2014-12-23 15:06:18 +00:00
Astrid Elocson
39c786b042
Link to the TiddlerChain tiddler
2014-12-23 15:05:17 +00:00
Astrid Elocson
8e47a20069
Improvements to wording
2014-12-23 14:59:16 +00:00
Felix Küppers
1d344dba69
prerelease matters
...
incoming 3.7.2 loses against existing 3.7.2
incoming 3.7.2-prerelease loses against existing 3.7.2
incoming 3.7.2-prerelease wins against existing 3.7.2-prerelease
2014-12-23 13:53:58 +01:00
Jeremy Ruston
e4d9a67756
Merge pull request #1281 from aelocson/patch-1
...
Correct references to the "download" button
2014-12-23 11:30:40 +00:00
Astrid Elocson
e450777b94
Correct reference to the download button
2014-12-23 10:44:18 +00:00
Astrid Elocson
626163df69
Correct reference to the download button
2014-12-23 10:43:54 +00:00
Astrid Elocson
ff11f4c43e
Correct reference to the download button
2014-12-23 10:41:50 +00:00
Jermolene
b9129d77e9
Experiment with "store" as the caption for the tiddler save button
...
This is an experiment, so translators may want to wait for any
discussion before performing a similar change.
2014-12-23 08:53:54 +00:00
Jeremy Ruston
e1138d94c9
Merge pull request #1279 from aelocson/patch-2
...
Give InfoPanel its own tiddler
2014-12-23 08:43:55 +00:00
Jeremy Ruston
a83bd4ec61
Merge pull request #1278 from aelocson/patch-1
...
Clarify AutoSave in docs for "save tiddler"
2014-12-23 08:42:55 +00:00
Jeremy Ruston
5a2d262c80
Merge pull request #1280 from evgeniy-gryaznov/master
...
Adding transliteration of russian file names.
2014-12-23 08:22:56 +00:00
Jermolene
e41285ae56
Make platform check work on node-webkit
2014-12-23 08:20:22 +00:00
Astrid Elocson
1b61ad13d2
Clearer wording
2014-12-23 07:33:38 +00:00
Evgeniy Gryaznov
25bcc13fa8
Transliterating russian filenames
2014-12-23 11:48:43 +06:00
Evgeniy Gryaznov
b4e4ca714b
Contributor added
2014-12-23 11:41:02 +06:00
Astrid Elocson
efda54465e
Create InfoPanel tiddler
2014-12-23 00:31:54 +00:00
Astrid Elocson
cbc20a40de
Give InfoPanel its own tiddler
2014-12-23 00:12:08 +00:00
Astrid Elocson
333100aa33
Clarify AutoSave in docs for "save tiddler"
2014-12-22 23:16:27 +00:00
Jeremy Ruston
e56e2a2450
Merge pull request #1277 from aelocson/patch-5
...
Improvements to wording
2014-12-22 21:03:41 +00:00
Jeremy Ruston
3cd18d7410
Merge pull request #1275 from aelocson/patch-4
...
Improvements to wording
2014-12-22 21:00:52 +00:00
Jeremy Ruston
edaa86aa0e
Merge pull request #1274 from aelocson/patch-3
...
Improvements to wording
2014-12-22 21:00:13 +00:00
Jeremy Ruston
0efb8e9a09
Merge pull request #1273 from aelocson/patch-2
...
Present the best approach to navigating first
2014-12-22 19:13:31 +00:00
Jeremy Ruston
2c8e2df599
Merge pull request #1262 from Jc-L/patch-1
...
Update ExternalImages.tid
2014-12-22 18:36:20 +00:00
Jeremy Ruston
e569a71f03
Merge pull request #1272 from Jc-L/patch-2
...
Update cla-individual.md
2014-12-22 18:33:15 +00:00
Jeremy Ruston
16ffef01ff
Merge pull request #1271 from aelocson/patch-1
...
Fix links to tw.com from tw.com/dev
2014-12-22 18:32:16 +00:00
Astrid Elocson
db37f6030f
link to InfoPanel
2014-12-22 17:58:05 +00:00
Astrid Elocson
7f0fb08203
remove brackets, add link to InfoPanel
2014-12-22 17:43:15 +00:00
Astrid Elocson
f715286035
correct missing space
2014-12-22 17:37:17 +00:00
Astrid Elocson
c6fbaadfeb
Improvements to wording
2014-12-22 17:26:27 +00:00
Astrid Elocson
6fe1024fe8
Improvements to wording
2014-12-22 17:09:48 +00:00
Astrid Elocson
2871c5fcb2
Improvements to wording
2014-12-22 17:07:42 +00:00
Astrid Elocson
0f0ecd3d9e
Improvements to wording
2014-12-22 17:05:08 +00:00
Astrid Elocson
09cd827a51
Improvements to wording
2014-12-22 16:03:52 +00:00
Astrid Elocson
3c5dc7061a
Improvements to wording
2014-12-22 15:31:21 +00:00
Astrid Elocson
fb86f3ec5a
Present the best approach to navigating first
...
The best technique should be the first one listed. Not everyone will read to the end.
2014-12-22 15:07:49 +00:00
Jc-L
1ceb15db77
Update cla-individual.md
2014-12-22 15:33:21 +01:00
Astrid Elocson
a9829d50e0
Fix links to tw.com from tw.com/dev
2014-12-22 13:47:27 +00:00
Astrid Elocson
059c32aa24
Fix links to tw.com from tw.com/dev
2014-12-22 13:45:57 +00:00
Astrid Elocson
7fc102eea7
Fix links to tw.com from tw.com/dev
2014-12-22 13:45:04 +00:00
Astrid Elocson
4d2e4fc0bb
Fix links to tw.com from tw.com/dev
2014-12-22 13:43:46 +00:00
Astrid Elocson
93c9d8f0bf
Correct two links
2014-12-22 13:42:25 +00:00
Astrid Elocson
689a334d36
Fix links to tw.com from tw.com/dev
2014-12-22 13:41:40 +00:00
Astrid Elocson
e3a711e2de
Fix links to tw.com from tw.com/dev
2014-12-22 13:41:00 +00:00
Astrid Elocson
07e9d91aed
Fix links to tw.com from tw.com/dev
2014-12-22 13:40:19 +00:00
Astrid Elocson
49b1f77e5c
Fix links to tw.com from tw.com/dev
2014-12-22 13:39:36 +00:00
Astrid Elocson
0f334d2321
Fix links to tw.com from tw.com/dev
2014-12-22 13:38:25 +00:00
Astrid Elocson
a465f19ca0
Fix links to tw.com from tw.com/dev
2014-12-22 13:32:46 +00:00
Jeremy Ruston
3c6481e3d7
Merge pull request #1270 from aelocson/patch-1
...
Fix typos
2014-12-22 10:57:56 +00:00
Astrid Elocson
3ca2a113e3
add missing word
2014-12-22 10:18:00 +00:00
Astrid Elocson
9c0611582f
fix typo
2014-12-22 10:17:08 +00:00
Astrid Elocson
c66d9339ab
spelling mistake
2014-12-22 10:16:13 +00:00
Astrid Elocson
8d8a7c9e03
-ize > -ise (conform to Doc Style Guide)
2014-12-22 10:14:47 +00:00
Astrid Elocson
94a8e3802e
-ize > -ise (conform to Doc Style Guide)
2014-12-22 10:13:21 +00:00
Jeremy Ruston
412557f9a8
Merge pull request #1253 from xcazin/fr-FR
...
fr-FR translation of GettingStarted
2014-12-22 09:43:51 +00:00
Jeremy Ruston
0513812863
Merge pull request #1261 from aelocson/patch-2
...
Standardise punctuation in workingwithtw/
2014-12-22 09:20:50 +00:00
Jeremy Ruston
3b9677c052
Merge pull request #1263 from aelocson/patch-1
...
Fix punctuation
2014-12-22 09:18:55 +00:00
Jeremy Ruston
676a7b6805
Merge pull request #1264 from aelocson/patch-3
...
Normalise names of tabs, etc to bold
2014-12-22 09:18:41 +00:00
Jeremy Ruston
4242c471a4
Merge pull request #1265 from aelocson/patch-4
...
Finish sentence with missing examples
2014-12-22 09:17:36 +00:00
Jeremy Ruston
c142350f86
Merge pull request #1250 from Drakor/signCLA
...
CLA signature
2014-12-22 08:46:39 +00:00
Jermolene
1adfe20508
Fix problem with repeatedly cancelling a draft
...
Fixes #1266
2014-12-22 08:40:11 +00:00
Andreas Hahn
1a8376eeaf
signed CLA
2014-12-21 23:15:15 +01:00
Felix Küppers
9fad60beb3
another suggestion
...
in case of equal versions, use the incoming and replace the existing.
2014-12-21 20:55:44 +01:00
Astrid Elocson
5706d8afe1
Finish sentence with missing examples
2014-12-21 18:55:43 +00:00
Astrid Elocson
5f9f0764bd
Normalise names of tabs, etc to bold
2014-12-21 18:52:57 +00:00
Astrid Elocson
176a372314
Fix punctuation
2014-12-21 18:49:24 +00:00
Jc-L
313f731f77
Update ExternalImages.tid
...
Minor typo correction
2014-12-21 19:32:42 +01:00
Jermolene
8cb7090c40
Experimentally add icons to AdvancedSearch, ControlPanel and TagManager
2014-12-21 17:22:47 +00:00
Astrid Elocson
8e9c698721
Typos in workingwithtw/
2014-12-21 16:51:03 +00:00
Astrid Elocson
4e1539e1f3
Typos in workingwithtw/
2014-12-21 16:45:15 +00:00
Astrid Elocson
941bab2893
Typos in workingwithtw/
2014-12-21 16:44:16 +00:00
Astrid Elocson
44beefb317
Typos in workingwithtw/
2014-12-21 16:42:06 +00:00
Astrid Elocson
21719fcfbe
Typos in workingwithtw/
2014-12-21 16:38:36 +00:00
Astrid Elocson
d16dfdb12f
Typos in workingwithtw/
2014-12-21 16:35:43 +00:00
Astrid Elocson
aed34ebaba
Typos in workingwithtw/
2014-12-21 16:33:36 +00:00
Astrid Elocson
85b6147a2a
Typos in workingwithtw/
...
This includes placing commas and full stops outside the quotes, and replacing single quotes with the double quotes that seem to be the standard on tw.com.
2014-12-21 16:24:42 +00:00
Jermolene
d7cd94dbd6
Fix state tiddler used for examples
...
Putting it in the `$:/state/` namespace ensures that it doesn’t dirty
the wiki
Fixes #1247
2014-12-21 16:21:19 +00:00
Jeremy Ruston
a473c85a48
Merge pull request #1260 from aelocson/patch-1
...
Update cla-individual.md
2014-12-21 16:17:20 +00:00
Jermolene
230066eeae
Incorporate stickytitles theme into snow white theme
2014-12-21 16:04:42 +00:00
Astrid Elocson
56838637ac
Update cla-individual.md
2014-12-21 15:48:56 +00:00
Jeremy Ruston
90ebffed3b
Merge pull request #1259 from xcazin/fred
...
Updates to the fr-FR edition after recent changes to HelloThere
2014-12-21 15:20:47 +00:00
Xavier Cazin
4482373122
Update to the fr-FR translation of HelloThere plus two tiddlers tagged with it
2014-12-21 14:55:13 +01:00
Xavier Cazin
cb42ccf409
Overrides the list-links macro with its fr-FR counterpart
...
(instead of the core shadow tiddler itself)
2014-12-21 13:49:37 +01:00
Jermolene
bef7e0e93c
More pesky folder name problems
2014-12-21 12:12:23 +00:00
Jeremy Ruston
f64ed6e48c
Merge pull request #1255 from gernert/patch-5
...
Update Customise TiddlyWiki.tid
2014-12-21 12:01:01 +00:00
Jeremy Ruston
63ad0793cf
Merge pull request #1256 from gernert/patch-7
...
Update TiddlyWiki Configurations.tid
2014-12-21 12:00:47 +00:00
Jermolene
8f50706e95
Generate link list in HelloThere
...
Fixes #1257
2014-12-21 12:00:14 +00:00
Jermolene
cd3f741bb6
Correct folder name to lower case
2014-12-21 11:54:46 +00:00
Jeremy Ruston
ee17bf765c
Merge pull request #1258 from xcazin/fred
...
Updates and new additions to the fr-FR edition
2014-12-21 11:52:15 +00:00
Xavier Cazin
c87235cd40
Start a glossary for fr-FR translators per Alberto Molina's suggestion
2014-12-21 12:39:39 +01:00
gernert
bd59cd760d
Update TiddlyWiki Configurations.tid
...
Not all tiddlers in TabbedTOC contain the complete information.
See discussion in the group https://groups.google.com/d/msg/tiddlywiki/GiOcL5vVJj4/qzVueMtzvqsJ
2014-12-21 12:34:53 +01:00
gernert
1915bd3a2f
Update Customise TiddlyWiki.tid
...
Not all tiddlers in TabbedTOC contain the complete information.
See discussion in the group https://groups.google.com/d/msg/tiddlywiki/GiOcL5vVJj4/qzVueMtzvqsJ
2014-12-21 12:33:21 +01:00
Xavier Cazin
1c0f0591fe
Updates and fresh translations from tw5.com for the fr-FR edition
2014-12-21 12:32:37 +01:00
Xavier Cazin
031ada4c69
fr-FR translation of GettingStarted
2014-12-20 18:45:41 +01:00
Jermolene
07d0679476
Preparation for 5.1.8
2014-12-20 08:10:45 +00:00
Jermolene
b1c2647452
Version number update for 5.1.7
2014-12-19 22:11:31 +00:00
Jermolene
a52b4953bc
Preparing for 5.1.7
2014-12-19 22:10:51 +00:00
Jermolene
001f9da512
Release note for 5.1.7
2014-12-19 22:09:56 +00:00
Felix Küppers
5f50f9b29d
removed newline
2014-12-19 19:35:55 +01:00
Felix Küppers
e00534635e
Update boot.js
2014-12-19 19:24:13 +01:00
Jermolene
a31aa25d0c
Fix language for GettingStarted prompts
2014-12-19 17:02:40 +00:00
Jermolene
39c678a50c
Preparing for 5.1.7-prerelease
2014-12-19 16:07:31 +00:00
Jermolene
14613502c2
Version number update for 5.1.6
2014-12-19 15:56:19 +00:00
Jermolene
1235ff8aad
Adjust date of HelloThere
2014-12-19 15:54:58 +00:00
Jermolene
5d8dc1dcd9
Update docs for 5.1.6
...
Also preparing for 5.1.7-prerelease
2014-12-19 15:51:56 +00:00
Jermolene
c9d0f1d221
More release note updates
2014-12-19 15:48:29 +00:00
Jermolene
8e74a3028e
Update release note for 5.1.6
2014-12-19 15:33:49 +00:00
Jermolene
6605e1a37c
Release note update
2014-12-19 15:20:12 +00:00
Jermolene
af906e4b73
Force filenames for downloading empty and full wikis
2014-12-19 15:20:07 +00:00
Jeremy Ruston
c5bb95dbfb
Merge pull request #1243 from Spangenhelm/patch-1
...
Proposing to change to a more appropriate tag / category
2014-12-19 14:48:44 +00:00
Jermolene
5fa8a1e08a
Docs tweaks
2014-12-19 14:48:12 +00:00
Jeremy Ruston
c8e2c2ceb9
Merge pull request #1240 from tobibeer/patch-3
...
Update Using Stylesheets.tid
2014-12-19 14:40:31 +00:00
Jeremy Ruston
625ebd4d41
Merge pull request #1244 from Spangenhelm/patch-2
...
Little typo corrections
2014-12-19 14:38:42 +00:00
Jermolene
5e8420a3ac
Simplify GettingStarted
...
GettingStarted doesn’t seem like the right place for a tutorial on
using TiddlyWiki. The idea now is to link back to tiddlywiki.com
instead.
2014-12-19 14:36:44 +00:00
Jermolene
2abc5dee78
Improve buffer allocation for copying files in utils/filesystem.js
2014-12-18 21:08:14 +00:00
Jermolene
d2c4920ba4
Refine node vs. browser behaviour
...
Now we’re using TiddlyWiki as the core of TiddlyDesktop we need more
granular control of the platform specific code.
2014-12-18 19:52:15 +00:00
Florent V.
93660bdea8
Little typo corrections
2014-12-17 14:57:37 +01:00
Florent V.
abebff78ba
Proposing to change to a more appropriate tag / category
...
From "Feature" To "Customise TiddlyWiki"
2014-12-17 14:50:30 +01:00
Jermolene
b1c5d7694e
Updated Dutch translation
...
Thanks @gernert
I’ve not updated GettingStarted because I plan to do one final
redrafting before 5.1.6.
I’ll put up a prerelease for you to play with in a couple of hours when
I get to better wifi!
2014-12-17 09:48:44 +00:00
Jeremy Ruston
b29973312d
Merge pull request #1228 from tobibeer/button.tc-tiddlylink
...
allows to style buttons as though internal links
2014-12-16 14:50:46 +00:00
Tobias Beer
2317840ce6
updated documentation for link-button
2014-12-16 15:36:20 +01:00
Jeremy Ruston
182c2428ca
Merge pull request #1238 from Drakor/fixDownloadSavingHandler
...
Filename will now be set to "tiddlywiki.html" when path does not contain...
2014-12-16 14:03:17 +00:00
Jermolene
86329f5daa
Remove unused local variables
2014-12-16 08:35:28 +00:00
Tobias Beer
bc447410fe
Update Using Stylesheets.tid
...
added documentation for html in StyleSheets
https://groups.google.com/d/msg/tiddlywiki/Qx0y7btud5M/Ch6hMnh0ud0J
simplified the specificity section, some rewording
2014-12-16 08:33:21 +01:00
Andreas Hahn
513e1c8cbb
Filename will now be set to "tiddlywiki.html" when path does not contain a filename.
2014-12-16 00:53:20 +01:00
Jeremy Ruston
97422ee1b9
Merge pull request #1236 from anavarre/master
...
Add Aurelien Navarre to cla-individual.md
2014-12-15 23:29:16 +00:00
Jeremy Ruston
dd0f3a4e5a
Merge pull request #1233 from xcazin/fred2
...
fr-FR translation of three introductory tiddlers on Filters
2014-12-15 22:58:49 +00:00
Jeremy Ruston
0ef136c809
Merge pull request #1230 from pekopeko1/japanese5.1.6
...
add Japanese Translations
2014-12-15 22:20:11 +00:00
Jermolene
9753583fec
Add heeg.ru to resources
2014-12-15 20:55:43 +00:00
Aurelien Navarre
f9ec85d153
Update cla-individual.md
2014-12-15 20:48:32 +01:00
Jermolene
0778ea6756
Some tests and style updates for #1229
...
@tobibeer I simplified the handling of matched strings a little.
2014-12-15 17:50:24 +00:00
Jeremy Ruston
d031a93c6d
Merge pull request #1229 from tobibeer/fix-1010
...
fixes #1010 sequential date formatstrings
2014-12-15 17:26:31 +00:00
Tobias Beer
05a794d5b8
documentation for making buttons look like links
...
added instructions to button widget documentation
2014-12-15 17:55:56 +01:00
pekopeko1
3685d90c6c
add Japanese Translations
2014-12-14 02:39:13 +09:00
Xavier Cazin
047b786a22
fr-FR translation for three introductory tiddlers on Filters.
2014-12-13 14:04:10 +01:00
Tobias Beer
609cb1fcbd
fixes #1010
...
safe / sequential replacing of formatstrings for date conversions
please review & test
2014-12-13 13:30:39 +01:00
Jeremy Ruston
c90a756c80
Merge pull request #1224 from xcazin/fred
...
Various updates to the fr-FR edition
2014-12-13 10:16:02 +00:00
Xavier Cazin
c15f978ac1
Remove dependency on core timeline macro by overriding timeline-title() instead
...
In application of #1221
2014-12-12 14:50:27 +01:00
Xavier Cazin
d07c45dbca
Merge remote-tracking branch 'upstream/master' into fred
2014-12-12 14:36:04 +01:00
Jermolene
4137ee6852
Updated translations for Danish
...
Thanks to Birthe C
2014-12-12 12:04:27 +00:00
Jeremy Ruston
a3a0002bbc
Merge pull request #1221 from xcazin/timeline
...
Move the title display into a macro so that it can be globally overridden
2014-12-12 11:40:51 +00:00
Xavier Cazin
4afca0e2b8
Move the title display into a macro so that it can be overridden
...
Extension of the idea of 5b38c21a41
2014-12-12 12:33:11 +01:00
Xavier Cazin
f5a52ff99c
Translation in French of the documentation tiddler Tagging
2014-12-12 11:39:38 +01:00
Xavier Cazin
a8c4b524b6
Add one-character macro names for every punctuation shortcuts
...
Per @evolena neat suggestion: <<:>> is shorter and looks better than <<dp>>
2014-12-12 11:27:38 +01:00
Jermolene
8765d4e31b
Get rid of GettingStarted tabs in empty
...
I feel that we should keep empty.html’s GettingStarted very simple, and
link to other places for tutorial material
2014-12-12 10:18:49 +00:00
Xavier Cazin
bf37522808
Remove dependency on overriding the core toc macro
...
Thanks to 5b38c21a41
and a subsequent suggestion from @BramChen
2014-12-12 10:12:34 +01:00
Xavier Cazin
6a8c0a25b5
Merge remote-tracking branch 'upstream/master' into fred
2014-12-12 09:19:24 +01:00
Jermolene
42dba113cc
Adjust field and has filter handling of missing tiddlers
...
Now `[!field:name[value]]` and `[!has[name]` will treat missing
tiddlers as not having the specified field
2014-12-11 17:49:17 +00:00
Xavier Cazin
2579553375
Translation of the TabsMacro and related samples for the fr-FR edition.
...
While we are at it, propose an addendum
at the end of the TabsMacro documentation
2014-12-11 18:15:44 +01:00
Jermolene
156d3bc692
Typo
2014-12-11 17:01:02 +00:00
Jermolene
5b38c21a41
Disable links when transcluding caption field in toc macro
...
@BramChen does this work for you?
2014-12-11 17:00:57 +00:00
Tobias Beer
2e50ddc213
allows to style buttons as though internal links
...
by assigning class="tc-btn-invisible tc-tiddlylink"
2014-12-11 17:34:43 +01:00
Jermolene
51db48acc9
Fix checking for non-empty folders in initcommand
2014-12-10 22:14:27 +00:00
Jermolene
2698f08851
Tentative reworking of GettingStarted
...
See this thread for background:
https://groups.google.com/d/topic/tiddlywiki/sDWP4NPe8XE/discussion
Translators: please don’t translate this material until it’s settled
down
2014-12-10 21:46:29 +00:00
Jeremy Ruston
c82fbbb6e5
Merge pull request #1191 from xcazin/fred2
...
Base view/transclusion of translated titles on the presence of an "fr-title" field
2014-12-10 17:11:37 +00:00
Jermolene
755693766a
Removing debugging statements from popup mechanism
2014-12-10 17:09:14 +00:00
Jermolene
376b447570
Documentation tweaks
...
@erwanm I ended up making some fairly extensive tweaks.
One issue is that the (excellent) material you’ve provided on
transclusion with templates covers very much the same ground as the
existing TemplateTiddlers tiddler. The existing text was focused on
transclusion with widgets; I think your material using transclusion
notation is much easier to understand.
I’ve also removed the exercises section. We don’t have exercises
elsewhere in the documentation, so I think we need to make a conscious
decision about whether we’re going to try to add them, and then do so
consistently across the material.
I also made some changes to bring the text into house style for
consistency (which I’ve also tried to start documenting).
2014-12-10 17:08:59 +00:00
Jermolene
ef9878802a
Transclude the caption field in toc macro
...
For consistency with the way that tabs work.
To see this in action, on tiddlywiki.com open the tiddler
`$:/tags/ControlPanel` and edit it to add the tag “TableOfContents”.
You’ll see the control panel appear at the bottom of the table of
contents.
2014-12-10 15:42:38 +00:00
Jermolene
31b5eb1578
Allow shadow tiddlers to appear in table of contents macro
2014-12-10 15:41:11 +00:00
Jermolene
a0c13a0856
Respect "storytop" metric when in narrow layout
...
Previously we were only respecting it when in the wide layout
2014-12-10 15:29:03 +00:00
Jermolene
77277b429e
Fix typo
2014-12-10 15:27:17 +00:00
Jermolene
23fdc94417
Fix problem with import button tooltip
2014-12-09 15:35:16 +00:00
Jeremy Ruston
4c66eee1ec
Merge pull request #1212 from erwanm/patch-4
...
doc: explanations about transclusion for beginners (directory concepts ok?)
2014-12-09 15:22:26 +00:00
Jermolene
37718cceff
Tabs macro docs tweaks
2014-12-09 15:08:10 +00:00
Erwan Moreau
63c441d3e8
Create TransclusionAsTemplateUsage.tid
2014-12-09 14:45:40 +00:00
Erwan Moreau
46e6fb1957
Create TransclusionBasicUsage.tid
2014-12-09 14:44:28 +00:00
Erwan Moreau
900738e796
Create TransclusionPrinciple.tid
2014-12-09 14:42:41 +00:00
Jermolene
fa43f45e18
FIx typo
...
Thanks again @BramChen!
2014-12-08 13:09:31 +00:00
Jermolene
f1001fc236
Clean up static sites docs
...
Thanks @BramChen
2014-12-08 12:11:32 +00:00
Jeremy Ruston
71535c6691
Merge pull request #1207 from dullroar/master
...
Altered command order for generating static sites in TW5.com how-to
2014-12-07 22:14:43 +00:00
Jim Lehmer
78f97cb516
Signed CLA.
2014-12-07 16:05:17 -06:00
Jim Lehmer
4aa8fc6d1d
Altered command order for generating static sites in how-to because rendertiddlers wipes out the output directory so it needs to come first, not last.
2014-12-07 15:08:51 -06:00
Jermolene
957a8608ad
Sort language switcher by description
...
Thanks @BramChen
2014-12-06 15:55:28 +00:00
Jermolene
ab129a620e
Add basic tag macro
2014-12-06 13:44:08 +00:00
Jermolene
7034c429f6
Fix commit link to autofocusing title field
2014-12-06 08:28:14 +00:00
Jermolene
bf974e37a2
Typos
2014-12-05 10:20:32 +00:00
Jermolene
0e62d8f648
Fix problem with tm-add-field for existing fields
...
Fixes #1197
2014-12-05 10:20:25 +00:00
Jermolene
9c77f1bac6
Add recent translations to translators edition
2014-12-04 19:11:18 +00:00
Jermolene
edce18c10d
Added nl-NL translation from @gernert
...
Thank you @gernert
I’ve pushed a new prerelease, let me know if anything looks wrong.
2014-12-04 16:54:13 +00:00
Jermolene
51f8e58d5f
Sort languages by description instead of title
2014-12-04 16:51:13 +00:00
Jermolene
bbceddf10b
Typo in Greek translation
2014-12-04 16:50:49 +00:00
Jermolene
2689e2861b
Revert to using fieldmangler for adding fields
...
In 5.1.5 we switched to using `<$action-setfield>` instead of
`<$fieldmangler>`. The problem was that in the process we lost the
validation of field names, making it possible to create fields with
illegal names
Fixes #1186
2014-12-04 09:39:14 +00:00
Jermolene
bb74be7ac1
Fix problem with static "all tiddlers" export
2014-12-04 07:58:30 +00:00
Jermolene
dfa5b6c8dc
Remove unused Cecily plugin
...
It’s incomplete and confusing to casual users.
Fixes #1164
2014-12-03 20:07:26 +00:00
Xavier Cazin
5b68405500
Get rid of all creator and modifier fields in the fr-FR edition
2014-12-03 19:12:57 +01:00
Xavier Cazin
41dcf7a9f5
Testing a third level of title search by adding an en-title field as suggested by @tobibeer
2014-12-03 19:08:25 +01:00
Jeremy Ruston
ef00786d61
Merge pull request #1156 from nameanyone/master
...
External links need a protocol as well?
2014-12-03 17:51:05 +00:00
Jermolene
cbc8a6b785
Tweak SelectWidget docs
2014-12-03 17:29:32 +00:00
Jeremy Ruston
a682a229e3
Merge pull request #1165 from erwanm/patch-1
...
missing verb
2014-12-03 17:28:32 +00:00
Jermolene
1e3a41311d
Use OS-independent path delimiter
...
Fixes #1187
2014-12-03 17:24:59 +00:00
Jermolene
870006d2b9
Remove extraneous space after "more tiddler actions" button
...
Fixes #1172
2014-12-03 16:48:14 +00:00
Xavier Cazin
4bdc92843c
Fix a few tiddlers to make them follow the new policy being tested in fr-FR edition
2014-12-03 16:49:13 +01:00
Xavier Cazin
e94656e028
In shadow core tiddlers overridden for fr-FR edition, better "<$view>" fr-title than "<$transclude>" it
2014-12-03 16:44:23 +01:00
Xavier Cazin
d4cc001ad5
Applies Languages-in-ToC changes (defined in 3ba0186523) to relevant tiddlers in fr-FR edition
2014-12-03 16:39:26 +01:00
Xavier Cazin
751ea7b759
Add an fr-title field in tiddlers that were already translated in the fr-FR edition
2014-12-03 10:58:12 +01:00
Xavier Cazin
f604bebaee
A few more translations plus new tiddlers for the fr-FR edition
2014-12-03 10:58:12 +01:00
Xavier Cazin
156256afc7
Changes to overridden shadow tiddlers to display fr-title when present instead of title
2014-12-03 10:58:11 +01:00
Jermolene
d4abd1722c
Fixes for tabbed TOC
...
Re-fixes #1185
2014-12-02 23:47:23 +00:00
Jermolene
1e7d9bd3cd
Move tabbed toc heading into default template
...
Fixes #1185
2014-12-02 23:05:54 +00:00
Jermolene
b220c19fb7
Add a template to the tabbed TOC macro
...
Fixes #1177
2014-12-02 20:27:02 +00:00
Jermolene
64a905b9f8
Drop "Edition" from language tiddler captions
...
Makes the TOC look neater
2014-12-02 20:21:51 +00:00
Jermolene
3ba0186523
Add "Languages" to tw5.com TOC
2014-12-02 20:18:30 +00:00
Jermolene
e628da4804
Change new journal docs examples
...
Fixes #1157
2014-12-02 19:42:46 +00:00
Jermolene
5154a25ab9
Add tooltip to browse widget
...
Fixes #1179
2014-12-02 19:16:38 +00:00
Jermolene
85217112ad
Fix link
2014-12-02 19:16:13 +00:00
Jermolene
e11c9e83b9
Coding style cleanup
2014-12-02 15:32:52 +00:00
Jeremy Ruston
136c00237e
Merge pull request #1145 from tobibeer/allow-to-break-each
...
allows to break out of $tw.utils.each
2014-12-02 15:32:17 +00:00
Jeremy Ruston
1f545f06ad
Merge pull request #1181 from tobibeer/patch-1
...
list core descriptions for ModuleType
2014-12-02 15:30:49 +00:00
Jermolene
1d848e2f51
Add parameter docs for tabbed toc macro
2014-12-02 15:29:17 +00:00
Jermolene
d8365cfc9e
Use a serif font for /dev edition
...
For variety
2014-12-02 15:25:37 +00:00
Jermolene
a8ee6c7b7c
Add experimental system tiddler browser
2014-12-02 15:25:27 +00:00
Tobias Beer
a94da683f0
list core descriptions for ModuleType
...
changed dead links with descriptions ...these are still missing:
* $:/language/Docs/ModuleTypes/allfilteroperator
* $:/language/Docs/ModuleTypes/info
* $:/language/Docs/ModuleTypes/library
2014-12-02 13:10:25 +01:00
Tobias Beer
4d68111c49
added object as third parameter to callback
2014-12-02 12:47:19 +01:00
Erwan Moreau
da541b656c
missing verb
...
also added the begining of the sentence to make it clearer, but maybe not necessary.
2014-11-29 18:59:31 +00:00
nameanyone
e32695e2c3
External links need a protocol as well?
...
They don't work for me without 'http://'. Firefox 33.1.1.
2014-11-28 16:43:24 -08:00
Jermolene
5d75dc7991
Palette tweaks for /dev
2014-11-28 10:06:24 +00:00
Jermolene
12896ef1c4
Add highlight plugin to /dev wiki
2014-11-28 10:06:17 +00:00
Jermolene
521e7f9b62
Adjust default dropdown width
...
To avoid text of exporter descriptions overflowing on Firefox.
We need a better solution. On Chrome, nested popups resize to fit their
content, without being constrained by the parent width.
2014-11-27 23:03:28 +00:00
Jermolene
38ca847ec9
Add Dutch TiddlyWiki blog post
2014-11-27 23:03:27 +00:00
Jermolene
56a0809768
Fix problem with edit-bitmap widget static rendering
...
The ‘introduction’ edition contains an edit-bitmap widget that was
failing under Node.js because the fake dom doesn’t support canvas.
2014-11-27 23:03:27 +00:00
Jermolene
249e532e07
Preparing for 5.1.6
2014-11-27 23:03:27 +00:00
Jeremy Ruston
271d70ff92
Merge pull request #1151 from malgam/patch-1
...
Fix typo "importer" should be "exporter"
2014-11-27 23:00:31 +00:00
malgam
7657a6960b
Fix type "importer" should be "exporter"
2014-11-28 08:41:14 +10:00
Tobias Beer
0f157cff90
code style revision
...
thanks, Jeremy... will watch out for that
2014-11-26 18:50:12 +01:00
Tobias Beer
1e47a62c2a
allows to break out of $tw.utils.each
...
Will improve performance with `$tw.utils.each` callbacks breaking out of
the iteration via `return false;`.
2014-11-26 17:51:27 +01:00
Jermolene
4c825101c2
Adjust 5.1.5 release date
2014-11-26 16:18:53 +00:00
Jermolene
377530a3dc
Version number update for 5.1.5
2014-11-26 16:09:27 +00:00
Jermolene
002fbf6ca1
Update readme
2014-11-26 16:08:55 +00:00
Jermolene
37ac580ac2
Docs tweaks
2014-11-26 16:08:01 +00:00
Jermolene
52087b4e20
Docs tweaks
2014-11-26 16:01:15 +00:00
Jermolene
ace16ace24
Let people know about the translators edition
2014-11-26 15:57:25 +00:00
Jermolene
6f6a2e8c59
Add introduction video
2014-11-26 15:46:06 +00:00
Jermolene
4374d2f5c4
Adjust 1px error on sidebar tab positioning
2014-11-26 15:39:10 +00:00
Jermolene
357c9ef8fe
Release note updates
2014-11-26 15:38:59 +00:00
Jermolene
7d46afc7b2
Move docs for 5.1.5 release
2014-11-26 11:22:20 +00:00
Jermolene
a5c7089bcf
Add 2px rounded corners to tiddlers and tabs
...
An experiment; comments welcome.
2014-11-26 11:22:04 +00:00
Jermolene
962cdf500a
Fix link dragging to text editors
...
We were just adding double square brackets if the title contains
spaces. We should be adding them if the title is not a valid wikilink.
2014-11-26 11:13:05 +00:00
Jermolene
1600beb193
Move the wikilink regexps into global config
2014-11-26 11:12:25 +00:00
Jermolene
b6f7d471bd
Fix typo
...
Thanks @giffmex
2014-11-26 09:39:06 +00:00
Jermolene
cb9506a166
Fix problem with content-type popup
...
Thanks @tobibeer
2014-11-25 22:03:34 +00:00
Jermolene
37ee16f97d
ImportTiddlers docs tweaks
...
Fixes #1143
2014-11-25 19:55:08 +00:00
Jermolene
c8fa52cce4
Dev docs tweaks
2014-11-25 19:33:12 +00:00
Jeremy Ruston
92b957f6f8
Merge pull request #1118 from welford/hook
...
Add hooks mechanism and th-opening-default-tiddlers-list hook
2014-11-25 19:25:00 +00:00
Jermolene
241e021654
House style tweaks for codemirror docs
2014-11-25 15:40:28 +00:00
Jermolene
2ed46ca02f
Docs tweaks
2014-11-25 15:31:09 +00:00
Jeremy Ruston
117bdbcda7
Merge pull request #1088 from Braincoke/patch-1
...
Update CodeMirror Documentation
2014-11-25 15:30:29 +00:00
Jeremy Ruston
53d7e5351b
Merge pull request #1139 from Braincoke/patch-2
...
Update cla-individual.md
2014-11-25 15:30:08 +00:00
Jeremy Ruston
9a1fb7da26
Merge pull request #1133 from tobibeer/no-static-links-for-system-tiddlers
...
#1129 — hide static and github links for any system tiddlers prefixed "$:/" on tw.com
2014-11-25 13:54:09 +00:00
Jermolene
996eecc79a
Coding style cleanup
2014-11-25 13:49:22 +00:00
Jeremy Ruston
6f0d581d72
Merge pull request #1141 from tobibeer/auto-focus-title-on-edit
...
#371 focus title field on edit
2014-11-25 13:43:08 +00:00
Jermolene
b26e2955d4
Docs for new journal trick from Alberto Molina
2014-11-25 12:37:33 +00:00
Tobias Beer
3a621c18bd
changed system tiddler filter check
2014-11-25 12:57:25 +01:00
Tobias Beer
c0834583a0
#371 focus title field on edit
...
* enhanced edit-text widget with a "focus=true" attribute
* modified title template to make it focus and select by default
2014-11-25 12:39:08 +01:00
Jermolene
d52dd870dd
Browser compatibility docs
2014-11-25 09:04:54 +00:00
Tobias Beer
86629e3144
also hide shadows, no underlined url
2014-11-25 02:18:21 +01:00
Braincoke
d6b1cf2e93
Update cla-individual.md
2014-11-24 19:43:43 +00:00
Jermolene
77431e5e6f
Docs tweaks
2014-11-24 17:53:54 +00:00
Jeremy Ruston
95fed82024
Merge pull request #1092 from Marxsal/patch-4
...
Transcluding information re Sidebar Menus
2014-11-24 17:50:40 +00:00
Jermolene
6b15a01f9c
Added docs for custom export formats
2014-11-24 17:42:31 +00:00
Jeremy Ruston
4b381c8f76
Merge pull request #1134 from pmario/german-translation
...
fixing some more typos. Make button texts consistent
2014-11-24 17:07:55 +00:00
Jermolene
1015196817
Proper sentence case for tiddler title
2014-11-24 16:24:36 +00:00
Jermolene
719e4d901d
Fix problem with tag popup disappearing
...
Fixes #1137
2014-11-24 16:24:12 +00:00
Mario Pietsch
5914f2f200
fixing some more typos. Make button texts consistent
2014-11-24 14:22:03 +01:00
Tobias Beer
2ee7607e57
hide static links for any system tiddlers prefixed "$:/"
...
also added underlined format to make it at least stand out a little,
even if not a link
2014-11-24 13:05:16 +01:00
Jeremy Ruston
37ef5da20f
Merge pull request #1125 from tobibeer/fix-toolbar-button-spacing
...
fixed toolbar button spacing
2014-11-24 09:37:02 +00:00
Jeremy Ruston
6f0736e82a
Merge pull request #1131 from Skeeve/patch-7
...
allow empty state tiddlers and missing state attributes act as missing s...
2014-11-24 09:27:15 +00:00
Jermolene
62ad533aa6
Clarify tiddlerExists docs
2014-11-24 09:22:43 +00:00
Skeeve
79e428757b
allow empty state tiddlers and missing state attributes act as missing state tiddlers
...
As described here: https://groups.google.com/d/msg/tiddlywikidev/ODJhIw6-UjQ/3ZKrlA4B810J
I think it would be a good small enhancement as the reveal widget can now be used in previously impossible ways.
2014-11-24 07:38:58 +01:00
Tobias Beer
4def52df80
removed some more trailing blanks from PageControls
...
Note: I did NOT test the results as I have yet to figure out how to make
node.js...
* actually run the server without a 403
* build the core tw after me having made changes
2014-11-23 21:04:13 +01:00
Jermolene
61718d6023
Docs tweaks
2014-11-23 18:26:48 +00:00
Jeremy Ruston
242a753bbe
Merge pull request #1091 from Marxsal/patch-3
...
Doc: How to Add A Menu to the Sidebar
2014-11-23 18:19:54 +00:00
Jermolene
c4c51feee2
Clean up github contribution banner
...
Sorry @xcazin I think you may need to do some clearing up after this
2014-11-23 17:54:11 +00:00
Jeremy Ruston
8b61a71115
Merge pull request #1126 from xcazin/fred
...
Tweaks related to the fr-FR edition
2014-11-23 17:48:44 +00:00
Jeremy Ruston
8dc425e403
Merge pull request #1127 from tobibeer/fix-notification-z-index
...
put tc-notification above topbar
2014-11-23 17:18:04 +00:00
Jermolene
d1e452e930
Add @tobibeer's TB5 resource
2014-11-23 17:14:17 +00:00
Jermolene
d0cd91cfba
Docs tweaks
2014-11-23 17:14:04 +00:00
Tobias Beer
8790f29d0e
put notifications above topbar
2014-11-23 18:10:44 +01:00
Xavier Cazin
87c515f3ce
Pointer to the fr-FR edition
2014-11-23 17:57:12 +01:00
Xavier Cazin
c51eb93edb
Use the fr-FR translated Contribution banner in observance of 86329835c9
2014-11-23 17:48:30 +01:00
Tobias Beer
a84dc61303
fixed toolbar button spacing
...
* removed trailing whitespaces in button tids
* defined a global left margin for buttons set to 5px
* slightly less than in view-mode before
* slightly more than in edit-mode before
* but visually more appealing to me
* leaves a wee more room for the title to unfold
2014-11-23 17:32:29 +01:00
Jermolene
5708b76d6e
Tweak close button in advanced search
2014-11-23 16:07:58 +00:00
Jermolene
84bebb65b7
Fix advanced filter search clear button
...
Thanks @BramChen
2014-11-23 16:02:08 +00:00
Jeremy Ruston
8e52830320
Merge pull request #1101 from pmario/german-translation
...
German translation updates: new buttons, exporter texts
2014-11-23 15:48:41 +00:00
Jermolene
a614c0d543
Improve compatibility with JS modules
...
If a module ended with a single line comment `\\` then the appended
`;})();` was being ignored and eaten up as part of the comment.
2014-11-23 15:24:01 +00:00
Jermolene
4134392841
House style tweaks
...
@giffmex - I’m sorry I should document these things but you’ll see I’ve
made some changes to punctuation and whitespace to match other tw5.com
tiddlers.
I’ve just noticed that the final bullet point ended abruptly with
“Finally, you will want a tiddler”. I’ve removed that line for the
moment.
The section “Add or remove shadow tiddlers from the user interface” is
actually describing a technique that is not recommended. If you remove
a tag from a shadow tiddler then you’ll have made a copy of it, which
means that it won’t be upgraded in future. It’s still worth
documenting, but with some warnings.
I do wonder whether the three sections deserve to be separate tiddlers.
Certainly the instructions for adding a toolbar button should be
directly addressable so that we can link directly to them on
http://tiddlywiki.com .
2014-11-23 14:00:24 +00:00
Jeremy Ruston
76d94b4d09
Merge pull request #1111 from giffmex/patch-26
...
Create Page and tiddler layout customisation.tid
2014-11-23 13:47:33 +00:00
Jermolene
73d7bb69c5
Remove accented characters from filename
2014-11-23 13:44:09 +00:00
Jermolene
2643f24bb5
Remove accented characters from filename
...
@xcazin @Evolena I get problems with Git if we use non-ASCII characters
in filenames.
2014-11-23 13:39:43 +00:00
Jermolene
ac5c6d1d73
Docs tweak
2014-11-23 13:37:45 +00:00
Jeremy Ruston
151ca670bd
Merge pull request #1104 from xcazin/fred
...
Bootstrap of an fr-FR edition from @evolena and @xcazin
2014-11-23 13:37:26 +00:00
Jermolene
86329835c9
Add instructions for contribution ribbon
2014-11-23 10:06:09 +00:00
Jermolene
5329392dbe
Resources updates
2014-11-23 10:05:59 +00:00
James Welford Anderson
804a579d17
Remove alert from addHook.
...
Thanks to @tobibeer
2014-11-23 14:34:04 +09:00
James Welford Anderson
1126458f8c
add /dev docs
2014-11-23 05:06:18 +09:00
Jermolene
738393285f
Tweaked default tag background
2014-11-22 17:06:44 +00:00
James Welford Anderson
90caf5bf42
Add hooks mechanism and th-opening-default-tiddlers-list hook
...
see: https://github.com/Jermolene/TiddlyWiki5/issues/1064
2014-11-23 01:11:56 +09:00
Jeremy Ruston
933caab2e6
Merge pull request #1115 from inmysocks/patch-2
...
Update cla-individual.md
2014-11-22 15:36:02 +00:00
Jermolene
e6043b07b9
Update export button to use tiddler title as filename base
2014-11-22 14:19:10 +00:00
Jermolene
d6c5e51501
Fix popup handling in Cecily and Zoomin view
...
Cecily and Zoomin story views use a document.body that is smaller than
the document.documentElement. We were just clearing the popups on
clicks on the document.body Clicks on the document element (ie, on the
background of the page) were not being trapped, meaning that you
couldn’t dismiss a popup.
2014-11-22 10:19:03 +00:00
Jermolene
7d3d2ba3fe
Tweak tiddler icon position
2014-11-22 09:43:01 +00:00
Jermolene
8cae6677a7
Add Taskgraph plugin to community resources
2014-11-22 09:42:53 +00:00
Jermolene
f786872589
Tweak popup handling of tiddler info panel
2014-11-22 09:42:36 +00:00
inmysocks
31bcd139e6
Update cla-individual.md
2014-11-21 22:42:14 -07:00
Jermolene
1f82ebc7c3
Fix problem with parsing text references
2014-11-21 18:16:22 +00:00
Jermolene
b882a0dff1
Fixes to make nested popups work
...
Thus making the export button a lot more useful
2014-11-21 17:07:03 +00:00
Jermolene
27c9e7269e
Update "Tiddlers" docs
...
Suggested by @twMat
2014-11-21 17:06:12 +00:00
Jermolene
d31f61255e
A failing test for a bug with text reference parsing
...
I’ll fix this later.
Raised by @danielo515
2014-11-21 17:05:20 +00:00
giffmex
e553653729
Create Page and tiddler layout customisation.tid
2014-11-20 14:38:43 -06:00
Xavier Cazin
ac89c154b4
Corrections to overriden system tiddlers in fr-FR edition
...
plus new translated tiddlers
2014-11-20 07:57:04 +01:00
Xavier Cazin
c4420612e8
Various updates to doc tiddlers in fr-FR edition
2014-11-19 21:47:19 +01:00
Xavier Cazin
c1e715de93
Overriding of a few system tiddlers for fr-FR edition
2014-11-19 21:42:31 +01:00
Mario Pietsch
f3ee058839
new buttons, exporter texts
2014-11-19 13:28:07 +01:00
roma0104
438db4d868
Signed the CLA.
2014-11-18 18:11:59 -06:00
roma0104
5cee932833
Update GSD5/Briefcase site address and naming.
2014-11-18 18:02:51 -06:00
Jermolene
7011cecb95
Add Jed's game to the examples
2014-11-18 15:41:39 +00:00
Jermolene
931d47e50c
Fix problem with cloning tiddlers
...
We were ignoring the tags on the template tiddler.
Fixes #1097
2014-11-18 14:13:34 +00:00
Jermolene
002d47b4d9
Fix wrapping of tags in tag manager
...
Now long tags wrap onto multiple lines. I think they look quite good,
and we may want to consider using the same technique in the view
template.
2014-11-18 14:07:00 +00:00
Jermolene
302768e009
Update docs
2014-11-18 14:06:12 +00:00
Jermolene
838c3c4eb0
Fix problem with page controls
...
By transcluding the page controls we were changing the current tiddler
2014-11-18 14:06:03 +00:00
Jermolene
f1f318931d
Reinstate translation for "download full wiki"
...
It’s used in `$:/snippets/download-wiki-button`
2014-11-18 14:05:23 +00:00
Jermolene
0c49ac179b
Add direct links to resource tiddlers
2014-11-18 14:04:13 +00:00
Jermolene
93cb03eeab
Allow whitespace after \end in macro definitions
...
Fixes #1090
2014-11-18 10:26:20 +00:00
Xavier Cazin
73c8dc8c23
Merge remote-tracking branch 'upstream/master' into fred
2014-11-17 21:59:11 +01:00
Marxsal
270b76ce94
Transcluding information re Sidebar Menus
...
Transcluding information from newly proposed tiddler "How to Add A Menu to the Sidebar". This should help users discover ways in which to use the TOC macro.
2014-11-17 09:21:10 -08:00
Marxsal
4aa140b16c
Doc: How to Add A Menu to the Sidebar
...
This item is tagged so as to appear under Customise TiddlyWiki.
2014-11-17 09:11:36 -08:00
Jermolene
b2550f31c2
Fix whitespace in edit toolbar cancel button
...
The extra newline at the end of the tiddler was showing up as
whitespace in the toolbar.
2014-11-17 16:29:49 +00:00
Jermolene
81481588e0
Add advanced search links to control panel list counts
2014-11-17 16:26:39 +00:00
Jermolene
6c6fda498f
Fix bug in action-setfield widget
2014-11-17 16:26:18 +00:00
Jermolene
05e2b170fb
Icon tweaks
2014-11-17 16:26:09 +00:00
Xavier Cazin
fe47808d8a
Integration of @evolena work into the fr-FR edition
2014-11-16 10:55:39 +01:00
Xavier Cazin
5eddcb0e8d
fr-FR-server configured to serve the fr-FR edition
2014-11-16 09:31:49 +01:00
Xavier Cazin
d1ed1ddc8c
Bootstrap fr-FR edition with a few dozens of translated tiddlers
2014-11-16 00:55:13 +01:00
Braincoke
705cdc8b17
Update CodeMirror Documentation
...
I wish I could have added tiddlers to the documentation in order to put the mini-tutorials in tabs but I couldn't.
So it is a bit messy in my opinion, but I think it is a good start.
I have tested every configuration with Tiddlywiki v 5.1.4.
2014-11-15 16:33:50 +00:00
Jermolene
48052130d2
Clarify toc-tabbed macro
2014-11-15 12:29:46 +00:00
Jermolene
21cc5fc1d6
More button tweaks
...
@pmario what do you think of the new “info” button?
2014-11-15 12:14:58 +00:00
Jermolene
47481ed52a
Enhance tabbed toc macro with navigation control
...
Now there are two variants of the macro: the default one opens links
externally, the other opens links internally
2014-11-14 17:06:21 +00:00
Jermolene
d8cc283b3a
Release note update
2014-11-14 10:33:49 +00:00
Jermolene
a9eab1b8fc
Improve import logging
2014-11-14 10:33:41 +00:00
Jermolene
52d29ac0cf
Slightly improved styling for plugins tab
2014-11-14 09:46:24 +00:00
Jermolene
0ea8cfb1de
Remove obsolete control panel tools tab
...
Now we’ve got the export button instead
2014-11-14 09:46:09 +00:00
Jermolene
5758713014
Tweak home button
2014-11-14 09:24:35 +00:00
Jermolene
1d08d2d7dc
Clarify set widget docs
2014-11-14 09:24:29 +00:00
Jeremy Ruston
88c4fbd2d7
Merge pull request #1082 from BramChen/master
...
Add chinese translations of exporter descriptions
2014-11-14 08:08:28 +00:00
Jeremy Ruston
6121076ab0
Merge pull request #1083 from andrey013/ru-RU
...
Russian translation update
2014-11-14 08:08:10 +00:00
Andrey Yankin
28d6e6ad1c
Russian translation update
2014-11-14 09:56:47 +03:00
Bram Chen
6d5ba0744b
Add chinese translations of exporter descriptions
2014-11-14 08:44:07 +08:00
Jermolene
1f26428fbc
Tweak home button icon
2014-11-13 22:34:17 +00:00
Jermolene
a3d84694ea
Style tweak
2014-11-13 21:49:19 +00:00
Jermolene
874c8d5516
Tweak docs
2014-11-13 21:39:38 +00:00
Jermolene
f5055c0205
Add tabbed table of contents
2014-11-13 21:39:38 +00:00
Jermolene
bd211ea082
Extend set variable widget to work with filters
2014-11-13 21:39:38 +00:00
Jermolene
fdc272bff4
Improve styling of search buttons
2014-11-13 21:39:38 +00:00
Jermolene
e0041d8483
Move page export button next to import
2014-11-13 21:39:38 +00:00
Jermolene
dcac3b27b7
More icon tweaks
2014-11-13 21:39:38 +00:00
Jeremy Ruston
13837a6f30
Merge pull request #1080 from xcazin/frn
...
fr-FR translation of exporter file descriptions
2014-11-13 17:15:22 +00:00
Xavier Cazin
025f56ebab
fr-FR translation of exporter file descriptions
2014-11-13 17:35:47 +01:00
Jermolene
64d661f6e4
Update alltiddlers.template.html to use new exporter
2014-11-13 16:04:56 +00:00
Jermolene
4bf6fe7fe9
Fix JSON deserialiser to allow all fields
...
Previously we were filtering to a small set of known fields (which was
implemented at the beginning of TW5 as part of the build process for
TW2).
2014-11-13 16:04:30 +00:00
Jermolene
4dec771c20
Make exporter descriptions translatable
2014-11-13 16:03:09 +00:00
Jermolene
8e685e5150
Allow includeWikis to be read-only
...
Hopefully this will help resolve issues that @xcazin and @pmario have
been having with using the client-server configuration to prepare
translations of the TW5 docs.
2014-11-13 12:28:51 +00:00
Jermolene
d1bbe7253c
Remove flicker when resizing textareas
...
The `EditTextWidget.prototype.fixHeight()` function was defering its
work with `nextTick()`, which led to flickering on all browsers when
typing triggers a resize.
2014-11-13 11:19:21 +00:00
Jermolene
1d49e45deb
More icon tweaks
2014-11-13 11:13:29 +00:00
Jermolene
62c265aab0
Icon tweaks
2014-11-12 17:08:51 +00:00
Jeremy Ruston
c9d99f5d92
Merge pull request #1076 from xcazin/frnew
...
fr-FR translation for new Export-related strings
2014-11-11 18:56:11 +00:00
Jermolene
05f60b03a6
Hide export button from introduction edition
2014-11-11 18:55:56 +00:00
Xavier Cazin
b924bc35b0
fr-FR translation for new Export-related strings
2014-11-11 17:03:41 +01:00
Jermolene
7c6b376bdb
Update docs
2014-11-11 15:29:19 +00:00
Jermolene
6375346b04
Revert search filter operator docs update
...
We only want the docs update in the prerelease
2014-11-11 15:29:11 +00:00
Jeremy Ruston
3f7f04b2ea
Merge pull request #1074 from BramChen/master
...
Chinese translations for export buttons
2014-11-11 12:13:40 +00:00
Jermolene
e69e2c1c91
Require confirmation before deleting non-empty new tiddlers
2014-11-11 11:54:46 +00:00
Jermolene
78735cde96
Refactor dropzone
...
I want to start figuring out #686
2014-11-11 11:44:00 +00:00
Jermolene
a44f6039bb
Tweaks to export button
2014-11-11 11:43:20 +00:00
Bram Chen
e02ffcb969
Chinese translations for export buttons
2014-11-11 10:51:58 +08:00
Jermolene
6fc5c70ace
First pass at export button
...
New export button appears as a page control toolbar button, a tiddler
toolbar button, and a button in the advanced search filter tab.
Initially supports exporting as static HTML, CSV, JSON or `.tid` file.
Still to do:
* Made the exporter descriptions translatable
* Hide the export button by default
* User docs
* Cleaning up the existing templates (eg,
`$:/core/templates/alltiddlers.template.html` should work by
transcluding `$:/core/templates/exporters/Static`)
* Docs for the new macros `exportButton`, `csvtiddlers` and
`jsontiddlers`
Issues:
* OS X Numbers refuses to open CSV files that have been generated in
Chrome, because it thinks they’ve been downloaded from the Internet.
Firefox works OK
* The export button won’t work within the tiddler info panel, or from
the *more* popup (this is because we don’t support nested popups)
2014-11-10 20:59:15 +00:00
Jermolene
147f404a41
Fix search results to be in block mode
2014-11-10 19:55:45 +00:00
Jermolene
13d9c55d5c
Updated export button
...
Made the border a bit thicker
2014-11-10 19:54:36 +00:00
Jermolene
b520efdeb8
Update savers to specify variables, including filename
...
Now the `tm-download-file` and `tm-save-file` messages use the hashmap
to specify variables to be applied when rendering the tiddler.
We also add a convention that the variable “filename” is used to
specify a filename for the download.
2014-11-10 19:54:19 +00:00
Jermolene
b70b85aa9e
Add group headings to default search results
2014-11-10 19:52:37 +00:00
Jermolene
e175746122
Fix problem with CSS macros
...
In practice the macros are always invoked in inline mode, meaning that
the triple braces weren’t getting parsed correctly. Now we switch to
inline code
2014-11-10 15:30:35 +00:00
Jermolene
3035badf14
Fix problem with done button not saving unchanged tiddlers
2014-11-10 12:56:33 +00:00
Jermolene
c44a53e670
Add new tutorial
2014-11-10 09:06:01 +00:00
Jermolene
145713e766
Don't confirm deleting drafts with no original
2014-11-10 08:49:20 +00:00
Jermolene
1dfa6f369b
Smarter cancel edit behaviour
...
If we cancel editing a tiddler that doesn’t exist, then we no longer
show the resulting missing tiddler.
2014-11-09 21:47:48 +00:00
Jermolene
3b08b5e9dd
More resilience to Tiddler.isEqual()
2014-11-09 21:47:00 +00:00
Jermolene
cea0b74265
Improve detection of modified drafts
...
If the target tiddler of the draft is missing (as happens after
clicking “new tiddler”), then we count the draft as modified if the
text is not empty.
Also we count the the draft as modified if the draft title has been
changed
2014-11-09 21:46:41 +00:00
Jermolene
5ded01f2c6
Fix problem with blank values in action-setfield widget
...
One manifestation of this problem was that it wasn’t possible to use
the edit template to add a field without specifying a value
2014-11-09 17:15:40 +00:00
Jermolene
9bbd599f5c
Refine refreshing of tiddler widget
...
We need to refresh if there is a change in the state that we copy to
variables.
2014-11-09 17:10:18 +00:00
Jermolene
d2ab7c5986
More action-deletetiddler fixes
2014-11-09 16:53:33 +00:00
Jermolene
8c67e11365
Fixes to action-deletetiddler widget
2014-11-09 16:45:14 +00:00
Jermolene
23ca729805
Updated icons
2014-11-09 16:19:25 +00:00
Jermolene
2c5d241d96
Improve error message for missing commands
2014-11-09 14:49:33 +00:00
Jermolene
769842c4db
Improved fix for h2 title bar markup
...
Fixes the problem @pmario raised at
https://github.com/Jermolene/TiddlyWiki5/commit/09a3f94d79fc6eacbfd46c86
594748e996191eb2#commitcomment-8488743
2014-11-08 17:51:35 +00:00
Jermolene
1255060a5a
Retract view template title change in 09a3f94d79
...
As @pmario points out, the change interferes with the floating of the
toolbar buttons:
https://github.com/Jermolene/TiddlyWiki5/commit/09a3f94d79fc6eacbfd46c86
594748e996191eb2#commitcomment-8488743
2014-11-08 17:39:58 +00:00
Jeremy Ruston
187ec2e76c
Merge pull request #1070 from pmario/german-translations
...
new edit template texts
2014-11-08 17:30:24 +00:00
Jeremy Ruston
f66ec88716
Merge pull request #1071 from xcazin/frn
...
fr-FR new EditTemplate strings
2014-11-08 17:30:08 +00:00
Xavier Cazin
d03c214425
fr-FR new EditTemplate strings
2014-11-08 13:02:58 +01:00
Mario Pietsch
70b07470d6
new edit template texts
2014-11-08 11:01:08 +01:00
Jeremy Ruston
db8e43da23
Merge pull request #1068 from BramChen/master
...
Update chinese translations for recently accessibility fixes
2014-11-08 08:40:18 +00:00
Jermolene
853f5fd064
Add some logging for file import/paste
2014-11-08 08:37:08 +00:00
Bram Chen
f6d234b88c
Update chinese translations for recently accessibility fixes
2014-11-08 09:54:40 +08:00
Jermolene
ae756ddff0
Docs update
2014-11-07 21:32:21 +00:00
Jermolene
ec4beb7f0f
Fix bug in navigator
2014-11-07 21:15:52 +00:00
Jermolene
e2a7b35211
Fix toolbar buttons for introduction edition
...
To take account of recent switcharound
2014-11-07 21:15:40 +00:00
Jermolene
09a3f94d79
Accessibility fixes
...
Fixes for accessibility issues raised here:
https://groups.google.com/d/topic/tiddlywiki/C6lSabtpdEI/discussion
2014-11-07 21:15:21 +00:00
Jermolene
bd73990438
Fix toolbar buttons for introduction edition
2014-11-07 17:04:09 +00:00
Jermolene
16ef49c66d
Release note update
2014-11-07 17:03:59 +00:00
Jermolene
028bf94281
Release note update
2014-11-07 14:54:52 +00:00
Jermolene
91a7c39791
Update modal handling to allow variables to be passed
...
@felixhayashi I’m afraid I haven’t used your pull request as there were
a few details that I wanted to do differently. The main change is that
these changes allow both a param string and hashmap to be specified.
2014-11-07 14:54:46 +00:00
Jermolene
c7971d3da3
Update new tiddler message handling to accept title and fields
...
Now you can create a new tiddler with both a template and additional
specified fields.
2014-11-07 14:53:37 +00:00
Jermolene
d93c19daaa
Improve the format of widget message parameters
...
In 5.1.3 we introduced the idea that the `event.param` variable could
optionally be a hashmap, allowing multiple values to be passed with the
message.
This change moves the hashmap to a separate `event.paramObject`
variable, allowing us to pass both a hashmap and a param string.
2014-11-07 14:52:32 +00:00
Jeremy Ruston
b851fe1800
Merge pull request #1065 from pmario/german-translations
...
tagmanager info heading
2014-11-07 08:51:47 +00:00
Mario Pietsch
421e913dd3
tagmanager info heading
2014-11-07 09:12:33 +01:00
Jermolene
9ac9239c51
Default tiddler info to the fields tab
2014-11-06 21:27:59 +00:00
Jermolene
4d061d0fee
Provisionally extend search results to list title matches separately
...
I’m not sure whether this is a good solution. Nor am I keen on the
horizontal rule to separate the two groups of results.
2014-11-06 20:58:33 +00:00
Jermolene
157f8faa6b
Update advanced search standard to use search tabs
...
We reuse the tabs introduced for the sidebar search results
2014-11-06 20:57:31 +00:00
Jermolene
8260d000be
Extend search filter to allow field to be specified
2014-11-06 20:56:32 +00:00
Jermolene
f1a2d8c2b9
Fix typo in action-setfield widget
2014-11-06 19:35:50 +00:00
Jermolene
12aec57086
Merge action-setfield and action-setfields widgets
...
Less confusion, hopefully.
2014-11-06 19:27:14 +00:00
Jermolene
24956f036e
Fix docs typos
...
Thanks @Evolena
2014-11-06 18:37:08 +00:00
Jermolene
92f69d44bf
Use action-deletefield widget in edit template fields editor
...
On the way to deprecating the field mangler widget
2014-11-06 18:32:11 +00:00
Jermolene
da1f9f7d22
Add input box for new field value to edit template
2014-11-06 18:24:33 +00:00
Jermolene
efeeab45f8
Simplify action-setfield widget
2014-11-06 18:23:59 +00:00
Jermolene
0a2a5184c4
Add action-deletetiddler widget
2014-11-06 18:23:48 +00:00
Jermolene
741f853986
Add action-setfield widget
2014-11-06 18:06:47 +00:00
Jermolene
a18af9b760
Rename the action-setfield widget to action-setfields
...
It makes more sense, and allows us to add a widget: `<$action-setfield
$tiddler=“title” $name=“fieldname” $value=“fieldvalue”/>`
2014-11-06 17:45:03 +00:00
Jermolene
0a986ccd99
Experiment with alternative view tiddler toolbar default buttons
...
The “info”, “edit”, “close” troika has been a feature of TW5 since the
very early days. Recent discussion in Hangout #67 has made me question
whether we wouldn’t be better off with the defaults in this commit:
“more”, “edit”, “close”.
The rationale is that the primary purpose of the “info” button has
become gaining access to the tools that haven’t been elevated to being
toolbar buttons. Most of the rest of the content of the info panel is
pretty arcane. So let’s try it for a few days - I’d appreciate any
feedback.
2014-11-06 13:39:28 +00:00
Jermolene
0bb8e08edc
Provisionally make tag pill foreground colour be responsive
...
With this commit tag pills will now choose for the foreground colour
either the current palette “foreground” or “background” colours,
according to which has the higher contrast. It’s something @gernert has
expressed an interest in in the past, and I’ve tended to agree that it
is a nice piece of polish. It opens up the possibility of paler colours
for tag pills than are currently possible.
The trouble is that in order to implement it I’ve had to bring in a
third party library for parsing CSS colours. It weighs in just over
9KB, making quite a lot of weight for such a small feature. I don’t see
any other immediate uses for the colour parsing library either.
So, I’m undecided at the moment whether this should stay in the core.
2014-11-06 13:35:48 +00:00
Jermolene
73491f14dd
Update highlight plugin configuration to support tabs
...
The technique we were using to configure the library was incorrect.
2014-11-06 13:27:24 +00:00
Jermolene
e145376838
Fix embarrassing typo in timeline macro
...
Fixes #1061 - thanks @welford
2014-11-05 09:30:40 +00:00
Jeremy Ruston
e18e6e85cc
Merge pull request #1060 from xcazin/fr_plugin
...
Translate Info heading for TagManager into fr-FR + add a circumflex on "Icône"
2014-11-05 08:47:01 +00:00
Jeremy Ruston
df8f72ce90
Merge pull request #1049 from pekopeko1/japanese5.1.5
...
Japanese translation improved
2014-11-05 08:45:45 +00:00
Jeremy Ruston
6912f80f0a
Merge pull request #1062 from BramChen/master
...
Add zh info heading for tag manager
2014-11-05 08:44:29 +00:00
Jermolene
db2f47cc4a
Release note update
2014-11-05 08:44:19 +00:00
Bram Chen
32b8270740
Add zh info heading for tag manager
2014-11-05 16:38:39 +08:00
pekopeko1
be3533688a
remove untranslated tiddlers
2014-11-05 06:42:20 +09:00
Xavier Cazin
453193ce78
Translate Info heading for TagManager into fr-FR + add a circumflex on Icône
2014-11-04 22:37:22 +01:00
Jermolene
df891e7110
Further tag manager tweaks
...
Making it translatable, and changing the icon for “info”
2014-11-04 12:35:46 +00:00
Jermolene
4862afbf2a
Add up and down chevron images
...
For completeness
2014-11-04 12:35:19 +00:00
Jermolene
5093cdc860
Exclude drafts from table of contents macros
2014-11-04 11:54:35 +00:00
Jermolene
335c470797
Include double square brackets when dragging titles
...
Dragging a tiddler link into a tiddler editor, or outside the browser
into another app, will now add double square brackets around the title
if it includes spaces. Suggested by @tgirod.
I’m not 100% sure about this change. It breaks one habit that I had
developed: typing `[[sometext|]]` and then dragging a title in between
the vertical bar and the first closing square bracket. What do others
think?
2014-11-03 23:00:11 +00:00
Jeremy Ruston
0550efabf8
Merge pull request #1053 from pmario/no-js
...
add static links, if javascript is deactivated
2014-11-03 22:55:57 +00:00
Jermolene
096165217a
Tweaks for tag manager
...
There were some missing table cells which rendered weirdly.
Still got some wrinkles, though - eg two tag dropdowns appearing.
2014-11-03 22:39:05 +00:00
Jeremy Ruston
5f6a52886e
Merge pull request #1057 from pmario/new-tag-manager
...
change tag manager layout, and add css rule
2014-11-03 22:15:26 +00:00
Jeremy Ruston
94103f8d57
Merge pull request #1054 from pmario/german-translations
...
new UI element translations. new CLI command translations
2014-11-03 22:10:32 +00:00
Jeremy Ruston
fcaf9cc5d2
Merge pull request #1056 from andrey013/ru-RU
...
Russian translation update
2014-11-03 22:07:28 +00:00
Mario Pietsch
d07fea949d
change tag manager layout, and add css rule
2014-11-03 23:07:00 +01:00
Jeremy Ruston
7475515caf
Merge pull request #1055 from pmario/german-tiddlers-tw5com
...
German tiddlers tw5com
2014-11-03 22:06:56 +00:00
Jermolene
9022dfdf71
Add action-deletefield widget
...
We’re also going to need action-deletetiddler
2014-11-03 22:06:31 +00:00
Andrey Yankin
2e41b139d3
Russian translation for Modals
2014-11-04 00:56:48 +03:00
Mario Pietsch
15c0ca2fdf
fix typos
2014-11-03 22:39:41 +01:00
Mario Pietsch
c343c18cff
tw5.com german editions content and title translated
2014-11-03 22:36:21 +01:00
Mario Pietsch
9ff7f61ad3
new UI element translations. new CLI command translations
2014-11-03 22:25:23 +01:00
Andrey Yankin
d34bcc2ebb
delete untranslated help for commands
2014-11-04 00:16:45 +03:00
Andrey Yankin
8ac31e9134
RecentSystemTiddlers russian translation
2014-11-04 00:13:48 +03:00
Mario Pietsch
202fe5a1ae
add static links, if javascript is deactivated
2014-11-03 21:46:39 +01:00
Jermolene
a3a50dbf6d
Extend timeline macro to be able to use different date fields
2014-11-03 17:26:51 +00:00
Jeremy Ruston
989e0d436c
Merge pull request #1047 from felixhayashi/patch-2
...
Update cla-individual.md
2014-11-03 17:06:07 +00:00
Jermolene
5599f9f933
Fix problem with UTF-8 encoding of HTML tiddelrs
...
Fixes #1037
2014-11-03 16:20:49 +00:00
Jermolene
cea963420c
Improve error handling under Node.js
...
Now we include the stack trace with the error message. Thanks to
@felixhayashi for the suggestion.
2014-11-03 16:14:51 +00:00
pekopeko1
d8e4002259
Japanese translation improved
2014-11-03 07:33:44 +09:00
Jermolene
48696c7d41
Fix extraneous whitespace in toc macro
...
Accidentally introduced in 3d7b40fbaa
2014-11-02 21:23:17 +00:00
Jermolene
2e1db82f2d
Tweak tag pill shape
2014-11-02 21:22:45 +00:00
Jermolene
3d7b40fbaa
Fix problem with recursion in table of contents macro
...
Fixes #1036
2014-11-02 21:03:27 +00:00
Jermolene
835e3a9452
Ensure sticky titles z-index is above vertical tabs
...
Fixes #1040
2014-11-02 20:36:31 +00:00
felixhayashi
7e4309397e
Update cla-individual.md
2014-11-02 19:38:37 +01:00
Jeremy Ruston
55d72bfaf4
Merge pull request #1039 from andrey013/patch-1
...
missing backtick
2014-11-02 17:24:54 +00:00
Jermolene
7062bb9293
Fix links in readme for googleanalytics plugin
...
Thanks @gernert
2014-11-02 17:22:16 +00:00
Jeremy Ruston
3a0616044e
Merge pull request #1042 from pekopeko1/japanese5.1.5
...
Add japanese edition
2014-11-02 17:04:22 +00:00
Jeremy Ruston
2ddc53ab3d
Merge pull request #1043 from BramChen/master
...
Update chinese translations
2014-11-02 17:03:24 +00:00
Jermolene
63b00fd0f8
Add advanced search button to search results
...
Clicking on the advanced search ellipsis when there is a search string
will open the advanced search tiddler, and copy the current search term
to it.
Thanks to @Spangenhelm for the idea.
2014-11-02 16:10:53 +00:00
Bram Chen
946d84f38e
Add chinese translations of canned filter for recent system tiddlers
2014-11-02 15:45:12 +08:00
Bram Chen
51f3008858
Update zh help text of output command
2014-11-02 15:38:49 +08:00
pekopeko1
6c36ef93c3
Add japanese edition
2014-11-02 15:07:12 +09:00
Andrey Yankin
79c77966df
missing backtick
2014-11-01 22:47:47 +03:00
Jeremy Ruston
d0a0dd1812
Merge pull request #1035 from xcazin/fr_plugin
...
Most recent updates to language plugin
2014-11-01 15:41:22 +00:00
Xavier Cazin
6aa91dda33
fr-FR update for the output command help.
2014-11-01 16:29:21 +01:00
Xavier Cazin
81f0a79c5d
fr-FR description for RecentSystemTiddlers filter group
2014-11-01 16:24:40 +01:00
Jeremy Ruston
73bba27673
Merge pull request #1025 from xcazin/trans
...
Spotted thanks to http://tiddlywiki.com/prerelease/editions/translators/index.html
2014-11-01 15:15:16 +00:00
Jermolene
83f1f49c89
Merge branch 'pr/1034'
2014-11-01 15:14:14 +00:00
Jermolene
270fb09993
Updates to "introduction" edition
2014-11-01 14:12:47 +00:00
Jermolene
9e85782407
Extend Cecily
...
Two new features: you can set the tiddler width via an attribute on the
list widget, and specify a rotation factor in the map.
2014-11-01 14:12:32 +00:00
Andrey Yankin
f7a2849d27
disable enqueueTiddlerEvent during plugin switching
2014-11-01 16:32:52 +03:00
Jermolene
4e3f6fc4f8
Tweaks "Tiddlers" docs
...
Thanks for the prompt @FND - I’ve pushed this version to
http://tiddlywiki.com/#Tiddlers and
http://tiddlywiki.com/static/Tiddlers.html
2014-11-01 11:30:22 +00:00
Jermolene
4a63343789
Use Greek translation in introduction edition
2014-11-01 10:38:37 +00:00
Jermolene
657ced1221
Fix to el-GR translation
...
@access-denied this is for consistency with the other languages.
I acknowledge that there it’s a problem at the moment that languages
can’t expose a localised name; it would make more sense to use the
localised language name in the menu.
2014-11-01 10:38:26 +00:00
Jermolene
14a64ef3ef
Merging el-GR
2014-11-01 10:21:17 +00:00
access-denied
4e3c1bfd02
Corrections to el-GR translation
...
some minor corrections
2014-11-01 11:47:44 +02:00
Jeremy Ruston
eb99629d3f
Merge pull request #1032 from sukima/feature/github-ribbon-plugin-link
...
Add direct link to github ribbon plugin
2014-11-01 08:49:07 +00:00
Jermolene
06cbc45dfa
Wrap page control previews in position:relative
...
Fixes #1031
2014-11-01 08:42:34 +00:00
Devin Weaver
176ad5adde
Add direct link to github ribbon plugin
...
The former documentation referenced a plugin but left no easy way to
link to it. Also, the misleading text claiming a title also confused me.
I had to do some creative greping the git files to hunt it down.
Adding a TiddlyWiki link around the plugin links to the actual tiddler
that a reader could easily copy. This also deprecated the need for the
misleading title.
2014-10-31 21:24:21 -04:00
Jermolene
4328d7cf3f
Updates to introduction edition
2014-10-31 21:09:20 +00:00
Jermolene
6b3e8bdfd3
Add link to TiddlyWiki guide FR
2014-10-31 21:09:12 +00:00
Jermolene
938e782772
Update docs
2014-10-31 20:12:06 +00:00
Jeremy Ruston
b1e2ea19a8
Merge pull request #1026 from andrey013/lazy-loading-indexed-transclusion
...
Lazy loading should be forced for indexing transclusion
2014-10-31 19:23:01 +00:00
Jermolene
97d36e26fc
First pass at new introduction edition
...
It started life as the slides for a new introductory video, but I’m
thinking that it may be worth publishing as an interactive introduction.
2014-10-31 18:48:47 +00:00
Jermolene
0240d5edc8
Release note update
2014-10-31 11:33:39 +00:00
Jermolene
2e5c01f630
Remove extraneous console.log
2014-10-31 11:33:24 +00:00
Jermolene
31300b6e2e
Make tag pills rounder
...
The tag pills were looking less like pills at larger font sizes,
because of the absolute units used for the corner roundness.
2014-10-31 10:02:09 +00:00
Jermolene
13726ef731
Add canned filter for recent system tiddlers
...
Useful when you need to establish the titles of tiddlers being used for
state storage.
2014-10-31 10:01:25 +00:00
Andrey Yankin
7eb8301020
Lazy loading should be forced for indexing also
2014-10-31 10:24:49 +03:00
Xavier Cazin
6eb43f3fbf
fr-FR translation for the editions command help
2014-10-30 22:39:50 +01:00
Xavier Cazin
c9c189048e
fr-FR translation for the unpackplugin command help
2014-10-30 22:31:02 +01:00
Xavier Cazin
d55693d85d
fr-FR translation of the hint about external tiddlers
2014-10-30 22:20:54 +01:00
Xavier Cazin
11b6c52761
fr-FR translation of the core plugin readme
2014-10-30 22:19:49 +01:00
Jeremy Ruston
0a5eb0c848
Merge pull request #1023 from danielo515/patch-4
...
Added ActionNavigateWidget to the description
2014-10-30 13:02:35 +00:00
Jermolene
cc33fee9fd
Typo
2014-10-30 12:47:58 +00:00
Jermolene
90096cbd36
Fix problem with codemirror editor and missing tiddlers
2014-10-30 12:28:26 +00:00
Jermolene
f069046f5b
Docs update
2014-10-30 12:28:15 +00:00
danielo515
54fb3c11f9
Added ActionNavigateWidget to the description
...
Added ActionNavigateWidget to the list of widgets that can raise this message.
2014-10-30 11:35:01 +01:00
Jermolene
be2a74d623
Typos
...
Thanks @BramChen
2014-10-29 16:27:05 +00:00
Jermolene
d27eb7b757
Update link for Briefcase mGSD
2014-10-29 16:09:46 +00:00
Jermolene
c20c935faa
Add video button image
2014-10-29 16:09:46 +00:00
Jermolene
62f69168b6
Move docs for new commands into prerelease
...
So that they don’t appear on tiddlywiki.com until the next release
2014-10-29 16:09:46 +00:00
Jeremy Ruston
dcb65d2ae0
Merge pull request #1021 from BramChen/master
...
Update chinese translations
2014-10-29 13:36:47 +00:00
Bram Chen
349abaddea
Add zh help text of unpackplugin command
2014-10-29 21:30:45 +08:00
Jermolene
2eee132147
Increase size of flags in language dropdown
2014-10-29 12:15:32 +00:00
Jermolene
e7b4cab20d
Use bordered flags for ja-JP and ru-RU
...
The borderless images don’t show up well in the menu
2014-10-29 12:15:19 +00:00
Jermolene
615425cf06
Updated Japanese translation
2014-10-29 11:54:46 +00:00
Jermolene
9b587ee203
Docs tiddler for editions command
...
We duplicate the command help tiddlers so that we can tag them.
2014-10-29 11:44:33 +00:00
Jermolene
3506c85807
Update extracting translations docs
2014-10-29 11:43:59 +00:00
Jermolene
17a594a97a
Add unpackplugin command
...
Needed for the translators edition
2014-10-29 11:43:43 +00:00
Jermolene
f0df09c027
Stop translated strings moving in the list
...
Without sorting the list, we had ordinary tiddlers listed before shadow
tiddlers. That meant that as soon as you started to type in a shadow
tiddler it moved up in the list.
2014-10-29 11:04:58 +00:00
Jermolene
7fe8c4c4a1
Fixes for translators edition/plugin
...
* Added support for translating the core readme
* Fixed problem with `Misc.multids` rendering shadow tiddlers
* Fixed problem with single tiddler files rendering shadow tiddlers
2014-10-29 10:57:50 +00:00
Jeremy Ruston
4bce8ca8ff
Merge pull request #1019 from BramChen/master
...
Update chinese translations
2014-10-29 08:45:56 +00:00
Jeremy Ruston
a205f142b3
Merge pull request #1020 from andrey013/ru-RU
...
Russian translation update
2014-10-29 08:44:11 +00:00
Jermolene
8ba1a9b72a
Add Danish translation
2014-10-29 08:37:01 +00:00
Jermolene
73a3077365
Add support for splitting standalone translations
2014-10-29 08:36:48 +00:00
Andrey Yankin
fddefc0d52
Russian: Add support for custom search result visualisations
2014-10-29 09:46:04 +03:00
Bram Chen
9317923307
Add zh help text of editions command
2014-10-29 13:34:22 +08:00
Bram Chen
2aa74c9467
Add zh caption of default search results
2014-10-29 13:30:56 +08:00
Jeremy Ruston
d44d94e9b4
Merge pull request #1018 from Evolena/patch-2
...
Update selectWidget example (the tag was deleted)
2014-10-28 18:12:35 +00:00
Evolena
217614b7c6
Update selectWidget example (the tag was deleted)
2014-10-28 17:13:00 +01:00
Jeremy Ruston
c2245e1898
Merge pull request #1012 from erwanm/patch-1
...
Fixed the description of the operator
2014-10-28 14:12:01 +00:00
Jeremy Ruston
19f9587ac0
Merge pull request #1016 from Evolena/patch-1
...
Adding recursive sort parameter to toc macro
2014-10-28 10:47:25 +00:00
Evolena
e07cdb7eed
Adding recursive sort parameter to toc macro
2014-10-28 10:49:49 +01:00
Jeremy Ruston
cdf67c34d0
Merge pull request #1015 from erwanm/patch-3
...
Update cla-individual.md
2014-10-28 08:56:23 +00:00
Jermolene
b0a0859b62
Allow control over default search results tab
2014-10-28 08:31:09 +00:00
Erwan Moreau
96ca36798e
Update cla-individual.md
2014-10-27 23:21:44 +00:00
Jermolene
04d26e6fae
First pass at an --editions command
...
Also added a “description” field for wiki folders.
Right now there’s too many editions listed. I think we should by
default only list editions whose `tiddlywiki.info` file has
`showInListings` set to `true`, and have an `--editions all` command
that lists everything.
@pmario please could you check that the editions in your
`TIDDLYWIKI_EDITION_PATH` are correctly listed?
2014-10-27 21:50:25 +00:00
Jermolene
3d07b11894
Docs update
...
Fixes #1014 raised by @erwanm
2014-10-27 19:39:41 +00:00
Jermolene
c13cf94413
Add support for custom search result visualisations
2014-10-27 18:38:34 +00:00
access-denied
f8df354fc0
Corrections to el-GR translations
...
Some minor corrections to translations.
2014-10-27 00:06:07 +02:00
Erwan Moreau
58948d2093
Fixed the description of the operator
...
the previous description was erroneous: the operand is not the number of entries to return, but the position of the entry to select.
2014-10-26 18:53:35 +00:00
access-denied
8d3463e3df
Greek translation
...
First attempt for translating Greek (Greece)
2014-10-26 20:33:07 +02:00
Jermolene
91ec164361
Typo
2014-10-26 11:51:50 +00:00
Jermolene
3fea51a08b
Reorganise docs updates for 5.1.5 additions
...
We’ll keep the docs for the new features in the prerelease edition
until the release of 5.1.5. This means that we can continue to build
the tw5.com edition without including the 5.1.5-specific content.
2014-10-25 14:24:01 +01:00
Jermolene
86c56d846e
Release note update
2014-10-25 14:04:01 +01:00
Jermolene
d8248cfba7
Introduce action-setfield widget
2014-10-25 14:02:34 +01:00
Jermolene
c724439a08
Docs update
2014-10-25 14:02:21 +01:00
Jermolene
19272a7ca2
Update release note
2014-10-25 14:02:04 +01:00
Jermolene
cf1fb650d5
Tighten up multiline translators editors
2014-10-25 10:26:11 +01:00
Jermolene
4b808396f2
Missing semicolon
2014-10-25 10:25:55 +01:00
Jermolene
4a17212576
Enhance height control for edit-text widget
...
Added the option to disable automatic resizing, and the ability to
specify the minimum height.
2014-10-25 10:09:17 +01:00
Jermolene
80e67f5028
Docs tweaks
2014-10-24 18:02:34 +01:00
Jeremy Ruston
6e9508be66
Merge pull request #1007 from ArmchairDesigner/improve-docs
...
some doc updates
2014-10-24 17:55:53 +01:00
Jermolene
da86664a53
Update docs for select widget
2014-10-24 16:52:20 +01:00
Jermolene
2bc9a7b115
Clarify code block docs
2014-10-24 14:50:19 +01:00
Jermolene
29a8b2e718
Translator edition tweaks
2014-10-24 13:52:51 +01:00
Jermolene
a2672482c9
Add dropdown for filtering translatable strings
...
The user can now choose between showing all strings, just those that
haven’t been translated, or just those that have been translated.
2014-10-24 12:50:23 +01:00
Jermolene
39e37d5776
Improvements to translators edition
...
More improvements for #984
2014-10-24 11:18:37 +01:00
Jermolene
485ffae366
Refactor the page controls to be more reusable
...
Moving them into their own tiddler makes it easier to transclude them
elsewhere
2014-10-24 11:17:58 +01:00
Jermolene
30a757ec49
Dev docs typo
2014-10-22 17:23:22 +01:00
Jermolene
5e199f6b7d
Preparing for 5.1.5
2014-10-22 17:23:13 +01:00
Jermolene
fe4c8da860
Version number update for 5.1.4
2014-10-22 16:58:42 +01:00
Jermolene
243327436f
Readme updates
2014-10-22 16:58:15 +01:00
Jermolene
d3ff98198f
Preparing for release of 5.1.4
2014-10-22 16:56:26 +01:00
Jermolene
485b921bf6
Docs tweaks
2014-10-22 16:54:21 +01:00
Jermolene
7f9fb117e9
Clarify warning
2014-10-22 16:47:20 +01:00
Jermolene
ab77f96caf
Adjust wording of theme tweaks
2014-10-22 16:45:20 +01:00
Jermolene
55f0b917e0
Hide advanced search toolbar button by default
2014-10-22 16:45:11 +01:00
Jermolene
ffdbe612b0
Release note update
2014-10-22 16:40:48 +01:00
Jermolene
6681a8e1f2
Add an advanced search toolbar button
2014-10-22 16:30:41 +01:00
Jermolene
fbb6349cd9
More fieldmangler typos
2014-10-22 16:09:04 +01:00
Jeremy Ruston
2046dbc4ed
Merge pull request #1005 from danielo515/patch-1
...
small typo on WidgetMessage: tm-add-field
2014-10-22 16:08:14 +01:00
Jermolene
b23b4b95ef
Dev docs update
2014-10-22 16:08:06 +01:00
danielo515
e02cfc3efd
small typo on WidgetMessage: tm-add-field
...
You can read FieldMangerWidget instead of FieldManglerWidget. A single L is missing, so the links are not working properly.
2014-10-22 17:01:47 +02:00
Jermolene
5bb74319e1
First pass at an edition for translators working in the browser
...
The user interface needs some refinements but it shows the basic
principles.
The idea is that the translator would email their modified file, which
would then be merged into the core repo (some additional tools will be
helpful for this).
Fixes #984
2014-10-22 14:14:24 +01:00
Jermolene
1b620387dd
Extend the view widget to work with subtiddlers
2014-10-22 14:12:49 +01:00
Jermolene
9a067b8dac
Ensure JS macros return text
2014-10-22 10:33:56 +01:00
Jermolene
26e50b81e5
Add theme tweaks for body text size
...
Fixes #891
2014-10-22 08:32:36 +01:00
Jermolene
ddc7495542
Move search result count logic out of translations
...
Also fixes a problem pointed out by @Evolena whereby the advanced
search counts hadn’t been adjusted to remove `$:/temp/advancedsearch`
from the search.
2014-10-21 20:27:42 +01:00
Jermolene
53d834c86b
Use titles when dragging links to non-TiddlyWiki destinations
...
Handily, this means that you can drag tiddler links from the sidebar
into the text editor, making it easier to create links and
transclusions.
2014-10-21 19:51:18 +01:00
Jermolene
b052e8f50b
Report command errors through $tw.utils.error
...
So that we get the new colourisation
2014-10-21 19:31:50 +01:00
Jermolene
e62e38d66c
Add warning when serving a non-existent wiki folder
...
The warning will be yellow to make it noticeable
2014-10-21 19:31:29 +01:00
Jermolene
5d600ce31b
Coloured warnings and errors under Node.js
2014-10-21 19:30:27 +01:00
Jermolene
9fedf38657
Remove checking for missing wiki folders
...
Thus undoing 744245ea32 because of #1002
2014-10-21 19:28:38 +01:00
Jermolene
e6eeac0bbf
Improved export icon
2014-10-21 15:55:48 +01:00
Jeremy Ruston
8eb68bc384
Merge pull request #1001 from gernert/patch-4
...
Update WidgetMessage_ tm-add-tag.tid
2014-10-21 13:30:00 +01:00
Jermolene
ba81008951
Docs typos
2014-10-21 13:25:27 +01:00
gernert
6a47117737
Update WidgetMessage_ tm-add-tag.tid
2014-10-21 14:23:40 +02:00
Yaka
47b99d635a
some doc updates
2014-10-21 11:07:49 +00:00
Jermolene
ea97a8a2bc
Preparing for 5.1.4
2014-10-20 18:54:07 +01:00
Jermolene
72bf150eac
Version number update for 5.1.3
2014-10-20 18:14:33 +01:00
Jermolene
deebb90b46
Update release instructions
2014-10-20 18:14:00 +01:00
Jermolene
7dce3c3ecc
Move release note and update HelloThere
...
Preparing for release of 5.1.3
2014-10-20 18:11:22 +01:00
Jermolene
d83666c24b
Readme update
2014-10-20 18:06:18 +01:00
Jermolene
561aaa925b
Filename typo
2014-10-20 18:06:08 +01:00
Jermolene
5c137b9002
Docs for update to browse widget
2014-10-20 16:57:06 +01:00
Jermolene
71bc78b176
Coding style cleanups
2014-10-20 16:53:42 +01:00
Jeremy Ruston
f6883e5365
Merge pull request #999 from Eucaly/browse-widget
...
adding a message attribute to the browse widget
2014-10-20 16:49:06 +01:00
Jermolene
9bc4345cb4
Release note update
2014-10-20 16:12:32 +01:00
Jermolene
cf12bcd58a
Docs updates
2014-10-20 16:12:24 +01:00
Eucaly
0bbd5eb292
adding a message attribute to the browse widget
...
* extend browse widget with a message attribute. If blank then import as
original. Otherwise, dispatch the given message with selected files
2014-10-20 21:57:15 +08:00
Jeremy Ruston
f25053490e
Merge pull request #998 from xcazin/ogg
...
Add audio/ogg to the list of recognised formats
2014-10-20 12:30:00 +01:00
Jermolene
244b3256a9
Docs on putting last modification date in banner
2014-10-20 12:24:28 +01:00
Jermolene
b8ac80fd1a
Docs tweaks
2014-10-20 12:09:02 +01:00
Jermolene
aec4c3cd91
Clean up formatting of github fork ribbon
2014-10-20 11:56:13 +01:00
Jermolene
4314fb478d
Add new Japanese site to community links
2014-10-20 08:30:53 +01:00
Xavier Cazin
66765ce158
Explicitly states that external Audio uri may also point to audio streams, not only files
2014-10-19 22:13:28 +02:00
Xavier Cazin
6833bfb220
Add audio/ogg to the list of recognised audio formats
2014-10-19 22:09:17 +02:00
Jeremy Ruston
1914b3d8e1
Merge pull request #932 from Marxsal/patch-1
...
Create How to apply custom style classes by tag
2014-10-19 18:07:28 +01:00
Jermolene
f9cab4bc12
Add fake dom documentation
2014-10-19 13:34:07 +01:00
Jermolene
12e26009ee
Allow percentage width and height on image widget
2014-10-19 13:21:20 +01:00
Jeremy Ruston
299bef2a77
Merge pull request #991 from andrey013/ru-RU
...
Russian translation update
2014-10-19 09:46:30 +01:00
Jeremy Ruston
02b8a8b9d4
Merge pull request #994 from Marxsal/patch-2
...
Update cla-individual.md
2014-10-19 09:39:53 +01:00
Jermolene
55397e0ab1
Docs tweaks
...
Thanks @xcazin
2014-10-19 09:39:33 +01:00
Jermolene
9d53a1b5c4
Update macros docs
2014-10-19 09:18:39 +01:00
Jermolene
e1ac85ddd5
Docs: Clarify importing simplified TW files
2014-10-18 19:50:42 +01:00
Jermolene
744245ea32
Raise error for missing wiki folders
...
Only raise the error if the wiki path is explicitly specified on the
command line, avoiding `tiddlywiki —version` raising an error if the
current directory isn’t a wiki folder.
Fixes #990
2014-10-18 19:39:39 +01:00
Jermolene
9a4bda9c85
Docs tweaks
2014-10-18 19:15:04 +01:00
Marxsal
18ceb63f18
Update cla-individual.md
2014-10-18 11:05:17 -07:00
Jeremy Ruston
3305874235
Merge pull request #992 from Eucaly/variables
...
add Subsitutions in WikiText
2014-10-18 18:57:13 +01:00
Jermolene
6c76670137
Removed outdated comment
2014-10-18 17:46:19 +01:00
Jermolene
9a36dc61ec
Improve docs on TW file format
2014-10-18 17:42:24 +01:00
Jeremy Ruston
da9f634cf7
Merge pull request #993 from xcazin/new_fr-FR
...
fr-FR upgrader module description string + change case of long version of month names
2014-10-18 17:30:11 +01:00
Xavier Cazin
ae7cce3c59
fr-FR months are more often displayed in lowercase
2014-10-18 17:40:26 +02:00
Xavier Cazin
67dbbc8d65
fr-FR description of the upgrader module type
2014-10-18 17:40:11 +02:00
Jermolene
2ffe53f191
Add audio parser for handling audio content
2014-10-18 14:50:07 +01:00
Jermolene
ea3bdb5556
Release note update
2014-10-18 14:49:43 +01:00
Eucaly
159a310bab
add Subsitutions in WikiText
2014-10-18 18:49:10 +08:00
Eucaly
15f3c284ae
add Subsitutions in WikiText
2014-10-18 18:45:46 +08:00
Eucaly
7121828980
Merge pull request #1 from Jermolene/master
...
sync with master
2014-10-18 16:42:00 +08:00
Andrey Yankin
b2dd87f44a
russian translation update
2014-10-18 00:01:05 +04:00
Jermolene
564457de1c
Update to KaTeX v0.1.1
2014-10-17 20:10:38 +01:00
Andrey Yankin
4194c7e3dd
Merge remote-tracking branch 'upstream/master'
2014-10-17 22:56:54 +04:00
Jermolene
21a791cdcd
Docs updates
2014-10-17 16:29:27 +01:00
Jermolene
ad13d57523
Use separate state for each slider demo
...
Fixes #988
2014-10-17 10:02:21 +01:00
Jeremy Ruston
713792831e
Merge pull request #989 from BramChen/master
...
Update chinese translations for adding description for "upgrader" modules
2014-10-17 09:59:16 +01:00
Jermolene
209c018c38
Docs updates
2014-10-16 10:01:02 +01:00
Jermolene
a4c1fee075
Update test.cmd
2014-10-16 10:00:55 +01:00
Jermolene
fc2d3ce56a
Docs update
2014-10-16 09:27:25 +01:00
Bram Chen
f20286fb26
Update chinese translations for adding description for "upgrader" modules
2014-10-16 15:48:07 +08:00
Jermolene
dcc33e52b3
Docs updates
2014-10-15 21:56:32 +01:00
Jermolene
e188662438
Move prerelease release note
...
The release note for the pending release should be part of the
prerelease edition
2014-10-15 21:56:24 +01:00
Jermolene
7672fb37a7
Simplify test script
2014-10-15 21:55:45 +01:00
Jermolene
b0b89fac72
Moved to build.jermolene.github.io
2014-10-15 21:55:33 +01:00
Jermolene
d91e4be74e
Docs updates
2014-10-15 19:46:11 +01:00
Jeremy Ruston
ec7eddfc4e
Merge pull request #974 from xcazin/fixtw5.com
...
Fix caption field of the NowMacro doc tiddler
2014-10-15 19:34:15 +01:00
Jermolene
b94fc7b647
Clarify docs for limit parameter of timeline macro
...
Prompted by a comment in #975
2014-10-15 17:57:00 +01:00
Jermolene
5211f9c40c
Fix problem with timeline subfilter
...
Fixes #975
2014-10-15 17:48:45 +01:00
Jermolene
c1e60736d8
Add description for "upgrader" modules
...
Fixes #982
2014-10-15 17:07:49 +01:00
Jeremy Ruston
9a43f9df7c
Merge pull request #985 from pmario/language-de
...
some adjustments due to feedback
2014-10-15 16:41:54 +01:00
Jermolene
b0bd5ba96f
Build and release docs update
2014-10-15 16:18:08 +01:00
Jermolene
ca650e2012
Stop building a separate readme for tw2 edition
2014-10-15 16:18:00 +01:00
Jermolene
5dfda99388
Remove scripts that have moved to build.jermolene.github.io
2014-10-15 16:17:46 +01:00
Mario Pietsch
230f2d96de
some adjustments due to feedback
2014-10-15 15:49:53 +02:00
Jermolene
ed5a87c019
Docs tweaks
2014-10-15 09:17:00 +01:00
Jermolene
f721e25b8c
Docs update
2014-10-14 15:15:56 +01:00
Jermolene
86ec42c8c7
Readme for build.jermolene.github.io
2014-10-14 15:15:48 +01:00
Jermolene
62c31ed37a
Add prerelease edition
...
This is the edition that we’ll use for publishing prerelease/beta
builds of TW
2014-10-14 15:15:20 +01:00
Jermolene
49dc5694a3
Enhance "includeWikis" to merge build targets
...
Build targets found in included wikis are merged behind any found in
the wiki itself
2014-10-14 15:14:50 +01:00
Xavier Cazin
4b3d634b25
Fix caption field of NowMacro doc tiddler
2014-10-13 18:08:28 +02:00
Jermolene
2d25c40227
Remove backslashes from example commands
2014-10-13 09:59:34 +01:00
Jermolene
6ec87efb5a
Remove references to $TW5_BUILD_OUTPUT
2014-10-13 09:56:52 +01:00
Jeremy Ruston
a501115afb
Merge pull request #972 from pmario/language-de
...
revert leading 0 for timeline, but use it with Journal
2014-10-13 09:26:57 +01:00
Jermolene
5154a83cf9
Exclude search string tiddler from search results
2014-10-13 09:11:34 +01:00
Jermolene
18fa5a4a5d
Fix typo
...
Thanks @TheDiveO
2014-10-12 16:57:01 +01:00
Jeremy Ruston
90ac41b9ec
Merge pull request #967 from pmario/german-videos
...
german video links for saving with chrome, firefox, ie
2014-10-12 16:50:14 +01:00
Mario Pietsch
316e1eca3f
fix video protocol
2014-10-12 17:45:54 +02:00
Jermolene
c39b5b913c
Docs tweak
2014-10-12 16:45:53 +01:00
Jeremy Ruston
d053b960b6
Merge pull request #963 from Evolena/patch-3
...
Fix some bad links
2014-10-12 16:38:08 +01:00
Mario Pietsch
554d2c689c
revert leading 0 for timeline, but use it with Journal
2014-10-12 17:31:59 +02:00
Jeremy Ruston
0cbe396efb
Merge pull request #968 from pmario/language-de
...
Language de Misc and Dates according to en-GB
2014-10-12 16:26:12 +01:00
Jermolene
601884d894
Docs tweaks
2014-10-12 16:25:52 +01:00
Mario Pietsch
73bc2a1848
remove duplicated elements
2014-10-12 17:20:04 +02:00
Jermolene
4519c47551
Docs update
2014-10-12 16:15:08 +01:00
Mario Pietsch
473b28585a
dates and misc same as en-GB now
2014-10-12 17:05:04 +02:00
Mario Pietsch
6fc14e5c1f
german video links for saving with chrome, firefox, ie
2014-10-12 16:28:02 +02:00
Evolena
2fe095fcd1
Fix bad links
2014-10-12 13:59:26 +02:00
Jeremy Ruston
824f9c1d8c
Merge pull request #965 from xcazin/renew-fr-FR
...
Journal- and NewTiddler- related fr-FR strings
2014-10-12 10:25:04 +01:00
Xavier Cazin
b81095349f
Revert NewJournal fr-FR pattern to be the same as en-GB
2014-10-12 11:14:16 +02:00
Jeremy Ruston
7f7ab768f7
Merge pull request #964 from simonbaird/master
...
Add span wrapper around button caption text
2014-10-12 09:42:24 +01:00
Jermolene
1695d5fe29
Docs tweaks
2014-10-12 09:42:16 +01:00
Xavier Cazin
4840357ea0
Typo in fr-FR Dates
2014-10-11 20:19:43 +02:00
Xavier Cazin
ca2afd9eef
Journal- and NewTiddler- related fr-FR strings
2014-10-11 20:18:20 +02:00
Simon Baird
0671e59fed
Add span wrapper around button caption text
...
Reasons:
- can show or hide the button text with CSS (assuming
tv-config-toolbar-text is yes).
- can have different looking buttons in the page controls versus the
view toolbar, etc
- more flexibility styling the button appearance, for example you
can change the text size compared to the icon size
- button appearance is more themeable
2014-10-12 01:43:01 +10:00
Jermolene
06f9ed8bad
Generate new tiddler titles that aren't already subject of a draft
2014-10-10 20:58:56 +01:00
Jermolene
644ced6d4e
Preserve modified title when reusing drafts
...
Should fix the problem raised by @xcazin
2014-10-10 20:58:34 +01:00
Jermolene
a671e72706
Fix problem with import button triggering checkbox on Firefox
...
It seems that there is a broader problem with the way that the button
is embedded within the label of a checkbox; even on Chrome it meant
that the checkbox active state was triggered when clicking on any of
the buttons. The user experience was in any case confusing; it wasn’t
obvious that clicking on the label to the right of the button would
flick the checkbox.
The solution takes the buttons and labels out of the checkbox label.
2014-10-10 20:50:50 +01:00
Jermolene
f7bdb1c04d
Docs updates
2014-10-10 20:32:22 +01:00
Jermolene
9a6f1f66be
Yet more fixing for the Firefox jumping toolbar problem...
...
See #282
2014-10-10 20:32:12 +01:00
Jermolene
6e4dccda4c
Docs update
2014-10-10 10:35:43 +01:00
Jermolene
03defe4256
Docs cleanup
2014-10-10 10:35:36 +01:00
Jermolene
39b7771f87
Update release notes
2014-10-10 10:31:17 +01:00
Jermolene
087a0aec58
Fixed typo in language files
2014-10-10 10:31:10 +01:00
Jermolene
f37a7101a7
Fix problem with new tiddler button
2014-10-10 10:17:42 +01:00
Jermolene
e90e588621
Missed from last commit
2014-10-10 10:13:02 +01:00
Jermolene
353f641bcc
Move date-related translateable strings into their own file
2014-10-10 10:12:40 +01:00
Jermolene
a8d83096d3
Fix behaviour of new tiddler message
...
Resolves some inconsistencies over the behaviour of the new tiddler
message under various circumstances.
“new journal here” when a journal for today already exists now brings
up the existing journal for editing, and adds the required tag.
I’d be very grateful for any testing of the behaviour here: try using
new tiddler, clone tiddler, new here, new journal here, and new journal
in various combinations (eg with the draft not existing, already
existing, open or closed etc), and let me know of any peculiarities.
2014-10-10 09:52:19 +01:00
Jermolene
1e02a9f0db
Correct return value for makeDraftTiddler
2014-10-10 09:03:35 +01:00
Jeremy Ruston
d74fc931c1
Merge pull request #960 from BramChen/master
...
Update chinese translations
2014-10-10 08:05:52 +01:00
Bram Chen
1460b6ec12
Add chinese translations of new journal here button
2014-10-10 09:10:50 +08:00
Jermolene
a7c9112c40
Add new filter example
2014-10-09 20:51:58 +01:00
Jermolene
9cd420290b
Fix for titles including double quotes
2014-10-09 20:11:11 +01:00
Jermolene
5f08f89956
Add link to Iannis Zannos hints site
2014-10-09 18:08:05 +01:00
Jermolene
ea7d9652c5
Move new journal here button to the correct directory
2014-10-09 18:00:34 +01:00
Jermolene
515b556b48
Fix for previous fix
...
Fix for problem introduced in 25f4ce93ac
2014-10-09 17:51:29 +01:00
Jermolene
25f4ce93ac
Fixed truncation of tiddler info panel
...
Caused by the fix to #282
2014-10-09 17:42:18 +01:00
Jermolene
d6dc4c14d7
Add new-journal-here button to viewtoolbar ordering
2014-10-09 17:36:33 +01:00
Jeremy Ruston
fcf843d5b1
Merge pull request #959 from simonbaird/new-journal-here
...
Add a 'new journal here' button
2014-10-09 17:34:13 +01:00
Jermolene
3827f98a43
Improve new tiddler behaviour with existing tiddlers
...
Now repeatedly clicking “new journal” will reuse the existing journal
if one exists
2014-10-09 17:30:53 +01:00
Jermolene
612e05a247
pushTop should return resulting array
2014-10-09 17:28:39 +01:00
Simon Baird
00cdd04edd
Add a 'new journal here' button
...
The journal tiddler will be tagged with the name of the current
tiddler. This is similar to how the new here button works.
(Would have liked to reuse the journalButton code which is almost
identical between new-journal-here and new-journal, but I'm not
sure how to do it.)
2014-10-10 02:06:56 +10:00
Jermolene
5010859ed6
This deals with one of the specific issues raised in #922 , but doesn’t
...
address the general issue.
2014-10-09 14:56:38 +01:00
Jeremy Ruston
7ed7cbc948
Merge pull request #950 from BramChen/master
...
Update chinese translations
2014-10-09 13:49:29 +01:00
Jeremy Ruston
b05ff2a5d7
Merge pull request #952 from fghhfg/patch-10
...
Update Searching.tid
2014-10-09 13:38:43 +01:00
Bram Chen
804c7de635
Add NewJournal.multids for chinese translations
2014-10-09 20:33:57 +08:00
Jermolene
4e37a9fb09
Navigate widget docs update
2014-10-09 13:28:12 +01:00
Bram Chen
4255084913
Merge remote-tracking branch 'upstream/master'
2014-10-09 20:21:11 +08:00
Jeremy Ruston
c538712a2e
Merge pull request #953 from buggyj/tw2parserdoc
...
add install instruction
2014-10-09 13:13:56 +01:00
Jeremy Ruston
f2b8d0b2f9
Merge pull request #955 from pmario/language-de
...
new UI texts, fixing some more typos
2014-10-09 13:13:28 +01:00
Jermolene
3682c26817
Move new journal strings into language directory
2014-10-09 13:09:59 +01:00
Jermolene
36a43c3f41
Ensure new-here tag is quoted
...
Fixes problem with new here on tiddlers with spaces in their title.
Thanks to @simonbaird
Fixes #956
2014-10-09 13:08:11 +01:00
Mario Pietsch
896b7c2585
added date translations. Fix default date formats
2014-10-09 14:00:45 +02:00
Bram Chen
01b515a4f4
Add chinese date format strings
2014-10-09 18:29:14 +08:00
Bram Chen
e8c56e57cc
Merge remote-tracking branch 'upstream/master'
2014-10-09 18:01:26 +08:00
Jermolene
c6951ee912
Make date format strings be translateable
...
Note for translators: I’m planning to release 5.1.3 later today.
Fixes #954
2014-10-09 10:33:08 +01:00
Mario Pietsch
8b1d6d235b
new UI texts, fixing some more typos
2014-10-09 10:56:27 +02:00
Bram Chen
9075495cc8
Revert to simple tooltip for newhere button for chinese translations
2014-10-09 16:33:46 +08:00
Bram Chen
be3239ecc0
Merge remote-tracking branch 'upstream/master'
2014-10-09 16:32:12 +08:00
Jermolene
e34b4f18e5
Improve new here button
2014-10-09 09:31:26 +01:00
Jermolene
90997020e7
Revert to simple tooltip for newhere button
...
At present we can’t arrange for the hint to be wikified when it’s used
as the button tooltip.
2014-10-09 08:44:23 +01:00
buggyj
18877f9237
add install instruction
2014-10-09 08:21:00 +02:00
Bram Chen
e5f20d1a9c
Update chinese translations
...
* Add "new here" button
* Add "new journal" button
* Add default title of new tiddler
2014-10-09 13:54:47 +08:00
Bram Chen
b486846a74
Merge remote-tracking branch 'upstream/master'
2014-10-09 09:27:50 +08:00
Jermolene
70984aa39f
Add "new here" button
...
This is a basic “new here” tiddler toolbar button that just creates a
new tiddler tagged with the title of the current tiddler.
@pmario is there anything else required?
2014-10-08 22:02:32 +01:00
Jermolene
c322dc82c3
Simplify new journal button
2014-10-08 20:11:54 +01:00
Jermolene
b53074a0cc
Update "Introduction to Filters" docs
2014-10-08 19:02:54 +01:00
Jermolene
d778a90eb0
Make new journal title and tags be configurable
2014-10-08 18:35:25 +01:00
Jermolene
e872f17842
Add a new journal page toolbar button
...
Spot the easter egg with the toolbar button…
Fixes #336
2014-10-08 17:46:34 +01:00
Jermolene
0dcf54c3b5
Add support for action widgets
...
This is part of the groundwork for fixing #336
2014-10-08 17:45:26 +01:00
Jermolene
3b69b7b6e8
Coding style tweak
2014-10-08 14:07:48 +01:00
fghhfg
a361ab0608
Update Searching.tid
2014-10-08 16:21:09 +08:00
Bram Chen
96d1981dcc
Update chinese translations
...
* Add confirmation for clearing password
2014-10-08 09:21:54 +08:00
Jermolene
a604afe871
Fix list in "Filters" tiddler
...
Mentioned by @Evolena in #922
2014-10-07 22:33:06 +01:00
Jermolene
dc9981322a
Increase size of search cancel button
2014-10-07 22:11:43 +01:00
Jermolene
ff23a84d28
Docs tweaks
2014-10-07 21:44:54 +01:00
Jeremy Ruston
bbc1d18e25
Merge pull request #949 from fghhfg/patch-8
...
Update Learning.tid
2014-10-07 21:41:17 +01:00
fghhfg
b3c3442024
Update Learning.tid
2014-10-08 04:21:13 +08:00
Jermolene
b3dcd7d625
Fix tiddler title background colour for sticky titles
2014-10-07 20:41:22 +01:00
Jermolene
70c8659948
Update release note
2014-10-07 15:50:46 +01:00
Jermolene
ef1d531091
Add confirmation for clearing password
...
Fixes #925
2014-10-07 14:35:42 +01:00
Jermolene
a0460c391b
Fix problem with recent zoomin changes
2014-10-07 14:07:55 +01:00
Jermolene
09b6540998
Update history for tm-home message
2014-10-07 14:07:41 +01:00
Jeremy Ruston
c475302663
Merge pull request #940 from fghhfg/patch-1
...
Simplify upgrading instructions
2014-10-07 13:26:30 +01:00
Jermolene
dd829d9140
Docs tweaks
2014-10-07 13:16:24 +01:00
Jermolene
cda495d692
Doc tweaks
2014-10-07 13:16:04 +01:00
Jeremy Ruston
e108799791
Merge pull request #942 from fghhfg/patch-3
...
add how to install plugin
2014-10-07 13:03:55 +01:00
Jermolene
811e92c0eb
Docs update
2014-10-07 13:02:43 +01:00
Jeremy Ruston
766ec38487
Merge pull request #944 from fghhfg/patch-5
...
more clear "How to sign the CLA"
2014-10-07 13:00:58 +01:00
Jeremy Ruston
002b07d096
Merge pull request #945 from fghhfg/patch-6
...
add a example
2014-10-07 09:57:34 +01:00
Jeremy Ruston
68b7212150
Merge pull request #946 from fghhfg/patch-7
...
add some way to invoke macro
2014-10-07 09:46:29 +01:00
Jeremy Ruston
65504d5d41
Merge pull request #928 from TheDiveO/filter-operators-addsufprefix
...
addprefix and addsuffix filter operators
2014-10-07 09:44:31 +01:00
Jermolene
548776e828
Add KaTeX static build
2014-10-06 21:20:28 +01:00
Jermolene
63c174d7ed
Update KaTeX wrapper to support operation under Node.js
...
Now we can generate static HTML containing mathematical typesetting
2014-10-06 21:20:19 +01:00
Jermolene
cbe2a53d6a
Extend fakedom for KaTeX on Node.js
...
To make KaTeX work on the server we need to add support for the style
attribute and for setting the textContent of an element.
2014-10-06 21:10:35 +01:00
TheDiveO
f6f9c74fe9
added documentation tiddlers for addprefix and addsuffix; updated
...
documentation tiddlers for prefix, suffix, removeprefix, removesuffix to
reference the new addprefix and addsuffix filter operators.
2014-10-06 21:49:54 +02:00
fghhfg
651ed60987
add some way to invoke macro
2014-10-07 02:28:40 +08:00
fghhfg
f2e97eeb25
add a example
2014-10-07 00:38:12 +08:00
fghhfg
0d7209ff2f
more clear "How to sign the CLA"
2014-10-06 23:38:48 +08:00
Jeremy Ruston
3630a2191e
Merge pull request #943 from fghhfg/patch-4
...
CLA signature from @fghhfg
2014-10-06 16:21:36 +01:00
fghhfg
a2ddf6c4a0
i'm not sure what i'm doing...
2014-10-06 23:19:16 +08:00
fghhfg
e6d59ece6f
add how to install plugin
2014-10-06 22:36:02 +08:00
Jermolene
b7bbcfa056
Prompt twice when setting password
...
Fixes #364
2014-10-06 10:22:09 +01:00
Jermolene
0c8e538077
Add support for custom password prompts
2014-10-06 10:02:34 +01:00
Jermolene
67db9d57a2
Boot prefix should preserve $tw in the browser
...
This change allows raw markup tiddlers to preload configuration values
into the `$tw` global
2014-10-06 10:02:20 +01:00
fghhfg
61acea7e8d
make simpler
2014-10-06 16:32:23 +08:00
Jermolene
5dd6ebff05
Fix problem with zoomin storyview and hidden sidebar
...
Fixes #933
2014-10-06 09:18:29 +01:00
Andrey Yankin
2b236ceed3
Merge pull request #2 from Jermolene/master
...
Following the origin
2014-10-05 21:00:16 +04:00
Jeremy Ruston
c126294ae5
Merge pull request #924 from andrey013/ru-RU
...
Russian translation
2014-10-05 16:35:47 +01:00
Jermolene
3048b79a45
Update button widget docs
...
Fixes #927
2014-10-05 16:33:05 +01:00
Jeremy Ruston
b9ed7e52c2
Merge pull request #929 from Eucaly/update-dev-doc
...
update JavaScript Macros reference link to dev document
2014-10-05 16:25:55 +01:00
Jermolene
cc576b052e
Fix "each" filter operator with missing tiddlers
...
Fixes #930
2014-10-05 16:25:01 +01:00
Jermolene
535b695167
Docs edit
2014-10-05 16:18:56 +01:00
Jeremy Ruston
4d732c5733
Merge pull request #931 from gernert/patch-2
...
Update Lists in WikiText.tid
2014-10-05 16:06:39 +01:00
Jeremy Ruston
02d37dcfcc
Merge pull request #934 from pmario/fix-untagged-pill-css
...
tc-untagged-label doesn't work, because button.tc-tag-label is more specific
2014-10-05 16:00:10 +01:00
Jeremy Ruston
cf6efa7ee5
Merge pull request #935 from Eucaly/variables
...
add WidgetVariable documentation
2014-10-05 15:59:32 +01:00
Jermolene
15905f3b7a
Correct fix for #282
...
Thanks @pmario and @andrey013
2014-10-05 12:44:06 +01:00
Andrey Yankin
1c5c899096
dragger, dropdown, untagged pill, static alert
2014-10-04 23:38:09 +04:00
Andrey Yankin
e624f52374
Russian palette colours not finished
2014-10-04 23:38:09 +04:00
Andrey Yankin
46749d5f46
Russian fields
2014-10-04 23:38:09 +04:00
Andrey Yankin
cf6c8e23fb
Russian ModuleTypes
2014-10-04 23:38:09 +04:00
Andrey Yankin
90ac097f38
svg
2014-10-04 23:38:09 +04:00
Andrey Yankin
e14d151273
types
2014-10-04 23:38:09 +04:00
Andrey Yankin
443dae39ba
move fields translation to docs folder
2014-10-04 23:38:09 +04:00
Andrey Yankin
2188ecb91d
Upgrader Russian translation
2014-10-04 23:38:09 +04:00
Andrey Yankin
3fd52fab0c
LoadedModules incomplete translation
2014-10-04 23:38:09 +04:00
Andrey Yankin
a81375b432
small fix
2014-10-04 23:38:09 +04:00
Andrey Yankin
9a5c7a063c
Date format
2014-10-04 23:38:09 +04:00
Andrey Yankin
352c3189da
Russian control panel
2014-10-04 23:38:09 +04:00
Andrey Yankin
40cc1fcf5e
misc
2014-10-04 23:38:09 +04:00
Andrey Yankin
ad71a102c2
Sign the CLA
2014-10-04 23:38:09 +04:00
Andrey Yankin
b311409924
edit form, filters, getting started, importer, search and info form russian translation
2014-10-04 23:38:09 +04:00
Andrey Yankin
65ba441e81
Russian sidebar
2014-10-04 23:38:09 +04:00
Andrey Yankin
10e7e53a10
Russian buttons
2014-10-04 23:38:09 +04:00
Andrey Yankin
9add946484
Russian flag
2014-10-04 23:38:09 +04:00
Andrey Yankin
fb799a57ff
Start russian translation
2014-10-04 23:38:08 +04:00
Andrey Yankin
25cf30b946
Merge pull request #1 from Jermolene/master
...
Fix Firefox toolbar jump
2014-10-04 23:25:48 +04:00
Jermolene
3ca8d7b6cc
Fix Firefox toolbar jump
...
Fixes #282
2014-10-04 12:17:47 +01:00
Eucaly
52a2d5ade2
update WidgetVariable documentation
2014-10-03 07:15:06 +08:00
Eucaly
d9ccac21d0
add WidgetVariable documentation
2014-10-02 23:02:48 +08:00
Mario Pietsch
f85b07e70b
tc-untagged-label because button.tc-tag-label is more specific and also defines the background color. ... weak design
2014-10-02 15:41:40 +02:00
Markqz
6071f3d385
Create How to apply custom style classes by tag
2014-10-01 13:06:44 -08:00
gernert
e343ccc458
Update Lists in WikiText.tid
...
An extra example with numbers as first level
2014-10-01 19:54:34 +02:00
Eucaly
3acb5de407
update JavaScript Macros reference link to dev document
2014-10-01 18:36:04 +08:00
TheDiveO
05280f09d7
Added new filter operator for adding prefixes and suffixes to titles; these new filter operators are useful in contexts where only a filter expression is allowed and where macro processing isn't allowed. The filters complement the existing remove suffix and prefix filter operators. (So much for the "filter" in filter operator.)
2014-09-30 23:01:32 +02:00
Jermolene
459133cc57
Remove unused file watching code from filesystemadaptor
...
This code was contributed by @natecain and added in #176 . It was almost
immediately disabled because of problems in the field.
I’m removing the code now to simplify the adaptor in advance of some
planned refactoring.
2014-09-28 23:46:55 +01:00
Jeremy Ruston
860a7070a9
Merge pull request #920 from xcazin/list-links
...
Tweak of the list-links macro in order to display caption fields if present
2014-09-28 20:33:30 +01:00
Xavier Cazin
c26bd4c5a8
Tweak of the list-links macro in order to display caption fields if present
2014-09-28 21:11:58 +02:00
Jermolene
6626da9b3b
Update tabs macro documentation
2014-09-28 12:25:27 +01:00
Jermolene
e51c4fcb92
Adjust list macro docs
2014-09-28 09:58:27 +01:00
Jeremy Ruston
e028b87ce8
Merge pull request #918 from pmario/fr-coremacro-classes
...
Like the tabs macro, the list macro should get a possibility to add a class parameter
2014-09-28 09:56:40 +01:00
Jermolene
7ccf43d3ca
Preparing for 5.1.3
2014-09-28 09:56:17 +01:00
Mario Pietsch
1f7a4e3336
fix docs, typo
2014-09-28 10:42:15 +02:00
Mario Pietsch
59f04ffd31
add class parameter to list-links macro
2014-09-28 10:32:54 +02:00
Mario Pietsch
32fcd2e21b
Merge branch 'master' of https://github.com/Jermolene/TiddlyWiki5
2014-09-28 10:20:32 +02:00
Jermolene
1a9f042c25
Version number update for 5.1.2
2014-09-27 17:34:27 +01:00
Jermolene
d9bdc89dfd
Update test for transclusion recursion detection
2014-09-27 17:30:13 +01:00
Jermolene
eaf41f3f18
Docs updates
2014-09-27 17:27:39 +01:00
Jermolene
46f6dd02f8
Update release note
2014-09-27 17:25:29 +01:00
Jermolene
1c8d62c3aa
Link to couchdb adaptor
...
@wshallum feel free to send pull requests for this tiddler to reflect
future updates to the adaptor.
2014-09-27 17:02:36 +01:00
Jermolene
42abef6fbf
Adjust untagged divider styling
...
Further fixes for #913
2014-09-27 16:56:59 +01:00
Jermolene
18a2b48b3b
Docs adjustments
2014-09-27 11:56:36 +01:00
Mario Pietsch
10040f51e1
Merge branch 'master' of https://github.com/Jermolene/TiddlyWiki5
2014-09-27 12:55:47 +02:00
Jeremy Ruston
81fc8ef570
Merge pull request #909 from gernert/patch-2
...
Update TableOfContentsMacro.tid
2014-09-27 11:53:38 +01:00
Jeremy Ruston
f8f3d0fb9b
Merge pull request #908 from pmario/de-AT-DE-korrektor
...
fixing typos + german macro docs
2014-09-27 11:39:52 +01:00
Jermolene
23c2d90ee8
Added error handling to upload saver
...
A further fix for #251
2014-09-27 10:47:31 +01:00
Jermolene
115245a632
Improve storyview error detection
...
Fixes #912
2014-09-27 10:34:59 +01:00
Jeremy Ruston
9dff0c4b12
Merge pull request #914 from TheDiveO/master
...
Avoid runtime errors in presence of broken plugin tiddlers
2014-09-27 10:15:32 +01:00
Jermolene
27728f397c
Adjust tab positioning
...
Avoiding an unsightly gap on Firefox and Chrome. Sadly Safari needs the
margin-bottom to be set to `-3px` to achieve the same effect. I think
that that is because the browsers have some differences in their
intrinsic button styles that are not being properly normalised.
2014-09-27 10:13:36 +01:00
Jermolene
580e046e7d
Separate tags pills from untagged pill with whitespace
...
Instead of using an `<hr>`. Fixes #913
2014-09-27 10:12:43 +01:00
TheDiveO
b1fb0a2a07
fix for broken plugin tiddlers that do not contain a tiddlers field;
...
avoids runtime errors upstream when accessing subtiddlers inside a
(broken) tiddler and when using the plugintiddlers filter operator.
2014-09-26 22:33:47 +02:00
Mario Pietsch
f604a0ac8e
be polite
2014-09-26 09:21:39 +02:00
Mario Pietsch
a4b9032d9c
Merge branch 'master' of https://github.com/Jermolene/TiddlyWiki5
2014-09-26 09:04:10 +02:00
Mario Pietsch
beb360d992
Merge branch 'de-AT-DE-korrektor' of github.com:pmario/TiddlyWiki5
2014-09-26 09:02:43 +02:00
gernert
8d48e194cf
Update TableOfContentsMacro.tid
...
Seen the many questions in the group, the TableOfContentsMacro is a hot item but a bit difficult to understand.
I thought a graphical representation with the real tags for the examples might help.
2014-09-25 10:23:03 +02:00
Mario Pietsch
0799c06b1b
more docs. ChrisK attribution
2014-09-24 16:28:31 +00:00
Jermolene
eacb9e53eb
Delete syncer tiddlerInfo when tiddlers are deleted
2014-09-24 16:21:59 +02:00
Jermolene
e2046ce4ff
Treat HTTP 201 response code as success
2014-09-24 16:19:23 +02:00
Jermolene
c9f692d671
Add documentation for "fields" filter operator
...
Fixes #898
2014-09-24 13:57:23 +02:00
Jermolene
88199ffd62
Update lists in wikitext docs
...
Thanks @Skeeve
2014-09-24 13:23:40 +02:00
Jermolene
a159b5baf3
Add tiddlerInfo to the syncadaptor saveTiddler method
2014-09-24 13:15:16 +02:00
Jeremy Ruston
8a0309a4bd
Merge pull request #899 from simonbaird/master
...
Fix list macro typo in tw5 Plugins.tid
2014-09-24 12:43:03 +02:00
Jermolene
f8e11da0fc
Update lists in wikitext docs
...
Include workaround for multi-line list entries.
2014-09-24 12:41:12 +02:00
Jermolene
6b3646a025
Update history of TiddlyWiki
2014-09-24 12:08:16 +02:00
Jermolene
b3df07ae3e
Error handling for KaTeX plugin
2014-09-24 11:50:49 +02:00
Jermolene
61af1f9379
Add error formatting for transclusion recursion errors
2014-09-24 11:50:38 +02:00
Mario Pietsch
4264fe66ca
some fixes. many new doc tiddlers
2014-09-23 22:50:02 +00:00
Simon Baird
6bc2e18cbd
Fix list macro typo in tw5 Plugins.tid
2014-09-23 23:59:12 +10:00
Mario Pietsch
aaaed439f7
typos found by ChrisK
2014-09-22 19:26:00 +00:00
Jeremy Ruston
143d4c1ae4
Merge pull request #895 from Evolena/patch-1
...
Correct a typo in doc
2014-09-22 13:47:01 +01:00
Jeremy Ruston
ccce478b3a
Merge pull request #896 from Evolena/patch-2
...
Sign CLA
2014-09-22 13:46:56 +01:00
Evolena
113d8efb80
Sign CLA
2014-09-22 14:36:16 +02:00
Evolena
f0e638ea62
Correct a typo in doc
2014-09-22 14:04:05 +02:00
Jermolene
972f91182d
More preparation for 5.1.2
2014-09-22 12:24:05 +01:00
Jermolene
49f0989db8
Prepare for 5.1.2
2014-09-22 12:23:04 +01:00
Jermolene
b73006a5e9
Version number update for 5.1.1
2014-09-22 12:08:37 +01:00
Jermolene
22bc2dd9d7
Update KaTeX plugin docs
2014-09-22 12:06:49 +01:00
Jermolene
3088d50e87
Update release note for 5.1.1
2014-09-22 12:04:18 +01:00
Jeremy Ruston
3dfc569c00
Merge pull request #894 from pmario/de-AT-DE-korrektor
...
some more german typos
2014-09-22 11:54:15 +01:00
Jermolene
b7ce56e3ce
Release note update for 5.1.1
2014-09-22 11:53:47 +01:00
Mario Pietsch
9059ea5211
some more german typos
2014-09-22 10:49:24 +00:00
Jeremy Ruston
4ebccbe468
Merge pull request #854 from buggyj/tw2parserdocerr
...
corrected doc error
2014-09-22 11:44:13 +01:00
Jeremy Ruston
32d55cf072
Merge pull request #890 from TheDiveO/master
...
Minor: fix plugin name ThirdFlow
2014-09-22 11:43:51 +01:00
Jeremy Ruston
5139c82f53
Merge pull request #889 from pmario/fix-encryption-button-consistency
...
make encryption button text more consistent
2014-09-22 11:43:25 +01:00
Jermolene
6ea18cb61a
Readme update
2014-09-22 11:43:07 +01:00
Jermolene
13290692de
Update docs for select widget
...
How’s this @danielo515?
2014-09-22 10:42:41 +01:00
Jermolene
1007ec2ad6
Sort order for TOC on tw5.com
2014-09-22 10:42:23 +01:00
Jermolene
f00c4c164b
Add dev docs to readme
2014-09-22 10:42:12 +01:00
Jermolene
d0deacbdc4
Include word "Version" in ribbon on tw5.com
2014-09-22 10:42:02 +01:00
Jermolene
f81b0a6fa9
Add plugins to TOC on tw5.com
2014-09-22 10:41:34 +01:00
Jermolene
3a43de2272
Updates to KaTeX plugin
2014-09-22 10:41:12 +01:00
Jermolene
96b7d0eeba
First pass at KaTeX plugin
...
Finally fixes #458 thanks to the KaTeX plugin from Khan Academy
2014-09-21 23:03:07 +01:00
TheDiveO
378e687a42
fix plugin name ThirdFlow
...
the icon may be slightly misleading but it's not the Third Wave and instead the Third Flow.
2014-09-21 18:49:06 +02:00
Mario Pietsch
14179c9734
make encryption button text more consistent
2014-09-21 13:48:33 +02:00
Jermolene
d047ccdc84
Remove support for deprecated $:/tags/stylesheet tag
2014-09-21 11:26:11 +01:00
Jermolene
62edd1e8a3
Remove support for deprecated "title" attribute on button widget
2014-09-21 11:25:43 +01:00
Jermolene
d4617ffbe4
Preparing for 5.1.1
2014-09-21 11:22:54 +01:00
Jermolene
3dc99e9605
Adjust links in dev docs
...
Whoops….
2014-09-21 11:15:27 +01:00
Jeremy Ruston
e536516e81
Merge pull request #888 from pmario/fix-german-typos
...
Fix german typos
2014-09-21 10:05:10 +01:00
Mario Pietsch
e95c87f068
checked all language files for typos
2014-09-21 09:58:54 +02:00
Mario Pietsch
f4f263ea69
fix some ugly typos
2014-09-21 09:22:20 +02:00
Jermolene
e0a00f360a
Version number update for 5.1.0
2014-09-20 17:55:26 +01:00
Jeremy Ruston
658a0e5f0a
Merge pull request #885 from BramChen/master
...
Update chinese translations
2014-09-20 17:00:55 +01:00
Bram Chen
962a865347
Update chinese translations
...
* correct help text of setfield command
2014-09-20 23:42:58 +08:00
Jeremy Ruston
0ea7f7589b
Merge pull request #884 from xcazin/fr-FR
...
Fr fr
2014-09-20 16:37:17 +01:00
Jermolene
ff0b2afef7
Features docs update
2014-09-20 16:37:05 +01:00
Xavier Cazin
bde00aa455
Translation of the tiddler that links to the fr-FR edition (starting with the localised empty.html only)
2014-09-20 17:16:43 +02:00
Xavier Cazin
1c86a8e0bb
fr-FR correction on setfield documentation
2014-09-20 17:05:10 +02:00
Jermolene
2ee82a289a
Developer docs update
2014-09-20 15:37:14 +01:00
Jermolene
15e9e21d2a
Readme updates for Node.js
2014-09-20 15:06:33 +01:00
Jermolene
ebb911f934
Docs updates
2014-09-20 13:49:34 +01:00
Jermolene
dac046c133
Add TWGuides to resource listing
2014-09-20 13:48:30 +01:00
Jeremy Ruston
ab1def7d94
Merge pull request #883 from pmario/fix-default-language-setting
...
Fix default language setting
2014-09-20 13:18:11 +01:00
Jermolene
c900c71f8a
More docs updates
2014-09-20 13:17:18 +01:00
Jermolene
15c527802b
More docs cleanup
2014-09-20 12:46:31 +01:00
Mario Pietsch
055dda9ee2
some language default settings fixed. remove a lot of now unnecessary tilde signs
2014-09-20 13:35:07 +02:00
Jermolene
d3ad7a52c1
Correct setfield documentation
2014-09-20 12:10:50 +01:00
Jermolene
5e5c416ead
Remove links to non-existent German and Chinese translations
2014-09-20 12:10:33 +01:00
Mario Pietsch
9c71756738
fix bld-languages.sh
2014-09-20 10:21:27 +02:00
Jermolene
50a7b20cf0
Fix URL typos
2014-09-20 08:29:05 +01:00
Jeremy Ruston
6fbef65ded
Merge pull request #879 from BramChen/master
...
chinese translations for documents of Chinese Edtions
2014-09-20 08:24:59 +01:00
Jeremy Ruston
1075770bf7
Merge pull request #880 from simonbaird/master
...
Update link to d3 demo in HelloThere content
2014-09-20 08:23:45 +01:00
Simon Baird
dfd35e8c12
Update link to d3 demo in HelloThere content
2014-09-20 16:25:41 +10:00
Bram Chen
59bbf3d56b
Convert chinese characters
2014-09-20 12:51:43 +08:00
Bram Chen
15a28bc0a5
chinese translations for documents of Chinese Edtions
2014-09-20 12:34:24 +08:00
Jeremy Ruston
390a6759ea
Merge pull request #878 from xcazin/fr-FR
...
fr-FR translation of the warning about saving settings only used on tidd...
2014-09-19 23:03:47 +01:00
Jermolene
1a75fd0e21
Include translated editions
...
@pmario and @bramchen and @xcazin
Maybe the titles of these tiddlers should be translated into their
respective languages? And possibly the text too?
2014-09-19 23:03:30 +01:00
Jermolene
9eb2db791f
Docs updates
2014-09-19 23:02:03 +01:00
Xavier Cazin
889f8c43e2
fr-FR translation of the warning about saving settings only used on tiddlyspot-like servers
2014-09-19 23:34:51 +02:00
Jermolene
c5d0ae4c9b
Fix problem with preview state storage in import listing
...
Fixes #877
2014-09-19 21:56:37 +01:00
Jermolene
3c58426ff2
Docs updates
2014-09-19 21:56:07 +01:00
Jermolene
06cc8ed5ef
Lots of documentation cleanup
2014-09-19 17:18:25 +01:00
Jermolene
e40f4ff630
Fix typo
...
Thanks @pmario
2014-09-19 15:55:18 +01:00
Jermolene
3ad4febc15
Clarify select widget docs
2014-09-19 15:28:08 +01:00
Mario Pietsch
8610a9c064
get default language files back
2014-09-19 16:23:21 +02:00
Mario Pietsch
cda1e916bf
fixing many obsolete ~ signs. modify setfield.js to get consistent language settings
2014-09-19 16:16:19 +02:00
Jermolene
9e6dab06cc
Fix problem with Maruku Markdown metadata
...
Fixes #855 - albeit it’s a bit of a kluge. The internal format returned
by `markdown.toHTMLTree()` isn’t sufficiently well documented for me to
be confident that the new code is resilient to all the things that
might be returned.
2014-09-19 15:03:52 +01:00
Jermolene
7ed7aba8d0
Docs updates
2014-09-19 15:02:40 +01:00
Jermolene
e3fee7d56d
Contributor updates
2014-09-19 14:43:04 +01:00
Jermolene
449d12ff60
Remove obsolete resource
...
Sadly, the plugin hasn’t worked for some time and is no longer under
active development.
2014-09-19 14:41:42 +01:00
Jermolene
0a3c399305
Clarify table documentation
2014-09-19 12:45:49 +01:00
Jeremy Ruston
f2791f7d5d
Merge pull request #870 from gernert/patch-5
...
Update UpgradeWizard.tid
2014-09-19 12:42:25 +01:00
Jeremy Ruston
1297c6e820
Merge pull request #869 from gernert/patch-4
...
Update GettingStarted.tid
2014-09-19 12:42:19 +01:00
Jeremy Ruston
b82806d33d
Merge pull request #872 from gernert/patch-7
...
Update cla-individual.md
2014-09-19 12:41:42 +01:00
gernert
d39760fa21
Update cla-individual.md
2014-09-19 13:40:33 +02:00
Jeremy Ruston
b22c682ab3
Merge pull request #866 from malgam/patch-1
...
Add module types listing to ModuleType tiddler
2014-09-19 12:33:09 +01:00
Jeremy Ruston
1c018183db
Merge pull request #868 from malgam/patch-2
...
Update cla-individual.md
2014-09-19 12:31:16 +01:00
gernert
401d18e0d7
Update UpgradeWizard.tid
...
Just added a note.
2014-09-19 12:55:35 +02:00
gernert
f9ff7c44ea
Update GettingStarted.tid
...
As discussed with pull request #863
2014-09-19 12:41:54 +02:00
Jermolene
b239b3d623
Remove curly braces from qualified identifiers
...
Fixes #860
2014-09-19 11:33:49 +01:00
Jeremy Ruston
5dbcc5f601
Rename Einführung.tid to Einfuhrung.tid
...
Remove critical diacritical
2014-09-19 11:24:07 +01:00
malgam
9aee46a8f0
Update cla-individual.md
2014-09-19 20:09:18 +10:00
Jeremy Ruston
4ff9346f3a
Merge pull request #865 from pmario/de-AT-server
...
More german documentation
2014-09-19 11:03:09 +01:00
Jeremy Ruston
b0d83301ab
Merge pull request #867 from BramChen/master
...
Update chinese translations
2014-09-19 10:53:13 +01:00
Bram Chen
026ddb7081
Add chinese translations for Saving/TiddlySpot/Description
2014-09-19 16:57:40 +08:00
Jermolene
02601a02fc
Add note clarifying purpose of TiddlySpot settings
...
We’ve had a couple of cases where users have assumed that the “backup”
setting applies to ordinary, local saves
2014-09-19 09:13:18 +01:00
malgam
b31300c59c
No "Internals" tab in control panel
...
ModuleType.tid refers to a non-existing "Internals" tab in the control panel for a list of module types used in this wiki. I propose listing these directly in this tiddler as an alternative.
2014-09-19 14:57:01 +10:00
Jermolene
cbb16df47a
Clean up images for /dev
...
We’ve now got a couple of duplicates which will be sorted out later
2014-09-18 20:16:06 +01:00
Jermolene
ca211094a2
Use spaces in dev tiddler filenames instead of %20
2014-09-18 20:00:34 +01:00
Jermolene
ac08f5f4a7
Remove split.recipe from dev edition
...
Left over from ginsu
2014-09-18 20:00:02 +01:00
Jermolene
de02d5ce9d
Update contributors list
2014-09-18 19:59:39 +01:00
Jermolene
88a9115042
Preparing for 5.0.19
2014-09-18 19:27:29 +01:00
Mario Pietsch
3ad8742db8
new TOC, empty default language fix, static banner added,
2014-09-18 15:00:08 +02:00
Mario Pietsch
4199fc9683
insert static banner
2014-09-18 11:31:51 +02:00
Mario Pietsch
194f525478
first run for fullbuid compatibility
2014-09-18 10:56:44 +02:00
Jermolene
ba7422b407
Version number update for 5.0.18-beta
2014-09-17 22:20:43 +01:00
Jermolene
22006f995e
Update modified times for new release
2014-09-17 22:12:22 +01:00
Jermolene
ea17e339f3
Release note update
2014-09-17 22:07:48 +01:00
Jermolene
c63488d155
Docs updates for new file locations
2014-09-17 20:01:00 +01:00
Jermolene
c20e6b9d1e
Docs update
2014-09-17 19:49:24 +01:00
Jermolene
4f0ce1a835
Introduce fullbld.sh script
...
This new batch file builds everything needed for a release of
TiddlyWiki.
This is the main part of fixing #823 .
2014-09-17 19:49:20 +01:00
Jermolene
28b2ac4fb3
Split de-AT-DE edition into de-AT and de-DE editions
...
It doesn’t really make sense for an edition to be in two languages
2014-09-17 19:47:43 +01:00
Jermolene
a9f46525a0
Stop classifying digits as lower case letters in wikilinks
...
Fixes #842
2014-09-17 12:55:39 +01:00
Jermolene
8cc236b4dc
Fix problem with sorting missing tiddlers
...
Fixes #858
2014-09-17 12:17:43 +01:00
Jermolene
1b0eec143e
Refine preliminary list macro
...
@pmario: I’ve taken your suggestion and made the HTML element type(s)
be macro parameters.
2014-09-17 12:13:24 +01:00
Jermolene
813bd2fe1d
More docs updates
2014-09-17 08:36:39 +01:00
Jermolene
2d6c6fd208
Add "Briefcase" by Roma Hicks to resources
2014-09-16 21:42:10 +01:00
Jermolene
6d9bd4df8a
Add support for markdown file extensions
...
Fixes #856
By the way @cjp are there any other Markdown extensions in common use?
2014-09-16 20:06:23 +01:00
Jermolene
2b78d5a977
Refactor handling of .htm and .hta file extensions
...
Taking advantage of the recent change to be able to pass an array of
file extensions to `$tw.utils.registerFileType()`
2014-09-16 20:05:13 +01:00
Jeremy Ruston
60541c5a6e
Merge pull request #853 from buggyj/csserror
...
corrected class name
2014-09-16 16:15:50 +01:00
Jermolene
cbfc9fcc56
More docs updates
2014-09-16 15:19:52 +01:00
buggyj
3472721dbc
corrected doc error
2014-09-16 16:10:25 +02:00
buggyj
57693efce7
corrected class name
2014-09-16 16:03:00 +02:00
Jeremy Ruston
67a90cdfad
Merge pull request #851 from buggyj/nodedocerror
...
missing wikilinks on doc
2014-09-16 13:33:26 +01:00
Jermolene
d859fc2f58
Docs updates
2014-09-16 13:32:52 +01:00
buggyj
d27e157cec
missing wikilinks on doc
2014-09-16 14:24:53 +02:00
Jermolene
40567c2f88
Drop the count column from the tag manager
...
It increases the horizontal width of the table, and isn’t particularly
useful.
2014-09-16 13:14:06 +01:00
Jeremy Ruston
ef28630d9a
Merge pull request #850 from buggyj/bjtools
...
changed my site's location
2014-09-16 10:17:56 +01:00
buggyj
4e0b5faa4c
change site url
2014-09-16 10:14:07 +02:00
Jeremy Ruston
ea6493d70b
Merge pull request #813 from BramChen/master
...
Correct more vocabularies for simplified chinese
2014-09-14 20:44:24 +01:00
Jeremy Ruston
cd713bf0c2
Merge pull request #835 from Eucaly/master
...
Update Eucalys Tiddly World.tid
2014-09-14 20:44:15 +01:00
Jeremy Ruston
600b49efd1
Merge pull request #843 from Eucaly/patch-2
...
Update cla-individual.md
2014-09-14 20:44:02 +01:00
Jermolene
73a4747d05
Handle jpeg file extension correctly
...
Fixes #844
2014-09-14 20:35:01 +01:00
Jermolene
6ceec9fb44
Adjust permissions of serve.cmd
2014-09-14 19:37:59 +01:00
Eucaly
1e573f7a8d
Update cla-individual.md
...
sorry, updated as @Eucaly
2014-09-14 22:03:12 +08:00
Jermolene
199aa1c2e7
Docs correction
...
Fixes #836
2014-09-14 10:57:20 +01:00
Jeremy Ruston
4373f48731
Merge pull request #837 from pmario/de-AT-DE-server
...
All WikiText tiddlers translated
2014-09-14 10:55:57 +01:00
Jermolene
775482a242
Fix problem with radio widget and missing tiddlers
...
Fixes #840
2014-09-14 10:55:34 +01:00
Jermolene
2571f534aa
Fix problem with dragging partially selected link
...
Fixes #841
2014-09-14 10:50:53 +01:00
Jermolene
320e0af68c
Update dev github ribbon
2014-09-14 10:33:29 +01:00
Jeremy Ruston
b0a4bd5479
Merge pull request #839 from Eucaly/patch-1
...
Update cla-individual.md
2014-09-14 10:32:57 +01:00
Eucaly
4ed990b701
Update cla-individual.md
...
signed Eucaly J
2014-09-14 05:50:25 +08:00
Mario Pietsch
0d175338c3
fix some typos
2014-09-13 21:45:00 +02:00
Mario Pietsch
a4db140dc8
removed german umlauts
2014-09-13 21:39:41 +02:00
Mario Pietsch
a0a8a457f4
All WikiText tiddlers translated
2014-09-13 21:27:26 +02:00
Eucaly
7105a3a353
Update Eucalys Tiddly World.tid
2014-09-13 20:35:47 +08:00
Jermolene
c4123ba374
Extend timeline macro to allow a subfilter
2014-09-13 11:06:50 +01:00
Jermolene
c44a3bb4a4
Preparing for 5.0.18-beta
2014-09-13 11:02:53 +01:00
Bram Chen
c743f15457
Merge remote-tracking branch 'upstream/master'
2014-09-13 02:14:06 +08:00
Jermolene
c7e3e36564
Version number update for 5.0.17-beta
2014-09-12 17:52:58 +01:00
Jermolene
a00d21a6b3
Missed acknowledgement for @buggyj
2014-09-12 17:50:33 +01:00
Jermolene
c0e420051b
Preparing for 5.0.17 release
2014-09-12 17:48:53 +01:00
Jermolene
dd6659d393
Further release note updates
2014-09-12 17:41:24 +01:00
Jermolene
fc11e8cd13
Update ribbon link
...
For the moment we’ll link to the beta releases
2014-09-12 17:39:34 +01:00
Jermolene
af019623e0
Release note update
2014-09-12 17:39:34 +01:00
Jermolene
0903c35f61
Correct dev link
2014-09-12 17:39:34 +01:00
Jermolene
2588f996f1
Update prefixes for dev content
2014-09-12 17:39:34 +01:00
Jeremy Ruston
d65f80efbb
Merge pull request #833 from pmario/new-serve-sh
...
fix missuse of system environment variable
2014-09-12 16:58:05 +01:00
Jermolene
68b19a48f7
Update build scripts for dev edition
2014-09-12 16:55:33 +01:00
Jermolene
9093f04ba3
Docs updates
2014-09-12 16:54:32 +01:00
Jermolene
65f242f857
More docs mangling
2014-09-12 16:46:59 +01:00
Mario Pietsch
1b11e4e949
fix missuse of system environment variable
2014-09-12 17:37:37 +02:00
Jermolene
f187122c35
Lots more docs updates
2014-09-12 16:05:37 +01:00
Jermolene
c713eddbef
Fixed problem with draft tiddlers not counting as dirty
2014-09-12 14:48:39 +01:00
Jermolene
af8c435487
Readme updates
2014-09-12 14:25:12 +01:00
Jermolene
a878f0a5c9
Remove obsolete talkytalky tiddler
2014-09-12 14:24:59 +01:00
Jermolene
2e72162b0c
Phrasing updates
2014-09-12 14:24:06 +01:00
Jeremy Ruston
2d188c2436
Remove illegal character from pathname
2014-09-12 13:30:04 +01:00
Jeremy Ruston
06ef809cf2
Remove illegal character from pathname
2014-09-12 13:29:47 +01:00
Jeremy Ruston
3d4a3a0f54
Merge pull request #832 from pmario/de-AT-DE-server
...
First pass for german editions with basic documentation.
2014-09-12 13:23:04 +01:00
Jeremy Ruston
872e6fc253
Merge pull request #830 from pmario/new-serve-sh
...
New serve sh with some help texts
2014-09-12 13:14:13 +01:00
Jeremy Ruston
c8a131ffd4
Merge pull request #828 from pmario/new-serve-cmd
...
make serve.cmd useful for everyone out of the box.
2014-09-12 13:14:04 +01:00
Jermolene
905c793964
Release note update
2014-09-12 13:13:54 +01:00
Mario Pietsch
22060fc198
remove analytics stuff
2014-09-12 14:09:51 +02:00
Mario Pietsch
1bcada1f4b
use default layout settings
2014-09-12 14:06:49 +02:00
Mario Pietsch
bda349801e
first run with new german edition containing the basic docs in german
2014-09-12 13:52:33 +02:00
Mario Pietsch
fe83d289f4
make empty strings visible
2014-09-12 12:47:09 +02:00
Mario Pietsch
c430f9d2c3
more docs
2014-09-12 12:42:20 +02:00
Mario Pietsch
5351102990
better help text, more params to be the same with serve.sh. typo fixes
2014-09-12 12:31:03 +02:00
Mario Pietsch
9ca6b6bfb8
prepare for PR
2014-09-12 11:50:55 +02:00
Mario Pietsch
fcf65433ea
a bit more docs
2014-09-12 11:46:49 +02:00
Mario Pietsch
45f7b6cc45
svere.sh first take, to make it more flexible
2014-09-12 01:55:07 +02:00
Jermolene
54eb85218b
Clarify "Editions"
...
@giffmex - sorry I should have been clearer. We’ll only call things an
“Edition” if it is distributed via tiddlywiki.com. So for instance your
NoteStormTW should be listed under “Resources” until it’s been bought
into tiddlywiki.com.
We’ve already had the situation where people who have built editions
(and indeed plugins) haven’t been able to keep them up to date with the
latest versions of the core. So I want to draw a clear distinction
between those things that are part of the main distribution, and have
some guarantee of long term support and those things that are
distributed independently.
2014-09-11 20:15:06 +01:00
Jermolene
a464256e18
Add mechanisms to the reference docs
2014-09-11 20:12:25 +01:00
Jermolene
022eba9c75
Organising community content
2014-09-11 19:36:30 +01:00
Jermolene
8b0c471736
Update history of tiddlywiki essay
2014-09-11 15:52:58 +01:00
Jermolene
bc985553ed
More reference docs mangling
2014-09-11 15:52:47 +01:00
Mario Pietsch
ed4597f12d
remove debug info
2014-09-11 11:08:48 +02:00
Mario Pietsch
05dfddeb04
make serve.cmd useful for everyone and use sensible defaults, so it works for different editions out of the box
2014-09-11 10:22:54 +02:00
Jermolene
184b9817b4
Update wikitext documentation
2014-09-11 09:15:58 +01:00
Jermolene
e20ef97c27
More mangling of reference docs
2014-09-11 00:06:19 +01:00
Jermolene
def4aca200
Update filter docs
2014-09-10 23:42:13 +01:00
Jermolene
f72bb66f6a
Update macro reference docs
2014-09-10 23:42:06 +01:00
Jermolene
a95bb2b6ec
More docs updates
2014-09-10 22:35:02 +01:00
Jermolene
f781b2b8d0
More documentation mangling
2014-09-10 22:09:44 +01:00
Jermolene
0ee4d21d0d
Docs updates
2014-09-10 21:56:54 +01:00
Jermolene
b7ce2a8ab6
Experiment with slightly bigger body text
...
Trying to improve readability
2014-09-10 21:56:43 +01:00
Jermolene
9adc30f69f
Fix bugs with selective expandable toc macro
2014-09-10 21:55:11 +01:00
Jermolene
ccd916ca7c
Add "multiple" attribute to browse widget
...
And default to non-multiple upload; that’s enough to enable the ability
to take photos/videos directly on iOS
2014-09-10 21:54:52 +01:00
Jermolene
50be85287b
Extend serve.sh/cmd to pass host address
...
Useful to be able to do `./bin/serve.sh "" "" 0.0.0.0` to listen on all
network adaptors
2014-09-10 21:34:13 +01:00
Jermolene
08d588fb08
Adjust some content directories
2014-09-10 19:36:54 +01:00
Jermolene
673ede5b3c
Remove the obsolete Docs tiddler
2014-09-10 19:36:42 +01:00
Jermolene
ffb26956b5
Start cleaning up tw5.com docs
...
By moving the individual files into subfolders
2014-09-10 18:35:52 +01:00
Jermolene
411ed76c70
Use tw5.com to generate readmes, not /dev
2014-09-10 18:28:52 +01:00
Jermolene
6a952387d2
Update regexp filter docs with square brackets example
2014-09-10 18:25:38 +01:00
Jermolene
5d0c32b454
Add custom palette for the dev edition
2014-09-10 17:28:08 +01:00
Jermolene
58ff092d4a
Clean up modifier/creator fields of dev content
...
The house style is not to have individual authorship credits on
tiddlywiki.com documentation
2014-09-10 17:27:55 +01:00
Jeremy Ruston
9840b8783b
Merge pull request #826 from buggyj/viewtemplate
...
change filter to stop automatic view transclusion if field 'hide-me' is ...
2014-09-10 17:18:18 +01:00
buggyj
ab944bbf02
change filter to stop automatic view transclusion if field 'hide-body' has the value 'yes'
2014-09-10 18:00:29 +02:00
Jermolene
5e81684b5b
Remove obsolete macro
2014-09-10 16:53:49 +01:00
Jermolene
c9f9de3e18
Correct folder
2014-09-10 16:53:43 +01:00
Jermolene
1a95ec9ac4
Introduce dev edition
...
Thanks to @cjrk and @cheigele for contributing their developer docs
(which can be found at https://github.com/cjrk/saa-tw ).
By the way, I plan to remove the “creator” and “modifier” fields but
will keep a prominent acknowledgement for your contributions.
2014-09-10 16:53:32 +01:00
Jermolene
faafeca02c
Release note update
2014-09-10 15:02:01 +01:00
Jermolene
e8ae77e738
Fix toc-link tag vs. field
2014-09-10 12:47:34 +01:00
Jermolene
c3eeaeb89f
Add new community links
2014-09-10 11:44:42 +01:00
buggyj
04df2a4a20
change filter to stop automatic view transclusion if field 'hide-me' is defined
2014-09-10 12:37:05 +02:00
Jermolene
b7f638aef3
Change button widget 'title' attribute to 'tooltip'
...
Fixes remainder of #824
2014-09-10 10:25:50 +01:00
Jermolene
7ed1a2ebc7
Ensure that deprecations are clearly marks
...
So that we can easily remove them before we come out of beta.
2014-09-10 09:20:43 +01:00
Jermolene
f6ff0a7f71
Deprecate $:/tags/stylesheet in favour of $:/tags/Stylesheet
...
A warning message appears at the top of the story river if any
`$:/tags/stylesheet` tags are found.
Fixing the first half of #824
2014-09-10 09:13:21 +01:00
Jermolene
d45c417c18
Add deprecation warning for regexp filter operators
2014-09-09 23:05:58 +01:00
Jermolene
418be0fda8
Further corrections to regexp filter docs
...
Thanks @pmario
2014-09-09 22:59:40 +01:00
Jermolene
d56d4b0c65
Docs update
2014-09-09 21:32:11 +01:00
Jermolene
f4fff7a330
Add new "regexp" filter operator
...
Fixes #762
2014-09-09 15:57:41 +01:00
Jermolene
04a5f7f002
Change links for static content used when JS disabled
...
We were linking to tiddlywiki.com/#HelloThere, now we’ll link to
tiddlywiki.com/static/HelloThere.html
2014-09-09 12:13:08 +01:00
Jeremy Ruston
24e7c7fc0f
Merge pull request #822 from giffmex/patch-25
...
Patch 25
2014-09-09 08:55:16 +01:00
Jermolene
df2cf8bf06
Docs update
2014-09-09 08:54:42 +01:00
giffmex
3119254373
Update TiddlyWiki is a community.tid
2014-09-08 16:54:19 -05:00
giffmex
10482d993e
Update Working with TiddlyWiki.tid
2014-09-08 16:52:29 -05:00
giffmex
b84fee6285
Create Sharing tiddlers with others.tid
2014-09-08 16:51:12 -05:00
giffmex
9e56a9a5c1
Update TiddlyWiki standalone.tid
2014-09-08 16:38:38 -05:00
giffmex
1be8ca4a40
Update TiddlyDesktop.tid
2014-09-08 16:37:36 -05:00
giffmex
c9384f6fdf
Update How_to_build_a_TiddlyWiki5_from_individual_tiddlers.tid
2014-09-08 16:36:53 -05:00
giffmex
8b6ae7164b
Update Windows HTA Hack.tid
2014-09-08 16:36:18 -05:00
giffmex
15debf7d6a
Update Using TiddlyWiki for GitHub Pages project documentation.tid
2014-09-08 16:35:46 -05:00
giffmex
3c951476ee
Update Using links to navigate.tid
2014-09-08 16:32:45 -05:00
giffmex
97a4612916
Update TableOfContents.tid
2014-09-08 16:28:19 -05:00
Jeremy Ruston
3014fa0b61
Merge pull request #821 from giffmex/patch-24
...
Patch 24 from @giffmex
2014-09-08 21:29:07 +01:00
giffmex
b8167633ef
Update VersionMacro.tid
2014-09-08 15:04:17 -05:00
giffmex
36b47b962e
Update TimelineMacro.tid
2014-09-08 15:03:59 -05:00
giffmex
15d75dfef5
Update TableOfContentsMacro.tid
2014-09-08 15:03:42 -05:00
giffmex
80179968a1
Update TabsMacro.tid
2014-09-08 15:03:20 -05:00
giffmex
ad0cc031b8
Update QualifyMacro.tid
2014-09-08 15:02:49 -05:00
giffmex
b3b4567fc4
Update MakeDataUriMacro.tid
2014-09-08 15:01:59 -05:00
giffmex
7140ed997e
Update DumpVariablesMacro.tid
2014-09-08 15:01:37 -05:00
giffmex
4b1ccc4171
Update ChangeCountMacro.tid
2014-09-08 15:01:15 -05:00
giffmex
469affa2a5
Update Working with TiddlyWiki.tid
2014-09-08 14:58:42 -05:00
giffmex
7d16691035
Create Using tiddler fields.tid
2014-09-08 14:57:32 -05:00
giffmex
d70182a7f7
Create Creating tabs.tid
2014-09-08 14:56:10 -05:00
giffmex
8e838bb7a5
Create Images in TW.tid
2014-09-08 14:54:42 -05:00
giffmex
9eb542da20
Create TiddlyWiki standalone.tid
2014-09-08 14:52:09 -05:00
giffmex
179cba3425
Update Hosting your TW.tid
2014-09-08 14:50:36 -05:00
giffmex
00b3fd1761
Update Using TiddlyWiki for GitHub Pages project documentation.tid
2014-09-08 14:46:29 -05:00
giffmex
e8e04aa1f9
Update How_to_build_a_TiddlyWiki5_from_individual_tiddlers.tid
2014-09-08 14:45:54 -05:00
giffmex
efd4d2afef
Update Windows HTA Hack.tid
2014-09-08 14:44:12 -05:00
giffmex
3e1a64f99c
Update TiddlyDesktop.tid
2014-09-08 14:43:35 -05:00
giffmex
1e8aeb0d9f
Update Generating Static Sites with TiddlyWiki.tid
2014-09-08 14:42:27 -05:00
giffmex
7d2cb13377
Update Working with TiddlyWiki.tid
2014-09-08 14:41:36 -05:00
giffmex
2c3aa4e723
Update The First Rule of Using TiddlyWiki.tid
2014-09-08 14:41:06 -05:00
giffmex
e04cddced8
Update TiddlyWiki in the Sky for TiddlyWeb.tid
2014-09-08 14:39:27 -05:00
giffmex
8432a9f0fb
Update TiddlyWiki in the Sky for TiddlyWeb.tid
2014-09-08 14:39:13 -05:00
giffmex
22feaa55f2
Update Building TiddlyWikiClassic.tid
2014-09-08 14:37:18 -05:00
giffmex
3dd7c66597
Create OtherTWConfigurations.tid
2014-09-08 14:36:40 -05:00
giffmex
4637119b96
Update TiddlyWiki on Node.js.tid
2014-09-08 14:34:50 -05:00
giffmex
7c561ac191
Update and rename TiddlyWiki configurations.tid to Other TiddlyWiki configurations.tid
2014-09-08 14:33:42 -05:00
giffmex
f818b1c923
Update TableOfContents.tid
2014-09-08 14:33:01 -05:00
giffmex
af169bf434
Update Working with TiddlyWiki.tid
2014-09-08 14:31:17 -05:00
giffmex
c3b5c06c3e
Update Tagging.tid
2014-09-08 14:30:24 -05:00
giffmex
be2dd6e8cb
Create Configure buttons.tid
2014-09-08 14:28:52 -05:00
giffmex
6a2f4092a1
Rename Customise your TiddlyWiki.tid to Customise TiddlyWiki.tid
2014-09-08 14:27:19 -05:00
giffmex
4ea2a1b5e1
Update Customise your TiddlyWiki.tid
2014-09-08 14:26:58 -05:00
giffmex
307ecbdef4
Update Initial customisation.tid
2014-09-08 14:26:00 -05:00
giffmex
a115a8c168
Create Create a CSS.tid
2014-09-08 14:25:19 -05:00
giffmex
6cc8b2d06e
Create Change the storyview.tid
2014-09-08 14:23:35 -05:00
giffmex
8fcaf7c628
Create Change layout SystemTags.tid
2014-09-08 14:22:17 -05:00
giffmex
53b55e6949
Create Change the colour palette.tid
2014-09-08 14:21:04 -05:00
giffmex
20f3e38da3
Create Change the animation speed.tid
2014-09-08 14:19:34 -05:00
giffmex
15a078d0a7
Update TableOfContents.tid
2014-09-08 14:17:51 -05:00
giffmex
bd123b01e0
Update and rename TiddlyWiki configurations and editions.tid to TiddlyWiki configurations.tid
2014-09-08 14:16:52 -05:00
giffmex
a70e928921
Create Bookmarklets.tid
2014-09-08 14:16:01 -05:00
Jermolene
257accb7bf
Missing docs for field mangler messages
2014-09-08 20:14:58 +01:00
giffmex
aadab77a08
Create Editions.tid
2014-09-08 14:13:33 -05:00
Jermolene
d13e23132a
Updated docs for safe mode
2014-09-08 19:52:16 +01:00
Jermolene
ac54fe3326
Disable plugins in safe mode
...
Fixes #820
2014-09-08 19:50:48 +01:00
Jeremy Ruston
210d7fbc23
Merge pull request #819 from giffmex/patch-23
...
Patch 23
2014-09-08 19:42:11 +01:00
giffmex
7c356a300c
Update Working with TiddlyWiki.tid
2014-09-08 13:25:28 -05:00
giffmex
58d05af356
Create Upgrading TW.tid
2014-09-08 13:19:29 -05:00
giffmex
8dceb7206e
Create Importing tiddlers between files.tid
2014-09-08 13:18:09 -05:00
giffmex
7cfe62e566
Create Downloading and saving.tid
2014-09-08 13:16:41 -05:00
giffmex
1fca2792b8
Create Formatting text in TW.tid
2014-09-08 13:15:33 -05:00
giffmex
f1f9db9378
Create Hosting your TW.tid
2014-09-08 13:13:15 -05:00
giffmex
0e03bace94
Create Initial customisation.tid
2014-09-08 13:12:04 -05:00
giffmex
e51d78187f
Update Plugins.tid
2014-09-08 13:09:50 -05:00
giffmex
c8bc314a33
Update Macros.tid
2014-09-08 13:09:18 -05:00
giffmex
219f305fae
Create Filters.tid
2014-09-08 13:08:09 -05:00
giffmex
5ea7cc0f83
Create Widgets.tid
2014-09-08 13:06:50 -05:00
giffmex
5a0a7146b9
Update Groups.tid
2014-09-08 13:02:28 -05:00
giffmex
fdabb5ce4a
Update Forums.tid
2014-09-08 13:01:25 -05:00
giffmex
880fe59c80
Update Wills gTD.tid
2014-09-08 12:59:09 -05:00
Jermolene
0f8e877f73
Correct name for dumpvariables docs
2014-09-08 18:58:58 +01:00
giffmex
d7d2b7a846
Update TiddlyWiki for Scholars.tid
2014-09-08 12:58:50 -05:00
Jermolene
c6c4cf2289
Improve timeline macro
2014-09-08 18:58:48 +01:00
giffmex
8e0a58ddf6
Create User-created editions of TW.tid
2014-09-08 12:58:12 -05:00
giffmex
6b06cbd7b2
Create Tips and tutorials.tid
2014-09-08 12:54:58 -05:00
giffmex
1764300000
Update Articles.tid
2014-09-08 12:52:12 -05:00
giffmex
507e1bbaf7
Update Resources.tid
2014-09-08 12:51:07 -05:00
giffmex
8dd8db86b8
Update Examples.tid
2014-09-08 12:49:08 -05:00
giffmex
57967769f4
Update Improving TiddlyWiki Documentation.tid
2014-09-08 12:45:37 -05:00
giffmex
c8d2af7f2b
Create Create support resources.tid
2014-09-08 12:43:41 -05:00
giffmex
8534171c41
Create Translate TW.tid
2014-09-08 12:38:40 -05:00
giffmex
cead56f92f
Create Report bugs.tid
2014-09-08 12:37:32 -05:00
giffmex
efe562e6a9
Create Develop for TW.tid
2014-09-08 12:34:05 -05:00
giffmex
375549c68c
Create Promote TW.tid
2014-09-08 12:32:43 -05:00
giffmex
1bbe440856
Rename Using links to navigate between tiddlers to Using links to navigate.tid
2014-09-08 12:29:52 -05:00
giffmex
f020ba0e2a
Update Creating, tagging, and editing tiddlers.tid
2014-09-08 12:29:02 -05:00
giffmex
5ef9140463
Update Searching.tid
2014-09-08 12:27:57 -05:00
giffmex
dbbf283673
Rename Navigating between open tiddlers to Navigating between open tiddlers.tid
2014-09-08 12:26:07 -05:00
Jermolene
c1de85838f
Replace snippet/recentchanges with timeline macro
2014-09-08 18:20:34 +01:00
Jeremy Ruston
a599b76b0c
Merge pull request #818 from giffmex/patch-21
...
Patch 21
2014-09-08 18:06:56 +01:00
giffmex
0a481e4b93
Update Creating, tagging, and editing tiddlers.tid
2014-09-08 12:04:55 -05:00
giffmex
051ea8ac82
Update Searching.tid
2014-09-08 12:00:55 -05:00
giffmex
d34968b494
Create TiddlyWiki glossaries.tid
2014-09-08 11:59:02 -05:00
giffmex
c58975e97a
Update and rename TiddlyWiki editions and special uses to TiddlyWiki configurations and editions.tid
2014-09-08 11:57:58 -05:00
giffmex
9221b575ce
Rename Get help and learn more to Get help and learn more.tid
2014-09-08 11:57:01 -05:00
giffmex
b14744c20c
Rename Get involved to Get involved.tid
2014-09-08 11:56:33 -05:00
giffmex
43dcb02a88
Rename Customise your TiddlyWiki to Customise your TiddlyWiki.tid
2014-09-08 11:56:08 -05:00
giffmex
cba737f4ca
Rename Working with TiddlyWiki to Working with TiddlyWiki.tid
2014-09-08 11:55:43 -05:00
giffmex
ea929d445b
Rename TiddlyWiki advanced features to Advanced features.tid
2014-09-08 11:55:22 -05:00
giffmex
20ff91f615
Update Navigating between open tiddlers
2014-09-08 11:54:31 -05:00
giffmex
a875269a56
Update Using links to navigate between tiddlers
2014-09-08 11:54:05 -05:00
giffmex
a41ae54b41
Update and rename Getting started with TiddlyWiki to Working with TiddlyWiki
2014-09-08 11:53:20 -05:00
giffmex
285aa33739
Update TableOfContents.tid
2014-09-08 11:52:13 -05:00
giffmex
32b660d1b9
Update and rename Customize your TiddlyWiki to Customise your TiddlyWiki
2014-09-08 11:51:31 -05:00
giffmex
671f783c9b
Update TiddlyWiki advanced features
2014-09-08 11:50:23 -05:00
giffmex
6fe19d5f42
Update Customize your TiddlyWiki
2014-09-08 11:49:49 -05:00
giffmex
9292a41751
Update Get involved
2014-09-08 11:49:05 -05:00
giffmex
52027e5028
Update Get help and learn more
2014-09-08 11:48:26 -05:00
giffmex
5fba012f6a
Update Get help and learn more
2014-09-08 11:47:54 -05:00
giffmex
2e55a9fae9
Update Examples.tid
2014-09-08 11:46:27 -05:00
giffmex
3d5ad42ac8
Create The history of TiddlyWiki.tid
2014-09-08 11:45:45 -05:00
giffmex
9e8617c56f
Update TableOfContents.tid
2014-09-08 11:42:46 -05:00
giffmex
3f0606990a
Update HelloThere.tid
2014-09-08 11:39:10 -05:00
Jeremy Ruston
bb6ad83cfa
Merge pull request #817 from giffmex/patch-20
...
Patch 20
2014-09-08 17:03:01 +01:00
giffmex
cf5d4998a9
Create Eucalys Tiddly World.tid
...
saw today at the TW Google Group
2014-09-08 10:41:22 -05:00
giffmex
63c109280a
Update PETTIL.tid
...
Is a resource, not an example
2014-09-08 10:36:43 -05:00
giffmex
c41b7806c6
Update TW5 Magick.tid
...
Looked at his sites, he seems to have both tutorials and resources there, thus meriting two tags.
2014-09-08 10:35:33 -05:00
Jermolene
6e9cd59437
Move scripts into bin directory
...
Fixes #807
2014-09-08 16:32:34 +01:00
giffmex
278f58c19e
Update Moongift on TiddlyWiki.tid
2014-09-08 10:31:21 -05:00
giffmex
87449ff156
Update Shining Ark Using TiddlyWiki.tid
2014-09-08 10:30:47 -05:00
giffmex
917ed9752f
Update Install and run TiddlyWiki on a CentOS 6 VPS using Nginx.tid
2014-09-08 10:30:20 -05:00
giffmex
d22ed1d10d
Update Creating a baby journal with TiddlyWiki.tid
2014-09-08 10:29:46 -05:00
giffmex
e395f96ad0
Update Un wiki sur votre BiblioBox avec TiddlyWiki.tid
2014-09-08 10:27:49 -05:00
giffmex
9126fb6afa
Update TiddlyWiki Posts.tid
2014-09-08 10:26:51 -05:00
giffmex
ba0a2f185f
Update TW5 Mall.tid
2014-09-08 10:26:00 -05:00
giffmex
52c6ae8505
Update TW5 Tribal Knowledge.tid
2014-09-08 10:25:06 -05:00
giffmex
3ca4b34c6e
Update TiddlyWiki for Scholars.tid
2014-09-08 10:23:35 -05:00
giffmex
64b60445b8
Update Wills gTD.tid
2014-09-08 10:23:01 -05:00
giffmex
1b4274d7e5
Update and rename johnnotebase.tid to Obadiah.tid
...
1 John has copyrighted material, so I do not want that accessible from TiddlyWiki.html. This Obadiah file shows off more of what I have been able to do with TiddlyWiki recently.
2014-09-08 10:09:29 -05:00
Jeremy Ruston
1c1a5c7252
Merge pull request #816 from giffmex/patch-19
...
Patch 19
2014-09-08 16:01:59 +01:00
giffmex
1a18e361cc
Update tw5.com-styles.tid
...
Aesthetic change: more attractive light blue, and unnecessary borders removed.
2014-09-08 09:54:18 -05:00
giffmex
2cb85e045a
Update Examples.tid
2014-09-08 09:50:30 -05:00
giffmex
63a2eafe5f
Create Using links to navigate between tiddlers
2014-09-08 09:39:52 -05:00
giffmex
1a0b567458
Update HelloThere.tid
2014-09-08 09:31:07 -05:00
giffmex
d7e774562e
Create Navigating between open tiddlers
2014-09-08 09:28:53 -05:00
Jeremy Ruston
ead4e9276a
Merge pull request #815 from giffmex/patch-18
...
Update HelloThere.tid
2014-09-08 15:07:26 +01:00
Jermolene
f16d1832aa
Add dumpvariables macro
2014-09-08 15:06:49 +01:00
giffmex
5cb4e69839
Update HelloThere.tid
...
A little clean up
2014-09-08 06:37:10 -05:00
Bram Chen
d5c6f3cecf
Fix more vocabularies for simplified chinese
2014-09-08 19:21:25 +08:00
Bram Chen
d7b1dd2315
Merge remote-tracking branch 'upstream/master'
2014-09-08 19:17:41 +08:00
Jeremy Ruston
7f9c7b441f
Merge pull request #814 from pmario/de-DE
...
update german translations - including 2014-09-08
2014-09-08 11:08:11 +01:00
Mario Pietsch
95229674a1
update german translations - including 2014-09-08
2014-09-08 10:07:48 +02:00
Jermolene
756e05504b
Fix stylesheet block/inline mode
...
The problem was that stylesheets were being transcluded in inline mode
(rather than block mode), which meant that triple backticks were not
being interpreted as block mode markup, but rather as a series of
single backticks.
2014-09-08 08:46:04 +01:00
Bram Chen
4749718ba0
Fix more vocabularies for simplified chinese
2014-09-07 21:23:21 +08:00
Jeremy Ruston
5ce4c4ab7b
Merge pull request #812 from BramChen/master
...
Fix some vocabularies for simplified chinese
2014-09-07 14:04:02 +01:00
Jermolene
6a508e580d
Docs updates
2014-09-07 14:03:38 +01:00
Bram Chen
3aaa71a513
Fix some vocabularies for simplified chinese
2014-09-06 18:41:31 +08:00
Jeremy Ruston
6cc442e7b5
Merge pull request #811 from BramChen/master
...
Update chinese language files
2014-09-06 07:44:00 +01:00
Bram Chen
efad7ba896
Update chinese translations for tabs in control panel
...
add Info tab
add autosave option to Setting tab
2014-09-06 08:54:25 +08:00
Bram Chen
16e59ab78b
Update chinese help text for server command
2014-09-06 08:45:58 +08:00
Jeremy Ruston
4888d12099
Merge pull request #810 from xcazin/fr-FR
...
Catching up on recent modifications in translatable tiddlers
2014-09-05 22:24:13 +01:00
Xavier Cazin
1f2f5d3ed8
fr-FR translation for details on using an empty username and passord with the server command
2014-09-05 22:19:21 +02:00
Xavier Cazin
2a15e7d473
fr-FR translation of recent modifications in ControlPanel strings
2014-09-05 22:19:20 +02:00
Xavier Cazin
0ce99cdf49
fr-FR translation of the help tiddler for the "makelibrary" command
2014-09-05 22:19:20 +02:00
Xavier Cazin
477d1da1ce
fr-FR translation of strings for blocked tiddlers during importation
2014-09-05 22:19:20 +02:00
Jeremy Ruston
60ef76612b
Merge pull request #809 from giffmex/patch-17
...
@giffmes cla-individual.md signature
2014-09-05 15:59:48 +01:00
giffmex
ed36658291
Update cla-individual.md
2014-09-05 09:44:16 -05:00
Jeremy Ruston
328e068ea8
Merge pull request #803 from giffmex/patch-2
...
Patch 2
2014-09-05 15:22:56 +01:00
Jeremy Ruston
74afa06394
Merge pull request #805 from giffmex/patch-15
...
Delete What happened to the other TiddlyWiki?
2014-09-05 15:01:31 +01:00
Jeremy Ruston
e1d4e2739c
Merge pull request #806 from giffmex/patch-16
...
Delete What happened to the other TiddlyWiki?
2014-09-05 15:01:09 +01:00
Jermolene
48bb73f036
Switch edited field to modified
2014-09-05 15:00:27 +01:00
Jeremy Ruston
6e577a02d8
Merge pull request #791 from giffmex/patch-6
...
Patch 6
2014-09-05 14:58:51 +01:00
giffmex
f36e58a315
Delete What happened to the other TiddlyWiki?
2014-09-05 07:25:46 -05:00
giffmex
b4e0a6de1e
Delete What happened to the other TiddlyWiki?
2014-09-05 07:24:32 -05:00
Jermolene
1e5ca780a1
Tweak doc improvement banner
2014-09-05 10:06:46 +01:00
Jermolene
ba3f800235
Extend toc macro so that links can be disabled
...
This allows table of contents to contain heading entries that do not
function as links, like the one in the sidebar.
2014-09-05 09:49:10 +01:00
Jermolene
7e93c93785
Start to empty out the control panel tools tab
...
The control panel isn’t the right place for tools; it’s a place for
settings and internal configuration.
Once again apologies to the translators for wiping out your hard work!
2014-09-05 09:28:49 +01:00
Jermolene
ede244f0a4
Move SaveWikiButtonTemplate to correct folder
2014-09-05 09:20:10 +01:00
Jermolene
f90c649d2a
Improve wording of autosave setting
2014-09-05 09:19:58 +01:00
giffmex
9826562e8f
Create Tagging.tid
...
To replace TiddlerTags, but I will leave that tiddler for now, since there probably should be a separate tiddler tagged 'definition' that defines what tags are.
2014-09-04 17:59:44 -05:00
giffmex
a976b312b3
Update Articles.tid
2014-09-04 17:02:04 -05:00
giffmex
94a885fe2d
Create Documentation progress.tid
2014-09-04 16:57:42 -05:00
giffmex
cf1ae23c28
Delete What happened to the other TiddlyWiki?
2014-09-04 16:54:55 -05:00
Jeremy Ruston
3ee587b6a0
Merge pull request #798 from giffmex/patch-4
...
Create Discover TiddlyWiki.tid
2014-09-04 20:21:38 +01:00
Jeremy Ruston
23157ffac4
Merge pull request #799 from giffmex/patch-11
...
Patch 11
2014-09-04 20:21:19 +01:00
Jeremy Ruston
e114a1df24
Merge pull request #800 from giffmex/patch-12
...
Update tw5.com-styles.tid
2014-09-04 20:20:56 +01:00
Jeremy Ruston
924c685215
Merge pull request #801 from giffmex/patch-13
...
Update Searching.tid
2014-09-04 20:20:37 +01:00
Jeremy Ruston
296c9b8c31
Merge pull request #802 from giffmex/patch-14
...
Create Creating, tagging, and editing tiddlers.tid
2014-09-04 20:19:55 +01:00
giffmex
3713b17955
Create Creating, tagging, and editing tiddlers.tid
...
last one for today...
2014-09-04 14:05:23 -05:00
giffmex
47012fa61b
Update Searching.tid
2014-09-04 13:26:02 -05:00
giffmex
b88ead37b0
Update tw5.com-styles.tid
2014-09-04 13:05:17 -05:00
giffmex
7460fab46e
Create TiddlyWiki is a tool.tid
2014-09-04 12:37:07 -05:00
giffmex
c15ba77be0
Create TiddlyWiki is a philosophy.tid
2014-09-04 12:31:53 -05:00
giffmex
7bd8d6f02b
Create TiddlyWiki is a community.tid
2014-09-04 12:28:45 -05:00
giffmex
47ae6be590
Create TiddlyWiki is a toolbox.tid
2014-09-04 12:24:39 -05:00
Jeremy Ruston
f461b1ab91
Merge pull request #775 from buggyj/tw2typeerror
...
remove code causing conversion of text/x-tiddlywiki type tiddlers to tex...
2014-09-04 18:24:02 +01:00
Jeremy Ruston
914cc6e8d7
Merge pull request #783 from BramChen/master
...
Add chinese help text for makelibrary command
2014-09-04 18:13:52 +01:00
Jeremy Ruston
5a5fe75289
Merge pull request #782 from pmario/edit-tags-dom
...
removes the p-tags for the tag edit dropdown in tiddler edit mode
2014-09-04 18:13:21 +01:00
Jeremy Ruston
465b3ac1de
Merge pull request #784 from pmario/fix-type-selector
...
Fix type selector
2014-09-04 18:13:02 +01:00
giffmex
48d4c615d6
Create Discover TiddlyWiki.tid
2014-09-04 12:12:41 -05:00
Jeremy Ruston
f64e25cb44
Merge pull request #793 from giffmex/patch-7
...
Update What happened to the other TiddlyWiki.tid
2014-09-04 18:11:40 +01:00
Jeremy Ruston
28b4e0951e
Merge pull request #794 from giffmex/patch-8
...
Update Ten reasons to switch to TiddlyWiki.tid
2014-09-04 18:11:15 +01:00
Jeremy Ruston
22ec703f5f
Merge pull request #795 from giffmex/patch-9
...
Update Some of the things you can do with TiddlyWiki.tid
2014-09-04 18:10:59 +01:00
Jeremy Ruston
656a0070ef
Merge pull request #796 from giffmex/patch-1
...
Update HelloThere.tid
2014-09-04 18:09:19 +01:00
giffmex
b2ceee3be6
Update HelloThere.tid
2014-09-04 12:08:10 -05:00
giffmex
19caee517e
Update Some of the things you can do with TiddlyWiki.tid
2014-09-04 11:51:13 -05:00
Jermolene
abe9a0dbc2
First pass at a documentation style guide
...
Needs more detail.
2014-09-04 17:51:08 +01:00
giffmex
cbab2b6245
Update Ten reasons to switch to TiddlyWiki.tid
2014-09-04 11:49:03 -05:00
giffmex
3f07e6b220
Update What happened to the other TiddlyWiki.tid
...
tw to tc
2014-09-04 11:43:27 -05:00
Jermolene
aa6e317435
Fix file extensions for new giffmex tiddlers
...
@giffmex - tiddler files need the `.tid` extension
2014-09-04 17:37:28 +01:00
Jeremy Ruston
a7e45c221f
Merge pull request #787 from giffmex/patch-1
...
Update HelloThere.tid
2014-09-04 17:19:25 +01:00
Jeremy Ruston
b0ddb54e09
Merge pull request #788 from giffmex/patch-2
...
Create ome of the things you can do with TiddlyWiki
2014-09-04 17:18:55 +01:00
Jeremy Ruston
341db4e4d2
Merge pull request #789 from giffmex/patch-4
...
Create Ten reasons to switch to TiddlyWiki
2014-09-04 17:17:52 +01:00
Jeremy Ruston
0f5dcfe1a9
Merge pull request #790 from giffmex/patch-5
...
Create What happened to the other TiddlyWiki?
2014-09-04 17:17:29 +01:00
giffmex
d1fe83cd4c
Create TiddlyWiki advanced features
2014-09-04 10:32:57 -05:00
giffmex
f738972f12
Create Get involved
2014-09-04 10:28:29 -05:00
giffmex
4bbfef72b2
Create Get help and learn more
2014-09-04 10:25:03 -05:00
giffmex
f44a538bcf
Create TiddlyWiki editions and special uses
2014-09-04 10:21:22 -05:00
giffmex
4ccc0fc262
Create Customize your TiddlyWiki
2014-09-04 10:18:41 -05:00
giffmex
d2f0cd6321
Create Getting started with TiddlyWiki
2014-09-04 10:15:26 -05:00
giffmex
9b657bc1d6
Create TableOfContentsInProcess
...
I am proposing to leave the present TableOfContents as it is while this new toc is being built and refined. Then when it is sufficiently advanced, we can rename it TableOfContents and delete the other one.
2014-09-04 10:09:08 -05:00
giffmex
8961e2ba19
Create What happened to the other TiddlyWiki?
2014-09-04 09:57:10 -05:00
giffmex
66fd1ed1ea
Create Ten reasons to switch to TiddlyWiki
...
Vanilla stylesheet would need a CSS of doublespacedlist for this to display correctly:
.doublespacedlist li {padding-bottom:.5em;padding-top:.5em;}
I would add it myself, but I don't want to put it in the wrong place and mess up your system
2014-09-04 09:43:48 -05:00
giffmex
5910afae4f
Create ome of the things you can do with TiddlyWiki
...
Hey everyone: need some more examples or demos to complete this: of TW5 to create a blog, to write a book, to inventory stuff. Also, if the timeline demo could be upgraded, at least to a more recent version, the link could be to the demo tiddler specifically rather than to the file in general.
2014-09-04 09:37:25 -05:00
giffmex
474d2ddb72
Create What happened to the other TiddlyWiki?
2014-09-04 08:52:35 -05:00
giffmex
e9519d7ad5
Update HelloThere.tid
2014-09-04 08:42:03 -05:00
Jermolene
169a38164f
Update server command docs
2014-09-04 10:51:54 +01:00
Jermolene
94c9f303b1
Sort control panel translations
2014-09-04 10:14:09 +01:00
Jermolene
efd3d1b089
Remove obsolete translations
...
@BramChen, @xcazin, @pmario: My apologies for the disruption to the
control panel translations. I’m going to continue refactoring for a
while longer, and I’m afraid there are likely to be further changes
2014-09-04 10:12:32 +01:00
Jermolene
42f1a04cd7
Sort control panel en-GB strings
2014-09-04 10:12:17 +01:00
Jermolene
47c53f924f
Move control panel autosave settings
2014-09-04 09:58:50 +01:00
Jermolene
6f4af4fc27
Reorganise control panel tabs
2014-09-04 09:58:14 +01:00
Mario Pietsch
487c4a40ab
cover the typeselector in a div-element, because the p-element has unwanted margins
2014-09-03 15:26:40 +02:00
Bram Chen
8ae0c583b0
Add chinese help text for makelibrary command
2014-09-03 21:25:59 +08:00
Mario Pietsch
542788bfeb
These changes remove the p-tags from the edit-tags dropdown in tiddler edit mode. ... The changes also take effect to the tiddler-type-chooser popup, since it uses the same css classes.
2014-09-03 15:08:51 +02:00
Jermolene
bb97bc11fd
Move control panel sub-tab tiddlers into same folder
2014-09-03 13:09:25 +01:00
Mario Pietsch
7f75d651d4
Merge branch 'master' of https://github.com/Jermolene/TiddlyWiki5 into edit-tags-dom
2014-09-03 14:08:32 +02:00
Jermolene
a375d2d9b6
Remove "advanced" and "appearance" from control panel tab titles
...
For example, the previous title for the tiddler containing the editor
types tab of control panel was
“$:/core/ui/ControlPanel/Advanced/EditorTypes”. We’re now removing the
“Advanced” portion, so that we don’t have to rename tiddlers like this
if we move them around between tabs
2014-09-03 12:46:22 +01:00
Jermolene
e7358c9b31
Missing docs for makelibrary command
2014-09-03 10:05:00 +01:00
Jermolene
f87ce7e98a
Fix tiddler keyboard shortcuts
...
Maddeningly, I broke them in 5.0.16-beta…
2014-09-02 22:09:28 +01:00
Jermolene
e34e83db0b
Fix typo
2014-09-02 22:04:18 +01:00
Jermolene
f8ae0bf3e6
Filter operator "removesuffix" docs correction
2014-09-02 22:04:11 +01:00
Jermolene
2428111daf
Fix typo
2014-09-02 22:03:52 +01:00
Jermolene
c1f80ab05d
Preparation for 5.0.17
2014-09-02 22:03:42 +01:00
Jermolene
dd21697390
Version number update for 5.0.16-beta
2014-09-02 14:02:10 +01:00
Jermolene
fd6c1f8cda
Preparing for 5.0.16
2014-09-02 13:42:32 +01:00
Jermolene
e5aac3d6f2
Corrections of classes for tw2parser
...
@buggyj I assume these classes should be converted to the new format?
2014-09-02 11:16:59 +01:00
Jermolene
7b1a9d84a1
Missed corrections of tm-auto-save-wiki message
2014-09-02 11:16:06 +01:00
Jermolene
fc6e0e0311
Release note update
2014-09-02 11:01:10 +01:00
Jeremy Ruston
42181f9b45
Merge pull request #673 from buggyj/tw2parser2
...
Tw2parser2
2014-09-02 10:49:56 +01:00
Jermolene
dd188e71f7
Release note update
2014-09-02 10:41:56 +01:00
Jermolene
b25351e834
Extend keyboard handling
...
To cope with the Mac’s “meta” key (ie command/⌘) preparatory to
trapping command-S
2014-09-02 10:41:48 +01:00
buggyj
e8b85a450d
restricted classic transclusion to type text/x-tiddlywiki
2014-09-02 08:02:21 +02:00
buggyj
7b8de4670c
remove server fields and calendar macro
2014-09-01 23:29:25 +02:00
Jermolene
44228ed9f7
Fix indentation of selective expandable TOC
...
Fixing #768
2014-09-01 21:27:28 +01:00
Mario Pietsch
2690d2cb7c
Merge branch 'master' of https://github.com/Jermolene/TiddlyWiki5
2014-09-01 22:26:55 +02:00
Jermolene
2f6d16b0fa
Improve comments and coding style
2014-09-01 20:39:08 +01:00
Jermolene
ca1de2be99
Revert 6641d5c93f
2014-09-01 20:38:53 +01:00
Jermolene
b68192d3cb
Add @pmario's latest video
...
Part of addressing #770
2014-09-01 17:02:37 +01:00
Jeremy Ruston
61de0f41ed
Merge pull request #776 from gernert/patch-1
...
Update TiddlerTags.tid
2014-09-01 15:13:09 +01:00
Jeremy Ruston
d58ab188cc
Merge pull request #778 from gernert/patch-3
...
Update SystemTags.tid
2014-09-01 14:23:39 +01:00
Jermolene
3d647ec011
Docs Tweaks
2014-09-01 14:23:12 +01:00
gernert
bc75bd8559
Update SystemTags.tid
...
The list of system tags was not complete.
I took the info from my guide 'Customization of TW5', http://tw5custom.tiddlyspot.com/#Adding%20parts%20by%20tagging:%5B%5BAdding%20parts%20by%20tagging%5D%5D
2014-09-01 15:08:54 +02:00
Jeremy Ruston
34b25a635b
Merge pull request #777 from gernert/patch-2
...
Update ContentType.tid
2014-09-01 14:01:13 +01:00
buggyj
2299a9f705
changed capitalization
2014-09-01 14:16:46 +02:00
gernert
d93696cf10
Update ContentType.tid
...
typo
Could not find a list of types in the Docs
2014-09-01 14:07:30 +02:00
buggyj
c956d9c1dc
update to head
2014-09-01 13:00:54 +02:00
gernert
c2d5870fac
Update TiddlerTags.tid
...
typo
2014-09-01 12:20:02 +02:00
buggyj
5b7dbfc5fb
remove code causing conversion of text/x-tiddlywiki type tiddlers to text/vnd.tiddlywiki
2014-09-01 11:48:40 +02:00
buggyj
3cc702faa0
additions for the classicparserdemo edition
2014-09-01 11:11:44 +02:00
buggyj
053929db3f
remove upgrade nagging
2014-08-31 17:51:03 +02:00
buggyj
59244fba91
remove newlines around macros
2014-08-31 17:48:14 +02:00
Mario Pietsch
3788571802
Merge branch 'master' of https://github.com/Jermolene/TiddlyWiki5
2014-08-31 17:39:48 +02:00
Jeremy Ruston
beed7de4ca
Merge pull request #774 from gernert/patch-1
...
Update PluginMechanism.tid
2014-08-31 14:55:12 +01:00
gernert
522d945275
Update PluginMechanism.tid
...
Without a name field the entry in the minithemeswitcher will be blank.
2014-08-31 15:52:46 +02:00
Jermolene
94538394d4
Improve embed and iframe styling
...
These styles are intended for viewing PDF tiddlers directly
2014-08-31 14:44:04 +01:00
Jermolene
f9a8ba46be
Fix OXTWIG video
2014-08-31 14:43:20 +01:00
Jermolene
0e5d70f8ba
Add @pmario's video tutorials
2014-08-31 14:43:14 +01:00
Jermolene
d2fd85eb12
Missed class "body" conversion to "tc-tiddler-body"
2014-08-31 14:37:37 +01:00
Jermolene
559afcffd9
Add classes to the toc macro output
2014-08-31 14:05:43 +01:00
Mario Pietsch
ad045a28db
Merge branch 'master' of https://github.com/pmario/TiddlyWiki5
2014-08-31 14:03:26 +02:00
Jeremy Ruston
2bebde6081
Merge pull request #773 from BramChen/master
...
Typos in documentation
2014-08-31 10:08:02 +01:00
Bram Chen
60e95beed2
Typos in documentation
2014-08-31 10:40:08 +08:00
Bram Chen
61fca88df5
Merge remote-tracking branch 'upstream/master'
2014-08-31 09:23:34 +08:00
Mario Pietsch
b498726561
Merge branch 'master' of https://github.com/Jermolene/TiddlyWiki5
2014-08-31 00:12:16 +02:00
Jermolene
05dfa1e1e3
Coding style tweak
2014-08-30 23:05:04 +01:00
Jeremy Ruston
032520fbe1
Merge pull request #769 from buggyj/xlink2
...
added support for xlink: attribute prefix
2014-08-30 23:04:14 +01:00
Mario Pietsch
d7b40b235d
Merge branch 'master' of https://github.com/Jermolene/TiddlyWiki5
2014-08-31 00:03:07 +02:00
Jeremy Ruston
90bd2a9757
Merge pull request #772 from pmario/patch-1
...
Update Improving TiddlyWiki Documentation.tid
2014-08-30 22:57:03 +01:00
Jermolene
5a538b2703
Improve GitHub explanation
...
Trying to address #770
2014-08-30 22:53:39 +01:00
Mario Pietsch
659592bce1
Update Improving TiddlyWiki Documentation.tid
2014-08-30 22:35:47 +02:00
Jermolene
9c74afdd1a
JSHint obeisance for plugins folder
...
Also add a jshintignore file to skip the various imported modules
2014-08-30 21:32:55 +01:00
Mario Pietsch
0cf74b2da1
Update Improving TiddlyWiki Documentation.tid
2014-08-30 22:32:53 +02:00
Jermolene
3a67fdb768
Obeisance to JSHint for core modules
...
There are still some warnings about making functions in a loop, but
I’ll fix those as a separate pull request because the fixes are more
than typographic errors.
2014-08-30 20:44:26 +01:00
Mario Pietsch
2136d1de5a
Merge branch 'master' of https://github.com/Jermolene/TiddlyWiki5
2014-08-30 21:21:30 +02:00
buggyj
710759daed
added support for xlink: attribute prefix
2014-08-30 17:25:04 +02:00
buggyj
322c04da53
remove incorrect version info
2014-08-30 16:46:47 +02:00
Jermolene
2a3e54b064
Release note update
2014-08-30 15:09:36 +01:00
Jermolene
9a57bfdc9c
Release note updates
2014-08-30 14:44:05 +01:00
Jermolene
2bc185e1d4
Docs for auto save wiki message
2014-08-30 14:11:37 +01:00
Jermolene
6641d5c93f
Adjust sync filter to avoid bug with deletions
...
The `[is[tiddler]]` filter rejects deleted tiddlers, meaning that
deletions were not triggering the dirty state correctly.
2014-08-30 14:04:21 +01:00
Jermolene
44c466d6e7
Docs update
2014-08-29 09:58:37 +01:00
Jermolene
2952afe7af
Fix for autosave
...
Re-introduces the “tw-auto-save-wiki” message. The previous approach of
automatically triggering autosave whenever a tiddler changed meant that
changing configuration changes in control panel was triggering an
autosave. Using the explicit message gives us better control of the
situations in which we’ll autosave.
Now we solve the earlier problem of there being outstanding tiddler
change events at the time that we process the “tw-auto-save-wiki” by
deferring the autosave until the outstanding change event comes in.
2014-08-29 09:58:30 +01:00
Jermolene
48312272ad
Extend 'all' filter operator to select all source tiddlers
2014-08-29 09:54:31 +01:00
Bram Chen
c3fee7a3b0
Merge remote-tracking branch 'upstream/master'
2014-08-29 08:48:35 +08:00
Jermolene
1b964873c4
Rename tiddler files for message documentation
2014-08-28 22:35:00 +01:00
Jermolene
89fd5379dd
Change "tw-*" variables to "tv-*"
2014-08-28 22:28:02 +01:00
Jermolene
26f3a27e22
More classname tweaks
...
Thanks @pmario
2014-08-28 22:22:40 +01:00
Mario Pietsch
7c8f50c898
Merge branch 'master' of https://github.com/Jermolene/TiddlyWiki5
2014-08-28 23:05:48 +02:00
Jermolene
2f69ea362c
Rename "tw-*" messages to "tm-*"
2014-08-28 21:43:44 +01:00
Jermolene
db40ac85c2
Exclude upload name from the saver dirty tracking
...
Avoiding a bug whereby partially typed upload names trigger an abortive
save.
2014-08-28 20:55:58 +01:00
Jermolene
88c9c0c3ee
Hide toolbar buttons from static renderings
2014-08-28 20:21:25 +01:00
Jermolene
43aeb47fc3
Skip whitespace from start of inline macro definitions
...
Now `\define mymacro() yes` will not have a leading space in the
variable value
2014-08-28 20:21:09 +01:00
Jermolene
d945492b8b
Fixed text widget crashing when text is missing
...
`<$text text=<<missingVariable>>/>` was crashing
2014-08-28 20:20:38 +01:00
Jermolene
2ae574d5ca
Final round of "tw-" -> "tc-" conversions
...
Part of #764
2014-08-28 19:53:02 +01:00
Jermolene
f223310d34
Yet more "tw-*" -> "tc-*"
...
Part of #764
2014-08-28 19:41:29 +01:00
Jermolene
995f0e7f29
More conversion of "tw-*" classes to "tc-*"
...
Part of #764
2014-08-28 19:13:21 +01:00
Jermolene
a1ec52c5cb
Rename more "tw-*" classes to "tc-*"
...
Part of #764
2014-08-28 19:08:31 +01:00
Jermolene
f8b9471549
Rename more tw- classes to tc-
...
Part of #764
2014-08-28 19:00:57 +01:00
Jermolene
8b10994cfe
Rename more "tw-*" classes to "tc-*"
...
Part of #764
2014-08-28 18:59:35 +01:00
Jermolene
1814d502a4
Convert more "tw-*" classes to "tc-*"
2014-08-28 18:47:21 +01:00
Jermolene
787481a804
Change more "tw-*" classes to "tc-*"
...
Part of #764
2014-08-28 18:21:08 +01:00
Bram Chen
c15f7726ba
Merge remote-tracking branch 'upstream/master'
2014-08-29 01:16:55 +08:00
Jermolene
4a1c530da7
Rename "tw-tiddlylink-*" classes to "tc-tiddlylink-*"
...
Part of #764
2014-08-28 18:13:46 +01:00
buggyj
fc1cb94051
for testing
...
Merge branch 'v5015' into tw2parser2
2014-08-28 19:06:54 +02:00
buggyj
c8d9ceaf2d
added image handling to tw2parser
2014-08-28 18:49:40 +02:00
Jermolene
a7dfa954d1
Rename "tw-image-*" classes to "tc-image-*"
...
Part of #764
2014-08-28 17:47:43 +01:00
Jermolene
53368ba5fa
Rename "tw-error-*" classes to "tc-error-*"
...
Part of #764
2014-08-28 17:39:32 +01:00
Jermolene
35a3224dba
Rename "tw-password-wrapper" class to "tc-password-wrapper"
...
Part of #764
2014-08-28 17:38:53 +01:00
Jermolene
54591100b5
Rename "modal-*" classes to "tc-modal-*"
...
Part of #764
2014-08-28 17:34:02 +01:00
Jermolene
9173e944df
Rename class "btn-big-green" to "tc-btn-big-green"
...
Part of #764
2014-08-28 17:30:12 +01:00
Jermolene
b374e10cc6
Rename "btn-icon" class "tc-btn-icon"
...
Part of #764
2014-08-28 17:29:23 +01:00
Jermolene
d0cbd34bf9
Rename "btn-invisible" class to "tc-btn-invisible"
...
Part of #764
2014-08-28 17:28:32 +01:00
Bram Chen
1ee07ec770
Merge remote-tracking branch 'upstream/master'
2014-08-29 00:28:27 +08:00
Jermolene
e939a00be5
Rename "sidebar-header" class to "tc-sidebar-header"
...
Part of #764
2014-08-28 17:27:03 +01:00
Jermolene
87cb520343
Rename "story-river" class to "tc-story-river"
...
Part of #764
2014-08-28 17:26:21 +01:00
Jermolene
90f0fc22ff
Rename "title" class to "tc-title"
...
Part of #764
2014-08-28 17:25:07 +01:00
Jermolene
63d7fd8457
Rename "titlebar" class to "tc-titlebar"
...
Part of #764
2014-08-28 17:21:40 +01:00
Jermolene
d8c3691bd1
Removed unneeded CSS classes
...
Part of #764
2014-08-28 17:17:50 +01:00
Jermolene
df8758e38f
Release note update
2014-08-28 15:40:00 +01:00
Jermolene
112a9a95d9
Make prefix/suffix operators be case sensitive
...
I think it was a mistake for them to be case insensitive in the first
place.
https://groups.google.com/d/topic/tiddlywiki/dzpFsRCC5D8/discussion
If case insensitivity is required then regexps can be used instead.
2014-08-28 15:27:10 +01:00
Jermolene
748caecca0
Fix tiddler info default tab
...
Mistakenly omitted from b437f1b450
2014-08-28 15:16:54 +01:00
Jermolene
ad40223d6b
Revert incorrect refreshing of tiddler widget
...
Mistakenly, I had changed the tiddler widget to refresh itself when the
value of the target tiddler changed. This is not in fact necessary; it
only needs to refresh itself when the identity of the target tiddler
changes.
Fixes #744
2014-08-28 15:16:14 +01:00
Jermolene
2e3221c4e0
Fix for removesuffic operator
2014-08-28 14:48:03 +01:00
Jermolene
dcf4e93a32
Add suffix and removesuffix filters
2014-08-28 14:46:00 +01:00
Bram Chen
3997ef13b5
Merge remote-tracking branch 'upstream/master'
2014-08-28 20:50:45 +08:00
Jeremy Ruston
798ed46469
Merge pull request #745 from BramChen/master
...
Update chinese translations
2014-08-28 13:33:57 +01:00
Jermolene
da82ff17da
Adjust IE instructions to use a direct link to empty.html
...
Because large data URIs don’t work in IE
2014-08-28 13:32:15 +01:00
Mario Pietsch
cb607820dd
Merge branch 'master' of https://github.com/Jermolene/TiddlyWiki5
2014-08-28 14:17:16 +02:00
Jeremy Ruston
2cd5d63902
Merge pull request #750 from pmario/de-DE
...
german translations including Aug 20, 2014
2014-08-28 12:57:39 +01:00
Jermolene
347d5c0148
Update link widget docs
2014-08-28 09:32:19 +01:00
Jermolene
b437f1b450
Allow default tiddler info tab to be configured
2014-08-28 09:12:00 +01:00
Jermolene
d2a5a12f2d
Extend TOC macros to use caption field
...
Now the `caption` field is used for the text of each entry, if present,
falling back to the `title` field.
2014-08-28 08:58:53 +01:00
Bram Chen
92abcb4f5a
Merge remote-tracking branch 'upstream/master'
2014-08-27 20:47:23 +08:00
Jermolene
8ca709f664
Release note update
2014-08-27 11:10:06 +01:00
Jermolene
32b795452f
Allow Markdown dialect to be configured
2014-08-27 11:09:59 +01:00
Jermolene
13c4e028b1
Refactored autosave mechanism
...
Previously we were using a message `tw-auto-save-wiki` to trigger an
autosave. The message was generated by certain UI actions such as
saving a tiddler. The trouble was that the message was being processed
before the wiki change event for the accompanying change had had a
chance to percolate. The end result was that the dirty indicator was
staying lit when using autosave.
The new approach abandons the autosave message and instead triggers the
autosave in the wiki change event when a relevant change occurs.
One happy side effect of these changes is that the dirty indicator now
works as expected with the client server edition - ie, when typing in a
draft tiddler the dirty indicator will flash briefly, and then clear
when the sync mechanism has completed saving the draft.
2014-08-27 10:04:54 +01:00
Jermolene
9d871309c2
Remove stray console.log
2014-08-27 09:59:15 +01:00
Jermolene
ab41462af3
Ensure that savers invoke the callback
2014-08-27 09:59:01 +01:00
Bram Chen
b1a203234a
Merge remote-tracking branch 'upstream/master'
2014-08-27 11:49:09 +08:00
Jermolene
e47852cb14
Stop clearing the location hash for tw-browser-refresh
2014-08-26 14:19:12 +01:00
Jermolene
ba087c96c2
Sorry @xcazin I missed you off the last release note
2014-08-26 14:17:57 +01:00
Jermolene
372fa040c5
Preparing for 5.0.16
2014-08-26 14:17:41 +01:00
buggyj
36a7b1149f
merge to latest tw5
2014-08-25 13:01:30 +02:00
Mario Pietsch
a24516be2a
some cosmetic changes
2014-08-24 13:14:36 +02:00
Mario Pietsch
3e281bc35e
german translations including Aug 20, 2014
2014-08-24 12:59:41 +02:00
Mario Pietsch
e6c40cfcb6
Merge branch 'master' of https://github.com/Jermolene/TiddlyWiki5 into de-DE
2014-08-24 12:21:11 +02:00
Mario Pietsch
cda0b542f9
Merge tag 'v5.0.15-beta' of https://github.com/Jermolene/TiddlyWiki5
...
Version number update for 5.0.15-beta
2014-08-21 13:06:00 +02:00
Bram Chen
bd9e5eadb3
Update chinese translations
...
* Add message of blocked temporary state tiddlers for upgrader
* Add refresh button
* Update hint of home button
* Update dropznoe text
2014-08-21 18:16:25 +08:00
Jermolene
39fac54e06
Version number update for 5.0.15-beta
2014-08-20 22:58:09 +01:00
Jermolene
d0654c3211
Docs updates for 5.0.15
2014-08-20 22:56:25 +01:00
Jermolene
8041e3bef2
Add a sort parameter to the TOC macro
...
As requested by @giffmex
2014-08-20 22:48:07 +01:00
Jermolene
81a426659e
Extraneous wikilink in docs
2014-08-20 22:25:55 +01:00
Jermolene
7c3bac4780
Fix fill star icon
2014-08-20 22:25:33 +01:00
Jermolene
bbd0f7841b
Move improvement banner to the edit template
...
Thanks to @xcazin for the most excellent suggestion.
2014-08-20 22:07:39 +01:00
Jermolene
085e60c0f7
Improved documentation on improving the documentation
2014-08-20 22:07:12 +01:00
Jermolene
34d22f631d
Temporarily disable the improvement banner
...
We should perhaps discuss this at the next hangout…
2014-08-20 20:46:59 +01:00
Jermolene
73ef104b11
Fix regression with tag label styling in edit template
2014-08-20 20:46:24 +01:00
Jermolene
56bf3924f5
Tweaks to the improvement banner
...
I think it looks pretty terrible, and am minded not to include it in
5.0.15. Interested in other views.
2014-08-20 17:06:39 +01:00
Jermolene
2bbe9f76ec
Block temporary state tiddlers from import/upgrade
2014-08-20 13:52:59 +01:00
Jeremy Ruston
a9279fcfed
Merge pull request #742 from xcazin/fr-FR
...
Recent fr-FR translations plus small typo in RevealWidget documentation
2014-08-20 13:40:52 +01:00
Jermolene
b0c6babd8d
Add banner soliciting documentation improvements
...
A first pass
2014-08-20 11:25:56 +01:00
Jermolene
4e65bbc405
Add star image
2014-08-20 11:25:30 +01:00
Jermolene
c912fed55d
Use a JSON tiddler for $:/config/OriginalTiddlerPaths
...
Otherwise things go wrong when we have tiddler titles containing colons
2014-08-20 10:11:40 +01:00
Jermolene
1075bd2084
Add content to "Contents" tiddler
...
Leaving it with no text content means that it triggers a lazy load with
the client server edition
2014-08-20 10:03:40 +01:00
Jermolene
a105b52399
Refactor saver handler
...
Fixing problems caused by c4b76ceb0b :
* We still need to initialise the saver-handler even when syncing to a
server, otherwise offline snapshots can’t be saved
* We need to override the default save template a bit further up the
stack, to avoid the server side serving the offline version of the wiki
at `/`
2014-08-20 10:02:44 +01:00
Jermolene
fbf307c648
Add alt attribute to image widget
2014-08-20 10:00:34 +01:00
Xavier Cazin
c16f5b6b67
Typo in RevealWidget documentation
2014-08-19 17:08:15 +02:00
Jermolene
1973df0809
Update release note
2014-08-19 16:03:31 +01:00
Xavier Cazin
a0e61b89a3
fr-FR translation for the Drop message
2014-08-19 16:52:19 +02:00
Xavier Cazin
12f894df7c
fr-FR translation for Refresh and Home button strings
2014-08-19 16:51:34 +02:00
Jermolene
0dfe23e0db
Rename tw-refresh message to tw-browser-refresh
2014-08-19 13:11:18 +01:00
Jermolene
25777b147f
Make dropzone text translateable
...
Also make the text sticky for browsers that support it, ensuring that
it is always visible even after scrolling
2014-08-19 13:07:57 +01:00
Jermolene
58730b7452
Add selective expandable table of contents macro
...
And improve the layout of the examples
2014-08-19 12:30:22 +01:00
Jermolene
c4b76ceb0b
Improve offline saving with TiddlyWeb
...
Now the usual “save changes” button in the sidebar will save an offline
copy of the wiki that excludes the TiddlyWeb plugin. Previously, this
functionality was only available in the control panel, leading to
several problems such as that discussed here:
https://groups.google.com/d/topic/tiddlywikidev/U61pO-TR854/discussion
2014-08-19 12:20:26 +01:00
Jermolene
920e11e792
Introduce refresh button and revert home button
...
Now the home button behaves as it did in 5.0.13, and the new refresh
button does a full page refresh.
2014-08-19 12:12:36 +01:00
Jermolene
074cbf2606
Release note update
2014-08-18 21:48:03 +01:00
Jermolene
1e1622273b
More table of content macro docs
2014-08-18 21:44:31 +01:00
Jermolene
bd56e4b960
Fix ordering for the table of contents example
2014-08-18 21:44:22 +01:00
Jermolene
8cf726275c
First pass at table of contents macros
...
Introduce macros for automatically generating table of contents
2014-08-18 20:52:36 +01:00
Jermolene
a2acb1462b
Update release note
2014-08-18 20:43:16 +01:00
Jermolene
fe6623d7fe
Restore foreground colour for sidebar tag pills
2014-08-18 13:22:38 +01:00
Jermolene
a3d0f84ff7
Update startup modules diagram
2014-08-18 10:45:27 +01:00
Jermolene
c57b009968
Simpler default defaulttiddlers
2014-08-18 10:27:48 +01:00
Jermolene
727638c12d
Clean up CSS macros
...
Move the CSS macros into global macros, and allow the colour macro to
fallback to the vanilla palette if the required colour isn’t found in
the current palette.
2014-08-18 10:14:19 +01:00
Jermolene
a637af022d
Fix problem with parseTextReference not recognising missing indices
2014-08-18 10:13:30 +01:00
Jermolene
d7cb82d65d
Add GuerillaWiki docs
2014-08-17 15:10:43 +01:00
Jermolene
bea83bfe55
Fix problem with refreshing the edit widget
2014-08-16 15:01:04 +01:00
Jermolene
bba3fe586b
Fix padding for plugin dropdown
2014-08-16 14:44:46 +01:00
Jermolene
4044ba0d2d
Add full download link to GettingStarted
2014-08-16 14:44:11 +01:00
Jeremy Ruston
d76352d873
Merge pull request #736 from BramChen/master
...
Update chinese translations
2014-08-16 09:42:03 +01:00
Jeremy Ruston
a4cfc17d7d
Merge pull request #737 from xcazin/fr-FR
...
More fr-FR translations for Plugins-related strings in ControlPanel
2014-08-16 09:41:50 +01:00
Bram Chen
f8ad9fd590
Add chinese translations for the new functionality of enable/disable plugins in control panel
2014-08-16 09:05:45 +08:00
Xavier Cazin
7ff7f5508c
More fr-FR translations for Plugins-related strings in ControlPanel
2014-08-15 22:54:58 +02:00
Jeremy Ruston
dd8d6913fc
Merge pull request #734 from xcazin/fr-FR
...
fr-FR translations for new translateable strings since 5.0.14
2014-08-15 21:19:17 +01:00
Jermolene
87b7677a0f
Release note update
2014-08-15 21:15:28 +01:00
Jermolene
32a7ee2683
Make it possible to disable plugins
2014-08-15 21:10:40 +01:00
Xavier Cazin
9e86dd07bc
fr-FR translation of the Readme file for the core plugin
2014-08-15 19:20:21 +02:00
Xavier Cazin
850378ceb2
fr-FR translation for Unsaved Changes Warning
2014-08-15 19:07:31 +02:00
Xavier Cazin
6b91c354c3
Merge remote-tracking branch 'upstream/master' into fr-FR
2014-08-15 18:59:28 +02:00
Jermolene
04e049df97
Add message for empty plugin lists
2014-08-15 16:48:02 +01:00
Jermolene
18592fe8f8
Fix problem with edit widget not refreshing
...
One symptom of this problem was that changing the type field of a
tiddler didn’t immediately switch to the bitmap editor
2014-08-15 10:06:52 +01:00
Jermolene
0aeb9d36a0
Fix content type typo
2014-08-15 10:06:19 +01:00
Jermolene
95926b85b9
Move editor type mappings into a single file
2014-08-15 10:06:05 +01:00
Jermolene
ea83149746
Release note updates
2014-08-15 09:52:57 +01:00
Jermolene
c0c52f5bcb
Revert to putting the version number in the corner ribbon
...
Based on two bits of feedback:
1. The version number should be displayed prominently on the page
2. Ordinary users don’t know what “Find me on GitHub” means
2014-08-15 09:50:33 +01:00
Jermolene
e88dcfacd6
More release note updates
2014-08-15 09:42:54 +01:00
Jermolene
c8830d32f7
Fixed problem with building TW under Windows
...
Fixes #717
The issue was that under Windows we generate text nodes that contained
CRLF as a linebreak (rather than just LF as usual).
The subtle problem is that when these strings are placed in the DOM via
createTextNode(), the CR character is treated as a printable character,
not whitespace. When creating DOM notes with innerHTML or as part of a
static HTML document the HTML parser will strip out the CR characters.
The hacky solution is to manually remove CRs before building the text
node.
2014-08-15 09:40:22 +01:00
Jermolene
592cdc4617
Release note updates
2014-08-15 09:36:36 +01:00
Jermolene
837f36aa86
Docs update
2014-08-14 12:00:12 +01:00
Jermolene
9e85ddfec7
Ensure we have a default language in empty.html
2014-08-14 12:00:07 +01:00
Jermolene
f75af2c983
Separate the saver handling out of the syncer
2014-08-14 11:43:07 +01:00
Mario Pietsch
a773bcbc98
translation for german CoreReadMe
2014-08-14 12:38:26 +02:00
Jermolene
27f1f82a70
Rejigging syncer structuring
...
The goal is to separate out the saver handling from the syncadaptor
handling; it will take a few steps to get there
2014-08-14 11:12:25 +01:00
Jermolene
82860aea33
Tweaked tag button
2014-08-14 11:10:55 +01:00
Jeremy Ruston
24998f2990
Merge pull request #731 from BramChen/master
...
Update chinese translations
2014-08-14 08:56:58 +01:00
Jermolene
d57446f1e4
Remove $tw.syncer global from syncer.js
2014-08-14 08:54:31 +01:00
Jermolene
4b05608ad5
Add tag manager button
2014-08-14 08:49:03 +01:00
Bram Chen
fd61814a7d
Add chinese translations of unsaved changes message
2014-08-14 15:20:45 +08:00
Bram Chen
deddb4cc5f
Merge remote-tracking branch 'upstream/master'
2014-08-14 14:36:37 +08:00
Jermolene
35fcdd270e
Move syncer event handlers into syncer module
2014-08-13 20:25:23 +01:00
Jermolene
449edf99b5
Fix rootwidget handling
2014-08-13 20:20:58 +01:00
Jermolene
7c1cb97f7f
Move syncer-browser startup handling into syncer.js
2014-08-13 20:07:08 +01:00
Jermolene
d16bff7787
Move construction of rootwidget into main startup
2014-08-13 20:06:44 +01:00
Jermolene
34461cb2fe
Fix unclickable download link in upgrade wizard
2014-08-13 19:59:48 +01:00
Jermolene
c9ce606b7c
Move the unsaved changes warning into the syncer
2014-08-13 19:29:00 +01:00
Jermolene
57ab9f6167
Translatability for the unsaved changes message
...
Another bit of #491
2014-08-13 19:14:23 +01:00
Jermolene
2bdf84e58f
Preparing for 5.0.15-beta
2014-08-13 19:13:30 +01:00
Jermolene
932d3950c8
Version number update for 5.0.14-beta
2014-08-13 17:12:42 +01:00
Jermolene
554f235305
Update dates for 5.0.14
2014-08-13 17:09:49 +01:00
Jermolene
bf748eafec
Correct width for vertical tab content
2014-08-13 17:06:18 +01:00
Bram Chen
4b0e0475ea
Merge remote-tracking branch 'upstream/master'
2014-08-12 11:32:55 +08:00
Jermolene
65014a8d6c
Docs updates
2014-08-11 23:48:29 +01:00
Jermolene
65b2852c7f
Release note update
2014-08-11 17:55:24 +01:00
Bram Chen
0d3dc5e10e
Merge remote-tracking branch 'upstream/master'
2014-08-11 21:49:54 +08:00
Jermolene
b2e1dd2138
Allow whitespace after first line of multiline macro
...
Fixes the remaining part of #482
2014-08-11 13:52:10 +01:00
Jermolene
57878631e4
Don't sync the pending import tiddler to the server
2014-08-11 13:38:10 +01:00
Jermolene
1c44ea8941
More widget message documentation
2014-08-11 13:17:11 +01:00
Bram Chen
d608462ae5
Merge remote-tracking branch 'upstream/master'
2014-08-10 19:35:21 +08:00
Jeremy Ruston
c38d682d7d
Merge pull request #725 from BramChen/master
...
Update chinese translations
2014-08-10 12:24:50 +01:00
Jeremy Ruston
7a18417d81
Merge pull request #692 from ssokolow/issue-692
...
"Manually create an external image" instructions do not work 5.0.14-prerelease
2014-08-10 12:20:58 +01:00
Jermolene
d7aeb7e932
Docs update
2014-08-10 12:20:46 +01:00
Jermolene
be8c753f28
Fix formatting of edit fields
2014-08-10 09:13:56 +01:00
Jermolene
1892f33ae6
Hide "revision" and "bag" fields from field editor
2014-08-10 09:13:48 +01:00
Jermolene
af70f7be6b
An export button
...
The plan is to have dropdowns of export formats for both individual
tiddlers and the whole page.
2014-08-10 08:54:12 +01:00
Jermolene
961089f266
Remove obsolete control panel localisable strings
...
My apologies to the translators!
2014-08-10 08:43:28 +01:00
Bram Chen
d7e1b68679
Merge remote-tracking branch 'upstream/master'
2014-08-10 07:55:39 +08:00
Stephan Sokolow
2bf5398eaa
Add an attention-drawing warning regarding the spelling of _canonical_uri
2014-08-09 17:17:57 -04:00
Jermolene
69de66ef80
Avoid localisable strings in the tag manager icon dropdown
2014-08-09 20:52:31 +01:00
Jermolene
e74a598aeb
Better organisation for the tag image dropdown
2014-08-09 20:50:28 +01:00
Bram Chen
d0e33cb2d9
Merge remote-tracking branch 'upstream/master'
2014-08-09 20:34:02 +08:00
Jermolene
f6d7d87a3d
Add icon previews to tag manager
2014-08-09 13:12:23 +01:00
Jermolene
ba0accf4f5
Docs updates
2014-08-09 12:41:02 +01:00
Jermolene
c590f9de8b
More formatting improvements for plugins control panel
2014-08-09 11:54:07 +01:00
Bram Chen
4379c57ffa
Merge remote-tracking branch 'upstream/master'
2014-08-09 14:03:58 +08:00
Jermolene
2ff2092615
More improvements to control panel plugin formatting
2014-08-08 17:19:48 +01:00
Jermolene
5e06ef871a
Docs update
2014-08-08 16:48:40 +01:00
Jermolene
76914c4045
Minor icon tweaks
2014-08-08 16:35:48 +01:00
Jermolene
bcf89d533d
Docs update
2014-08-08 16:35:33 +01:00
Jermolene
cc4552f544
Readme update
2014-08-08 16:35:28 +01:00
Jermolene
878689f92e
Improved formatting for control panel plugins
2014-08-08 16:35:17 +01:00
Jermolene
2526bfb078
Disable wikilinking when preceded with dash or underscore
...
“HelloThere” in “My-HelloThere” shouldn’t be wikified.
Part of #337
2014-08-08 16:20:15 +01:00
Jermolene
f8548cc8f2
Stop classifyinh "÷" (\u00f7) as an upper case letter
...
Part of #337
2014-08-08 16:12:23 +01:00
Jermolene
9c8564d5b0
Stop classifying "×" (\u00d7) as a lower case letter
...
Part of #337
2014-08-08 16:09:56 +01:00
Jermolene
d7390dbbe1
Remove support for underscore and dash in wikilinks
...
Starting to fix #337
2014-08-08 11:13:41 +01:00
Jermolene
bd92dc3692
Improve plugin tab layout
...
It’s still a bit of a mess, and the vertical alignment isn’t working
properly
2014-08-08 10:01:21 +01:00
Jermolene
d01efe8698
Generic fallback icons for plugins
2014-08-08 10:00:59 +01:00
Jermolene
b64b1ab9cc
Better icon for the core plugin
2014-08-08 10:00:40 +01:00
Bram Chen
38431507d2
Typos
2014-08-08 14:52:53 +08:00
Jermolene
3d7e43fa7a
Move the Cecily icon
2014-08-08 07:50:00 +01:00
Jermolene
7cd13f7163
Give Cecily a readme
2014-08-08 07:49:48 +01:00
Bram Chen
737b6adc7d
Add chinese translations of the core plugin readme
2014-08-08 14:40:12 +08:00
Jermolene
5260899d8b
Relax requirement for newline after macro definition
2014-08-07 16:00:20 +01:00
Jermolene
7528f3d3cd
Update plugin documentation
2014-08-07 15:50:02 +01:00
Jermolene
3842657392
Add/update plugin readmes
...
Notice that translators need to translate the core plugin readme
2014-08-07 15:49:52 +01:00
Jermolene
017ba740e5
Temporary icon for core plugin
2014-08-07 15:48:50 +01:00
Jermolene
2c4e9a64e9
Extend control panel plugins tab
...
Now we display plugin icons, and an accordion containing information
tabs exposed by the plugin.
2014-08-07 15:48:38 +01:00
Jermolene
c5b941dc1a
Update author of German translations
...
Shouldn’t really credit @jermolene, since it is actually @pmario who
has done the work.
2014-08-07 15:46:30 +01:00
Jermolene
e38f924eb5
Update language flags to generic plugin icon convention
2014-08-07 15:45:56 +01:00
Jermolene
7953b95d13
Include subtiddler in transclusion recursion detection
2014-08-07 15:43:48 +01:00
Jermolene
08f775eac8
Recognise .HTA as synonym for .HTML files
...
Fixes #513
2014-08-04 15:12:33 +01:00
Jermolene
ec3827e5a4
Docs typo
2014-08-04 13:31:52 +01:00
Jermolene
edc14f44d2
Add latest release to table of contents
2014-08-04 13:31:45 +01:00
Jeremy Ruston
86bf754933
Merge pull request #724 from pmario/fix-austrian-flag
...
austrian flag now preserves aspect ratio in page toolbar button
2014-08-03 16:42:58 +01:00
Jeremy Ruston
826b0f58f0
Merge pull request #723 from pmario/de-DE
...
german translation till #3529625a6
2014-08-03 16:42:23 +01:00
Mario Pietsch
7d87d73b0b
austrian flag now preserves aspect ratio in page toolbar button
2014-08-03 15:51:26 +02:00
Mario Pietsch
c3a1af8649
german translation till #3529625a6
2014-08-03 15:15:44 +02:00
Jermolene
3529625a6c
Fix full screen button not supported
2014-08-03 12:35:53 +01:00
Jermolene
bf9a87dc0e
Fix CR handling by HTML parser
...
@pmario and @welford - I’m not presenting this as a fix for #717
because I’m still not in a position to reproduce it.
However, I found this during a review of newline handling code, and
would be interested if it is implicated in the problems you are
reporting.
2014-08-03 09:43:22 +01:00
Jeremy Ruston
f7287718a7
Merge pull request #721 from BramChen/master
...
Update chinese translations
2014-08-03 09:33:38 +01:00
Jeremy Ruston
14fd8282dc
Merge pull request #722 from xcazin/fr-FR
...
fr-FR translations for latest Buttons- and Import- related strings
2014-08-03 09:33:23 +01:00
Xavier Cazin
5a704de14a
Merge branch 'master' into fr-FR
2014-08-03 09:27:42 +02:00
Bram Chen
5782bbf21f
Add chinese translations for theme button
2014-08-03 12:18:56 +08:00
Jermolene
83bae92a29
Refine page control button colour
2014-08-02 22:51:04 +01:00
Jermolene
a0266bdb2a
Fix table-of-contents button colour
2014-08-02 22:49:30 +01:00
Xavier Cazin
8779936182
fr-FR translation for Theme-related Button strings
2014-08-02 23:40:21 +02:00
Xavier Cazin
33b4851d0f
Merge branch 'master' into fr-FR
2014-08-02 23:37:58 +02:00
Jermolene
1573f5840e
Fix styling of "more" page button
2014-08-02 22:31:09 +01:00
Jermolene
1a9bd683e4
Add theme toolbar button
2014-08-02 22:13:54 +01:00
Jeremy Ruston
19028fee0a
Merge pull request #719 from BramChen/master
...
Update chinese translations
2014-08-02 21:38:55 +01:00
Jermolene
fead253e9c
Fix colour of import button
2014-08-02 21:37:48 +01:00
Xavier Cazin
87c899d842
fr-FR translation of the Import button strings.
2014-08-02 19:45:52 +02:00
Xavier Cazin
73e65d8590
New Import-related strings gives the opportunity to improve previous fr-FR translations
2014-08-02 19:44:17 +02:00
Xavier Cazin
2a6caa42fc
Merge branch 'master' into fr-FR
2014-08-02 16:53:21 +02:00
Bram Chen
f09ba1114b
Add chinese translations for import button
...
and update upgrader messages
2014-08-02 21:17:10 +08:00
Bram Chen
0f79dfea17
Merge remote-tracking branch 'upstream/master'
2014-08-02 21:11:09 +08:00
Jeremy Ruston
d5625ceaab
Merge pull request #718 from BramChen/master
...
Update chinese translations
2014-08-02 13:43:25 +01:00
Bram Chen
3b612fe758
Merge remote-tracking branch 'upstream/master'
2014-08-02 20:41:05 +08:00
Jermolene
17f78ae9c1
Docs update
2014-08-02 13:39:02 +01:00
Jermolene
c8bba8caea
Switch to "tw-tagged-" prefix for CSS tags
2014-08-02 13:38:39 +01:00
Jermolene
1d8e3ef288
Trim sidebar tools
...
Just got to add a theme button
2014-08-02 13:38:22 +01:00
Jermolene
9b9f7d32a0
Add plugin blocklist
...
Starting with blocking the old fullscreen plugin
2014-08-02 12:42:05 +01:00
Jermolene
748e4ccddc
Update button image sizes
2014-08-02 12:28:09 +01:00
Jermolene
1cc85fa3cb
Add description for github ribbon
2014-08-02 12:27:52 +01:00
Jermolene
bf39a45fc0
Fixes for import button position
2014-08-02 12:16:14 +01:00
Jermolene
bdd33be001
Fixes for file input styling
2014-08-02 12:05:01 +01:00
Jermolene
7816c1d944
Add import button
2014-08-02 11:59:07 +01:00
Jermolene
120203a8e0
Refactor sidebar tools tab
...
It’s going to be like the tools tab of tiddler info
2014-08-02 11:58:55 +01:00
Xavier Cazin
7316795238
fr-FR translation for StoryView related strings
2014-08-02 11:44:41 +02:00
Xavier Cazin
0d9acad12a
Merge remote-tracking branch 'origin/fr-FR' into fr-FR
2014-08-02 11:27:59 +02:00
Bram Chen
dee4836ded
Add chinese translations for fullscreen and storyview buttons
2014-08-02 10:24:08 +08:00
Jermolene
5291f33c84
Clearer current selection for language and storyview
2014-08-01 22:07:07 +01:00
Jermolene
9774c763b1
Add a storyview button
2014-08-01 21:40:13 +01:00
Xavier Cazin
b8fba1fcb9
fr-FR translation for Full-screen related strings
2014-08-01 19:28:46 +02:00
Jeremy Ruston
ae469c3f87
Merge pull request #702 from pmario/701-split-emphasis
...
splited emphasis.js into several modules to have fine grained control with rules pragma
2014-08-01 18:24:16 +01:00
Jermolene
c23f6af4b5
Add CSS classes for each tag
2014-08-01 17:48:26 +01:00
Jermolene
6a2f1be9d7
Typo in stylesheet processing
2014-08-01 17:48:11 +01:00
Jermolene
d357e1706c
Allow visible edit fields to be configured
...
Create a tiddler “$:/config/EditTemplateFields/Visibility/fieldname”
with the text “hide” to hide a particular field
2014-08-01 17:03:53 +01:00
Jermolene
52bbd6d583
Add tick alongside current language
2014-08-01 16:52:24 +01:00
Jermolene
799a5b059a
Move fullscreen button into core from plugin
2014-08-01 16:52:12 +01:00
Jeremy Ruston
6d06a54530
Merge pull request #714 from xcazin/fr-FR
...
fr-FR translations for latest modifications on Buttons- and ControlPanel- related strings
2014-08-01 12:30:10 +01:00
Jermolene
17ec15750e
Add plugin-priority to German translations
...
We need to make sure de-AT is loaded after de-DE
2014-08-01 10:26:44 +01:00
Jermolene
688760c4b3
Add Chinese flags
...
Thanks @BramChen
2014-08-01 08:47:31 +01:00
Jeremy Ruston
e98d3f86c2
Merge pull request #716 from BramChen/master
...
Update chinese translations
2014-08-01 08:43:19 +01:00
Jermolene
099919f61e
Fix whitespace issues
2014-08-01 08:43:00 +01:00
Jermolene
1bd4ab945d
Reorganise acknowledgements
...
We want the core acknowledgements to be part of the plugin, rather than
the tw5.com edition
2014-08-01 08:42:52 +01:00
Bram Chen
0d8b82ce37
Update chinese translations
...
* Add language toolbar butotn
* Update descriptions of toolbar buttons
2014-08-01 11:01:28 +08:00
Xavier Cazin
a54476fd55
Last minute fr-FR correction to the language-related string
2014-07-31 20:08:19 +02:00
Xavier Cazin
a6da7bfe6a
Plural also required in French when speaking of several toolbars
2014-07-31 19:55:41 +02:00
Xavier Cazin
50b73c5264
New additions and corrections for the fr-FR translation of the Buttons-related strings
2014-07-31 19:40:15 +02:00
Xavier Cazin
3ff66c9fef
Merge branch 'fr-FR' of https://github.com/xcazin/TiddlyWiki5 into fr-FR
2014-07-31 19:22:25 +02:00
Jermolene
a61169e7e8
Fix problem with parsing missing tiddlers
2014-07-31 18:07:52 +01:00
Jermolene
789ba1e85d
Add language toolbar button
...
Also adds flag icon for each language.
One limitation is that the language button doesn’t work properly when
accessed via the “more” menu of the page controls.
@BramChen - could you help me choose the most appropriate flags to use
for the variants of Chinese?
2014-07-31 18:07:37 +01:00
Jermolene
8adcfc97c5
Updated translation instructions
2014-07-31 09:40:25 +01:00
Jermolene
2d43003841
Add descriptions to toolbar buttons
2014-07-31 09:28:46 +01:00
Jermolene
3732f7b564
Correct description of home button
2014-07-31 09:16:28 +01:00
Jeremy Ruston
258c97d4b0
Merge pull request #713 from BramChen/master
...
Update chinese translations
2014-07-31 08:09:05 +01:00
Jermolene
f589e56692
Highlight savewiki text as well as icon
2014-07-31 08:07:31 +01:00
Bram Chen
1ba5d17613
Add chinese translations for unsaved changes indicator
2014-07-31 11:19:10 +08:00
Jermolene
18f1634802
Make the tw-home message refresh the page
2014-07-30 22:31:15 +01:00
Jermolene
c4c4c3d270
Add "more" page control button
2014-07-30 22:25:52 +01:00
Xavier Cazin
ac4a104bac
Merge branch 'master' into fr-FR
2014-07-30 18:14:20 +02:00
Xavier Cazin
2a88ff9add
fr-FR translation for the dirty-indicator description
2014-07-30 18:13:14 +02:00
Jermolene
56945d91d3
Add unsaved changes indicator
...
The “save” icon changes to red to indicate that there are unsaved
changes.
2014-07-30 16:46:13 +01:00
Xavier Cazin
a45690a876
fr-FR translations for the CloseAll-related strings
2014-07-30 14:46:05 +02:00
Xavier Cazin
121835a697
Merge branch 'master' into fr-FR
2014-07-30 14:43:39 +02:00
Xavier Cazin
1e30da2c6a
fix for fr-FR Encryption-related strings
2014-07-30 13:28:11 +02:00
Jermolene
73d7e85e11
Ensure sticky titles theme works in edit mode
2014-07-30 12:19:15 +01:00
Jeremy Ruston
74bf2a053d
Merge pull request #710 from BramChen/master
...
Update chinese translations for toolbars
2014-07-30 12:04:13 +01:00
Jeremy Ruston
ec2020e888
Merge pull request #712 from pmario/de-DE
...
german translation including commit 2380392
2014-07-30 12:03:58 +01:00
Mario Pietsch
0db4d93c21
add close all button
2014-07-30 12:59:25 +02:00
Mario Pietsch
0534270194
Merge branch 'master' of https://github.com/Jermolene/TiddlyWiki5 into de-DE
2014-07-30 12:57:42 +02:00
Bram Chen
d7767b1f1f
Add chinese translations for close-all page control button
2014-07-30 18:56:10 +08:00
Jermolene
aea06f7df4
Fix checkbox setting text field to empty string
2014-07-30 11:52:45 +01:00
Bram Chen
8e91bdeca9
Merge remote-tracking branch 'upstream/master'
2014-07-30 18:47:05 +08:00
Jermolene
f4b834aa2a
Add close-all page control button
2014-07-30 11:40:06 +01:00
Xavier Cazin
6af6a77c3c
fr-FR translation of Encryption-related strings
2014-07-30 12:02:51 +02:00
Mario Pietsch
74038c0687
german translation including commit 2380392
2014-07-30 09:09:43 +02:00
Bram Chen
e689e904ac
Update chinese translations for toolbars
...
* New 'home', 'more' and 'encryption' buttons
* New toolbar tabs in control panel
* New tools tab in tiddler info
2014-07-29 23:31:35 +08:00
Bram Chen
458071a2f1
Merge remote-tracking branch 'upstream/master'
2014-07-29 23:07:06 +08:00
Jeremy Ruston
8faf839bdd
Merge pull request #709 from xcazin/fr-FR
...
fr-FR translations for new ToolBars-related & import-related strings
2014-07-29 15:43:22 +01:00
Jermolene
2380392f35
Add a page control for encryption
2014-07-29 15:43:10 +01:00
Xavier Cazin
7e7a0a18b9
fr-FR translations for new ToolBars-related strings
2014-07-29 16:09:25 +02:00
Bram Chen
e5e503fe17
Merge remote-tracking branch 'upstream/master'
2014-07-29 21:07:22 +08:00
Jermolene
4de1a1adbe
Normalise titles of toolbar button tiddlers
...
The title shouldn’t include the toolbar name if we’re starting to have
buttons which can be placed on more than one toolbar.
2014-07-29 13:37:57 +01:00
Jermolene
0d5380d4a6
Set vertical alignment for SVG in buttons
...
Makes the buttons in the info panel “tools” tab look more like buttons
on Chrome.
2014-07-29 12:06:04 +01:00
Jermolene
4bb8c4e8a7
Add toolbar tabs to control panel
2014-07-29 10:20:13 +01:00
Jermolene
758762eee3
Autosave after an import
2014-07-29 10:03:43 +01:00
Jermolene
f1589e707f
Move the github ribbon into the sidebar
...
Which makes it scroll with the sidebar, rather that with the main page
2014-07-28 15:57:27 +01:00
Jermolene
30f60c400e
Add tiddler info tools tab
2014-07-28 14:38:17 +01:00
Jermolene
46ae9bd34e
Add tiddler info tools tab
2014-07-28 14:37:42 +01:00
Jermolene
4be5c28ed4
Try the "more" button on the left
2014-07-28 14:21:11 +01:00
Jermolene
536c697c9f
'more' toolbar button highlights when selected
2014-07-28 14:20:45 +01:00
Jermolene
cb0eba73c2
Typo
2014-07-28 14:20:18 +01:00
Jermolene
5f018c2092
More defensive dom utility hasClass()
...
It was failing on SVG elements such as `<path>`
2014-07-28 14:19:52 +01:00
Jermolene
ad4db0de97
Add 'more' toolbar button
2014-07-28 11:29:06 +01:00
Bram Chen
4fd111e8ea
Merge remote-tracking branch 'upstream/master'
2014-07-27 21:36:59 +08:00
Jermolene
497d9812c8
More buttons for the view toolbar
...
The arrangement of disabling and enabling buttons within the tiddler
info panel is temporary.
2014-07-27 11:43:26 +01:00
Bram Chen
1d81d52f52
Merge remote-tracking branch 'upstream/master'
2014-07-26 17:27:21 +08:00
Jeremy Ruston
0485e3fa02
Merge pull request #706 from BramChen/master
...
Add chinese translations for close other button
2014-07-26 09:19:26 +01:00
Bram Chen
6800e1d3e2
Merge remote-tracking branch 'upstream/master'
2014-07-26 14:28:26 +08:00
Jermolene
71ae63e24f
Temporary commit losing power
2014-07-25 17:17:02 +01:00
Jermolene
40b4259e86
Clarify widget constructor docs
2014-07-25 15:26:53 +01:00
Jermolene
be040ea8a2
Add support for variable filter operands
...
Fixes #583
2014-07-25 15:26:44 +01:00
Bram Chen
40368062e3
Add chinese translations for close other button
2014-07-25 20:52:48 +08:00
Jermolene
d6cafa9da1
Updated docs for the edit text widget
2014-07-25 13:09:30 +01:00
Jermolene
3d5f68f7a8
Add a close others button
2014-07-25 13:09:20 +01:00
Jermolene
7d435cf850
Improved tabs examples
2014-07-25 08:49:58 +01:00
Jermolene
8600445100
Update tabs macro docs
2014-07-25 08:45:57 +01:00
Jeremy Ruston
7c7671e4ca
Merge pull request #704 from BramChen/master
...
Add chinese translations for Permeview, PermaLink and Clone buttons
2014-07-25 08:29:27 +01:00
Bram Chen
33a070c5b1
Add chinese translations for Permeview, PermaLink and Clone buttons
2014-07-25 11:55:58 +08:00
Jermolene
69af30bf0d
tw-new-tiddler example docs
2014-07-24 23:07:02 +01:00
Mario Pietsch
6de453d796
remove stricethrough.js
2014-07-24 23:51:37 +02:00
Mario Pietsch
bb47f1dbad
fix whitespace and filename
2014-07-24 23:49:42 +02:00
Mario Pietsch
95f6c92192
fixed whitespace
2014-07-24 23:47:13 +02:00
Jermolene
c73853288c
Allow .htm as an alias for .html files
2014-07-24 19:53:51 +01:00
Jermolene
0c34459d75
Updated architecture docs from @ssokolow
...
I’ve mismerged things again I’m afraid.
2014-07-24 17:11:28 +01:00
Jermolene
8888993ba3
Remove Page Composition diagram
2014-07-24 17:09:30 +01:00
Mario Pietsch
7aa6c7c06d
splited emphasis.js into several modules to have fine grained control with wikification rules eg: rules except bold ... This fixes #701
2014-07-24 17:43:03 +02:00
Jermolene
218ce09605
Add permalink/permaview/clone to tiddler info bar
...
I’m open to suggestions for better ways to expose this functionality
2014-07-24 15:50:18 +01:00
Jermolene
9d69c38611
Docs for permalink and permaview
2014-07-24 15:49:18 +01:00
Jermolene
1f16ef6fa8
Add support for permalink and permaview
2014-07-24 15:49:09 +01:00
Jermolene
eecb9126cd
Fix checkbox widget to work with missing tiddlers
2014-07-24 15:43:37 +01:00
Jermolene
2a887a5bac
Add version number to one-shot upgrading UI
2014-07-23 21:01:19 +01:00
Jermolene
22468990a2
Fix typo
2014-07-23 20:51:06 +01:00
Jermolene
99eb556645
Remove broken info tiddlers
...
We can’t currently detect TiddlyFox or TiddlyDesktop so we’’ll remove
the corresponding info tiddlers and documentation
2014-07-23 09:14:21 +01:00
Jermolene
6298ffc516
Avoid "fork" wording
...
Our reasoning at Hangout #55 was that TiddlyWiki needs to present
itself as a consumer product, and that ordinary consumers were likely
to be confused by the “Fork me” wording.
2014-07-23 09:05:19 +01:00
Jermolene
9424001054
Add GitHub releases Atom/RSS feed
2014-07-22 15:17:15 +01:00
Jermolene
fd82112700
Sort out info mechanism docs
...
Some of it belongs in the browser-sniff plugin
Also add a `$:/info/node` info tiddler.
2014-07-22 15:16:18 +01:00
Jermolene
7916553b99
Switch to using flexbox for the community links
...
Not sure whether it’s really better, but it does mean that the number
of horizontal boxes increases as you remove the sidebar.
2014-07-22 14:21:45 +01:00
Jermolene
85952e6f59
Refactor community tiddler into tabs
2014-07-21 13:22:44 +01:00
Jermolene
40d44ba4e5
Rejib location of community tiddlers
2014-07-21 13:18:20 +01:00
Jermolene
b3bbdfbfd8
Switch tiddlywiki.com to a normal github fork ribbon
2014-07-21 13:18:00 +01:00
Jermolene
4f3ee7e7ca
Update github ribbon plugin readme
2014-07-21 13:17:43 +01:00
Jermolene
507cda234e
Docs update
2014-07-21 13:17:24 +01:00
Jermolene
3d8626dafa
Move browser sniffing into a plugin
2014-07-21 13:17:16 +01:00
Jeremy Ruston
80e5c65681
Merge pull request #694 from BramChen/master
...
Add chinese translations for Import lists and Upgrader messages
2014-07-21 09:58:17 +01:00
Jermolene
ad57272324
Docs update
2014-07-21 09:54:59 +01:00
Bram Chen
e54b94a744
Add chinese translations for Import lists and Upgrader messages
2014-07-21 10:24:24 +08:00
Bram Chen
84b2a48544
Merge remote-tracking branch 'upstream/master'
2014-07-21 08:32:48 +08:00
Jermolene
da3f955aa4
Merge branch 'issue-680' of https://github.com/ssokolow/TiddlyWiki5 into ssokolow-issue-680
2014-07-20 20:19:42 +01:00
Jermolene
ef67cc3fd9
Make default location for new tiddlers configurable
2014-07-20 20:19:09 +01:00
Jermolene
67faf3fe5d
Move info mechanism docs to correct place
2014-07-20 18:15:14 +01:00
Jermolene
89e2859007
Start refactoring tw5.com GettingStarted content
2014-07-20 18:07:51 +01:00
Jermolene
b4d47858e5
Introduce info mechanism
...
We expose browser information as shadow tiddlers so that wiki
applications can adapt to available features.
2014-07-20 18:07:30 +01:00
Jermolene
9ddff6d8c0
Move startup.js into the startup folder
...
Neater.
2014-07-20 18:06:33 +01:00
Jermolene
beabae8d2b
Expose module.exports to tiddler modules
...
Needed to incorporate an upcoming third-party library.
@natecain - do you think this is OK from a compatibility perspective?
2014-07-20 18:06:19 +01:00
Stephan Sokolow
1a9f34203c
Extend "TiddlyWiki Architecture" with details on the model and view.
2014-07-19 22:29:12 -04:00
Bram Chen
7e8aedd865
Merge remote-tracking branch 'upstream/master'
2014-07-20 00:01:49 +08:00
Jeremy Ruston
e3dc00573d
Merge pull request #691 from xcazin/XC-doc
...
Add information regarding operands for sort* operators
2014-07-19 15:43:36 +01:00
Bram Chen
1657b82a16
Merge remote-tracking branch 'upstream/master'
2014-07-19 22:42:53 +08:00
Jermolene
d85bc46ca4
Release note updates
2014-07-19 15:38:52 +01:00
Jermolene
1bef4b8d8d
Merge branch 'upgrade-mechanism'
2014-07-19 15:28:26 +01:00
Jermolene
0cf63ab9f0
Add theme tweaks upgrader
2014-07-18 20:00:05 +01:00
Xavier Cazin
608999a97a
Add information regarding operands for sort* operators
2014-07-18 14:46:31 +02:00
Jermolene
8612bc4006
Rename $:/tags/AboveStory and $:/tags/BelowStory
2014-07-18 11:29:09 +01:00
Jermolene
310e119bb4
Add links to theme tweak tiddlers
2014-07-18 08:47:58 +01:00
Jermolene
2322be3f41
Add preview to upgrade wizard
...
The tiddlers are wikified in the context of the host wiki, which means
that mutual transclusions between imported tiddlers won’t appear
correct in the preview.
2014-07-17 18:42:04 +01:00
Jermolene
f793816dfa
Add subtiddler support to the transclude widget
...
Useful to be able to reach into plugins. It will enable us to do things
like extract readmes from themes that are not active.
2014-07-17 18:41:20 +01:00
Jermolene
ed0bf7aed1
Stop defaulting to automatically updating the address bar
2014-07-17 18:40:26 +01:00
Jermolene
f8296bdf6c
Styling adjustments for the upgrade wizard
2014-07-17 18:39:54 +01:00
Jermolene
89989c737e
Fix bug with import tiddler handling
2014-07-17 15:02:42 +01:00
Jermolene
0a716ca0ef
Fix problem with file picker overflow
...
On Chrome the invisible file picker was extending below its container.
2014-07-17 11:26:11 +01:00
Jermolene
b440e67f68
Upgrading docs update
2014-07-17 08:33:19 +01:00
Jermolene
7a034560d1
Refactor ImportListing
...
Better to avoid relying on the storyTiddler variable, which is a pain
for people trying to reuse the import listing.
2014-07-16 20:31:10 +01:00
Jermolene
cee81ed44b
Docs update
2014-07-16 20:30:15 +01:00
Jermolene
eda09ba1c4
Fix typo
2014-07-16 11:09:39 +01:00
Jermolene
cfc326a827
Styling for upgrade wizard
2014-07-16 11:09:30 +01:00
Jermolene
6b457ee499
Docs update
2014-07-16 10:06:31 +01:00
Jermolene
e40a0c07b8
Fix support for upgrading encrypted wikis
...
Importing an encrypted wiki ordinarily doesn’t place the password in
the password vault on the basis that one ought to be able to import
from a file without automatically inheriting its password.
Now there’s a configuration option that can be used by the upgrade
plugin to cause the password vault to be updated with any password
entered by the user. The end result is that the user only needs to
enter their password once.
2014-07-16 10:06:24 +01:00
Jermolene
85f37a7d35
More upgrade wizard styling
2014-07-15 14:04:12 +01:00
Jermolene
a58e1d01ca
Remove the fill transition
...
It looked terrible, presumably because it requires repaints.
2014-07-15 13:17:28 +01:00
Jermolene
7e7c9592be
Tweak upgrade wizard layout
2014-07-15 13:11:40 +01:00
Jermolene
32ea939809
Docs update
2014-07-15 13:11:25 +01:00
Jermolene
98bf08d155
Tweak drop button colours
2014-07-15 13:11:13 +01:00
Jeremy Ruston
1b6a593b71
Merge pull request #687 from ssokolow/master
...
Signing the CLA
2014-07-15 11:34:22 +01:00
Stephan Sokolow
9d5e112922
Signing the CLA
2014-07-15 05:56:40 -04:00
Jermolene
cf273129ef
Add a privacy note to the upgrade wizard
2014-07-15 09:16:32 +01:00
Jermolene
4a810f209f
Favicon for the upgrade wizard
2014-07-14 22:38:12 +01:00
Jermolene
ac21faed3e
CSS fixes and improvements for upgrade wizard
2014-07-14 22:26:01 +01:00
Jermolene
3233a10c34
Upgrade wizard refinements
2014-07-14 22:11:40 +01:00
Jermolene
85d9f38ed8
Correct copy/paste error
2014-07-14 22:06:23 +01:00
Jermolene
58cd874f22
Missed off last commit
2014-07-14 21:52:46 +01:00
Jermolene
4d948c575f
Improvements to one-shot upgrade UI
2014-07-14 21:52:32 +01:00
Jermolene
c92a21ff14
Remove extraneous debugger statement
2014-07-14 21:51:56 +01:00
Jermolene
bc87fac600
Docs updates
2014-07-14 17:58:50 +01:00
Jermolene
7f721ffece
Docs update
2014-07-14 14:53:27 +01:00
Jermolene
c0edca78c8
Beginning of one-shot UI for upgrade.html
2014-07-14 14:53:21 +01:00
Jermolene
07f13b310d
Display plugin content in view template
2014-07-14 14:52:31 +01:00
Jermolene
5a23c883e2
More defensive checks
...
We’ve had a few bugs with the symptom of ‘text’ being undefined.
2014-07-14 14:52:00 +01:00
Jermolene
7998686cb3
Fix typo affecting transclusion recursion detection
2014-07-14 14:50:46 +01:00
Jermolene
5891a61bfc
Add instructions for the Google Analytics plugin
2014-07-14 14:50:23 +01:00
Jermolene
1f6e16318a
First pass at upgrade mechanism
2014-07-12 09:09:36 +01:00
Jermolene
f08f57c5d2
Extend checkbox widget to toggle fields
2014-07-12 09:09:13 +01:00
Jermolene
4743d0a863
Fix transclusion recursion detection
...
We were inadvertantly doing the recursion check before we were checking
if the transclusion target exists.
2014-07-12 09:08:52 +01:00
Jermolene
b9bf1ff574
Add plugin.info to tw2parser
...
Every plugin must have a plugin.info file to be valid
2014-07-12 09:08:38 +01:00
Jermolene
9de679b84b
Fix tiddler widget to refresh properly
...
Previously wasn’t refreshing for changes to the tiddler that it refers
to
2014-07-12 09:08:20 +01:00
Jermolene
0f78c4afbf
Fix problem with tabs macro changing current tiddler
...
The problem was introduced in e18d8a8866
2014-07-12 09:07:51 +01:00
Bram Chen
786bfc6e24
Merge remote-tracking branch 'upstream/master'
2014-07-10 00:13:48 +08:00
Jermolene
d5e4b9b5d1
Further refinements to print stylesheet
...
Try this @giffmex
2014-07-09 17:00:41 +01:00
Jermolene
73cf1bfdb3
Hide page background when printing
2014-07-09 15:22:53 +01:00
Bram Chen
73dcc577e5
Merge remote-tracking branch 'upstream/master'
2014-07-08 18:47:32 +08:00
Jermolene
91acad0f7c
Add support for story backdrop and frontdrop
...
Allows elements to be added above or below the story river
2014-07-08 10:16:10 +01:00
Jermolene
811df7bbf0
Refactor animation easings
2014-07-08 10:07:17 +01:00
Bram Chen
4292d09651
Merge remote-tracking branch 'upstream/master'
2014-07-07 15:36:07 +08:00
Jermolene
21c137a66c
Refactor theme tweaks as individual tiddlers
...
The trouble with the previous approach of storing several settings in a
single data tiddler was that it made it hard to introduce new settings.
Users who already have a custom copy of the settings/metrics tiddler
wouldn’t get the default settings. The new approach uses individual
tiddlers for each setting.
This commit also introduces a new theme tweak for the cutoff width for
switching between responsive views.
2014-07-06 16:55:51 +01:00
Jeremy Ruston
241d19bef8
Merge pull request #675 from BramChen/master
...
Typo
2014-07-06 16:01:27 +01:00
Jermolene
5b5fb18161
Docs update
2014-07-06 15:37:50 +01:00
Bram Chen
529345f08b
Merge remote-tracking branch 'upstream/master'
2014-07-06 20:32:13 +08:00
Jermolene
3351ae7e29
Fix issue with localStorage error on Firefox
...
Firefox raises an error if window.localStorage is accessed when cookies
are disabled:
https://bugzilla.mozilla.org/show_bug.cgi?id=771890
2014-07-06 10:11:21 +01:00
Jermolene
465f4ac469
Fix problem with refreshing modal dialogues
...
Previously any refreshing of the content of a modal would cause a
crash. The problem is the way that we steal the root widget for the
render trees used in the modal. The root widget is tied to the
container DOM node for the main content area, which isn’t actually a
parent of the modal DOM nodes, hence the confusion for the refresh
mechanism.
2014-07-04 21:07:35 +01:00
Jermolene
c9d4714e98
Extend makeTranscludeWidget
...
Add support for specifying the filename, and the fallback content
within the transclude widget that is used if the transclusion target
isn’t found
2014-07-04 21:03:11 +01:00
Bram Chen
856110374f
Typo
2014-07-04 10:59:41 +08:00
Jermolene
3ff7462afd
Avoid saving $:/HistoryList
...
Otherwise it just keeps growing on each navigation.
2014-07-03 14:33:20 +01:00
Jermolene
a3de93b4eb
Improve revision history tabs
2014-07-02 12:16:10 +01:00
Jermolene
e18d8a8866
Extend the tabs macro to allow tab contents to be templated
2014-07-02 12:15:52 +01:00
Jermolene
f43cd5ba9c
Put release history in vertical tabs
2014-07-02 08:43:11 +01:00
Jermolene
367b14f70d
Docs update
2014-06-27 07:26:39 +01:00
Jermolene
d93da81671
Restore link hover colours
2014-06-27 07:26:34 +01:00
buggyj
9a49c2a99e
removed version info
2014-06-26 15:46:45 +02:00
Jeremy Ruston
1735970ffd
Merge pull request #672 from BramChen/master
...
Correct typos
2014-06-25 16:07:36 +01:00
Bram Chen
4936be5b86
Correct typos
2014-06-25 22:37:43 +08:00
Jermolene
35055509c2
Typo
...
Fixes #671
Thanks @Evolena
2014-06-24 14:37:11 +01:00
Jermolene
791471c4f4
Readme update
2014-06-24 13:27:54 +01:00
Jermolene
5b3b62f93d
Fix bug handling of build command
...
We were taking the commands expanded from the build targets and placing
them at the end of the queue. That caused a problem whereby the
prevailing output folder was always the last one in the command token
list.
Now we splice the new commands into the command token list at the
current position.
2014-06-24 12:09:10 +01:00
Jermolene
e018d8e0ef
Preparation for 5.0.14
2014-06-24 12:07:28 +01:00
Jermolene
0cca9092ef
Version number update for 5.0.13-beta
2014-06-24 10:44:51 +01:00
Jermolene
b594eb5b36
Update release dates
2014-06-24 10:42:46 +01:00
Jermolene
917c4404e5
Update batch files to use build system
2014-06-24 10:39:45 +01:00
Jermolene
6f3e31abe5
Fixed problems with detecting changes to draft tiddlers
2014-06-23 23:28:22 +01:00
Jermolene
5962600cb6
Update release note
2014-06-23 18:13:50 +01:00
Jeremy Ruston
cf3f11a4c0
Merge pull request #669 from jayfresh/patch-1
...
Typo fix
2014-06-23 18:12:34 +01:00
Jeremy Ruston
bcf37c765f
Merge pull request #670 from jayfresh/patch-2
...
Adding Jonathan Lister to individuals list
2014-06-23 18:12:02 +01:00
Jonathan Lister
248029b53a
Adding Jonathan Lister to individuals list
2014-06-23 12:51:08 +01:00
Jonathan Lister
57c534b97d
Typo fix
2014-06-23 12:34:05 +01:00
Jermolene
6d1eaeb0fc
Fix detection of draft changes
...
We were getting a lot of problems where changes to a tiddler were not
being recognised
2014-06-23 08:10:32 +01:00
Jermolene
680fe41ed7
Add isEqual() method to tiddlers
2014-06-23 08:09:59 +01:00
Jermolene
32a1da7673
Fixed problem with pasted items lacking a type
2014-06-22 11:58:00 +01:00
Jermolene
8d78336e9b
Docs update
2014-06-22 11:45:07 +01:00
Jermolene
9987e6de22
Fix problem with overwriting existing tiddlers
2014-06-22 11:45:00 +01:00
Jermolene
38530f14f2
Docs updates
2014-06-22 11:14:24 +01:00
Jermolene
0fae9ee992
Improve handling of popup state
...
An improvement to 6fb992690d
By making sure that all the popup state tiddlers have the prefix
$:/state/popup/ we can be more selective and just exclude popup state
tiddlers when we save. The end result is that once again other kinds of
state are persisted as expected (eg tabs, and sidebar visibility).
2014-06-22 11:14:11 +01:00
Jermolene
12b5ebb946
A new colour palette
2014-06-22 11:11:09 +01:00
Jeremy Ruston
5120a1b32b
Merge pull request #664 from BramChen/master
...
Add chinese translations of the TOC tab caption
2014-06-21 20:44:14 +01:00
Jeremy Ruston
9a2d650868
Merge pull request #665 from xcazin/fr-FR
...
fr-FR missing captions for Sidebar
2014-06-21 20:34:15 +01:00
Jeremy Ruston
ad74877dad
Merge pull request #666 from pmario/de-DE
...
german translations
2014-06-21 20:33:47 +01:00
Mario Pietsch
b77ad3061d
german translations
2014-06-21 17:35:02 +02:00
Xavier Cazin
31b1e073a6
Missing Sidebar fr-FR caption, plus better translation for Contents
2014-06-21 17:20:01 +02:00
Xavier Cazin
5d88f19ec6
fr-FR translation for TableOfContents caption
2014-06-21 17:09:44 +02:00
Bram Chen
133c24e9c7
Add chinese translations of the TOC tab caption
2014-06-21 22:04:43 +08:00
Jermolene
f15eba66fe
Use SVG icons for expand/collapse
2014-06-21 11:49:42 +01:00
Jermolene
911a64221a
Docs update
2014-06-21 11:49:30 +01:00
Jermolene
424c0737a2
Update release note
2014-06-21 11:21:27 +01:00
Jermolene
0b38cd640c
Reverse accidentally making Contents the default tab
2014-06-21 11:18:59 +01:00
Jermolene
32099b85d3
Add table of contents to tw5.com
2014-06-21 11:17:04 +01:00
Jermolene
71aa2bbe5f
Docs update
2014-06-21 11:16:48 +01:00
Jermolene
fb5c44a875
Remove indenting
...
It didn’t work very well, and was giving us spans where there should be
divs in the tab control.
2014-06-21 11:16:35 +01:00
Jermolene
f12d7bb6c0
Update to version 8.0 of highlight.js
2014-06-21 10:11:04 +01:00
Jeremy Ruston
665e490d33
Merge pull request #662 from xcazin/fr-FR
...
fr-FR translation of new Buttons-related strings plus type editors and c...
2014-06-20 18:52:15 +01:00
Jeremy Ruston
76f637d57a
Merge pull request #661 from buggyj/jsonparams2
...
added missing regex update for triple double-quotes macro params
2014-06-20 18:51:51 +01:00
Xavier Cazin
2ccc13b936
fr-FR translation of new Buttons-related strings plus type editors and canonical_uri related strings
2014-06-20 17:14:16 +02:00
buggyj
9992b542a3
added update for triple double-quotes macro params
2014-06-20 09:52:37 +02:00
buggyj
0206358a1c
added missing regex update for triple double-quotes macro params
2014-06-19 19:17:26 +02:00
Jermolene
f3a466ee86
Docs update
2014-06-19 12:37:54 +01:00
Jeremy Ruston
0c48502e8e
Merge pull request #660 from buggyj/jsonparams
...
added triple double-quotes delimiters for marco/widget parameters (to su...
2014-06-19 12:06:00 +01:00
Jermolene
19061650de
Refactoring for hygeine
2014-06-19 12:05:41 +01:00
Jermolene
c2b08b43b5
Docs updates
2014-06-19 08:53:24 +01:00
buggyj
a2ec4c55e3
added triple double-quotes delimiters for marco/widget parameters (to support json strings)
2014-06-19 07:29:14 +02:00
Jeremy Ruston
5eae2f0fb6
Merge pull request #659 from BramChen/master
...
Update chinese translations
2014-06-18 14:57:30 +01:00
Jermolene
b8aedf2ca3
Fixed problem with Markdown image handling
2014-06-18 14:56:32 +01:00
Bram Chen
2d24d05f61
Update chinese translations
...
* for adding editor type mappings to control panel
2014-06-18 21:47:45 +08:00
Jeremy Ruston
44cb3bc100
Merge pull request #658 from csugden/patch-1
...
Fixes undefined loop variables (fixes #657 )
2014-06-18 13:57:54 +01:00
Jermolene
0cf4e5514c
Docs tweak
2014-06-18 13:54:24 +01:00
Jermolene
1717c93d00
Refactor codemirror plugin
...
It no longer overrides the edit-text widget. Instead we use the editor
type mappings to select which content types should be handled by which
editor.
2014-06-18 13:54:19 +01:00
Jermolene
0bdc5b5c70
Add editor type mappings to control panel
2014-06-18 13:52:22 +01:00
csugden
1945af0b2d
Fixes undefined loop variables ( fixes #657 )
2014-06-18 11:56:27 +01:00
Jermolene
e6b783154f
Allow arbitrary fields in plugin.info files
...
Fixes #642
2014-06-18 08:52:31 +01:00
Jermolene
d2d0b09235
Refactoring plugin loading on Node.js
2014-06-18 08:34:49 +01:00
Jermolene
e28c2e8b06
Remove extraneous tag
...
Tiddlers tagged “resources” show up in the Community tiddler, which we
don’t want here.
2014-06-17 22:26:55 +01:00
Jermolene
2e2d30bae9
Docs for environment variable support
...
Fixes #531
2014-06-17 22:26:27 +01:00
Jermolene
a9b7df96c2
Add support for TIDDLYWIKI_EDITION_PATH
2014-06-17 21:59:20 +01:00
Jermolene
b2e48d00e9
Add environment variables for locating plugins
...
Start of fixing #531 (we still need to deal with
TIDDLYWIKI_EDITION_PATH)
2014-06-17 21:33:44 +01:00
buggyj
d13de81c7a
checkin of updates to latest version of widget tree format, includes tiddler, slider and tabs macros
2014-06-17 18:56:31 +02:00
Jermolene
9147cadd3c
Remove the cat from the server architecture diagram
2014-06-17 16:14:00 +01:00
Jeremy Ruston
4951a53063
Merge pull request #656 from BramChen/master
...
Update chinese translations
2014-06-17 15:47:45 +01:00
Bram Chen
36556b817f
Update chinese translations
...
* add Buttons.multids
* add description of _canonical_uri to filds.multids
2014-06-17 21:22:29 +08:00
Jermolene
8bd19c4e6a
Merge branch 'accessibility'
2014-06-17 11:49:06 +01:00
Jermolene
34e4166dc5
Add label and title for show/hide sidebar buttons
...
More fixes for #650
2014-06-17 11:39:18 +01:00
Jermolene
617963bd88
Update button widget docs
2014-06-17 10:49:13 +01:00
Jermolene
346b2f8611
Add label for advanced search link
2014-06-17 07:56:36 +01:00
Jermolene
6f859c8d44
Add label for close button in open sidebar tab
2014-06-17 07:56:27 +01:00
Jermolene
325a93f3c3
Move button language to $:/language/Buttons
2014-06-17 07:56:13 +01:00
Jermolene
06b0f9adb7
Added aria-label attribute to link widget
...
And document it for the button widget
2014-06-17 07:54:10 +01:00
Jermolene
401349a1d6
Improve a11y of close buttons in open tab
...
a11y === accessibility
2014-06-16 17:40:38 +01:00
Jermolene
bc9b67cbc3
Use H1 for page title and H2 for tiddler titles
...
Ideally, we’d also rebase the headings within tiddlers so that `!
Heading` would be an H3. Hopefully we’ll do that later.
2014-06-16 17:34:20 +01:00
Jermolene
6fb992690d
Exclude state tiddlers when saving changes
...
This might be a controversial change as it also means that it is no
longer possible to include `$:/state/…` tiddlers in a wiki to set up
the initial configuration.
2014-06-16 17:21:41 +01:00
Jeremy Ruston
57f3eb0b2c
Merge pull request #653 from BramChen/master
...
Correct chinese translations of Help text for savetiddlers
2014-06-15 08:40:01 +01:00
Jermolene
bf2f88ba8b
Use H1 for tiddler titles
...
Part of #650
2014-06-15 08:37:58 +01:00
Bram Chen
00d041b778
Correct chinese translations of Help text for savetiddlers
2014-06-15 08:17:12 +08:00
Jermolene
eeedcb6d94
First pass at accessibility improvements for #650
2014-06-14 18:06:56 +01:00
Jermolene
b4ddaccd1d
Docs and image updates
...
These two architecture diagrams are a few hundred kilobytes, so we
don’t want them baked into the HTML file
2014-06-14 13:41:09 +01:00
Jermolene
d83c26fe3b
Add external image support to tiddlywiki.com
2014-06-14 13:24:48 +01:00
Jermolene
1c484f59bd
Add external image build target for empty edition
2014-06-14 13:24:27 +01:00
Jeremy Ruston
149ca0fc63
Merge pull request #651 from BramChen/master
...
Update chinese translations of Help text for server command
2014-06-14 08:20:09 +01:00
Jeremy Ruston
f467ae288b
Merge pull request #652 from xcazin/fr-FR
...
fr-FR translations of recently added commands and type, plus suggestion for en-GB/Help/savetiddlers.tid
2014-06-14 08:20:02 +01:00
Jermolene
457764077b
Recommitting the old tw2parser plugin
2014-06-14 08:17:16 +01:00
Xavier Cazin
892900c9c5
fr-FR translation of setfield and savetiddlers docs, plus javascript type
2014-06-14 07:40:12 +02:00
Xavier Cazin
d880cb135a
Update what was left from a copy/paste of savetiddler.tid :-)
2014-06-14 07:35:53 +02:00
Bram Chen
a858329742
Update chinese translations of Help text for server command
...
...
2014-06-14 09:19:00 +08:00
Jermolene
e44450edc4
Correct typo
2014-06-13 17:02:39 +01:00
Jermolene
f09d69d1b7
Remove debugging code
2014-06-13 14:44:43 +01:00
Jermolene
eee3a0cf8e
Extend server command to allow a path prefix
...
Thereby making the number of parameters to the command ludicrous
2014-06-13 14:44:34 +01:00
Jermolene
4238af2a40
Extend listed filter operator to use any field
2014-06-13 10:58:19 +01:00
Jeremy Ruston
f54f0d1c3e
Merge pull request #649 from BramChen/master
...
Update translated group of application Javascript in type dropdown
2014-06-13 10:08:10 +01:00
Jermolene
ca34cc437c
Rename $:/core/templates/canonical-uri-external-image
...
As per @pmario’s suggestion.
2014-06-13 10:04:31 +01:00
Bram Chen
71c886e3a1
Update translated group of application Javascript in type dropdown
2014-06-13 16:36:23 +08:00
Jeremy Ruston
db147e3673
Merge pull request #648 from BramChen/master
...
Update chinese translations
2014-06-13 08:51:42 +01:00
Bram Chen
525613750b
Update chinese translations
2014-06-13 09:42:27 +08:00
Jermolene
f751e2ecb4
Added application JavaScript to type dropdown
...
Fixes #646
2014-06-12 19:12:58 +01:00
Jeremy Ruston
ea5989048c
Merge pull request #640 from danielo515/patch-2
...
Update instructions.tid to use one of the included addons
2014-06-12 19:10:12 +01:00
Jeremy Ruston
eec849c69e
Merge pull request #647 from BramChen/master
...
Update chinese translations for Help tiddlers
2014-06-12 19:09:36 +01:00
Jermolene
666f243a82
Release note and doc updates for 5.0.13
2014-06-12 19:03:12 +01:00
Jermolene
4e5fa2c6e6
Docs update
2014-06-12 18:01:39 +01:00
Jermolene
9ab0c84140
Support global macros via the importvariables widget
...
The new importvariables widget imports macro/variable definitions from
the specified tiddlers and makes them available to its children.
Allows us to split PageMacros up into separate tiddlers.
We still support loading macros from $:/core/ui/PageMacros to help
people upgrading.
Fixes #644 and #559
2014-06-12 18:01:33 +01:00
Bram Chen
9261bdaa43
Merge remote-tracking branch 'upstream/master'
2014-06-12 20:19:05 +08:00
Jermolene
0e09fbf46a
Start using the build command in batch files
2014-06-12 08:36:53 +01:00
Jermolene
9547a1f01c
First pass at external image support
...
A bunch of little changes that together enable external image support.
Try:
```
tiddlywiki editions/tw5.com --verbose --build externalimages
```
Then open `externalimages.html`, look for the images in the more/types
tab of the sidebar, open them and verify that they are set with an
external SRC attribute, not a data URI.
2014-06-12 08:36:30 +01:00
Bram Chen
0e4afc3986
Update chinese translations for Help tiddlers
2014-06-12 10:59:19 +08:00
Bram Chen
10fa72d15e
Update chinese translations for Help tiddlers
2014-06-12 10:56:04 +08:00
Jermolene
f131c37893
Update HTML parser to use an IFRAME
...
Gives us better sandboxing of unsafe HTML content
2014-06-11 23:04:58 +01:00
Jermolene
d2796d0c9c
Introduce setfield command
...
This new command will let us do the manipulations needed to set up
external image tiddlers
2014-06-11 10:05:35 +01:00
Jermolene
460f476aef
Docs update
2014-06-10 23:15:42 +01:00
Jermolene
2989c9b133
Typo in 305617b632
...
Tsk
2014-06-10 23:05:08 +01:00
Jermolene
3105afe6e8
Add demo PDF image
...
That cat again
2014-06-10 23:03:41 +01:00
Jermolene
a03a15e7de
Allow the text widget to refresh if needed
2014-06-10 19:32:55 +01:00
Jermolene
305617b632
Introduce savetiddlers command
...
Allows us to save tiddlers in their raw format.
2014-06-09 14:45:41 +01:00
Jermolene
b446ef5d4e
Docs updates on Reporting Bugs
2014-06-09 14:16:21 +01:00
danielo515
8dd30e97ac
Update instructions.tid to use one of the included addons
...
This addon is already included into the plugin, but is not used, neither mentioned how to use it. It is a very useful but lightweight addon. I consider it is better to include the full functionality of the current configuration in the config example.
2014-06-07 17:04:43 +02:00
Jermolene
fc6d96672d
Another select widget demo
2014-06-06 09:33:24 +01:00
Jermolene
78791192c3
Style updates missed off the last commit
2014-06-06 09:32:45 +01:00
Jermolene
9b576f2a8d
Add group headings to type dropdown
...
We’re also reverting to the old custom dropdown. Using the select
widget didn’t work out because it couldn’t cleanly work with a text box
allowing custom types to be specified.
2014-06-06 09:32:14 +01:00
Jeremy Ruston
08ed0017af
Merge pull request #637 from mwfogleman/emacs-helper-functions
...
Add docs for open- and browse-wiki Emacs functions.
2014-06-03 23:14:11 +01:00
Michael Fogleman
450c646c31
Add docs for open- and browse-wiki Emacs functions.
...
These helper functions supplement tid-mode.
2014-06-03 23:04:29 +08:00
Jeremy Ruston
0c6c5002c1
Merge pull request #635 from danielo515/patch-1
...
Added Daniel Rodríguez to contributors list
2014-06-02 20:38:03 +01:00
danielo515
9b3b08a176
Added Daniel Rodríguez to contributors list
...
The date is the original when I tried to add myself at first instance.
2014-06-02 17:05:22 +02:00
Jeremy Ruston
6386bf84a5
Merge pull request #630 from xcazin/fr-FR
...
Add fr-FR translated groups to Tiddler types
2014-06-02 12:17:28 +01:00
Jeremy Ruston
c3dfa3f27e
Merge pull request #631 from BramChen/master
...
Add chinese translations of 'group' field to tiddler types
2014-06-02 12:17:09 +01:00
Bram Chen
50223562ea
Add chinese translations of 'group' field to tiddler types
2014-06-01 12:31:25 +08:00
Xavier Cazin
85c7da95bb
Add fr-FR translated groups to Tiddler types
2014-06-01 00:38:58 +02:00
Jermolene
c8e98c1567
Use the select widget tiddler content types
2014-05-31 22:39:32 +01:00
Jermolene
13463a47c5
Attention Translators! Add "group" field to tiddler types
...
Apologies to the translators for the extra work. Each translated
tiddler type needs a new “group” field that contains a locale-specific
group name that in English are “Image”, “Developer” and “Text”.
2014-05-31 22:38:50 +01:00
Jermolene
ffd9df670d
Fix problem with tabs switching on language change
...
In 5.0.12-beta, if you change the current language setting then the
current sidebar tab setting is lost. This was because the qualified
title generated for the tabs was incorporating the current language
title, by virtue of a trick used in the PageTemplate to set the
“languageTitle” variable to a field of the current language plugin.
This trick left the current tiddler set to the current language, and
this current tiddler was still in force for the transclusion of the
page template segments.
2014-05-31 19:20:51 +01:00
Jermolene
d2edd9291e
Standardise whitespace
2014-05-31 19:18:46 +01:00
Jermolene
247eb04b11
Extraneous semi-colon
2014-05-31 19:18:01 +01:00
Jermolene
954946352a
Docs update
2014-05-31 18:38:25 +01:00
Jermolene
0ccaedd7d2
Use the select widget in the various switchers
2014-05-31 18:38:17 +01:00
Jermolene
3182a2d599
Add first pass at select widget
2014-05-31 18:37:43 +01:00
Jermolene
f999b2e931
Add wiki.setText() method
2014-05-31 18:37:27 +01:00
Jermolene
4d70d5780e
Use radio buttons in navigation settings
...
Radio buttons are much clearer
2014-05-31 18:36:59 +01:00
Jermolene
a330cb543e
Better defaults for radio widget
...
Now the “field” attribute defaults to “text”.
2014-05-31 18:35:41 +01:00
Jermolene
64a6544b02
Update the first rule of TiddlyWiki
2014-05-30 11:38:42 +01:00
Jermolene
3f25db0abe
More permalink tweaks
...
And more documentation this time!
2014-05-29 23:17:21 +01:00
Jermolene
412cde6f53
Move "storyviews" filter operator to correct folder
2014-05-28 17:17:47 +01:00
Jermolene
f7b8813a27
Change permalink behaviour
...
Now a link to a single tiddler like http://tiddlywiki.com/#HelloThere
will just open that single tiddler (the old behaviour was to also open
the default tiddlers)
2014-05-28 17:07:41 +01:00
Jermolene
62c602e9d2
Fix for running under node-webkit
2014-05-28 08:57:29 +01:00
Jermolene
d8a142fed5
Fix vertical tabs in Safari
...
Current versions of Safari on OS X and iOS are still prefixed.
2014-05-27 19:06:27 +01:00
Jermolene
1b37d660ea
Restore "escape" as shortcut to abandon edits
...
Thus reverting a defensive change back in January:
d72d245523
2014-05-27 15:42:33 +01:00
Jermolene
da273be054
Workaround Firefox "no element found" bug
...
See https://bugzilla.mozilla.org/show_bug.cgi?id=884693
Fixes #468
2014-05-27 09:49:48 +01:00
Jermolene
a463859a28
Retract inadvertant change from previous commit
2014-05-26 22:56:58 +01:00
Jermolene
9aaa000d3f
Fixed default tiddler not appearing in zoomin view
...
See https://groups.google.com/d/topic/tiddlywiki/c-z7f-h1CAo/discussion
2014-05-26 22:56:28 +01:00
Jermolene
f14ecf4eb8
Add support for $:/tags/RawMarkup
2014-05-26 22:50:54 +01:00
Jermolene
128ad01866
Fix for inability to scroll modal wizards
2014-05-26 22:33:42 +01:00
Jermolene
ecbda326cb
Add keyboard shortcut documentation
2014-05-26 21:50:04 +01:00
Jeremy Ruston
e24600f9bb
Merge pull request #617 from IreneKnapp/Irene-contributor
...
Sign the contributor agreement.
2014-05-26 19:19:01 +01:00
Jermolene
6436dc22a7
Fix obsolete transclude widget docs
2014-05-26 18:01:53 +01:00
Jermolene
f44f2b33ed
Fixed missing class on external pretty links
2014-05-26 17:57:35 +01:00
Jermolene
86d182fd51
Fix importing blank fields from TiddlyWiki files
2014-05-26 17:47:07 +01:00
Jermolene
3fa4b00ede
Docs update
2014-05-26 17:38:36 +01:00
Jermolene
d30cb0f11d
New ribbon colour for 5.0.13
2014-05-18 20:02:21 +01:00
Jermolene
906d2db57e
Preparing for 5.0.13
2014-05-18 19:58:23 +01:00
Irene Knapp
3e6de03f15
Sign the contributor agreement.
2014-05-17 11:04:46 -07:00
Jermolene
aaec1b2854
Version number update for 5.0.12-beta
2014-05-17 01:17:04 +01:00
Jermolene
9edebc78e7
Tweak ribbon colour for 5.0.12
2014-05-17 01:14:20 +01:00
Jermolene
e228ac42db
Fix problem with shadow tiddler iteration
...
See https://groups.google.com/d/topic/tiddlywiki/pNxZsSCVp7c/discussion
for more details of the bug.
2014-05-17 01:12:08 +01:00
Jermolene
be0bc04929
Fix typo
2014-05-17 01:11:41 +01:00
Jermolene
b415b0e90e
Version number update for 5.0.11-beta
2014-05-16 14:55:32 +01:00
Jermolene
974aecba1f
Fix build scripts
2014-05-16 14:53:16 +01:00
Jermolene
47fa18c2e0
Docs updates
2014-05-16 14:49:28 +01:00
Jermolene
d5094463f4
Temporarily revoke sorting tests
...
localeCompare seems to behave differently in the browser and under
Node.js, making it hard to get the tests consistent
2014-05-16 14:46:55 +01:00
Jermolene
5951dc5901
Fix problem with static renderings
...
The issue was that rendertiddlers always clears the output folder,
which meant that it was overwriting anything previously output by the
rendertiddler command.
2014-05-16 14:39:24 +01:00
Jermolene
1d15e4b7d3
Docs update
2014-05-16 14:37:05 +01:00
Jeremy Ruston
67e66b4698
Merge pull request #610 from BramChen/master
...
Update chinese translations
2014-05-16 11:24:47 +01:00
Jeremy Ruston
c00940f2d1
Merge pull request #614 from pmario/de-DE
...
add transcluded lingo :)
2014-05-16 09:22:13 +01:00
Jermolene
81ea326e16
Update release note
2014-05-16 09:22:00 +01:00
Jeremy Ruston
c2f52f8a4b
Merge pull request #615 from nameanyone/master
...
Rename some system tiddlers to be consistent with Naming of System Tiddlers
2014-05-16 09:20:32 +01:00
Jeremy Ruston
ca03984663
Merge pull request #616 from xcazin/fr-FR
...
fr-FR edits: integration of standard search into 'Advanced Search'.
2014-05-16 09:19:42 +01:00
Jermolene
b2ff248d07
Correct typo
2014-05-16 09:18:43 +01:00
Jermolene
658bd2b8a3
Release note update
2014-05-16 09:18:37 +01:00
Xavier Cazin
a8b16c9c07
fr-FR edits: integration of standard search into 'Advanced Search'.
2014-05-16 09:37:54 +02:00
nameanyone
157ca0c8aa
Rename $:/temp/NewFieldName to $:/temp/newfieldname
...
As per "Naming of System Tiddlers"
2014-05-15 22:54:46 -07:00
nameanyone
01b3962b2c
Rename $:/ShowEditPreview to $:/state/showeditpreview
...
According to "Naming of System Tiddlers"
2014-05-15 22:47:21 -07:00
Bram Chen
19646c7f95
Add chinese translations of standard search
2014-05-16 08:38:13 +08:00
Mario Pietsch
dfb8a07204
add transcluded lingo :)
2014-05-16 00:26:12 +02:00
Jermolene
93566cdc33
Add standard search to advanced search
2014-05-15 23:09:31 +01:00
Jeremy Ruston
ad8a20bfed
Merge pull request #613 from pmario/de-DE
...
update german texts
2014-05-15 22:49:17 +01:00
Jeremy Ruston
00cddd3713
Merge pull request #612 from xcazin/fr-FR
...
Edits to fr-FR strings to reflect fix in Advanced Search matches count
2014-05-15 22:48:50 +01:00
Mario Pietsch
23c8902e70
update german texts
2014-05-15 22:58:29 +02:00
Xavier Cazin
818fd598dc
Edits to fr-FR strings to reflect fix in Advanced Search matches count
2014-05-15 22:37:33 +02:00
Jermolene
31e1088aa7
Clean up startup logging
...
Now we do boot logging to an array. We harvest it in the —verbose
command. We still need to provide a way to access the log in the
browser too.
2014-05-15 18:50:14 +01:00
Jermolene
f9f8ad725b
Fix problem with advanced search counts
...
Apologies to TiddlyWiki’s translators for disrupting existing work!
2014-05-14 20:12:38 +01:00
Jermolene
81e1af1d35
Tabs appearance tweaks
2014-05-14 19:37:37 +01:00
Jermolene
c9c1b0fbb4
Get rid of the tweakParseTreeNode() hack
...
It’s an embarrassing hangover from a refactoring of the parsing
mechanism last year.
2014-05-14 08:51:08 +01:00
Bram Chen
f7ce0c0b8d
Add chinese translations of Advanced Settings in the ControlPanel
2014-05-14 09:38:45 +08:00
Jermolene
92aa1f24be
Fix tab button padding
...
Lack of padding caused a visual glitch in Firefox
2014-05-13 21:02:21 +01:00
Jermolene
e0a6c4e879
Update release note
2014-05-13 19:38:39 +01:00
Jermolene
f72c177ba5
Fix line height
2014-05-13 18:32:12 +01:00
Jermolene
9a26c4259a
Fix problem with widget.getStateQualifier()
...
Fixed to take into account the recent change to read variables from the
parent widget: e60fc9f81f
2014-05-13 18:16:45 +01:00
Jeremy Ruston
6de6a43623
Merge pull request #609 from xcazin/fr-FR
...
fr-FR translations for new strings in the Control Panel, plus edits to an older one
2014-05-13 17:33:46 +01:00
Xavier Cazin
2fa3c8a4ed
edits to the fr-FR translation for the Edit Template
2014-05-13 17:28:45 +02:00
Xavier Cazin
295094c9a3
fr-FR translation of Advanced Settings in the ControlPanel
2014-05-13 17:27:22 +02:00
Jermolene
da41879fc1
Fix dropdown behaviour in advanced settings
2014-05-13 16:21:01 +01:00
Jermolene
f8708874bc
Update reveal widget docs
2014-05-13 14:50:45 +01:00
Jermolene
ad43958571
Make permalink behaviour configurable
...
In the process introducing a new advanced settings tab
Fixes #600
2014-05-13 14:16:58 +01:00
Jermolene
4e07b3335b
Extend .tid files to allow single line text fields
...
To make it easier to create tiddlers that don’t include a terminating
newline in their text
2014-05-13 10:27:03 +01:00
Jermolene
b77d5f9725
Clean up whitespace
2014-05-13 10:26:02 +01:00
Jermolene
75fee26b58
Fix problem with variables containing an empty string
...
See
https://github.com/Jermolene/TiddlyWiki5/commit/e60fc9f81f2c8f0d115543d8
d330a1d68f9b890a#commitcomment-6301921
2014-05-13 10:15:55 +01:00
Jermolene
e8c9d78079
Update release note
2014-05-12 15:21:59 +01:00
Jermolene
d972988a53
Remove obsolete filter operators docs
...
It was overwritten by a later version in editions/tw5.com/filters.
2014-05-12 15:17:16 +01:00
Jermolene
e83759e86d
Add "before" and "after" filter operators
...
Fixes #357 by adding new “before” and “after” filter operators.
2014-05-12 15:16:44 +01:00
Jermolene
2633247492
Use flexbox for vertical tabs
...
Thus stepping into a new world:
http://caniuse.com/flexbox
The vertical tabs are now completely reusable, with sensible wrapping
behaviour.
2014-05-12 08:41:47 +01:00
Jermolene
b3032d452f
Refactor vertical tabs for reusability
...
In practice, if you look at TabsMacro you’ll see that the width of the
tab content is wrong, and will usually overflow the container. Next
step is to fix that by using flexbox…
2014-05-11 18:47:14 +01:00
Jermolene
e60fc9f81f
Fixed problem with widgets variable access
...
Previously, widgets were reading variables from themselves or their
cascaded ancestors. That means that if a widget sets a variable and
then reads the same variable, it will get the same variable back. That
sounds reasonable, until you consider a widget that wants to modify a
variable - eg the tiddler macro. For example:
```
<$tiddler tiddler={{!!report}}>
<$transclude mode="block" />
</$tiddler>
```
Here we first evaluate the `{{!!report}}` reference, which involves
reading the currentTiddler variable, looking up the tiddler, and
retrieving it’s `report` field. The next the tiddler widget is
refreshed, it will use the newly set currentTiddler as the basis for
resolving the `{{!!reference}}` reference.
The fix is to get variables from ancestors, but continue to set them on
ourselves.
2014-05-08 11:51:02 +01:00
Jermolene
6ab68e0fca
Remove erroneous global wiki references
...
$tw.wiki is used as a global reference in the outer initialisation
modules. It shouldn’t be used in widgets etc.
2014-05-07 14:49:14 +01:00
Jermolene
e548dd35af
Restored drag and drop functionality within TEXTAREAs and INPUTs
...
As mentioned by @Skeeve in #592
2014-05-07 14:32:14 +01:00
Jermolene
8b20143b1b
Pass content-type to codemirror mode option for syntax highlight
...
Fixes #605
2014-05-07 14:09:46 +01:00
Jeremy Ruston
711b76307c
Merge pull request #604 from natecain/module_exports
...
Module exports
2014-05-07 14:05:45 +01:00
Jermolene
b858e9dc69
Fix incorrect filter in shadow $:/DefaultTiddlers
...
Fixes #606
2014-05-07 13:43:12 +01:00
Jermolene
a9411262f7
Improve TiddlyWiki as a library
...
1. Make it possible to disable specific boot tasks
2. Extend the startup mechanism to allow startup tasks to be disabled
Again, see Jermolene/TiddlyWiki5NodeWebkit to see how these features
fit together.
2014-05-07 12:51:16 +01:00
Jermolene
e676156b24
Fixes for running TiddlyWiki on node-webkit
...
See Jermolene/TiddlyWiki5NodeWebkit
2014-05-07 09:59:21 +01:00
natecain
c592e658e7
Fix up codemirror instructions to match new paths in config example
2014-05-06 23:57:10 +02:00
natecain
6b03789e06
Prioritize "module.exports" over "exports" in require sandbox
...
(Node-ism, inherited (temporarily?) to support codemirror upgrade)
2014-05-06 23:31:57 +02:00
natecain
51f54b06f9
Upgrade codemirror to current master
2014-05-06 23:30:40 +02:00
Jeremy Ruston
285ab41ccf
Merge pull request #602 from BramChen/master
...
Add chinese translation of banner for binary tiddlers in edit mode
2014-05-06 20:15:43 +01:00
Jermolene
854b739a35
Implement explicit external links
2014-05-06 20:05:51 +01:00
Jermolene
abe0ce28b9
Fix typos in docs for image parser
2014-05-06 19:00:34 +01:00
Jermolene
76e8640c31
Fix problem with parsing lists contain non-breaking spaces
...
Some of the time we need to treat non-breaking spaces as though they
are not spaces (regexps treat them as spaces by default).
2014-05-06 18:10:27 +01:00
Jermolene
cc3d44aec1
Fix problem with list fields containing [[]]
...
Fixes #603 - thanks @xcazin!
It no longer crashes but unfortunately if you round trip a tiddler out
of edit mode and back you’ll lose any empty double square brackets.
2014-05-06 17:32:12 +01:00
Bram Chen
7b6cff0cca
Fix incorrect charset for the previous commit
2014-05-06 17:36:59 +08:00
Jermolene
d1c85f53c0
Update release note
2014-05-06 10:33:08 +01:00
Bram Chen
e2b0da0b58
Add chinese translation of banner for binary tiddlers in edit mode
2014-05-06 17:23:27 +08:00
Jermolene
7c8c5cf745
Fix problem with parsing main UI boot tiddlers
...
We were parsing the boot tiddlers, making them into a widget and then
refreshing the widget tree. The problem is that subsequent chances to
the boot tiddlers themselves wouldn’t be picked up as part of the
refresh.
Now we indirectly parse those UI boot tiddlers through a transclusion,
which does get refreshed in the desired way.
2014-05-06 10:14:22 +01:00
Jermolene
38c60bd7d4
Fix tag colour
2014-05-05 23:19:49 +01:00
Jermolene
afb92c40fe
Tweak ribbon colour for 5.0.11
2014-05-05 23:19:41 +01:00
Jermolene
6b45296ca9
Roadmap and release note updates
2014-05-05 23:19:30 +01:00
Jermolene
b84c663215
Add proper rendering of document title
2014-05-05 23:00:09 +01:00
Jermolene
4e101e240c
Suppress history when changing the permalink URL
2014-05-05 21:51:54 +01:00
Jermolene
56251dc1f8
Fixes #598
...
Ensure we don’t generate permalinks with a target that is not in the
current story
2014-05-05 21:23:29 +01:00
Jermolene
f368175cb0
Remove debugging code
2014-05-05 20:58:47 +01:00
Jeremy Ruston
3e49dd65a0
Merge pull request #594 from xcazin/fr-FR
...
fr-FR translations for warnings about shadow tiddlers and binary content
2014-05-05 20:57:28 +01:00
Jermolene
f5ada72dac
Ensure tag colours are specified in hex
2014-05-05 19:25:49 +01:00
Jermolene
986a20b22b
Fixes for permalinks not working on Firefox
...
Sigh. It’s frustrating that the few browser differences I’m running
into in 2014 are mostly horribly familiar from 2005
2014-05-05 19:21:57 +01:00
Jermolene
ffb6c8ab81
Add hex colours to tag manager
...
Fixes #597
2014-05-05 18:42:25 +01:00
Jermolene
e58e68fa7c
Add Matabele's gTD site
2014-05-05 17:31:52 +01:00
Jermolene
95def8b857
Add startup sequence diagram
2014-05-05 17:06:34 +01:00
Jermolene
b24ec8009d
Missing dependency
2014-05-05 17:06:24 +01:00
Jermolene
9965c64b6f
More refactoring of startup.js
2014-05-05 15:25:51 +01:00
Jermolene
2a50277219
Fix problem with syncer not being initialised on server
2014-05-05 14:44:32 +01:00
Jermolene
3cce12e13f
More refactoring of startup.js
2014-05-05 14:41:46 +01:00
Jermolene
887e9d978b
Fix problem with saving if URL contains #
2014-05-05 13:30:31 +01:00
Jermolene
a0022a1cd6
Refactoring more of startup.js into modules
2014-05-05 10:17:50 +01:00
Jermolene
519e1b4a44
Pull more of startup.js out into separate modules
2014-05-03 21:23:51 +01:00
Jermolene
b9dec37fb7
Split main rendering into it's own startup module
2014-05-03 19:50:05 +01:00
Jermolene
09156af475
Add support for "before" field on startup modules
2014-05-03 19:49:50 +01:00
Jermolene
5b5621a600
Fix googleanalytics plugin to be platform-specific
2014-05-03 18:07:20 +01:00
Jermolene
78ba57d55d
Remove support for browser-startup modules
...
Instead support startup modules that stipulate which platform they
require.
Also include docs updates and fixes to fullscreen plugin
2014-05-03 17:49:20 +01:00
Jermolene
749582ede0
Split module loading into a separate startup task
...
Still a work in progress.
2014-05-03 17:10:55 +01:00
Jermolene
1c82348edb
Docs typo
2014-05-03 16:56:29 +01:00
Jermolene
b96aade28a
WIP: Add support for dependencies between startup modules
...
See StartupMechanism for details.
2014-05-03 16:32:18 +01:00
Jermolene
2f32621024
Docs updates
2014-05-03 16:27:22 +01:00
Jermolene
6ccf02ed96
Add support for onhashchange
...
Now we respond dynamically to changes in the location hash in the URL
bar. It means that you can do links in HTML as `<a
href=“#HelloThere”>go</a>` and in Markdown as `[example
link](#HelloThere).`
We still need to make startup.js more modular
2014-05-03 12:20:28 +01:00
Jermolene
b2c1331c11
Fix oversight in isDraftModified
...
If the original tiddler doesn’t exist then we should count the draft as
always having been modified
2014-05-03 12:12:07 +01:00
Xavier Cazin
f81df69395
Change references to editions/clientserver into editions/server
2014-05-03 13:10:36 +02:00
Jermolene
a5e9ef9b5f
Adopt new URL scheme for permalinks
...
Instead of using `%00` as a separator we do the more conventional
`#!<target-title>:<story filter>`.
2014-05-03 11:32:55 +01:00
Xavier Cazin
7783378603
fr-FR translations for shadow tiddlers and binary content warnings
2014-05-02 23:00:13 +02:00
Jermolene
327b53a641
Start adding support for permalinks
...
At this point we respect any permalink at startup, but we don’t yet
dynamically update the permalink, nor do we respond to ongoing
permalink changes.
The permalink separator being `%00` seems like it might be a bit
controversial. It buys us not having to wrap tiddler titles in double
square brackets if they contain spaces.
Another thing is that this scheme doesn’t support tiddler filters; the
plan is to support them like this:
http://tiddlywiki.com/#!Target%00%00[tag[task]sort[created]]
2014-05-02 19:21:32 +01:00
Jermolene
cb914ae853
Remove dead code typo
2014-05-02 18:07:47 +01:00
Jermolene
a4294b55f0
Add banner for binary tiddlers in edit mode
...
Makes it easier to add tags to a binary tiddler (eg a PDF).
2014-05-02 09:43:39 +01:00
Jermolene
bced7124e4
Accept single quotes for attributes in TW files
2014-05-01 17:58:49 +01:00
Jermolene
f5848c395a
Fix problem with editing tiddler titles
...
The check whether a draft has been modified was ignoring changes to the
title.
Fixes #593
2014-05-01 17:39:37 +01:00
Jermolene
f6bd3b8c37
Optimise the all filter operator
...
Seems like quite a decent optimisation.
2014-04-30 22:50:47 +01:00
Jermolene
21b2d6fdc7
Allow filter operators to return an iterator
...
Previously filter operators were only permitted to return an array of
tiddler titles
2014-04-30 22:50:17 +01:00
Jermolene
bd3e955821
Add compound iterators to boot wiki object
2014-04-30 22:49:28 +01:00
Jermolene
fcb26419a6
Clear the tiddler event queue on startup
...
To avoid an unnecessary refresh cycle
2014-04-30 22:49:02 +01:00
Jermolene
a6f7da6c1c
Suppress refresh cycle if no tiddlers have changed
2014-04-30 22:48:36 +01:00
Jeremy Ruston
f82f8ae7c6
Merge pull request #589 from BramChen/master
...
Add chinese messages for editing/overridden a shadow tiddler
2014-04-29 09:04:44 +01:00
Jermolene
edb8c65d54
Update release note
2014-04-29 09:03:47 +01:00
Jermolene
031c0f4146
Update HelloThere
2014-04-29 09:03:39 +01:00
Bram Chen
e8316cf0ac
Add chinese messages for editing/overridden a shadow tiddler
2014-04-29 15:32:19 +08:00
Jermolene
0ac4c2b554
Allow digits in field names
2014-04-28 15:54:32 +01:00
Jermolene
84cd296c58
Minor tweaks to shadow warning infrastructure
...
1. Moved some methods out of boot.js because they are not needed until
after bootup
2. Added alternate message for editing an overridden shadow tiddler
3. Minor style tweaks
2014-04-28 15:16:31 +01:00
Jeremy Ruston
a90339d1e5
Merge pull request #586 from sukima/feature/issue-570-cancle-unchanged-drafts
...
Fix issue #570 Make it harder to accidentally modify a shadow tiddler
2014-04-28 13:22:44 +01:00
Jermolene
d49495ab73
Add docs for "field" filter operator
...
Fixes #588
2014-04-28 12:54:34 +01:00
Jeremy Ruston
5fa6d001f8
Merge pull request #587 from BramChen/master
...
Update chinese editions
2014-04-28 09:36:32 +01:00
Jermolene
f17dafefcb
Docs updates
2014-04-28 09:33:47 +01:00
Bram Chen
88314d968a
Add build targets to chinese editions
2014-04-28 16:11:57 +08:00
Bram Chen
28bab707b9
Update chinese translations for Help tiddlers
2014-04-28 16:02:58 +08:00
Devin Weaver
075cf544e4
Use new get filter from commit 570cad1c
2014-04-27 17:15:42 -04:00
Devin Weaver
a505b6ffc0
Move isModified from Tiddler to Wiki
...
Replace this with a $tw.wiki.isModifiedTiddler(title) as part of the
wiki object. This allows it to be used outside of the current Wiki which
can change.
2014-04-27 17:15:42 -04:00
Devin Weaver
23a71b433e
Rename isEqual to isArrayEqual
2014-04-27 17:15:42 -04:00
Devin Weaver
3bbe53a58e
Move shadowWarning to it's own template segment
2014-04-27 17:15:42 -04:00
Devin Weaver
8556e0ea49
Fix coding style
2014-04-27 17:15:42 -04:00
Devin Weaver
3be21853e1
Add warning box while editing a shadow tiddler
...
This addresses the third line item of issue #570
TODO: The filter is not working.
TODO: The message is too genaric and needs help.
2014-04-27 17:15:42 -04:00
Devin Weaver
d0636f2124
Add a confirmation to edit a shadow tiddler
...
Should only display the confirmation if the shadow tiddler has not been
overridden in the first place. It checks this by looking for the
existence of a modified field for which the default system based shadow
do not have until a user changes them.
This addresses the second line item on issue #570
We will need new translations for the added string
`ConfirmEditShadowTiddler`
2014-04-27 17:15:42 -04:00
Devin Weaver
5226c7a2fa
Prevent saving un-modified tiddlers
...
When saving a tiddler we check to see if the tiddler has changed
(isModified) if it hasn't then bounce the event to tw-cancel-tiddler
instead.
Addresses first line item in issue #570
2014-04-27 17:15:42 -04:00
Devin Weaver
3a78465d2d
Add isModified to Tiddler object
...
Adds a check to see if this tiddler differers from the tiddler
referenced in the draft.of field. It iterates of the fields property
skiping those feilds that offer a false positives. Uses the isEqual util
for the tags array.
2014-04-27 17:15:42 -04:00
Devin Weaver
23640d7af4
Add isDraft to Tiddler object
...
Check to see if this tiddler is a draft (has a draft.of field)
2014-04-27 17:15:42 -04:00
Devin Weaver
540681b2bc
Add $tw.util.isEqual
...
This checks to see if an array is equal. Should handle case where an
array is considered null or undefined. It short circuits when the
lengths are different and will only loop when needed.
2014-04-27 17:15:42 -04:00
Devin Weaver
8611867930
Remove dead code 💀
2014-04-27 17:15:41 -04:00
Jermolene
77152ac577
Update release note
2014-04-27 21:58:59 +01:00
Jermolene
f5bd99fa73
Fix tests for 385c7e207c
2014-04-27 21:58:41 +01:00
Jermolene
385c7e207c
Refactor wiki.filterTiddlers()
...
Now we pass a widget instead of the current tiddler title. We can use
widget.getVariable(“currentTiddler”) to get the current tiddler.
2014-04-27 20:03:33 +01:00
Jermolene
61c204366f
Replace hamburger icon with double chevron
...
Fixes #580
Seems much better, especially since the chevron gives us two clear
visual states (left vs. right). The hamburger doesn’t really have a
commonly accepted way of indicating whether the menu is currently open
or not.
2014-04-27 19:28:30 +01:00
Jermolene
570cad1c7f
Add 'get' filter operator
...
Prompted by @sukima’s work on #586
2014-04-27 18:45:01 +01:00
Jeremy Ruston
1d0dc60a2d
Merge pull request #574 from pekopeko1/japanese
...
Updated Japanese Translation
2014-04-27 08:47:59 +01:00
Jeremy Ruston
fac0affa7b
Merge pull request #584 from xcazin/fr-FR
...
fr-FR translations for new Help tiddlers + changes to previous ones.
2014-04-27 08:46:59 +01:00
Jeremy Ruston
f57241abbd
Merge pull request #585 from BramChen/master
...
Update chinese translations for Help tiddlers
2014-04-27 08:46:41 +01:00
Jermolene
e9557b578e
Improve output directory handling
...
This change is likely to break most existing scripts that call
TiddlyWiki.
TL;DR - output paths are now relative to the editions/output folder,
rather than to the current folder
See [[Notes for upgrading to 5.0.11-beta]] for details.
2014-04-27 08:28:21 +01:00
Jermolene
649f68288a
Add build targets to the core editions
2014-04-26 17:11:56 +01:00
pekopeko1
37c50bae61
merged with latest master
2014-04-27 00:14:41 +09:00
pekopeko1
9ab31e37ea
fix plugin.info author
2014-04-26 23:11:31 +09:00
pekopeko1
30707e2f19
revert unnecessary .gitignore change
2014-04-26 23:09:42 +09:00
Bram Chen
1fb76ae56d
Fix typo
2014-04-26 20:10:02 +08:00
Bram Chen
4008191459
Update chinese translations for Help tiddlers
2014-04-26 19:52:45 +08:00
Xavier Cazin
463bd0517c
fr-FR translation for new Help tiddlers
2014-04-26 11:56:40 +02:00
Xavier Cazin
fb3a31ae43
Typo: Set => Clear
2014-04-26 11:12:59 +02:00
Jermolene
f7e50e0950
Add --build command
...
First pass at the build system described in #356 .
To test it, move to a new, empty directory and try `tiddlywiki
editions/tw5.com --verbose --build`
2014-04-25 22:41:59 +01:00
Jermolene
552657fc58
Fix text parser to use codeblocks
...
This means that JavaScript and JSON tiddlers will be properly
highlighted if the highlight plugin is loaded.
2014-04-24 19:41:07 +01:00
Jermolene
d727046948
Revise number of tiddlers in recent changes list
...
Going back to 100; 250 was a typo.
2014-04-24 12:22:31 +01:00
Jermolene
f6ca7d92e5
Fix docs typo
...
Fixes #575
2014-04-24 11:59:51 +01:00
Jermolene
148e77b0e4
Clean up obsolete macro definition
...
Fixes #576
2014-04-24 11:58:42 +01:00
Jermolene
cc60ad1428
Fixed topbar hover for Firefox
...
Pesky Firefox browser crankiness.
Fixes #579
2014-04-24 11:33:14 +01:00
Jermolene
fecf3a556f
Update JS macro docs
2014-04-24 11:08:23 +01:00
Jeremy Ruston
39ef0ad88f
Merge pull request #581 from mwfogleman/tid-mode
...
Refer Emacs docs to tid-mode, not tid-time.
2014-04-24 09:01:27 +01:00
Michael Fogleman
f75826224b
Refer Emacs docs to tid-mode, not tid-time.
2014-04-24 11:39:37 +05:30
Jeremy Ruston
52f28a1cc3
Merge pull request #578 from sukima/feature/sign-cla-sukima
...
Add @sukima to cla-individual.md
2014-04-22 15:49:35 +01:00
Jermolene
61c3f8a5ba
Remove wikitext tiddlers from "types" sidebar tab
2014-04-22 11:44:27 +01:00
Devin Weaver
13da54b9bd
Add @sukima to cla-individual.md
2014-04-21 18:26:04 -04:00
pekopeko1
680414d1c5
edited 'shadow' translation
2014-04-20 23:33:27 +09:00
pekopeko1
2c7d5c5964
merged @ogoshima's translation
2014-04-20 23:24:35 +09:00
Jermolene
3d69c929d9
Add more warnings about backups
2014-04-19 14:42:22 +01:00
Jeremy Ruston
8cbcfee346
Merge pull request #573 from pmario/fix-concepts-tiddlerfields-lingo
...
Fix "description" column in TiddlerFields
2014-04-19 14:23:06 +01:00
Jermolene
43173c801f
Adjust version number for 5.0.11
2014-04-19 14:22:25 +01:00
Mario Pietsch
523faf71fb
change modified date
2014-04-19 15:16:12 +02:00
Mario Pietsch
ad2bbb2c93
tiddler: TiddlerFields - fix the description column.
2014-04-19 15:11:20 +02:00
Jermolene
8756d25d78
Version number update for 5.0.10-beta
2014-04-19 14:07:48 +01:00
Jermolene
8a27c2759b
Update 5.0.10 release date
2014-04-19 14:06:29 +01:00
Jermolene
beddcd7138
New ribbon colour for 5.0.10
2014-04-19 13:15:24 +01:00
Jermolene
2db90378a2
Release note updates for 5.0.10
2014-04-19 11:34:23 +01:00
Jermolene
7684891285
Move topbar out of the way of scrollbars
...
In the process getting rid of some extraneous `<p>` tags.
Fixes #566
2014-04-19 11:32:56 +01:00
Jermolene
821f1f1428
Fix hamburger and seamless behaviour
...
No longer remove the tiddler borders when hiding the sidebar; users can
select Seamless theme to get the same effect.
Fixes #566
2014-04-19 11:24:41 +01:00
Jermolene
4538f081ee
Release note updates for 5.0.10
2014-04-19 11:22:59 +01:00
Jermolene
b4122be50c
Update release note for 5.0.10
2014-04-19 11:18:08 +01:00
Jermolene
cd76514105
Update roadmap
2014-04-19 09:36:14 +01:00
Jermolene
ba576d9f1b
Add support for safe mode
2014-04-19 09:36:08 +01:00
Jermolene
15d0c27e2a
Add [is[tag]] filter operator
2014-04-18 17:57:55 +01:00
Jermolene
869cec1ccc
Add docs for date format strings
2014-04-18 17:37:13 +01:00
Jermolene
d6054f1039
Fix problem with offline copy of server edition
...
We were accidentally including all the shadow tiddlers as well as
ordinary ones.
2014-04-18 15:23:00 +01:00
Jermolene
9fbe72a877
Rearrange system tag configuration
...
By rearranging the `[all[]]` operator we are able to ensure that shadow
tiddlers get processed before ordinary tiddlers. This makes it easier
to create custom stylesheets that override the core.
2014-04-18 09:28:14 +01:00
Jermolene
89165fc51d
Fix problem with sorting date fields
...
Introduced a couple of commits ago when the localeCompare() stuff was
added.
2014-04-17 22:52:57 +01:00
Jermolene
4758874d13
Add path conversions from TiddlyWiki Classic
...
TiddlyWiki Classic converts local file URIs to various local native
formats. The same conversions are now performed by the TiddlyFox
adaptor for TW5.
2014-04-17 22:30:14 +01:00
Jermolene
0153fd2a30
Correct typos in 5.0.9 release note
2014-04-17 20:26:35 +01:00
Jermolene
bb42c0ab36
Use localCompare for sorting strings
...
So that accented characters get sorted correctly. Or at least as
correctly as browsers allow.
2014-04-17 20:15:52 +01:00
Jermolene
95d291daac
Update print stylesheet to hide topbar
2014-04-17 19:50:12 +01:00
Jermolene
45b0966013
Support the image widget in markdown
2014-04-17 16:50:54 +01:00
Jermolene
de07da3797
Revise warning about backing up before upgrading
2014-04-17 16:26:57 +01:00
Jeremy Ruston
aebc1ea943
Merge pull request #562 from pmario/upgrade-backup-info
...
add a backup info for the Upgrade tiddler.
2014-04-17 16:24:57 +01:00
Jermolene
73cfd10218
Fix regression with untagged filter operator
...
Restored previous behaviour of considering a missing tiddler to be
untagged.
2014-04-17 16:10:50 +01:00
Jermolene
d336ffea02
Fix incorrect background colour for sidebar tag pills
...
Fixes #568 .
2014-04-17 15:11:59 +01:00
Jermolene
6da28e7365
Docs update
2014-04-17 14:44:14 +01:00
Jermolene
d08a2d109f
Fix html parser tests
2014-04-17 14:43:24 +01:00
Jermolene
f57e047877
Fix issues with tiddlers with null fields
...
Fixing #567
2014-04-17 14:43:12 +01:00
Jermolene
df5fe10a40
Start release note for 5.0.10
2014-04-17 12:52:52 +01:00
Jermolene
433ac8e96e
Typo fix
2014-04-17 12:52:38 +01:00
Jermolene
ad4b03506a
Added wikitext image support
...
We’ve added a parser to recognise the `[img[URL or tiddler title]]`
format, and an associated image widget.
2014-04-17 12:52:32 +01:00
Jermolene
ace57dd205
Refactor utilities out of HTML parser
...
Some of the functions are useful general purpose parser helpers.
2014-04-17 12:00:32 +01:00
Jermolene
bd4a031df8
Fix problem with version checking logic
...
Previously, importing a plugin with a semantically identical version
number was not rejected. This meant that attempts to import
5.0.9-prerelease wikis into 5.0.9-beta led to a corrupted wiki, with a
beta core and prerelease plugins.
2014-04-17 11:59:42 +01:00
Jermolene
6db94052c7
Prepare for 5.0.10 release
2014-04-17 11:58:16 +01:00
Mario Pietsch
dd8797223a
add a backup info for the Upgrade tiddler.
2014-04-16 01:09:26 +02:00
Jermolene
e54b0d7129
Docs fixes
2014-04-15 21:50:36 +01:00
Jermolene
07ab8c75b8
Docs fixes
2014-04-15 21:48:19 +01:00
Jermolene
0a6077286f
Version number update for 5.0.9-beta
2014-04-15 21:43:51 +01:00
Jermolene
634e76eb7f
Update release date for 5.0.9
2014-04-15 21:39:46 +01:00
Jermolene
cd1463cbb0
Get rid of the home button
...
I’m not keen on it because it ends up being very visually prominent for
something that’s not particularly useful.
2014-04-15 20:33:58 +01:00
OGOSHI Masayuki
5bcc666f34
Update some translations.
2014-04-16 02:40:49 +09:00
OGOSHI Masayuki
6bef1d6b30
Update command line helps Japanese Translation.
2014-04-15 23:44:05 +09:00
Jermolene
4b8be85b88
Docs updates
2014-04-15 13:24:43 +01:00
Jermolene
d01f1020d2
Release note updates
2014-04-15 09:07:25 +01:00
Jermolene
f77de37a2f
Include Japanese translation in tiddlywiki.com
...
All of which is making index.html far too big, which we’ll address with
a plugin library.
2014-04-15 09:07:19 +01:00
Jeremy Ruston
f3c5ce7ca4
Merge pull request #558 from pekopeko1/japanese
...
Translation to Japanese.
2014-04-15 08:34:12 +01:00
Jermolene
6ed38389b0
Update test for previous commit
...
Test should have been updated with
dad60cda05
2014-04-15 08:28:47 +01:00
pekopeko1
5393fbee99
signed in CLA
2014-04-15 12:14:34 +09:00
pekopeko1
3b31c6fe3a
some translation added
2014-04-15 12:00:04 +09:00
pekopeko1
9ba55c7e79
GettingStarted.tid plugin.info
2014-04-15 09:59:30 +09:00
pekopeko1
9323574efb
add ja-JP directory
2014-04-15 09:58:21 +09:00
Jermolene
f5cf8cba5c
Docs update
2014-04-14 21:33:16 +01:00
Jermolene
88be791e58
Fix full screen background
2014-04-14 21:30:42 +01:00
Jermolene
dad60cda05
Improve wiki.sortByList()
...
Previously list-before and list-after didn’t work if they referenced
entries that hadn’t yet been placed
2014-04-14 21:30:30 +01:00
Jermolene
fe0ed5e4ce
Tweaks to themes
...
And shaking out some paragraph tags in the sidebar
2014-04-14 18:37:09 +01:00
Jermolene
aa243e4478
Add new seamless theme
...
Gets rid of the borders around tiddlers, and tightens up the use of
white space. Works particularly well with the sidebar hidden.
2014-04-14 13:12:44 +01:00
Jermolene
4c648e7cdc
Exclude more illegal characters from external links
2014-04-14 11:17:28 +01:00
Jermolene
0aa559cd23
Improve responsiveness during editting
...
Simple optimisation whereby we defer the main refresh cycle when only
draft tiddlers have been modified.
We defer for 400ms, and keep extending the delay at each fresh draft
modification. The effect is that if the user is using the preview then
they’ll need to pause typing for 400ms before the preview is updated.
Fixes #470 , #454 , and maybe #206 .
2014-04-14 10:20:32 +01:00
Jermolene
28db76ddb3
Refactor page rendering into a separate function
...
Refactoring page rendering so that we can fix the performance issues
with editing drafts. The plan is to defer the refresh cycle if all the
changes are to draft tiddlers.
We need to do a bit more of this to get startup.js into better shape
(and more extensible).
2014-04-14 09:53:13 +01:00
OGOSHI Masayuki
09cf788063
Merge branch 'master' into ja-JP
2014-04-14 17:03:16 +09:00
Jermolene
e366aa3746
Use Date.now() instead of new Date()
...
Just for when what we actually want is a millisecond counter.
Interesting video about this:
https://www.youtube.com/watch?v=Vo72W1HWeFI
2014-04-14 09:02:52 +01:00
Jermolene
22a529b28d
New ribbon colour for 5.0.9
2014-04-14 08:57:50 +01:00
Jermolene
c2d6086bd9
Show fewer tiddlers in recent changes
2014-04-13 21:17:44 +01:00
Jermolene
f1578d3409
Turn off instrumentation
...
All those console.log()s make editing very slow
2014-04-13 21:17:44 +01:00
Jermolene
93b9d16d6c
Don't include pipe characters in URLs
2014-04-13 21:17:44 +01:00
Jeremy Ruston
13bb20cad4
Merge pull request #553 from xcazin/fr-FR
...
fr-FR translation of the confirmation string before cancelling tiddler changes
2014-04-13 21:03:42 +01:00
Xavier Cazin
bba7e97f60
fr-FR translation of the confirmation string before cancelling tiddler changes
2014-04-13 16:55:13 +02:00
Xavier Cazin
cb32d187c5
Merge remote-tracking branch 'upstream/master'
2014-04-13 16:45:30 +02:00
Jeremy Ruston
8582e5ebe2
Merge pull request #552 from BramChen/master
...
Add chinese translations of confirmation for cancelling edits
2014-04-13 09:24:45 +01:00
Jermolene
46969fbd3e
Adjust Cecily tiddler width
2014-04-13 09:24:06 +01:00
Jermolene
260d3ad8c0
Docs typo
2014-04-13 09:23:57 +01:00
OGOSHI Masayuki
4d0b08d464
some translations corrected.
2014-04-13 15:52:41 +09:00
OGOSHI Masayuki
5447420832
1st time ja-JP translation commit.
2014-04-13 15:35:36 +09:00
Bram Chen
d9b87055bf
Add chinese translations of confirmation for cancelling edits
2014-04-13 14:34:17 +08:00
Jermolene
4f4b743d9c
Fix Cecily tiddler width for when sidebar hidden
2014-04-12 18:24:39 +01:00
Jermolene
ee2cd2056c
Make tiddler width fluid when sidebar hidden
2014-04-12 17:14:27 +01:00
Jermolene
be5f6f6700
Allow spaces in property names in text references
2014-04-12 17:14:09 +01:00
Jermolene
be7822281a
Release note updates
2014-04-12 16:32:58 +01:00
Jermolene
3afa26b9a3
Require confirmation before abandoning edits
...
Fixes #544
2014-04-12 14:15:49 +01:00
Xavier Cazin
2a2cc20601
Merge remote-tracking branch 'upstream/master'
2014-04-12 10:22:07 +02:00
Jeremy Ruston
400ab3b3c5
Merge pull request #550 from xcazin/fr-FR
...
3 new plugin-related strings in fr-FR Control Panel
2014-04-12 08:44:42 +01:00
Xavier Cazin
ebe7587aa0
Merge remote-tracking branch 'upstream/master' into fr-FR
2014-04-12 08:48:00 +02:00
Xavier Cazin
c954ac01fe
Merge remote-tracking branch 'upstream/master'
2014-04-12 08:46:18 +02:00
Jermolene
a3cf925e56
Add classes for the current theme and language
...
Add the classes to the tw-page-container DIV
2014-04-11 21:37:58 +01:00
Xavier Cazin
be7c33dc48
Revert "Another missed update"
...
This reverts commit 7aaab03e03 .
2014-04-11 16:23:23 +02:00
Xavier Cazin
634f914610
Another missed update
2014-04-11 16:15:56 +02:00
Xavier Cazin
7aaab03e03
Another missed update
2014-04-11 16:13:32 +02:00
Xavier Cazin
fd1399f6d9
3 new plugin-related strings in fr-FR Control Panel
2014-04-11 09:48:32 +02:00
Jermolene
442bc35bcb
Remove dropdown from edit mode tags
...
Firefox didn’t like the nested buttons.
The better fix would be to switch the tag pills to being links instead
of buttons.
Fixes #515
2014-04-10 22:49:46 +01:00
Jermolene
1bc9bf541a
Remove headings from Tiddler Info advanced tab
...
Fixes #518
2014-04-10 21:44:56 +01:00
Jermolene
ccf2cb36a1
Extend sameday operator to select field
...
Now the target field can be specified in the suffix:
`[sameday:created[20140808]]`
2014-04-10 20:19:12 +01:00
Jeremy Ruston
18d14031b7
Merge pull request #548 from xcazin/fr-FR
...
Four file updates on fr-FR translations
2014-04-10 20:08:26 +01:00
Jermolene
5fff6fc87f
Docs update
2014-04-10 19:57:21 +01:00
Jermolene
5a65898dbe
Update tiddler filter docs
2014-04-10 19:56:51 +01:00
Jermolene
cbf45a9982
Update release note
2014-04-10 19:56:43 +01:00
Jermolene
7a4a00f6ca
Sort operator should default to title
...
Previously we were crashing if a sort field wasn’t specified
2014-04-10 19:56:21 +01:00
Xavier Cazin
dfb367c104
Last fr-FR updates to translatable content
2014-04-10 15:46:00 +02:00
Xavier Cazin
7853b7f7b3
Four file updates on fr-FR translations
2014-04-10 12:38:55 +02:00
Jermolene
ccefc1b17b
Tolerate more whitespace in block elements
...
Previously the double newlines marking a block mode element couldn’t be
interspersed with whitespace.
2014-04-10 11:05:27 +01:00
Jeremy Ruston
6786a1fd14
Merge pull request #547 from BramChen/master
...
Fix typo in PaletteColours.multids for zh-Hant
2014-04-10 08:29:32 +01:00
Bram Chen
e73d2854f9
Fix typo in PaletteColours.multids for zh-Hant
2014-04-10 09:34:48 +08:00
Jeremy Ruston
127cd70769
Merge pull request #545 from xcazin/fr-FR
...
fr-FR translation of PaletteColours.multids + typo in core en-GB of the same
2014-04-09 22:20:40 +01:00
Jermolene
fc407d079c
Pixel accuracy for restoring pre-refactor layout
...
Two problems:
* Extraneous whitespace shows up as whitespace in the HTML, making it
hard to style
* Fix some padding
2014-04-09 22:19:27 +01:00
Jermolene
df6fe8f852
Merge branch 'sidebar-remove-p' of https://github.com/pmario/TiddlyWiki5 into pmario-sidebar-remove-p
2014-04-09 21:56:20 +01:00
Jermolene
613f413942
Add docs on filter changes in 5.0.9
2014-04-09 21:53:34 +01:00
Mario Pietsch
70a2db34d1
these changes remove most of the <p> tags from the right sidebar, without changing the layout too much. The tab buttons are a little bit higher but this will be adjusted with the next CSS tweaks.
2014-04-09 21:12:10 +02:00
Mario Pietsch
5821165ec5
Merge branch 'master' of https://github.com/Jermolene/TiddlyWiki5
2014-04-09 19:59:39 +02:00
Xavier Cazin
4888417a35
fr-FR translation of PaletteColours.multids + typo in core en-GB version.
2014-04-09 19:11:41 +02:00
Jeremy Ruston
2aa1acb565
Merge pull request #526 from BramChen/master
...
Keep up-to-date changes for chinese translations.
2014-04-09 16:11:39 +01:00
Jermolene
e5fe3f76ac
Fix linkcatcher message sending
...
We need to send messages to the parent so that we don’t set up an
infinite loop by sending `tw-navigate` messages. Also we need to pass
along the target of the navigation.
2014-04-09 16:09:12 +01:00
Jermolene
ef03e5ce63
Docs update
2014-04-09 14:33:55 +01:00
Jermolene
690c8fe9a0
Update macros docs
...
Include single line macros
2014-04-09 14:33:47 +01:00
Jermolene
6f1e8ee3a1
Missed adjustments of wikitext tests
...
The commit 4d91a7762e broke the test
2014-04-09 11:54:03 +01:00
Jeremy Ruston
9b52ca7cc0
Merge pull request #543 from welford/load-and-deserialize
...
Make deserializing a bit more robust
2014-04-09 11:51:16 +01:00
Jermolene
f9a274df85
Require confirmation for all tiddler deletions
...
Previously we only asked for confirmation when deleting a draft tiddler
2014-04-09 11:32:08 +01:00
Jermolene
776bf29afc
Update LinkCatcherWidget docs
2014-04-09 11:31:36 +01:00
Jermolene
f08c4aa525
Arrange fields alphabetically in the edit template
2014-04-09 11:31:27 +01:00
James Welford Anderson
0f07977930
deserializertype -> deserializerType
2014-04-09 06:26:01 +09:00
James Welford Anderson
362df18a19
make deserializing a bit more robust
...
load.js references the encoding set in boot.js when loading a file.
boot.js can now register file type with different deserialization from
their actual type
2014-04-09 06:20:51 +09:00
Jermolene
426281539a
Merge branch 'saner-filters'
2014-04-08 14:14:11 +01:00
Jermolene
dc5831a8a8
First pass at a release note for 5.0.9
2014-04-08 14:12:35 +01:00
Jermolene
6d43b4e8dc
Update link widget docs
2014-04-08 14:12:27 +01:00
Jermolene
3282bd948f
Fix problem with search filter operator
2014-04-08 09:36:30 +01:00
Jermolene
7ec356ac80
Add @welford's signature to CLA
2014-04-08 09:16:22 +01:00
Jeremy Ruston
688879e6fa
Merge pull request #540 from mwfogleman/michael-cla
...
Add Michael Fogleman to cla-individual.md.
2014-04-08 08:55:39 +01:00
Michael Fogleman
9bdd7a4e19
Add Michael Fogleman to cla-individual.md.
2014-04-08 11:24:38 +05:30
Jermolene
78f81a6894
Move notifications a little to the left
...
So that they don’t overlap the menu hamburger
2014-04-07 19:01:08 +01:00
Jermolene
5ec0775d3e
Link wikitext help text to tiddlywiki.com
...
Fixes #537
2014-04-07 18:08:11 +01:00
Jermolene
c4d0ee11d3
Update Emacs tip
2014-04-07 09:02:31 +01:00
Jermolene
597b8ca4b1
Ensure fieldnames are not wikified
...
`__proto__` was being wikified into underlined text
2014-04-06 22:49:59 +01:00
Jermolene
ea46f85a8a
Fix problem with fields called "__proto__"
2014-04-06 22:49:20 +01:00
Jermolene
1e960ffcac
Fix problems with tiddlers called __proto__
...
Background:
http://www.2ality.com/2012/01/objects-as-maps.html
2014-04-06 22:43:10 +01:00
Jermolene
8a7d0f53d3
Add a sourceURL to the end of eval'd code
...
This, miraculously, lets Chrome dev tools list tiddler modules in the
script tag by their proper titles. Which lets you set breakpoints
within them!!!!!
https://chromedevtools.googlecode.com/svn-history/r421/trunk/tutorials/b
reapoints/index.html#regular
2014-04-06 22:36:51 +01:00
Jermolene
b51d851f93
Fix extraneous comma
...
Thanks to Danielo Rodríguez
2014-04-06 22:09:42 +01:00
Jermolene
e21d558ff0
Add Michael Fogleman's Emacs macro
2014-04-06 22:08:29 +01:00
Jermolene
c7b4febae3
Optimise ordering of filter expressions
...
We get a significant speed improvement of >10% by rearranging filter
operators to bring to the front the operators likely to reduce the size
working list.
2014-04-06 11:50:16 +01:00
Jermolene
4d91a7762e
Optimise link widget
...
Handle the classes better, and stop using a default tooltip (parsing
the tooltip was a performance hog)
2014-04-05 17:37:58 +01:00
Jermolene
272a4bbe61
Filtering optimisations
2014-04-05 17:31:36 +01:00
Jermolene
b7f674c51a
First pass at refactoring filter execution
...
This is the beginning of addressing #523 .
2014-04-03 20:49:16 +01:00
Jermolene
14f90b9519
Include direct tiddler link in template for community links
2014-04-03 20:30:31 +01:00
Jermolene
2f458e8573
Add link to Martin Kantor's MathJax plugin
2014-04-03 20:25:40 +01:00
Jermolene
3619eb1378
Fix missing newline
...
Fixes #529
2014-04-03 18:10:54 +01:00
Mario Pietsch
9bd626315e
Merge branch 'master' of https://github.com/Jermolene/TiddlyWiki5
2014-04-03 19:03:51 +02:00
Jeremy Ruston
d3c0296a87
Merge pull request #520 from pmario/decouple-sitetitle
...
right menue SiteTitle and SiteSubtitle decoupled
2014-04-03 17:02:22 +01:00
Jermolene
e397e4d159
Disable the tiddlyweb adaptor unless loaded over http(s)
2014-04-03 16:33:42 +01:00
Jermolene
93c29bd388
Fix missing require in filesystem adator
2014-04-03 15:40:30 +01:00
Bram Chen
7985a808bf
Keep up-to-date changes for chinese translations.
2014-04-02 16:27:03 +08:00
Mario Pietsch
aced860d52
Merge branch 'master' of https://github.com/Jermolene/TiddlyWiki5
2014-04-01 23:20:59 +02:00
Jeremy Ruston
c1bb7b00c1
Merge pull request #522 from pmario/de-DE
...
german language update. Contains changes till Mar 31, 2014
2014-04-01 15:24:06 +01:00
Mario Pietsch
856b68a34d
german language update. Contains changes till Mar 31, 2014
2014-04-01 15:43:08 +02:00
Mario Pietsch
1940bd4dce
right menue SiteTitle and SiteSubtitle decoupled from tiddler title and tiddler subtitle. Otherwise it is not possible to modify the tiddler title styling, without affecting the site title.
2014-04-01 10:34:58 +02:00
Jermolene
d402d3c5a6
Add performance measurement features
...
This is an experimental module to help us measure the performance of
the refresh cycle and the filter mechanism. Not intended to replace the
performance measurement features in browser developer tools, just to
make it easier to automate performance checks cross-browser.
The immediate purpose is to help in refactoring the filter mechanism.
The recent change to encapsulate the wiki store “tiddlers” object has
hurt the performance of filters, and it’s going to be helpful to have
decent measurements while refactoring that code.
I’m still not convinced that this stuff should be in the core, and may
well end up removing it after the present refactoring cycle.
2014-04-01 08:33:36 +01:00
Jermolene
dcce487934
Add support for platform dependent high resolution performance timers
...
For profiling filter performance
2014-03-31 18:42:30 +01:00
Jermolene
53ca7f6a2f
More defensive handling of pluginInfo
2014-03-31 18:30:45 +01:00
Jermolene
c3e24c1228
Trim spaces from new field and tag names
...
Fixes #517
2014-03-31 17:59:28 +01:00
Jermolene
6307293469
Fix some Node.js cross-platform compatibility issues
...
Thanks to http://shapeshed.com/writing-cross-platform-node/
Surprising that file path format is pretty much the only issue.
2014-03-31 17:17:36 +01:00
Jeremy Ruston
0d0679de1b
Merge pull request #514 from Skeeve/patch-6
...
Show site title when logging in
2014-03-31 12:59:15 +01:00
Jermolene
09214d1c33
Fix problem with --load command overwriting $:/core
...
Now we use the `wiki.importTiddler()` method - it rejects attempts to
load older versions of loaded plugins
2014-03-31 12:46:10 +01:00
Jermolene
914a536d82
Correct relative date handling of t=1s
...
We were incorrectly displaying “1 seconds ago”
2014-03-31 12:41:54 +01:00
Jermolene
5a085f7927
Add basic CSV parser
2014-03-31 12:41:02 +01:00
Skeeve
0595619d39
Show site title when logging in
...
I have several TW5 servers running on the same host and think it would be good, would the password prompt display the $:/SiteTitle
2014-03-31 08:58:13 +02:00
Jermolene
776c9a2cad
Add James Anderson's resource links
2014-03-27 09:56:33 +00:00
Jeremy Ruston
36dabd792e
Merge pull request #509 from BramChen/master
...
Update chinese translations of types
2014-03-27 09:55:31 +00:00
Jermolene
ec90ac99cf
Skinner dropdown arrow
2014-03-27 08:54:28 +00:00
Bram Chen
299007f08b
Update chinese translations of types.
2014-03-27 10:06:40 +08:00
Bram Chen
49578bb144
Merge remote-tracking branch 'upstream/master'
2014-03-27 09:33:36 +08:00
Jeremy Ruston
ead5e607fa
Merge pull request #502 from BramChen/master
...
Add chinese translations of translatable core strings in JavaScript modules
2014-03-26 22:15:01 +00:00
Jermolene
5c3c6cd7c0
Fix various typos
2014-03-26 21:57:13 +00:00
Jeremy Ruston
818b29386e
Merge pull request #504 from buggyj/58texthtml
...
added missing text/html type
2014-03-26 21:49:45 +00:00
Bram Chen
c0f78df48d
Merge remote-tracking branch 'upstream/master'
2014-03-27 00:53:15 +08:00
Jermolene
c58852a67b
On narrow screens ensure there is a background behind the home and menu buttons
2014-03-26 14:11:26 +00:00
Jermolene
bca1d55280
Add validation of legal characters for fieldnames
2014-03-26 13:38:43 +00:00
Jermolene
45a362c285
Add a dropdown to tags in edit mode
...
As discussed in TW Hangout 40
2014-03-26 13:06:11 +00:00
Jermolene
355f467465
Update line colour for SVG curved text example
2014-03-26 10:16:15 +00:00
Jermolene
871630be88
Fix the menu hamburger
2014-03-26 10:16:00 +00:00
Jermolene
8b813ccb43
Correct typo
2014-03-25 22:17:31 +00:00
Jermolene
59ac38a3da
Remove the scrollable from the story river
...
The problem was that the scrollable required that the mouse be over the
story river itself in order to scroll it with the wheel. If we fallback
to scrolling the story by scrolling the browser body then we are able
to scroll even if the mouse is over the sidebar.
2014-03-25 22:15:54 +00:00
Jermolene
80b65b1651
Add a top-left and top-right menu
2014-03-25 21:54:06 +00:00
Jermolene
7dede861e1
Fix styling for input boxes in sidebar
2014-03-25 21:53:18 +00:00
Jermolene
514b8e1776
Fix hover colour of the close buttons in the sidebar "open" tab
2014-03-25 14:37:55 +00:00
Jermolene
79d643775d
Fix scrollable widget not to crash on the server
2014-03-25 14:37:33 +00:00
Jermolene
945ad6792f
Add first pass at Cecily plugin
2014-03-25 14:29:32 +00:00
Jermolene
7c235566c4
Rejig the page layout to use the scrollable widget
...
This is the start of some refactoring of the main layout CSS intended
to give us more flexibility and control.
2014-03-25 14:29:16 +00:00
Jermolene
d3e178becc
Add scrollable widget
...
A new widget to handle scrollable areas. We’ll use it both for the
story river and the sidebar.
2014-03-25 14:26:54 +00:00
Jermolene
bc432d5e52
Remove obsolete nighttime theme
...
Better to do change the background colour with a palette
2014-03-25 09:31:48 +00:00
Jermolene
fa10801d72
Fix tags for curved text howto
2014-03-24 22:53:11 +00:00
Jermolene
87c8478c80
Add curved text demo
2014-03-24 22:49:10 +00:00
Jermolene
535837e017
Use client bounding rect rather than offset positions for computing scroll positions
2014-03-24 22:31:03 +00:00
Jermolene
20f6383528
Add storyviews list filter and use it in view switcher
2014-03-24 22:17:45 +00:00
Jermolene
26fd460670
Move the version banner to the sidebar
...
By making it a page control we move it into the sidebar, making it easy
to control with the sidebar.
2014-03-24 21:37:42 +00:00
Jermolene
20d7264e4b
Add protocol to YouTube URLs
...
Otherwise they don’t work when viewed from a file URI
2014-03-24 21:36:19 +00:00
Jermolene
3ce2159a95
Missing semicolon
2014-03-24 21:35:48 +00:00
buggyj
968d44e4be
added missing text/html type
2014-03-24 11:31:28 +05:30
Bram Chen
f46d445ba2
Add chinese translations of PaletteColours
2014-03-24 10:34:36 +08:00
Bram Chen
1b0a39cd1a
Add chinese translations of translatable core strings in JavaScript modules
2014-03-24 10:25:54 +08:00
Jeremy Ruston
cb2653aee0
Merge pull request #499 from mpollio/master
...
Italian translation available
2014-03-23 13:49:31 +00:00
Jermolene
34445dcc68
Break the links up into separate tiddlers
2014-03-22 17:32:28 +00:00
Maurizio
54abcdceeb
Update cla-individual.md
2014-03-21 17:22:12 +01:00
Maurizio
cf7554a938
Delete favicon.ico
2014-03-21 11:03:24 +01:00
Maurizio
fb72b3b859
Delete index.html
2014-03-21 11:03:16 +01:00
Jeremy Ruston
03cfa61ae8
Merge pull request #494 from nameanyone/master
...
Stop using obsoleted "-moz-border-radius" and "-webkit-border-radius" pr...
2014-03-20 22:19:45 +00:00
Jeremy Ruston
4badabce4b
Merge pull request #496 from buggyj/syncer
...
syncer freeze fix
2014-03-20 20:58:50 +00:00
Jeremy Ruston
3cb2b365c5
Merge pull request #498 from buggyj/plugindocumentation
...
Plugin development with github
2014-03-20 20:56:30 +00:00
Jermolene
178cfb1084
Make more core strings be translateable
...
Now we’re translating strings that occur in JavaScript modules.
Partially fixing #491
2014-03-20 20:55:59 +00:00
mpollio
920df5d2d4
Italian translation available
...
Add italian translation
2014-03-20 13:40:40 +01:00
buggyj
7b57561160
plugin development doc
2014-03-20 13:28:17 +05:30
buggyj
d2a41b8486
plugin development with github and node.js
2014-03-20 13:20:52 +05:30
buggyj
aa63151815
syncer freeze fix
2014-03-19 20:20:54 +05:30
Jermolene
ba6edd42c1
Explicitly blacklist unsafe elements, starting with <script>
...
Are there are any other elements that might be considered unsafe?
2014-03-19 10:05:44 +00:00
nameanyone
7616c4ce7d
Stop using obsoleted "-moz-border-radius" and "-webkit-border-radius" properties
...
Fixes #480
2014-03-18 16:38:52 -07:00
Jermolene
925b3d2a5b
Fix typo
2014-03-18 21:18:46 +00:00
Jermolene
b8d0fd059b
Fix bug with plugintiddlers filter operator
2014-03-18 21:18:45 +00:00
Jermolene
a19432541e
New architecture diagram and docs updates
2014-03-18 21:18:45 +00:00
Jeremy Ruston
b52299872a
Merge pull request #493 from BramChen/master
...
Add chinese translations of ClassicWarning section for TWC tiddlers
2014-03-18 08:45:56 +00:00
Bram Chen
699b863588
Add chinese translations of ClassicWarning section for TWC tiddlers
2014-03-18 09:53:29 +08:00
Jermolene
bdbbf94326
Update transclusion wikitext syntax to allow a template without a target tiddler
...
This allows us to transclude a tiddler without changing the current
tiddler with `{{||MyTiddler}}`.
2014-03-17 21:44:10 +00:00
Jermolene
cdf3e101a8
Fix crash with headings
...
`this.match[1].length` can get overwritten when we parse the content of
the heading
2014-03-17 20:55:08 +00:00
Jermolene
06500e5f71
New error message text for recursive transclusion error
2014-03-17 11:54:41 +00:00
Jermolene
9de17aa206
Make shadowTiddlers, pluginTiddlers and pluginInfo be private to the Wiki object constructor
2014-03-17 10:50:18 +00:00
Jermolene
279626a3e3
Freeze array or object tiddler fields
...
Previously object fields like the tags array weren’t frozen.
2014-03-17 08:58:42 +00:00
Jermolene
721e333a20
Starting to make the members of $tw.Wiki be private
...
We want to avoid plugins from directly accessing the tiddlers hashmap.
Later we’ll do pluginTiddlers, pluginInfo and shadowTiddlers.
2014-03-16 21:23:10 +00:00
Jermolene
499730c458
Remove whitespace between toolbar icons
2014-03-15 17:04:12 +00:00
Jermolene
baa8cf3dd0
Add a warning segment to templates for TWC tiddlers
...
Now there’s a warning banner on all TWC tiddlers. It includes an
`upgrade` button that currently just flips the tiddler type to TW5
2014-03-15 17:03:50 +00:00
Jermolene
f649b5b037
Extend button widget to set text references
...
Previously the `set` attribute could only be used to identify a
tiddler, not a full text reference.
2014-03-15 17:02:13 +00:00
Jermolene
afa677b9a0
Add a class to tiddler frames in view mode
...
We’re already marking tiddlers in edit mode with tw-tiddler-edit-mode,
makes sense to make view mode tiddlers too.
2014-03-15 11:20:33 +00:00
Jeremy Ruston
6fe884bb8a
Merge pull request #489 from BramChen/master
...
Keep up-to-date changes for zh-Hant and zh-Hans
2014-03-15 09:02:29 +00:00
Bram Chen
00af144085
Add Chinese translations for tiddler info 'advanced' panel
2014-03-15 09:57:50 +08:00
Bram Chen
5d893397c4
Merge remote-tracking branch 'upstream/master'
2014-03-15 08:39:54 +08:00
Jermolene
42c67cfeb7
Add tiddler info "advanced" panel
2014-03-14 15:23:28 +00:00
Jermolene
b714c67374
Refactor plugin loading to retain plugin info for all plugins
...
Previously we were not reading the plugin info for plugins that hadn’t
been loaded.
2014-03-14 15:23:12 +00:00
Jermolene
00cb2f4659
Add links to static representations for people with JS turned off
2014-03-14 15:21:52 +00:00
Jermolene
24b6603c42
Fix problem with checking versions of plugins carrying a badly formatted "version" field
2014-03-14 10:43:22 +00:00
Bram Chen
a82e50c07f
Keep up-to-date changes for zh-Hant and zh-Hans
2014-03-14 13:02:49 +08:00
Jermolene
ebc77fbd09
Get ready for a new view template segment carrying information about plugins
2014-03-13 17:44:27 +00:00
Jermolene
96457d8011
Rejig plugins tab of control panel
...
Now we divide the plugins into categories and organise the displayed
information a bit better
2014-03-13 17:43:18 +00:00
Jermolene
3d9f61f041
More whitespace in core templates
2014-03-13 17:42:29 +00:00
Jermolene
f48701544e
Enhance tiddler title for system tiddlers
...
Now the $:/ part of the name is rendered in grey, making the main part
of the title more prominent.
@tobibeer suggested this a long time ago; good idea!
2014-03-13 17:40:53 +00:00
Jermolene
50cf9678cb
Add support for tw-home message
2014-03-12 22:32:13 +00:00
Jermolene
c4119f4f93
Default colour tweaks
2014-03-12 22:22:18 +00:00
Jermolene
cafe74fc89
Tweaks to list-before and list-after field descriptions
2014-03-12 22:22:02 +00:00
Jeremy Ruston
2466389397
Merge pull request #485 from TheDiveO/master
...
added descriptions for list-before, list-after
2014-03-12 21:57:41 +00:00
Jermolene
dd3ee2a603
Extend tag manager to edit icons assigned to tags
...
Add a dropdown for choosing available images for a tag.
As part of this change we need to tag tiddlers that contain images
typed as wikitext (these are inline SVG icons) so that we can display
them in the dropdown.
2014-03-12 21:56:46 +00:00
Jermolene
8e17c1dfd5
Fix setTextReference()
...
It wasn’t working for non-existent tiddlers. Also added support for
setting indexed properties of a data tiddler.
2014-03-12 21:54:43 +00:00
Jermolene
9bd0174205
Left off previous commit
2014-03-12 21:53:50 +00:00
TheDiveO
522dad95be
added descriptions for list-before, list-after
2014-03-12 21:26:18 +01:00
Jeremy Ruston
87c4839fed
Merge pull request #484 from TheDiveO/master
...
signed CLA
2014-03-12 20:06:01 +00:00
Jermolene
22b6425bac
Update link to tags docs
2014-03-12 20:05:45 +00:00
Jermolene
5ba92fe274
Update to latest version of normalize.css and fix tab styling
...
Tab styling was inconsistent on Firefox due to some line-height issues.
2014-03-12 20:05:34 +00:00
TheDiveO
91939d67ed
signed CLA
2014-03-12 20:45:04 +01:00
Jermolene
d0caf21b2d
Exclude attributes starting "on" on HTML elements
...
Because:
* It doesn't work well with TW5's refresh mechanism, which relies on
being able to regenerate any portion of the DOM as required; this
frequently causes inline handlers to be re-executed at unexpected times
(see
http://tiddlywiki.com/static/TiddlyWiki%2520for%2520Developers.html )
* It mixes TW5 version-specific JavaScript with user content
* In multiuser environments there is a security risk to importing or
viewing tiddlers you didn't author if they can have JavaScript in them
2014-03-12 16:39:18 +00:00
Jermolene
0d18f3cc5d
Add support for ordering tags by the 'list-before' and 'list-after' fields
...
See the discussion here:
https://groups.google.com/d/topic/tiddlywikidev/AXDJEjcAphs/discussion
2014-03-12 14:19:26 +00:00
Jermolene
a3507bf611
Freeze the fields of a tiddler
...
Thus enforcing the immutability of tiddler objects
2014-03-12 08:33:13 +00:00
Jermolene
62bc20a181
Restore visibility of system tags in view template
...
On discussion at Hangout #38 we felt that hiding them was confusing,
and that there were few situations where a user would see system tags
except on system tiddlers.
2014-03-11 18:25:41 +00:00
Jermolene
9ded88105b
Update test of tagging filter to reflect 0d7c4ae6c7
2014-03-11 15:53:41 +00:00
Jermolene
aec618793f
Fix problem with refreshing D3 plugin
...
Fixes #217
2014-03-11 11:12:56 +00:00
Jeremy Ruston
fe33906ef0
Merge pull request #481 from BramChen/master
...
Add chinese translation of canned filters
2014-03-11 08:30:33 +00:00
Jermolene
6a17bad96e
Add margin on code blocks and tables
2014-03-11 08:29:11 +00:00
Bram Chen
4f9fa5d66e
Add chinese translation of canned filters
2014-03-11 12:51:32 +08:00
Jermolene
0d7c4ae6c7
Include tags on shadow tiddlers in tagging filter
...
Ensures that for system tiddlers the info panel "Tagging" tab correctly
shows the tagged tiddlers.
Final fix for #478
2014-03-10 19:41:38 +00:00
Jermolene
2608a323eb
Hide system tags from the sidebar tags list
...
Part of #478
2014-03-10 19:40:07 +00:00
Jermolene
8d612aefdd
Fix problem with theme overrides triggering the syncer object
...
Fixes #479
2014-03-10 19:05:06 +00:00
Jermolene
ad96c48034
Docs updates
2014-03-10 18:41:30 +00:00
Jermolene
12e153ecff
Update wikitext tests to reflect title attribute
2014-03-10 18:41:26 +00:00
Jermolene
db35bc36aa
Disable storyviews when rendering to the fake dom
2014-03-10 18:41:11 +00:00
Jermolene
af34fbbca3
Only show command line help if no arguments are provided
...
Previously we were checking in a way that meant that `tiddlywiki
<wiki>` would trigger the help message.
2014-03-10 18:20:07 +00:00
Jermolene
8239275edb
Add dropdown of canned filter searches
...
Now you can pick from a dropdown of predefined filtered searches in the
advanced search filter tab.
2014-03-10 18:16:10 +00:00
Jermolene
be6509a17f
Remove system tags from sidebar tags listing
2014-03-10 18:15:12 +00:00
Jermolene
01e1133219
Fix bug where count widget wasn't being updated correctly
2014-03-10 18:15:00 +00:00
Jermolene
f04527ae32
Correct filter for count of overridden shadow tiddlers
2014-03-10 15:05:07 +00:00
Jermolene
98872bbe7c
Allow pasting/dropping of HTML content
...
Fixes #477
2014-03-09 20:39:03 +00:00
Jermolene
bc8b72e6eb
Use hasOwnProperty to text for tiddler existence
2014-03-09 19:20:58 +00:00
Jermolene
127d547632
Avoid confusion with the word "breaking"
...
I meant “broken” in the sense of “incompatible”, not “breaking” as in
“news”.
2014-03-09 09:19:47 +00:00
Jermolene
53755d87c8
Added tooltip examples to the link widget
2014-03-09 09:16:31 +00:00
Jermolene
289bec0fd5
Parse the wiki link tooltip as wiki text
2014-03-08 16:06:57 +00:00
Jermolene
8bd1fa50dc
Fixed typo in dom maker
2014-03-08 10:43:01 +00:00
Jermolene
81af6bdd48
Fix typo in navigate handler for button widget
2014-03-08 10:22:09 +00:00
Jermolene
a5a2c718b1
Add support for a tooltip on the link widget
2014-03-06 12:38:47 +00:00
Jeremy Ruston
6b67a3f3c2
Merge pull request #471 from BramChen/master
...
Update doc and the chinese tranlastions of descriptive text for missing tiddlers
2014-03-06 08:31:54 +00:00
Jermolene
1cea80a3ab
Docs update
2014-03-06 08:31:05 +00:00
Bram Chen
b6a202f525
Update doc
2014-03-06 11:47:20 +08:00
Bram Chen
7b109506c8
Update the chinese tranlastions of descriptive text for missing tiddlers
2014-03-06 11:31:17 +08:00
Jermolene
c277370e48
Display --help message if run without arguments
...
Fixes #389
2014-03-05 11:13:58 +00:00
Jermolene
f83443feac
Fix location of stylesheet docs
2014-03-05 09:14:08 +00:00
Jermolene
8529ad13d6
Docs on using stylesheets
2014-03-05 09:13:14 +00:00
Jeremy Ruston
8deedf93a2
Merge pull request #467 from nameanyone/master
...
Fix a typo
2014-03-05 08:22:23 +00:00
nameanyone
bdcfa75220
Fixed a typo
2014-03-04 20:15:53 -08:00
nameanyone
20d39588b5
Signed CLA
2014-03-04 20:14:57 -08:00
Jermolene
67f3d58f71
Fix problem with "null" message when unloading under IE11
...
Fixes #457
2014-03-04 22:21:18 +00:00
Jeremy Ruston
bbfb855c2e
Merge pull request #465 from BramChen/master
...
Add chinese translation of MissingTiddler stuff in Misc.multids.
2014-03-04 21:47:18 +00:00
Jermolene
6a63a45968
Improved tiddler filter documentation
2014-03-04 21:17:01 +00:00
Jermolene
70d2d4b7a1
Remove the "create" button from the missing tiddler template
2014-03-04 18:55:43 +00:00
Bram Chen
6aa21b3db6
Add chinese translation of MissingTiddler stuff in Misc.multids.
2014-03-04 17:38:26 +08:00
Jermolene
ff32317f5b
Update grammar docs
2014-03-04 09:06:14 +00:00
Jermolene
df6436a12c
Allow middle mouse button to trigger navigation suppression when clicking a tiddler link
...
Equivalent to holding control/command while clicking.
2014-03-03 09:09:13 +00:00
Jermolene
0200bc1b4e
Force the highlight language to lower case
2014-03-02 19:42:40 +00:00
Jermolene
bd750a21e2
Add docs for keyboard widget
2014-03-02 19:30:13 +00:00
Jermolene
8c3782c1e2
Docs update
2014-03-02 18:43:59 +00:00
Jermolene
2f2a257745
Improve the descriptive text for missing tiddlers
...
Now we explain that it’s a missing tiddler, and add a “create” button
2014-03-02 18:43:22 +00:00
Jermolene
ab7d2d64e7
Add docs for tw-close-other-tiddlers message
...
Fixes #461
2014-03-02 18:36:46 +00:00
Jermolene
bc18501b59
Add @buggj's plugin site to the Community tiddler
2014-03-02 18:36:06 +00:00
Jermolene
0a5ce6d740
Prepare for 5.0.9-prerelease
2014-03-02 18:35:45 +00:00
Jermolene
622d4a2d50
Version number update for 5.0.8-beta
2014-02-28 15:54:01 +00:00
Jermolene
0cff397111
Set release date for 5.0.8
2014-02-28 15:52:12 +00:00
Jermolene
fbf4486d92
Docs updates
2014-02-28 15:50:19 +00:00
Jermolene
2714e0939f
Docs updates
2014-02-28 15:48:12 +00:00
Jermolene
bde6f8d2b8
Docs updates
2014-02-28 15:31:43 +00:00
Jermolene
4194f9f20f
Retract change to new tiddler handling in navigator.js
...
Original commit: d5c31ed07f
2014-02-28 15:31:35 +00:00
Jeremy Ruston
2c6e7ef489
Merge pull request #451 from xcazin/fr-FR
...
Elements necessary to create fr-FR.html via bld-languages.sh, aside "de" and "zh" files
2014-02-28 09:08:24 +00:00
Xavier Cazin
cc5be5eb15
Elements necessary to create an empty fr-FR.html via bld-languages.sh, aside "de" and "zh" files
2014-02-27 23:19:38 +01:00
Jeremy Ruston
be8efe1bc7
Merge pull request #441 from BramChen/master
...
Keep up-to-date changes for chinese translation
2014-02-27 18:48:38 +00:00
Jeremy Ruston
db3c06ecd0
Merge pull request #446 from xcazin/fr-FR
...
Last fr-FR translations (along with minor improvements and corrections), plus a typo on transclusion of rendertiddlers.tid.
2014-02-27 18:45:02 +00:00
Jeremy Ruston
947b48bcf9
Merge pull request #447 from pmario/de-DE
...
Help text tiddlers initial translation to de-DE
2014-02-27 18:41:11 +00:00
Jeremy Ruston
bed6cc7d67
Merge pull request #450 from xcazin/modifications
...
Added blank lines to switch to block rendering in RevealWidget examples
2014-02-27 18:40:18 +00:00
Xavier Cazin
63cb0eb3db
In the examples, missing blank lines prevented the revealed text
...
to display as a block when clicking on buttons.
2014-02-27 19:21:04 +01:00
Jermolene
89c7310a53
Docs update
2014-02-27 17:07:52 +00:00
Jermolene
f244293cac
Add a link back to github for each tiddler on tiddlywiki.com
2014-02-27 16:30:24 +00:00
Jermolene
3994f0dbc6
Add new option to retain tiddler paths
2014-02-27 16:30:05 +00:00
Jermolene
66bb7ad6ba
Add backups to the roadmap
2014-02-27 16:29:46 +00:00
Jermolene
84928ac99c
Docs updates
2014-02-26 20:27:00 +00:00
Mario Pietsch
6b4ec343a7
help text tiddlers translated to de-DE
2014-02-26 21:14:35 +01:00
Jermolene
3ff85e9507
Docs updates about edition name changes
2014-02-26 19:58:30 +00:00
Jermolene
cd09cf3874
Better documentation for widget messages
2014-02-26 19:55:42 +00:00
Mario Pietsch
9ce79b0795
Merge branch 'master' of https://github.com/Jermolene/TiddlyWiki5 into de-DE
2014-02-26 19:41:33 +01:00
Xavier Cazin
e2f964ae73
Translation of new Help directory on server commands. Plus minor improvements on previous translated strings.
2014-02-26 16:09:31 +01:00
Xavier Cazin
2aca526d4e
Typo in transclusion.
2014-02-26 15:12:17 +01:00
Jermolene
0aa9f26d51
Docs update
2014-02-26 08:27:40 +00:00
Bram Chen
9e820a602b
Keep up-to-date changes for chinese translation
2014-02-26 12:18:00 +08:00
Jermolene
d38c513512
Remove some coloured tag pills
...
When we render the static representation we get case insensitive
titles, so “community” overwrites “Community”, unhelpfully.
2014-02-25 22:38:34 +00:00
Jermolene
83b2a5d305
More tag colours
2014-02-25 21:22:21 +00:00
Jermolene
bcc282016e
Use proper tag pills in the tag manager
2014-02-25 21:22:15 +00:00
Jermolene
cdc99ac29c
Whoops, retract change to defaulttiddlers
2014-02-25 20:16:38 +00:00
Jermolene
cf4eed0129
Add first pass at a tag manager
...
As independently suggested by @Skeeve and @Spangenhelm
2014-02-25 20:14:16 +00:00
Mario Pietsch
70306de1b1
changed favicon, so flag colors are right now
2014-02-25 16:58:43 +01:00
Jeremy Ruston
a1a5ada68f
Merge pull request #437 from pmario/de-DE
...
de-DE added favicon and typo fixes
2014-02-25 14:51:48 +00:00
Jermolene
9233069065
Docs update
2014-02-25 14:51:14 +00:00
Jermolene
e5103c32f3
Move command documentation into the core
2014-02-25 14:50:37 +00:00
Jermolene
cadeb9654c
Add help command
2014-02-25 14:50:18 +00:00
Jermolene
2ed8df0d1f
Add a new "commands" filter
2014-02-25 14:49:56 +00:00
Jermolene
3636744d4f
Add support for retrieving formatted text content from the fake dom
...
The idea is to convert HTML block elements into newlines, so that the
output is readable on a terminal.
2014-02-25 14:49:07 +00:00
Jermolene
8ce7c3920c
Get rid of the old print command
...
We’ll be introducing a help command to replace it
2014-02-25 14:47:19 +00:00
Mario Pietsch
470c056b8d
Merge branch 'master' of https://github.com/Jermolene/TiddlyWiki5 into de-DE
2014-02-25 12:13:30 +01:00
Mario Pietsch
fd3ce5f668
new favicon for german languages. some type fixes.
2014-02-25 12:13:19 +01:00
Jermolene
f42246f171
Docs update
2014-02-24 14:40:41 +00:00
Jermolene
599f5978c9
Docs updates
2014-02-24 14:09:29 +00:00
Jermolene
042698b508
Some rejigging of the editions folders
...
Now we’re optimising the editions for use with the —init command.
Documentation coming up.
2014-02-24 13:28:55 +00:00
Jermolene
a1ad735822
Extend the init command to allow editions to be merged
...
Now we can say “—init tw5.com clientserver” to get the tw5.com content
with the client server plugins.
2014-02-24 10:58:11 +00:00
Jermolene
3f6bf2452a
Init command should remove any includeWikis definitions
...
The includeWikis references will otherwise be broken when the edition
is copied.
2014-02-24 10:14:17 +00:00
Jermolene
886d648568
Remove obsolete plugins from tw5.com edition
2014-02-24 09:39:45 +00:00
Jermolene
dd299bf769
Typos and style tweaks
2014-02-23 23:09:58 +00:00
Jermolene
f3930ad69c
Add init command to initialise a wiki folder
...
Fixes #362
2014-02-23 22:58:17 +00:00
Jermolene
b0394f1560
Add support for utils-node modules that are only run under Node.js
2014-02-23 22:57:25 +00:00
Jermolene
327403b3c9
Docs update
2014-02-23 19:28:05 +00:00
Jermolene
6cd13efd48
Docs updates
2014-02-23 19:22:44 +00:00
Jeremy Ruston
6947f8ebc2
Merge pull request #431 from pmario/de-DE
...
Added new translations for de-DE
2014-02-23 18:08:27 +00:00
Jermolene
0623dd5b7f
Include toolbar button colours in palettes
2014-02-23 17:54:38 +00:00
Jermolene
99ccdf4584
Add confirmation when deleting tiddlers
...
Fixes #381
2014-02-23 17:37:32 +00:00
Jeremy Ruston
a332b82df5
Merge pull request #434 from BramChen/master
...
Get back on the right path
2014-02-23 17:31:11 +00:00
Jermolene
7f5f4df562
Tweaks to the vanilla theme and palette entries
2014-02-23 17:19:58 +00:00
Bram Chen
2b4dfba2ff
Get back on the right path
2014-02-23 20:41:44 +08:00
Jermolene
260080164f
Update setTiddlerData() to preserve tiddler dictionaries
...
Previously, data tiddlers were always being saved in JSON format,
regardless of the original format.
2014-02-23 12:33:00 +00:00
Mario Pietsch
3f7ff22280
Merge branch 'master' of https://github.com/Jermolene/TiddlyWiki5 into de-DE
2014-02-22 19:16:25 +01:00
Mario Pietsch
51c1a863f8
translations for Misc.multids and ControlPanel. Fields moved to outer dir
2014-02-22 19:16:16 +01:00
Jermolene
823b4fa61b
Docs updates
2014-02-22 17:06:02 +00:00
Jermolene
c3f9cf41d5
Tweaks to @giffmex's palettes
2014-02-22 17:05:56 +00:00
Jermolene
ecb845f1cd
Require that wiki folders have a tiddlywiki.info file
...
Previously, we were just using default content if the tiddlywiki.info
file was missing. This allowed us to do things like `tiddlywiki
—server` without actually being in a valid wiki folder.
Fixes #361
2014-02-22 16:38:34 +00:00
Jeremy Ruston
0737e62161
Merge pull request #430 from xcazin/fr-FR
...
Corrections on fr-FR translation per Julie Strzelecki remarks.
2014-02-22 16:13:49 +00:00
Jermolene
39ee69910e
More docs updates
2014-02-22 16:13:32 +00:00
Jermolene
2ab0facf3a
Extend button widget to allow navigating to a tiddler
...
Fixes #327
2014-02-22 16:13:16 +00:00
Xavier Cazin
6bff3e3163
Corrections on fr-FR translation per Julie Strzelecki remarks.
2014-02-22 17:10:14 +01:00
Jermolene
ec606c89d2
Docs updates
2014-02-22 13:31:24 +00:00
Jermolene
9e0f1240c5
Change SiteTitle/SiteSubtitle into $:/SiteTitle and $:/SiteSubtitle
...
To make things more consistent
2014-02-22 11:39:18 +00:00
Jermolene
199fdb090d
Convert @giffmex themes into colour palettes
...
Although there are some style changes in the existing themes they’re
mostly a matter of a changed palette.
@giffmex - I’ll send you a prerelease of 5.0.8 so that you can tweak
the palettes if you’ve got time.
2014-02-22 11:00:51 +00:00
Jermolene
d6a44b67a3
Fix control panel modules tab
2014-02-22 08:57:39 +00:00
Jeremy Ruston
2e7efe2dc0
Merge pull request #428 from xcazin/fr-FR
...
Change suffix tids to multids for 2 fr-translated multi tiddler files
2014-02-22 08:54:10 +00:00
Jermolene
639fd4be20
Docs updates
2014-02-22 08:53:58 +00:00
Jermolene
75ff9fb6c0
Allow the end of text to be treated as a linebreak for parsing HTML tags
2014-02-22 08:43:03 +00:00
Xavier Cazin
57c956716e
Overlooked formatting consequences for 2 translation decisions
2014-02-21 23:02:17 +01:00
Xavier Cazin
cfa6f0a8a6
Change suffix of two MultiTiddlerFiles from tids to multids
2014-02-21 22:34:07 +01:00
Jermolene
0961b0426b
Use import report tiddler only if more than one tiddler is imported
...
If there’s only one, just display the tiddler itself.
2014-02-21 20:17:34 +00:00
Jeremy Ruston
cf5fa875aa
Merge pull request #426 from xcazin/fr-FR
...
Translation of recently added translateable strings.
2014-02-21 18:31:23 +00:00
Xavier Cazin
a812c6e386
Translation of recently added translateable strings.
2014-02-21 19:26:49 +01:00
Jermolene
dfbb6e1fba
Ensure that $:/isEncrypted is reset if modified
2014-02-21 18:21:10 +00:00
Jermolene
31975e0042
Update importing so we don't open every imported tiddler
...
Instead we just display a report with links to each imported tiddler.
Should make importing much faster.
2014-02-21 18:21:10 +00:00
Jeremy Ruston
38ef4fa609
Merge pull request #425 from BramChen/master
...
Add "Misc.multids" to chinese language packs
2014-02-21 16:13:52 +00:00
Jermolene
7f66df78ff
Cleaning up from mangled merge of @xcazin's fr-FR translation
2014-02-21 16:13:10 +00:00
Jermolene
96dc489ba8
Merge branch 'fr-FR' of https://github.com/xcazin/TiddlyWiki5 into xcazin-fr-FR
...
Conflicts:
languages/fr-FR/ControlPanel.tids
licenses/cla-individual.md
2014-02-21 16:05:11 +00:00
Bram Chen
34a7fc6084
Merge remote-tracking branch 'upstream/master'
2014-02-22 00:01:41 +08:00
Bram Chen
41575b8012
Add Misc.multids to chinese language packs and more words and phrases are improved
2014-02-22 00:01:06 +08:00
Jermolene
cb5b95add2
Extend fakedom to support .value property
...
So that 88ffb2ad12 will work on the server
2014-02-21 15:43:25 +00:00
Bram Chen
372553d9da
Merge remote-tracking branch 'upstream/master'
2014-02-21 23:01:59 +08:00
Bram Chen
747ec243ff
Merge remote-tracking branch 'upstream/master'
2014-02-21 22:41:08 +08:00
Jeremy Ruston
1bc2700137
Merge pull request #424 from BramChen/master
...
Improve more Simplified Chinese words and phrases used in chinese langua...
2014-02-21 14:38:38 +00:00
Jermolene
4ee277f41b
Fix some missing translateables
2014-02-21 14:27:49 +00:00
Bram Chen
894588db54
Improve more Simplified Chinese words and phrases used in chinese language pack.
2014-02-21 22:12:41 +08:00
Jermolene
68bcbff753
Rough and ready control over bitmap editor line width and colour
...
Fixes #414
2014-02-21 14:06:04 +00:00
Jeremy Ruston
d4baf515ed
Merge pull request #423 from Skeeve/patch-3
...
Update navigator.js
2014-02-21 09:40:16 +00:00
Skeeve
d5c31ed07f
Update navigator.js
...
As described here: https://groups.google.com/d/msg/tiddlywikidev/AWvXz7RMIC4/gFF5crN2UJoJ
Providing a name for the new tiddler message only works if a skeleton tiddler already exists. If not, "New Tiddler" is taken. This change fixes that in that the provided name is taken even if there is no skeleton.
2014-02-21 10:37:20 +01:00
Jermolene
9b6c59e9a6
Allow .multids files to contain blank lines and ": " sequences
...
Also added a warning for multiple definitions of the same tiddler in a
multids file.
Fixes #415
2014-02-21 09:24:36 +00:00
Jermolene
ec0769d7ca
Fix typo
...
Fixes #417 , thanks @pmario
2014-02-21 09:11:27 +00:00
Xavier Cazin
93f5e736e7
Update cla-individual.md
2014-02-21 10:07:56 +01:00
Jermolene
c4058c4662
Another block mode vs inline mode fix
2014-02-21 09:07:46 +00:00
Jermolene
f59b84e63b
Add DanieloRodriguez's BrainTest to Community tiddler
...
And remove Bram’s translation, because it will be built into 5.0.8
2014-02-20 22:47:40 +00:00
Jermolene
c17844b815
Another fix for the block vs inline handline
2014-02-20 22:43:04 +00:00
Jermolene
c761bbe2ed
Restore stub French translation
2014-02-20 22:27:43 +00:00
Jermolene
279f32080d
Start to make the core templates more readable
...
Yay for line breaks.
2014-02-20 22:22:45 +00:00
Jermolene
06a0d21734
Use double linebreaks to indicate content of a widget or html element should be parsed in block mode
...
Fixes #82 .
The old behaviour was to parse the content of a widget or html element
in block mode if the opening tag was followed by a line break. The new
behaviour requires two line breaks.
This makes it possible to include linebreaks more liberally within
wikitext, although care must still be taken to only use double line
breaks when the block mode behaviour is desired.
The code change here is very simple, just a single line change in
html.js. Most of the other changes are to convert various single line
breaks into double line breaks.
2014-02-20 21:42:31 +00:00
Xavier Cazin
d8513b23c2
Removed .gitignore by mistake
2014-02-20 22:00:11 +01:00
Xavier Cazin
49b4e86091
Two last minute corrections that deserve being integrated.
2014-02-20 21:55:54 +01:00
Xavier Cazin
f522a96064
Last tweaks before pull request
2014-02-20 21:13:46 +01:00
Jermolene
8f9d88f25b
Fix static stylesheets
2014-02-20 19:28:17 +00:00
Jermolene
e88f8ad4e9
Fix typo with <<color>> macro
2014-02-20 19:12:05 +00:00
Jermolene
0480bf023d
Fix static CSS generation
2014-02-20 18:33:01 +00:00
Jermolene
e3c1906eaf
Make the show/hide editor button be translateable
...
Missed by accident from earlier commit
2014-02-20 17:53:23 +00:00
Jeremy Ruston
45f29f6425
Merge pull request #421 from BramChen/master
...
Add palette editor translation for zh-Hant and zh-Hans
2014-02-20 17:35:43 +00:00
Jermolene
f4c7a269bd
Allow "<<color>>" as a synonym for the "<<colour>>" macro
...
Entente cordiale!
2014-02-20 17:14:27 +00:00
Bram Chen
46b2c9e24c
Merge remote-tracking branch 'upstream/master'
2014-02-21 00:44:34 +08:00
Bram Chen
f46864fff5
Add palette editor translation for zh-Hant and zh-Hans
2014-02-21 00:41:45 +08:00
Jermolene
5bc408fa75
Remove the old placeholder translations for French and US English
2014-02-20 16:20:14 +00:00
Jermolene
921ff6ae39
Make palette editor translateable
2014-02-20 16:07:03 +00:00
Jermolene
b9e72fb676
Move starlight themes macros into the core
2014-02-20 15:59:44 +00:00
Jermolene
1258c16e2b
Add Simplified Chinese to tw5.com
...
We’ll have to stop adding every available translation to tiddlywiki.com.
2014-02-20 15:55:31 +00:00
Jeremy Ruston
35eb3aee35
Merge pull request #420 from BramChen/master
...
Add initial translation for Simplified Chinese (zh-Hans).
2014-02-20 15:14:26 +00:00
Bram Chen
12016bd0f8
Add initial translation for Simplified Chinese (zh-Hans).
2014-02-20 23:03:06 +08:00
Xavier Cazin
3817ba642d
Consistency tweaks
2014-02-20 15:00:01 +01:00
Jeremy Ruston
d6ef67e817
Merge pull request #419 from BramChen/master
...
remove extraneous files in editions/zh-Hant
2014-02-20 13:10:54 +00:00
Bram Chen
a51a5e969f
remove extraneous files in editions/zh-Hant
2014-02-20 21:03:26 +08:00
Jeremy Ruston
ae9d0f8288
Merge pull request #418 from BramChen/master
...
Add initial translation for Traditional Chinese (zh-Hant).
2014-02-20 12:22:30 +00:00
Bram Chen
b26b620548
Add initial translation for Traditional Chinese (zh-Hant).
2014-02-20 20:14:27 +08:00
Jermolene
d21fb85d94
Change .tids file extension to .multids
...
Hopefully less confusing
2014-02-20 10:27:02 +00:00
Jermolene
bcd86d5861
Add palette editor
2014-02-20 10:00:38 +00:00
Jermolene
5417b8c4d7
Add 'indexes' filter operator
...
Returns the indexes within a data tiddler.
We’re about to use this to enumerate the colours within a palette.
2014-02-20 10:00:13 +00:00
Jermolene
2744671211
Fix generateTitle to avoid clashing with shadow tiddlers
2014-02-20 09:58:01 +00:00
Jermolene
88ffb2ad12
Fix problem that was causing Chrome to display black in colour picker swatches
...
Hurrah!
2014-02-20 09:57:44 +00:00
Xavier Cazin
aa27305134
Very first pass. Certainly needs consistency checks
2014-02-20 00:29:02 +01:00
Jermolene
a186b6f978
Remove duplicate definition
2014-02-19 21:22:36 +00:00
Jeremy Ruston
e55e7ab31b
Merge pull request #416 from pmario/de-DE
...
Add initial translation for de-AT and de-DE.
2014-02-18 21:09:33 +00:00
Jermolene
e1dfb621f5
Add colour swatches to palette switcher
2014-02-18 13:59:11 +00:00
Mario Pietsch
bd552aedde
Add initial translation for de-AT and de-DE. de-AT depends on de-DE and doesn't contain any tiddlers atm. Added de-CH plugin info with no content atm. Added a de-AT-DE edition, that will contain german how-to's in the future.
2014-02-18 00:06:02 +01:00
Jermolene
3f89d2d0fa
Documentation for translators
...
I’d appreciate help with putting together more complete and foolproof
instructions.
2014-02-17 22:46:30 +00:00
Jermolene
c999d82a23
Palette and theme tweaks
2014-02-17 22:45:46 +00:00
Jermolene
118b841aa2
More palette tweaks and polish
2014-02-17 17:30:02 +00:00
Jermolene
ca1daf5a4e
First pass at switchable colour palettes
...
Fixes #410
Still some cleaning up to do, and we need a way for incomplete palettes
to inherit from a base palette.
2014-02-17 12:09:10 +00:00
Jermolene
5e9dae8fb4
Fix view widget so that it works with indexes
2014-02-17 11:28:48 +00:00
Jermolene
d00a82e9e9
Put language files in alphabetical order
2014-02-17 08:58:53 +00:00
Jermolene
3307604130
Make type information translateable
2014-02-16 19:58:53 +00:00
Jermolene
1ff8d225d9
Rejig the control panel to use nested tabs for Appearance and Advanced
2014-02-16 19:33:18 +00:00
Jermolene
489509c810
Add missing field descriptions
2014-02-16 19:11:11 +00:00
Jermolene
aa6e02ce8e
Fix typo
2014-02-16 19:10:55 +00:00
Jermolene
df8ff9eb26
Make the control panel "internal" tab translatable
2014-02-16 19:02:24 +00:00
Jermolene
e051eb7d90
Making more things translateable
...
Now we’re done with the text that lives in tiddlers, and we’ll need to
get on with the text that is embedded in code modules.
2014-02-16 09:46:43 +00:00
Jermolene
75b9de222e
Add a demo of alerts and tweak styles
2014-02-15 17:36:49 +00:00
Jermolene
5a45fffa9e
Get the remaining core control panel tabs prepared for translation
...
We’ll do ThemeTweaks separately as it’s part of the Vanilla theme
2014-02-15 13:29:24 +00:00
Jermolene
5252328dd9
Add note about joining Google Groups without a Google account
2014-02-15 13:11:10 +00:00
Jermolene
a763610db1
Get rid of the separate language prompt tiddler
...
More consistent to stick with .tids files
2014-02-15 11:36:00 +00:00
Jermolene
c43cd325ca
Reduce the inconsistent use of "language" vs. "lingo"
...
Now we’re just using the word “lingo” for the macro defined in
PageTemplate (where the abbreviation is useful), and using the full
word “language” everywhere else.
It’s possible that we should be using “locale” instead of “language”,
what do you think?
2014-02-15 11:32:11 +00:00
Jermolene
e9ba7f3d70
Add example of creating substories
2014-02-14 22:22:41 +00:00
Jermolene
68809f9333
Add a bit of the old TWC text talking about the "tiddler" name
2014-02-14 22:22:31 +00:00
Jermolene
42b8b86e52
Tidy up docs
2014-02-14 22:22:11 +00:00
Jermolene
69c0b5e031
Fix problem with pasting items into the browser
2014-02-14 20:00:23 +00:00
Jermolene
30997f3f24
Docs update
2014-02-14 19:28:44 +00:00
Jermolene
bea8730a47
Fix problem with tiddlers of the type text/css
...
Fixes #395
2014-02-14 19:25:38 +00:00
Jermolene
c3254bc981
Add hint for typing triple backticks on some keyboards
2014-02-14 19:09:49 +00:00
Jermolene
e43a190dab
Docs updates
2014-02-14 12:40:37 +00:00
Jermolene
4836cf83e2
Enhance alerting to coalesce repeated alerts with the same text
2014-02-14 10:29:26 +00:00
Jermolene
44678b2ea2
Better not to use relative dates for alerts
...
Relative dates don’t autorefresh at the moment.
2014-02-14 10:00:02 +00:00
Jermolene
70a120d4a6
Expand the logging mechanism to support alerts overlaid on the main screen
...
Now we get decent visual indication of sync errors, for instance. Still
work to do to coalesce alerts so that the screen doesn’t fill up with
them after an interval. And probably we should add a button to clear
all alerts.
2014-02-14 07:53:41 +00:00
Jermolene
28212f08b2
Darker text for the "close all" text on the "open" sidebar tab
2014-02-13 19:25:25 +00:00
Jermolene
9bb600299f
Extend the navigator widget to maintain the "current-tiddler" field on the history list
2014-02-13 17:59:51 +00:00
Jermolene
9db887748b
Extend setTiddlerData() to set arbitrary fields
2014-02-13 17:59:33 +00:00
Jermolene
800bc639f9
Fix problem with the reveal widget not refreshing properly when used with text references
...
The check for changed tiddlers was failing because `this.stateTitle`
contains the entire text reference, not just the tiddler title.
2014-02-13 17:59:10 +00:00
Jermolene
dc8e84fcb7
Credit for @Tikkoneus's grammar docs
2014-02-13 15:47:05 +00:00
Jermolene
ad4e7ccb17
Add experimental support for building plugins in the browser
...
It’s a bit rough and ready, but works.
2014-02-13 14:23:27 +00:00
Jermolene
4654f6b971
Fix default tab in the "more" sidebar tab
2014-02-13 14:06:20 +00:00
Jermolene
6f23aeabb4
Add config tiddler for host string
2014-02-12 22:20:28 +00:00
Jermolene
21eae0135d
Fix typos
2014-02-12 22:20:20 +00:00
Jermolene
470beabf17
Enhance links so that control/command clicking suppresses navigation
...
Control- or Command-clicking on a link will now open the target tiddler
but suppress navigating to it. Kind of like opening in a background tab.
2014-02-12 22:00:12 +00:00
Jeremy Ruston
523eae83ff
Merge pull request #407 from Skeeve/regexp_filter
...
fixed an awful typo in the regexp
2014-02-12 21:38:54 +00:00
Jermolene
ca0c352278
Extend the transclude widget to fallback to displaying it's child nodes if the target isn't defined
2014-02-12 21:38:37 +00:00
Stephan Hradek
0dc8de9dd2
fixed an awful typo in the regexp
...
The regexp fails when backslashes are used in the search-regexp. The closing bracket was at the wrong position.
2014-02-12 22:34:13 +01:00
Jermolene
b5225f5ca8
Remove obsolete VideoWidget docs
2014-02-12 20:04:29 +00:00
Jermolene
1a8d6811b7
Add new edition for Tank, along with a build script
2014-02-12 18:29:32 +00:00
Jermolene
d56eec40c9
Update title for the TiddlyWeb edition
2014-02-12 18:29:10 +00:00
Jermolene
b72d7f1447
Remove extraneous tiddler from tw5tiddlyweb edition
2014-02-12 18:29:02 +00:00
Jermolene
ecad2bf7a8
Add better control over whether tiddlers are transcluded in block or inline mode
2014-02-12 17:59:28 +00:00
Jermolene
f67e216b3a
Merge branch 'reduce-wikilinks' of https://github.com/pmario/TiddlyWiki5 into pmario-reduce-wikilinks
2014-02-12 16:32:28 +00:00
Jermolene
8b3bfa6805
Allow [title[Blah]] to match missing tiddlers
...
Fixes #404
2014-02-12 16:01:20 +00:00
Jermolene
01fa82fac1
Move the modal background blur effect from Snow White to Vanilla
...
It’s a slow effect, and so it should be possible to suppress it by
returning to the barebones Vanilla theme.
2014-02-12 15:33:21 +00:00
Jermolene
d5b526914b
Simplify the regular expression for HTML comments
...
We were getting catastrophic backtracking in Chrome for some input
texts where the closing “—>” of the comment was omitted.
2014-02-12 15:24:03 +00:00
Jermolene
5c66bc6dbc
Update the reveal widget to allow control over content retention
...
Thus bringing back the animation of the opening and closing of the info
panel.
2014-02-12 08:32:19 +00:00
Mario Pietsch
1eab3ecbb2
remove temporary files
2014-02-11 21:09:22 +01:00
Mario Pietsch
280bbde329
remove redundant wiki links in tiddlers
2014-02-11 21:02:23 +01:00
Jermolene
dd451800c7
Specify encoding for incoming requests
...
Fixes #397
2014-02-11 19:42:45 +00:00
Jermolene
190ced7cdd
Sync from server even when not logged in
2014-02-11 19:10:40 +00:00
Jermolene
7a62a86baf
Docs updates
2014-02-11 19:10:17 +00:00
Jermolene
1086c51019
Fixed problem with field mauling when reading skinny tiddlers
...
The problem was showing up as tiddlers with the field “fields” and the
value “[Object object]”.
2014-02-11 15:47:56 +00:00
Jermolene
daa79a8612
Move the en-GB language plugin into the core
...
We need to have the default language baked into the core so that we
don’t have problems if no language plugins are available.
2014-02-11 13:20:17 +00:00
Jermolene
441d9078fa
Coding style tweaks for #399
2014-02-10 17:34:10 +00:00
Jeremy Ruston
f0ab607ea1
Merge pull request #399 from shendaras/patch-1
...
getRelativeDate: support for negative deltas
2014-02-10 17:33:08 +00:00
Jeremy Ruston
afaf5b23c9
Merge pull request #400 from shendaras/patch-2
...
Sign individual CLA.
2014-02-10 17:22:42 +00:00
Jermolene
f68d48fcd3
Docs on searching
2014-02-10 16:22:02 +00:00
Jermolene
10891081ca
Added formal grammar documentation for tiddler filters
2014-02-10 15:52:49 +00:00
Jermolene
ecba4f71ea
Clean up the highlight plugin
...
Fixing various issues that were preventing language specifiers from
working.
2014-02-10 13:51:38 +00:00
Jermolene
e003889171
Start translating the control panel
2014-02-09 20:34:58 +00:00
Jermolene
1f41daf433
Add support for multi-tiddler files with a .tids extension
2014-02-09 20:34:42 +00:00
Jermolene
a2cbc2deb5
Rejig the tabs macro to wikify captions
...
This will allow us to translate tab captions
2014-02-09 19:19:40 +00:00
Jermolene
dea08ed4f8
First pass at language plugins for internationalisation
...
Still quite a few details to work out, but this shows the basic idea of
re-using the theme mechanism to handle language plugins.
Comments and questions welcome.
2014-02-09 19:18:46 +00:00
Jermolene
d1bc053a9c
Update control panel text
2014-02-08 17:30:02 +00:00
Jermolene
73c30716dc
Unlinkify the current theme name
...
Having it link to the underlying plugin tiddler isn’t very useful
2014-02-08 17:29:42 +00:00
Jermolene
8ad34e2db9
Refactor the theme switcher to be a generic plugin switcher
2014-02-08 09:29:37 +00:00
Jermolene
b26a32b93a
Remove obsolete stylesheet helper
2014-02-08 09:29:11 +00:00
Daniel Barrett
f54122b90e
Sign individual CLA.
2014-02-07 08:18:44 -06:00
Jermolene
828fc9dcd0
Autosave when deleting a tiddler
2014-02-07 10:14:10 +00:00
Jermolene
f0d512edf0
Remove extraneous autosave attribute from navigator widget
...
Inadvertently committed.
2014-02-07 10:12:45 +00:00
Jermolene
2758e586bd
Add a "filter" tab to advanced search
2014-02-07 10:07:57 +00:00
Jermolene
68bcfe1c8c
Docs updates
2014-02-06 22:21:03 +00:00
Jermolene
dbd63e6fe7
Move some system tiddlers into the right name space
...
The tiddlers temporarily used for adding new fields and tags should be
in the $:/temp namespace so that they don’t dirty the store
2014-02-06 22:20:58 +00:00
Jermolene
a01bbd4b9c
Add automatic saving and warning on exit with unsaved changes
...
We re-use some of the existing syncer mechanism. It was already keeping
track of changes to tiddlers in the store when working with a tiddler
syncadaptor. Now it also tracks changes when there is no syncadaptor,
allowing us to provide a warning if there are unsaved changes.
2014-02-06 21:36:30 +00:00
Jermolene
8e8e31fb9f
Force position:relative on tag pills
...
This avoids a problem with tag pills not working properly within table
cells.
2014-02-06 12:48:10 +00:00
Jermolene
6d3d3322e5
Fix problem in server with URI encoding of titles in etags
...
Fixes #398
2014-02-05 19:39:29 +00:00
Daniel Barrett
d02ce5dbf3
oops, actually correct delta
...
Actually change delta to a positive number to get the logic the same.
2014-02-05 12:37:37 -06:00
Daniel Barrett
32f290dc13
getRelativeDate: support for negative deltas
...
Add support for format="relativedate" to be used when the date is in the future.
2014-02-05 11:44:01 -06:00
Jermolene
1d685df928
Add support for autosave
...
Causes the wiki to be autosaved whenever clicking “done” after editing
a tiddler. Only works with savers that support autosave. We should
probably make autosave configurable
2014-02-04 21:21:01 +00:00
Jermolene
4882f70557
Clearer explanation of key descriptor syntax
2014-02-04 20:05:34 +00:00
Jermolene
7eafd51a7d
Use placeholder text for editing missing tiddlers
...
Fixes #387
2014-01-30 17:39:32 +00:00
Jermolene
e6fa9b8a85
Add number of tags to control panel "Basics" tab
2014-01-30 16:51:36 +00:00
Jeremy Ruston
1a54d590e1
Merge pull request #388 from simonbaird/sameday_tz_fix
...
Also fix timezone related eachday test failure
2014-01-30 08:30:29 -08:00
Jermolene
d72d245523
Remove "escape" keyboard shortcut for abandon editting
...
Too easy to trigger accidentally, until we have confirmations.
2014-01-30 16:26:50 +00:00
Jeremy Ruston
7b054440ca
Merge pull request #374 from Skeeve/patch-1
...
Update utils.js
2014-01-30 08:24:00 -08:00
Simon Baird
6ed8a7624d
Also fix timezone related eachday test failure
...
In some timezones, (eg GMT+6) the modified timestamps for the
'TiddlerOne' and 'Tiddler Three' test tiddlers were actually on
the same day. This was causing the 'eachday' filter test to fail.
Similar to the fix in commit 8487221 , this just adjusts the
timestamp to ensure the test passes in any timezone.
2014-01-31 00:56:25 +10:00
Jermolene
e3a05625b2
Add experimental keyboard shortcut widget
...
It’s not cool that we have to use a separate keyboard widget for each
keyboard shortcut.
Fixes #386
2014-01-30 13:40:36 +00:00
Jeremy Ruston
9acb10f781
Merge pull request #385 from simonbaird/sameday_tz_fix
...
Fix timezone related filter test failure
2014-01-30 00:45:47 -08:00
Simon Baird
8487221654
Fix timezone related sameday filter test failure
...
In certain timezones, 201304151312 UTC is not actually the same day
as 201304152219 any 201304151756. This was causing the test for the
'sameday' filter operator to fail. (I'm in GMT+10).
This is a quick-fix. I've just adjusted the timestamps to be close
together so they will be same day no matter what timezone you're in.
2014-01-30 18:24:05 +10:00
Simon Baird
6780a16ce9
Add Simon Baird to Contributor Licence Agreement
2014-01-30 13:13:22 +10:00
Jermolene
92aa682bc5
Update docs for 'has' filter operator
2014-01-29 21:49:48 +00:00
Jermolene
405b4a9007
Update URL for Stanford JavaScript Crypto Library
2014-01-29 21:49:38 +00:00
Jermolene
0c20092644
Refactor the image parser to avoid generating badly formed image src's
...
Previously, a transclusion of a skinny image tiddler (ie one where the
body has yet to be loaded) would render a broken image.
2014-01-29 19:11:05 +00:00
Skeeve
758d461823
Update utils.js
...
I think /\\/g is wrong as it will remove every \ from the string. I think, the usual way of keeping the following character is more appropriate.
2014-01-29 13:43:34 +01:00
Jermolene
29c4ed20ce
Docs update
2014-01-29 09:05:33 +00:00
Jermolene
fa59382215
Add support for serving TW5 with lazily loaded images
2014-01-29 09:05:00 +00:00
Jermolene
02ba92c6b5
Add [is[image]] filter operator
2014-01-29 09:04:41 +00:00
Jermolene
e58d9c7008
Adjust documentation for ac163a59e8
2014-01-28 19:46:35 +00:00
Jermolene
ac163a59e8
Stop suppressing saving story list for the clientserver wiki
...
It’s useful to save it so that people can usefully set their
$:/DefaultTiddlers to `[list[$:/StoryList]]`
2014-01-28 19:44:10 +00:00
Jermolene
175e86078c
Fix crash when wiki/themes folder contains files that are not themes
...
Fixes #370
2014-01-28 18:58:01 +00:00
Jermolene
3b255561b7
Add text/css to the type dropdown
2014-01-28 15:24:20 +00:00
Jermolene
59379b14fa
Remove extraneous shadow tiddlers
2014-01-28 15:24:08 +00:00
Jermolene
5af30086c0
Fix substitution for nbsp
...
We were substituting the wrong character for non-breaking spaces
2014-01-28 15:23:58 +00:00
Jermolene
b342f6db67
Docs update
2014-01-27 17:10:07 +00:00
Jermolene
5d3dda1a17
Fix problem with highlighting only working in the DOM
...
The current implementation of the highlight plugin only works properly
in the browser, and doesn’t work under Node.js. It also doesn’t work
when rendering to the fakedom in the browser (as happens when rendering
stylesheets, for example).
2014-01-27 17:10:02 +00:00
Jermolene
70ed6e6ad3
Fixed problem with list filter
...
A bug was preventing the tiddler title from being omitted in the list
filter (ie, [list[HelloThere!!field]] worked, but [list[!!field]] did
not.
2014-01-27 16:24:28 +00:00
Jermolene
8d031afa94
Update instructions for releasing TiddlyWiki5
2014-01-27 16:23:41 +00:00
Jermolene
a42ba1a310
Update version number for next release
2014-01-27 16:23:27 +00:00
Jermolene
b4b524deae
Update release date of 5.0.7
2014-01-26 21:08:13 +00:00