1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-07-01 17:53:15 +00:00
Commit Graph

2486 Commits

Author SHA1 Message Date
Jeremy Ruston
94c2eacdc9 Support selectedClass properly in the button widget 2013-10-14 16:56:13 +01:00
Jeremy Ruston
fe6c1ae2dd A new template for menu list items 2013-10-14 16:55:29 +01:00
Jeremy Ruston
0c73c56b70 Fixes to button refreshing 2013-10-14 13:52:03 +01:00
Jeremy Ruston
b0f4d72dac Correct name for the state tiddler that makes sure the open sidebar tab is open by default 2013-10-14 13:51:54 +01:00
Jeremy Ruston
44e622ce28 Proper styling for the tiddler info panel 2013-10-14 13:11:58 +01:00
Jeremy Ruston
1669c6eab5 Make recursion markers include the current tiddler
Otherwise the generated qualifying state title is not unique. In other
words, clicking the "i" button on a tiddler was opening the info panels
for all open tiddlers.
2013-10-14 13:06:07 +01:00
Jeremy Ruston
ea0b298b78 Deal with viewing date fields that don't exist 2013-10-14 12:59:39 +01:00
Jeremy Ruston
cc4940f41f Use the setvariable widget instead of macrodef
setvariable is more general
2013-10-13 23:40:11 +01:00
Jeremy Ruston
942e463b20 Fixes to get recent changes list to work 2013-10-13 22:59:14 +01:00
Jeremy Ruston
ce4a6ffa49 More useful class variables for tiddler status 2013-10-13 22:46:45 +01:00
Jeremy Ruston
ccd5eeebfd Add a class for missing tiddlers 2013-10-13 22:39:18 +01:00
Jeremy Ruston
9278c43a91 Add support for macro definitions 2013-10-13 22:39:05 +01:00
Jeremy Ruston
79dcc9a557 Refactor macro parameter substitution
Now macros can also include references to variables as `$(variable)$`
2013-10-13 22:38:46 +01:00
Jeremy Ruston
987890c085 Add button widget 2013-10-13 21:31:00 +01:00
Jeremy Ruston
b0503cf709 Fixes to make SVG and MathML elements work properly 2013-10-13 20:14:31 +01:00
Jeremy Ruston
ed35d91be6 Initial Commit
Carried over from the abortive pull request #169
2013-10-12 17:05:13 +01:00
Jeremy Ruston
6ea264f3bc Merge branch 'fs_watch' of https://github.com/natecain/TiddlyWiki5 into natecain-fs_watch 2013-10-12 16:41:33 +01:00
Jeremy Ruston
5ef4123b3d Revert "Merge pull request #160 from natecain/commonjs"
This reverts commit 661621c3f7, reversing
changes made to d3d72eff1b.
2013-10-12 16:29:20 +01:00
Jeremy Ruston
661621c3f7 Merge pull request #160 from natecain/commonjs
CommonJS Modules/1.1 Conformance
2013-10-12 07:42:26 -07:00
natecain
2c02b6d6bc Remove watcher while saving, and use AddTiddler instead of modifying tiddlers directly 2013-10-11 18:43:51 -04:00
natecain
4849bd43c8 More graceful handling of tiddler delete in filesystemadaptor watch code 2013-10-11 17:54:47 -04:00
natecain
ee236060c7 Rudimentary fs.watch usage in filesystemadaptor
Will only watch for changes on wiki files loaded during startup or created by runtime
    (Does not yet track renames/deletes)
    (Will not notice new files)
  May become confused by directory structure changes on some platforms
    (see node docs on fs.watch for caveats!)
2013-10-11 17:10:10 -04:00
natecain
b8c37a26ef Additional improvement to CommonJS Modules support
Now implements (and mostly follows) requirements of Modules/1.1 spec
  implementes only the required "secure sandbox" subset of the spec
  `module` free variable changed from the `moduleInfo` to an id container
  `require` free variable given a "main" property
  boot module scope closed and exported
    this also changes the interface between boot and bootprefix slightly
    (should now be able to create multiple TW instances under node)
 BREAKING CHANGES:
  The tiddlywiki module itself now exports a single constructor function
  Modules which depended on `module` referring to `moduleInfo` will break
  Modules which don't conform to Modules/1.1 will break
    (by attempting to modify require.main or module.id)
2013-10-11 11:32:58 -04:00
Jeremy Ruston
d3d72eff1b Search over tags as well as the title and text fields 2013-10-11 08:46:09 +01:00
Jeremy Ruston
27f724d0ed Docs updates 2013-10-09 22:57:20 +01:00
Jeremy Ruston
1c2696614e Add a read only theme that hides editing controls 2013-10-09 22:10:02 +01:00
Jeremy Ruston
f2b598ef13 Correct example 2013-10-05 16:01:07 +01:00
Jeremy Ruston
b9deecb0d8 New deployment script 2013-10-03 14:44:48 +01:00
Jeremy Ruston
c784217009 Missing semi 2013-10-03 14:43:58 +01:00
Jeremy Ruston
d7347c8674 Docs updates 2013-10-03 14:26:26 +01:00
natecain
fbc80e379d Some quick style cleanup to commonjs patches 2013-10-01 17:56:05 -04:00
Jeremy Ruston
9616b5586f Merge pull request #173 from natecain/BlobAPI
Blob api
2013-10-01 14:41:43 -07:00
natecain
c45f4d1c62 Small revision to previous commit, avoids double encoding.
We don't need to encodeURIComponent at all when using blob links.
The data never goes into the dom directly, just a guid reference.

This makes saving with blobs very fast!
2013-10-01 17:35:58 -04:00
natecain
aef8e63cf8 Use Blob api to generate data links in download saver
This should fix crashing on large wikis under chrome
  see chrome bug: https://code.google.com/p/chromium/issues/detail?id=103234
This should also speed up generating the download html by a couple of seconds
  it avoids repeatedly marshalling the base64 encoded href string across the sandbox boundary
  it avoids some time and memory consumed by "large" dom manipulation
  major remaining delay is in encodeURIComponent
    TODO: consider using iconv on the server
    TODO: consider async invocation of regular expressions to avoid client "lockup"

Conflicts:
	core/modules/savers/download.js
2013-10-01 17:35:47 -04:00
Jeremy Ruston
becd0f8739 Merge pull request #171 from natecain/cla2
sign cla
2013-10-01 13:57:20 -07:00
Jeremy Ruston
e57148b034 Merge pull request #172 from Brennall/FilterLimitBug
Filter limit bug
2013-10-01 13:57:04 -07:00
David Johnston
154d5f316b Added test for !limit (not limit)
Added test for !limit (not limit) to ensure bug change works
2013-10-01 11:27:26 +01:00
David Johnston
d321508437 Remove incorrect slice parameter.
Remove incorrect slice parameter, which made the ! (not) prefix fail to return any results.
2013-10-01 10:50:13 +01:00
natecain
867c728de6 sign cla 2013-10-01 01:12:41 -04:00
Jeremy Ruston
ae3ed86e6f Correct typos
Fixing a problem with the responsive layout at narrow widths (thanks
@pmario)
2013-09-27 16:16:37 +01:00
Jeremy Ruston
3ecd3c8e71 Revise contributors documentation 2013-09-27 16:15:55 +01:00
Jeremy Ruston
1a6c7c6e20 Fix problem with whitespace being collapsed with single backtick <code> blocks 2013-09-27 08:53:32 +01:00
Jeremy Ruston
cd12a60fcd Roadmap update 2013-09-23 22:08:49 +01:00
Jeremy Ruston
6642a6f087 Merge pull request #165 from Brennall/nextprev
Next and Previous filters plus tests and documentation
2013-09-22 13:37:48 -07:00
Jeremy Ruston
54ffb9e6cc Replace separate 'untagged' tab with new entry at the bottom of the 'tags' tab
An excellent idea by @tobibeer
2013-09-22 21:34:28 +01:00
David Johnston
904a079432 Variable name corrected. 2013-09-22 21:17:46 +01:00
Jeremy Ruston
d1e1806845 Merge pull request #167 from tobibeer/fix-pre-word-break
changed word-break break-all to normal for pre / signed CLA
2013-09-22 12:16:19 -07:00
Jeremy Ruston
0c04bb38a3 Add jurisdiction to the CLAs 2013-09-22 20:12:27 +01:00
Tobias Beer
aee462e78e changed word-break break-all to normal for pre
was breaking words arbitrarily in code blocks arbitrarily — really ugly

now on a branch, instead of master ;-)
2013-09-22 21:00:05 +02:00
David Johnston
afa5156db9 Added Next and Previous to filters concept tiddler. 2013-09-22 10:09:22 +01:00