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
buggyj
3472721dbc
corrected doc error
2014-09-16 16:10:25 +02:00