mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2026-01-24 20:04:40 +00:00
Compare commits
18 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
360915d3cd | ||
|
|
77eb05e7fe | ||
|
|
b201141753 | ||
|
|
65a5135245 | ||
|
|
851ea44b3b | ||
|
|
e282ff1d92 | ||
|
|
487d6642e3 | ||
|
|
8f6178acfc | ||
|
|
5cc09d9cd5 | ||
|
|
64b7e66675 | ||
|
|
6499fe5d3d | ||
|
|
e49d310ea9 | ||
|
|
c4c7b1868c | ||
|
|
a4506231a7 | ||
|
|
b357e8bb26 | ||
|
|
a0bdefbd8b | ||
|
|
782553eb62 | ||
|
|
b24488174c |
@@ -1,3 +1,3 @@
|
||||
<h1 class="">Script Files</h1><p>The <a class="tc-tiddlylink tc-tiddlylink-resolves" href="http://tiddlywiki.com/static/TiddlyWiki5.html">TiddlyWiki5</a> repository contains several scripts in the <code>bin</code> folder that you can use to automate common tasks, or as a useful starting point for your own scripts. See <a class="tc-tiddlylink tc-tiddlylink-missing" href="http://tiddlywiki.com/static/Scripts%2520for%2520building%2520tiddlywiki.com.html">Scripts for building tiddlywiki.com</a> for details of the scripts used to build and release <a class="tc-tiddlylink-external" href="http://tiddlywiki.com/" target="_blank">http://tiddlywiki.com/</a>.</p><p>All the scripts expect to be run from the root folder of the repository.</p><h2 class=""><code>serve</code>: serves tw5.com</h2><pre><code>./bin/serve.sh -h
|
||||
<h1 class="">Script Files</h1><p>The <a class="tc-tiddlylink tc-tiddlylink-resolves" href="http://tiddlywiki.com/static/TiddlyWiki5.html">TiddlyWiki5</a> repository contains several scripts in the <code>bin</code> folder that you can use to automate common tasks, or as a useful starting point for your own scripts. See <a class="tc-tiddlylink tc-tiddlylink-missing" href="http://tiddlywiki.com/static/Scripts%2520for%2520building%2520tiddlywiki.com.html">Scripts for building tiddlywiki.com</a> for details of the scripts used to build and release <a class="tc-tiddlylink-external" href="http://tiddlywiki.com/" rel="noopener noreferrer" target="_blank">http://tiddlywiki.com/</a>.</p><p>All the scripts expect to be run from the root folder of the repository.</p><h2 class=""><code>serve</code>: serves tw5.com</h2><pre><code>./bin/serve.sh -h
|
||||
./bin/serve.sh [edition dir] [username] [password] [host] [port]</code></pre><p>Or:</p><pre><code>./bin/serve.cmd -h
|
||||
./bin/serve.cmd [edition dir] [username] [password] [host] [port]</code></pre><p>This script starts <a class="tc-tiddlylink tc-tiddlylink-resolves" href="http://tiddlywiki.com/static/TiddlyWiki5.html">TiddlyWiki5</a> running as an HTTP server, defaulting to the content from the <code>tw5.com-server</code> edition. By default, the Node.js serves on port 8080. If the optional <code>username</code> parameter is provided, it is used for signing edits. If the <code>password</code> is provided then HTTP basic authentication is used. Run the script with the <code>-h</code> parameter to see online help.</p><p>To experiment with this configuration, run the script and then visit <code>http://127.0.0.1:8080</code> in a browser.</p><p>Changes made in the browser propagate to the server over HTTP (use the browser developer console to see these requests). The server then syncs changes to the file system (and logs each change to the screen).</p><h2 class=""><code>test</code>: build and run tests</h2><p>This script runs the <code>test</code> edition of <a class="tc-tiddlylink tc-tiddlylink-resolves" href="http://tiddlywiki.com/static/TiddlyWiki.html">TiddlyWiki</a> on the server to perform the server-side tests and to build <code>test.html</code> for running the tests in the browser.</p><h2 class=""><code>lazy</code>: serves tw5.com with lazily loaded images</h2><pre><code>./bin/lazy.sh <username> [<password>]</code></pre><p>Or:</p><pre><code>./bin/lazy.cmd <username> [<password>]</code></pre><p>This script serves the <code>tw5.com-server</code> edition content with <a class="tc-tiddlylink tc-tiddlylink-resolves" href="http://tiddlywiki.com/static/LazyLoading.html">LazyLoading</a> applied to images.</p><h2 class=""><code>2bld</code>: builds <a class="tc-tiddlylink tc-tiddlylink-resolves" href="http://tiddlywiki.com/static/TiddlyWiki.html">TiddlyWiki</a> 2.6.5</h2><p>This script builds <a class="tc-tiddlylink tc-tiddlylink-resolves" href="http://tiddlywiki.com/static/TiddlyWiki.html">TiddlyWiki</a> 2.6.5 from the original source and then displays the differences between them (<code>diff</code> is used for *nix, <code>fc</code> for Windows).</p>
|
||||
13
boot/boot.js
13
boot/boot.js
@@ -913,12 +913,13 @@ $tw.Wiki = function(options) {
|
||||
|
||||
// Get a tiddler from the store
|
||||
this.getTiddler = function(title) {
|
||||
var t = tiddlers[title];
|
||||
if(t instanceof $tw.Tiddler) {
|
||||
return t;
|
||||
} else if(title !== undefined && Object.prototype.hasOwnProperty.call(shadowTiddlers,title)) {
|
||||
return shadowTiddlers[title].tiddler;
|
||||
} else {
|
||||
if(title) {
|
||||
var t = tiddlers[title];
|
||||
if(t instanceof $tw.Tiddler) {
|
||||
return t;
|
||||
} else if(title !== undefined && Object.prototype.hasOwnProperty.call(shadowTiddlers,title)) {
|
||||
return shadowTiddlers[title].tiddler;
|
||||
}
|
||||
return undefined;
|
||||
}
|
||||
};
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<h1 class="">Contributing to <a class="tc-tiddlylink tc-tiddlylink-resolves" href="http://tiddlywiki.com/static/TiddlyWiki5.html">TiddlyWiki5</a></h1><p>We welcome contributions to the code and documentation of <a class="tc-tiddlylink tc-tiddlylink-resolves" href="http://tiddlywiki.com/static/TiddlyWiki.html">TiddlyWiki</a> in several ways:</p><ul><li><a class="tc-tiddlylink tc-tiddlylink-resolves" href="http://tiddlywiki.com/static/ReportingBugs.html">ReportingBugs</a></li><li>Helping to <a class="tc-tiddlylink tc-tiddlylink-resolves" href="http://tiddlywiki.com/static/Improving%2520TiddlyWiki%2520Documentation.html">improve our documentation</a></li><li>Contributing to the code via <a class="tc-tiddlylink-external" href="https://github.com/Jermolene/TiddlyWiki5" target="_blank">GitHub</a><ul><li>See <a class="tc-tiddlylink-external" href="http://tiddlywiki.com/dev" target="_blank">http://tiddlywiki.com/dev</a> for more details</li></ul></li></ul><p>There are other ways to <a class="tc-tiddlylink tc-tiddlylink-resolves" href="http://tiddlywiki.com/static/HelpingTiddlyWiki.html">help TiddlyWiki</a> too.</p><h1 class="">Contributor License Agreement</h1><p>Like other <a class="tc-tiddlylink tc-tiddlylink-resolves" href="http://tiddlywiki.com/static/OpenSource.html">OpenSource</a> projects, <a class="tc-tiddlylink tc-tiddlylink-resolves" href="http://tiddlywiki.com/static/TiddlyWiki5.html">TiddlyWiki5</a> needs a signed contributor license agreement from individual contributors. This is a legal agreement that allows contributors to assert that they own the copyright of their contribution, and that they agree to license it to the <a class="tc-tiddlylink tc-tiddlylink-missing" href="http://tiddlywiki.com/static/UnaMesa.html">UnaMesa</a> Association (the legal entity that owns <a class="tc-tiddlylink tc-tiddlylink-resolves" href="http://tiddlywiki.com/static/TiddlyWiki.html">TiddlyWiki</a> on behalf of the community).</p><ul><li>For individuals use: <a class="tc-tiddlylink-external" href="https://github.com/Jermolene/TiddlyWiki5/tree/master/licenses/cla-individual.md" target="_blank">licenses/CLA-individual</a></li><li>For entities use: <a class="tc-tiddlylink-external" href="https://github.com/Jermolene/TiddlyWiki5/tree/master/licenses/cla-entity.md" target="_blank">licenses/CLA-entity</a></li></ul><h1 class="">How to sign the CLA</h1><p>Create a <a class="tc-tiddlylink tc-tiddlylink-resolves" href="http://tiddlywiki.com/static/GitHub.html">GitHub</a> pull request to add your name to <code>cla-individual.md</code> or <code>cla-entity.md</code>, with the date in the format (YYYY/MM/DD).</p><p><strong>step by step</strong></p><ol><li>Navigate to <a class="tc-tiddlylink-external" href="https://github.com/Jermolene/TiddlyWiki5/tree/master/licenses/cla-individual.md" target="_blank">licenses/CLA-individual</a> or <a class="tc-tiddlylink-external" href="https://github.com/Jermolene/TiddlyWiki5/tree/master/licenses/cla-entity.md" target="_blank">licenses/CLA-entity</a> according to whether you are signing as an individual or representative of an organisation</li><li>Click the "edit" button at the top-right corner (clicking this button will fork the project so you can edit the file)</li><li>Add your name at the bottom<ul><li>eg: <code>Jeremy Ruston, @Jermolene, 2011/11/22</code></li></ul></li><li>Below the edit box for the CLA text you should see a box labelled <strong>Propose file change</strong></li><li>Enter a brief title to explain the change (eg, "Signing the CLA")</li><li>Click the green button labelled <strong>Propose file change</strong></li><li>On the following screen, click the green button labelled <strong>Create pull request</strong></li></ol><hr><p><em>The CLA documents used for this project were created using <a class="tc-tiddlylink-external" href="http://www.harmonyagreements.org" target="_blank">Harmony Project Templates</a>. "HA-CLA-I-LIST Version 1.0" for "CLA-individual" and "HA-CLA-E-LIST Version 1.0" for "CLA-entity".</em></p><p>Remarks
|
||||
<h1 class="">Contributing to <a class="tc-tiddlylink tc-tiddlylink-resolves" href="http://tiddlywiki.com/static/TiddlyWiki5.html">TiddlyWiki5</a></h1><p>We welcome contributions to the code and documentation of <a class="tc-tiddlylink tc-tiddlylink-resolves" href="http://tiddlywiki.com/static/TiddlyWiki.html">TiddlyWiki</a> in several ways:</p><ul><li><a class="tc-tiddlylink tc-tiddlylink-resolves" href="http://tiddlywiki.com/static/ReportingBugs.html">ReportingBugs</a></li><li>Helping to <a class="tc-tiddlylink tc-tiddlylink-resolves" href="http://tiddlywiki.com/static/Improving%2520TiddlyWiki%2520Documentation.html">improve our documentation</a></li><li>Contributing to the code via <a class="tc-tiddlylink-external" href="https://github.com/Jermolene/TiddlyWiki5" rel="noopener noreferrer" target="_blank">GitHub</a><ul><li>See <a class="tc-tiddlylink-external" href="http://tiddlywiki.com/dev" rel="noopener noreferrer" target="_blank">http://tiddlywiki.com/dev</a> for more details</li></ul></li></ul><p>There are other ways to <a class="tc-tiddlylink tc-tiddlylink-resolves" href="http://tiddlywiki.com/static/HelpingTiddlyWiki.html">help TiddlyWiki</a> too.</p><h1 class="">Contributor License Agreement</h1><p>Like other <a class="tc-tiddlylink tc-tiddlylink-resolves" href="http://tiddlywiki.com/static/OpenSource.html">OpenSource</a> projects, <a class="tc-tiddlylink tc-tiddlylink-resolves" href="http://tiddlywiki.com/static/TiddlyWiki5.html">TiddlyWiki5</a> needs a signed contributor license agreement from individual contributors. This is a legal agreement that allows contributors to assert that they own the copyright of their contribution, and that they agree to license it to the <a class="tc-tiddlylink tc-tiddlylink-missing" href="http://tiddlywiki.com/static/UnaMesa.html">UnaMesa</a> Association (the legal entity that owns <a class="tc-tiddlylink tc-tiddlylink-resolves" href="http://tiddlywiki.com/static/TiddlyWiki.html">TiddlyWiki</a> on behalf of the community).</p><ul><li>For individuals use: <a class="tc-tiddlylink-external" href="https://github.com/Jermolene/TiddlyWiki5/tree/master/licenses/cla-individual.md" rel="noopener noreferrer" target="_blank">licenses/CLA-individual</a></li><li>For entities use: <a class="tc-tiddlylink-external" href="https://github.com/Jermolene/TiddlyWiki5/tree/master/licenses/cla-entity.md" rel="noopener noreferrer" target="_blank">licenses/CLA-entity</a></li></ul><h1 class="">How to sign the CLA</h1><p>Create a <a class="tc-tiddlylink tc-tiddlylink-resolves" href="http://tiddlywiki.com/static/GitHub.html">GitHub</a> pull request to add your name to <code>cla-individual.md</code> or <code>cla-entity.md</code>, with the date in the format (YYYY/MM/DD).</p><p><strong>step by step</strong></p><ol><li>Navigate to <a class="tc-tiddlylink-external" href="https://github.com/Jermolene/TiddlyWiki5/tree/master/licenses/cla-individual.md" rel="noopener noreferrer" target="_blank">licenses/CLA-individual</a> or <a class="tc-tiddlylink-external" href="https://github.com/Jermolene/TiddlyWiki5/tree/master/licenses/cla-entity.md" rel="noopener noreferrer" target="_blank">licenses/CLA-entity</a> according to whether you are signing as an individual or representative of an organisation</li><li>Click the "edit" button at the top-right corner (clicking this button will fork the project so you can edit the file)</li><li>Add your name at the bottom<ul><li>eg: <code>Jeremy Ruston, @Jermolene, 2011/11/22</code></li></ul></li><li>Below the edit box for the CLA text you should see a box labelled <strong>Propose file change</strong></li><li>Enter a brief title to explain the change (eg, "Signing the CLA")</li><li>Click the green button labelled <strong>Propose file change</strong></li><li>On the following screen, click the green button labelled <strong>Create pull request</strong></li></ol><hr><p><em>The CLA documents used for this project were created using <a class="tc-tiddlylink-external" href="http://www.harmonyagreements.org" rel="noopener noreferrer" target="_blank">Harmony Project Templates</a>. "HA-CLA-I-LIST Version 1.0" for "CLA-individual" and "HA-CLA-E-LIST Version 1.0" for "CLA-entity".</em></p><p>Remarks
|
||||
----—</p><ul><li><ul><li>When not owning the copyright in the entire work of authorship**</li></ul></li></ul><p>In this case, please clearly state so, since otherwise we assume that you are the legal copyright holder of the contributed work! Please provide links and additional information that clarify under which license the rest of the code is distributed.
|
||||
</p><p><em>This file was automatically generated by <a class="tc-tiddlylink tc-tiddlylink-resolves" href="http://tiddlywiki.com/static/TiddlyWiki5.html">TiddlyWiki5</a></em>
|
||||
</p>
|
||||
@@ -26,7 +26,7 @@ exports.types = {inline: true};
|
||||
exports.init = function(parser) {
|
||||
this.parser = parser;
|
||||
// Regexp to match
|
||||
this.matchRegExp = /~?(?:file|http|https|mailto|ftp|irc|news|data|skype):[^\s<>{}\[\]`|"\\^~]+(?:\/|\b)/mg;
|
||||
this.matchRegExp = /~?(?:file|http|https|mailto|ftp|irc|news|data|skype):[^\s<>{}\[\]`|"\\^]+(?:\/|\b)/mg;
|
||||
};
|
||||
|
||||
exports.parse = function() {
|
||||
|
||||
@@ -495,7 +495,7 @@ exports.escapeRegExp = function(s) {
|
||||
|
||||
// Checks whether a link target is external, i.e. not a tiddler title
|
||||
exports.isLinkExternal = function(to) {
|
||||
var externalRegExp = /^(?:file|http|https|mailto|ftp|irc|news|data|skype):[^\s<>{}\[\]`|"\\^~]+(?:\/|\b)$/i;
|
||||
var externalRegExp = /^(?:file|http|https|mailto|ftp|irc|news|data|skype):[^\s<>{}\[\]`|"\\^]+(?:\/|\b)/i;
|
||||
return externalRegExp.test(to);
|
||||
};
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
title: $:/config/OfficialPluginLibrary
|
||||
tags: $:/tags/PluginLibrary
|
||||
url: http://tiddlywiki.com/library/v5.1.12/index.html
|
||||
url: http://tiddlywiki.com/library/v5.1.13/index.html
|
||||
caption: {{$:/language/OfficialPluginLibrary}}
|
||||
|
||||
{{$:/language/OfficialPluginLibrary/Hint}}
|
||||
|
||||
32
editions/prerelease/tiddlers/Release 5.1.13.tid
Normal file
32
editions/prerelease/tiddlers/Release 5.1.13.tid
Normal file
@@ -0,0 +1,32 @@
|
||||
caption: 5.1.13
|
||||
created: 20160713124714652
|
||||
modified: 20160725084810809
|
||||
released: 20160725084810809
|
||||
tags: ReleaseNotes
|
||||
title: Release 5.1.13
|
||||
type: text/vnd.tiddlywiki
|
||||
|
||||
//[[See GitHub for detailed change history of this release|https://github.com/Jermolene/TiddlyWiki5/compare/v5.1.12...v5.1.13]]//
|
||||
|
||||
This is a minor bug fix release.
|
||||
|
||||
!! Bug Fixes
|
||||
|
||||
* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/e49d310ea943916089b5381b00df20b1f9a9e52e]] (and [[refixed|https://github.com/Jermolene/TiddlyWiki5/commit/782553eb62ccfea31ad249911c3230e2137a07dd]]) [[problematic|https://github.com/Jermolene/TiddlyWiki5/issues/2501]] stricter external link matching rules introduced in 5.1.12
|
||||
* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/e282ff1d92d6d3abaf9fd50c9deff464ac028ad7]] [[problem|https://github.com/Jermolene/TiddlyWiki5/issues/2507]] with tiddlers titled "undefined"
|
||||
* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/487d6642e34e5eb685ad83a11c8514dbc6fc4d89]] rendering [[problem|https://github.com/Jermolene/TiddlyWiki5/issues/2500]] with [[KaTeX Plugin]]
|
||||
* [[Removed|https://github.com/Jermolene/TiddlyWiki5/commit/8f6178acfce1f4f49d1a7d234c25dcbf0256aa10]] unneeded border in print stylesheet
|
||||
|
||||
!! Node.js Bug Fixes
|
||||
|
||||
* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/pull/2504]] problem with extraneous `.tid` extension added to tiddler filenames
|
||||
|
||||
!! Other Improvements
|
||||
|
||||
* Updated Portuguese (Portugal) translation
|
||||
|
||||
! Contributors
|
||||
|
||||
[[@Jermolene|https://github.com/Jermolene]] would like to thank the contributors to this release who have generously given their time to help improve TiddlyWiki:
|
||||
|
||||
* [[@sukima|https://github.com/sukima]]
|
||||
@@ -4,6 +4,12 @@ tags: Meetups
|
||||
title: TiddlyWiki European Meetup 2016
|
||||
type: text/vnd.tiddlywiki
|
||||
|
||||
For more information:
|
||||
http://tiddlywiki.com/tiddlywiki-eu-meetup-2016/
|
||||
|
||||
http://tiddlywiki.com/tiddlywiki-eu-meetup-2016/
|
||||
Here's the stream of day 1:
|
||||
|
||||
<iframe width="560" height="315" src="http://www.youtube.com/embed/7o0ClSI7Tdg" frameborder="0" allowfullscreen></iframe>
|
||||
|
||||
Here's day 2:
|
||||
|
||||
<iframe width="560" height="315" src="http://www.youtube.com/embed/ipXyZkC8tjM" frameborder="0" allowfullscreen></iframe>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
created: 20130822170200000
|
||||
list: [[A Gentle Guide to TiddlyWiki]] [[Discover TiddlyWiki]] [[Some of the things you can do with TiddlyWiki]] [[Ten reasons to switch to TiddlyWiki]] Examples [[What happened to the original TiddlyWiki?]]
|
||||
modified: 20160713104714652
|
||||
modified: 20160725084810809
|
||||
tags: TableOfContents
|
||||
title: HelloThere
|
||||
type: text/vnd.tiddlywiki
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
created: 20150414070451144
|
||||
list: [[HelloThumbnail - Introduction Video]] [[HelloThumbnail - Gentle Guide]] [[HelloThumbnail - HelpingTiddlyWiki]] [[HelloThumbnail - Developers]] [[HelloThumbnail - Latest Version]] [[HelloThumbnail - Classic]]
|
||||
list: [[HelloThumbnail - Introduction Video]] [[HelloThumbnail - Gentle Guide]] [[HelloThumbnail - HelpingTiddlyWiki]] [[HelloThumbnail - Developers]] [[HelloThumbnail - TWEUM2016]] [[HelloThumbnail - Latest Version]] [[HelloThumbnail - Classic]]
|
||||
modified: 20150414070948246
|
||||
title: HelloThumbnail
|
||||
type: text/vnd.tiddlywiki
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
title: HelloThumbnail - TWEUM2016
|
||||
tags: HelloThumbnail
|
||||
color: #D5B7EA
|
||||
image: TWEUM2016 Thumbnail.jpg
|
||||
caption: European Meetup 2016
|
||||
link: TiddlyWiki European Meetup 2016
|
||||
BIN
editions/tw5.com/tiddlers/images/TWEUM2016 Thumbnail.jpg
Normal file
BIN
editions/tw5.com/tiddlers/images/TWEUM2016 Thumbnail.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 69 KiB |
@@ -0,0 +1,3 @@
|
||||
title: TWEUM2016 Thumbnail.jpg
|
||||
type: image/jpeg
|
||||
tags: picture
|
||||
@@ -1,9 +1,13 @@
|
||||
created: 20160107222352710
|
||||
modified: 20160624124005475
|
||||
modified: 20160720145836265
|
||||
tags: Plugins
|
||||
title: Installing a plugin from the plugin library
|
||||
type: text/vnd.tiddlywiki
|
||||
|
||||
! Standalone Configuration
|
||||
|
||||
Follow these instructions when using TiddlyWiki as a standalone HTML file:
|
||||
|
||||
# Create a backup of your current TiddlyWiki HTML file ([[just in case|The First Rule of Using TiddlyWiki]])
|
||||
# Open your TiddlyWiki in a browser
|
||||
# Open the [[control panel|$:/ControlPanel]] {{$:/core/images/options-button}}, click on the ''Plugins'' tab and then the {{$:/core/images/download-button}} ''Get more plugins'' button
|
||||
@@ -12,6 +16,28 @@ type: text/vnd.tiddlywiki
|
||||
## Use the tab to select between ''plugins'', ''themes'' and ''languages''
|
||||
## Use the ''search'' box to search the plugin details
|
||||
# Click the ''install'' button to install a plugin
|
||||
# Save your TiddlyWiki ({{$:/core/images/save-button}})
|
||||
# ''Refresh the page so that TiddlyWiki loads the new plugin'' ({{$:/core/images/refresh-button}})
|
||||
# Save your TiddlyWiki {{$:/core/images/save-button}}
|
||||
# ''Refresh the page so that TiddlyWiki loads the new plugin'' {{$:/core/images/refresh-button}}
|
||||
# The plugin should now be available for use
|
||||
|
||||
! Client-Server Configuration
|
||||
|
||||
Follow these instructions when using TiddlyWiki under Node.js:
|
||||
|
||||
# Identify the plugins you want to install using the ''Plugins'' tab of [[control panel|$:/ControlPanel]] (''don't'' install the plugins from here, though). Plugins are identified by their type (ie language, theme or plugin) and their publisher and title. For example, the plugin `$:/plugins/tiddlywiki/internals` is referred to as ''tiddlywiki/internals''
|
||||
# Quit the server if it is running
|
||||
# Edit the `tiddlywiki.info` file (it is in JSON format) and locate the `plugins` and `themes` section (see below)
|
||||
# Add entries corresponding to the plugins you wish to add. Take care to retain commas to separate items, but do not terminate the last item in a list with a comma
|
||||
# Restart the server
|
||||
|
||||
```
|
||||
{
|
||||
"plugins": [
|
||||
"tiddlywiki/codemirror"
|
||||
],
|
||||
"themes": [
|
||||
"tiddlywiki/vanilla",
|
||||
"tiddlywiki/snowwhite"
|
||||
]
|
||||
}
|
||||
```
|
||||
|
||||
@@ -1,13 +1,38 @@
|
||||
created: 20160107222504269
|
||||
modified: 20160617105002662
|
||||
modified: 20160720145839711
|
||||
tags: Plugins
|
||||
title: Uninstalling a plugin
|
||||
type: text/vnd.tiddlywiki
|
||||
|
||||
! Standalone Configuration
|
||||
|
||||
Follow these instructions when using TiddlyWiki as a standalone HTML file:
|
||||
|
||||
# Create a backup of your current TiddlyWiki HTML file ([[just in case|The First Rule of Using TiddlyWiki]])
|
||||
# Open the [[control panel|$:/ControlPanel]] {{$:/core/images/options-button}} and go to the ''Plugins'' tab
|
||||
# Click on the plugin you want to delete to open its tiddler
|
||||
# Click the {{$:/core/images/down-arrow}} ''more'' button and {{$:/core/images/delete-button}} ''delete'' the tiddler
|
||||
# Save your TiddlyWiki ({{$:/core/images/save-button}})
|
||||
# ''Refresh the window so that TiddlyWiki completely removes the plugin'' ({{$:/core/images/refresh-button}})
|
||||
# The plugin should now be deleted
|
||||
# Save your TiddlyWiki {{$:/core/images/save-button}}
|
||||
# ''Refresh the window so that TiddlyWiki completely removes the plugin'' {{$:/core/images/refresh-button}}
|
||||
# The plugin should now be deleted
|
||||
|
||||
! Client-Server Configuration
|
||||
|
||||
Follow these instructions when using TiddlyWiki under Node.js:
|
||||
|
||||
# Quit the server if it is running
|
||||
# Edit the `tiddlywiki.info` file (it is in JSON format) and locate the `plugins` and `themes` section (see below)
|
||||
# Remove the entries corresponding to the plugins you wish to remove. Take care to retain commas to separate items, but do not terminate the last item in a list with a comma
|
||||
# Restart the server
|
||||
|
||||
```
|
||||
{
|
||||
"plugins": [
|
||||
"tiddlywiki/codemirror"
|
||||
],
|
||||
"themes": [
|
||||
"tiddlywiki/vanilla",
|
||||
"tiddlywiki/snowwhite"
|
||||
]
|
||||
}
|
||||
```
|
||||
@@ -2,8 +2,12 @@ title: $:/language/Buttons/
|
||||
|
||||
AdvancedSearch/Caption: pesquisa avançada
|
||||
AdvancedSearch/Hint: Pesquisa avançada
|
||||
Bold/Caption: negrito
|
||||
Bold/Hint: Aplicar formatação negrito à selecção
|
||||
Cancel/Caption: cancelar
|
||||
Cancel/Hint: Cancelar a edição deste tiddler
|
||||
Clear/Caption: limpar
|
||||
Clear/Hint: Limpar imagem com cor sólida
|
||||
Clone/Caption: clonar
|
||||
Clone/Hint: Clonar este tiddler
|
||||
Close/Caption: fechar
|
||||
@@ -18,20 +22,56 @@ Delete/Caption: eliminar
|
||||
Delete/Hint: eliminar este tiddler
|
||||
Edit/Caption: editar
|
||||
Edit/Hint: Editar este tiddler
|
||||
EditorHeight/Caption: altura do editor
|
||||
EditorHeight/Caption/Auto: Ajustar altura ao tamanho do conteúdo automaticamente
|
||||
EditorHeight/Caption/Fixed: Altura Fixa:
|
||||
EditorHeight/Hint: Escolha a altura do editor de texto
|
||||
Encryption/Caption: encriptação
|
||||
Encryption/ClearPassword/Caption: limpar palavra passe
|
||||
Encryption/ClearPassword/Hint: Limpar a palavra passe e guardar esta wiki sem encriptação
|
||||
Encryption/Hint: Definir ou limpar a palavra passe de gravação desta wiki
|
||||
Encryption/SetPassword/Caption: definir palavra passe
|
||||
Encryption/SetPassword/Hint: Definir a palavra passe para guardar esta wiki com encriptação
|
||||
Excise/Caption: separar
|
||||
Excise/Caption/Excise: Executar separação
|
||||
Excise/Caption/MacroName: Nome da Macro:
|
||||
Excise/Caption/NewTitle: Título do novo tiddler:
|
||||
Excise/Caption/Replace: Substituir texto separado por:
|
||||
Excise/Caption/Replace/Link: ligação
|
||||
Excise/Caption/Replace/Transclusion: transclusão
|
||||
Excise/Caption/Tag: Etiquetar novo tiddler com o título deste tiddler
|
||||
Excise/Caption/TiddlerExists: Atenção: tiddler já existente
|
||||
Excise/Hint: Separar o texto seleccionado para um novo tiddler
|
||||
ExportPage/Caption: exportar tudo
|
||||
ExportPage/Hint: Exportar todos os tiddlers
|
||||
ExportTiddler/Caption: exportar tiddler
|
||||
ExportTiddler/Hint: Exportar tiddler
|
||||
ExportTiddlers/Caption: exportar tiddlers
|
||||
ExportTiddlers/Hint: Exportar tiddlers
|
||||
Fold/Caption: dobrar tiddler
|
||||
Fold/FoldBar/Caption: dobra-lateral
|
||||
Fold/FoldBar/Hint: Barra lateral opcional para dobrar e desdobrar tiddlers
|
||||
Fold/Hint: Dobrar o corpo deste tiddler
|
||||
FoldAll/Caption: dobrar todos os tiddlers
|
||||
FoldAll/Hint: Dobrar o corpo de todos os tiddlers abertos
|
||||
FoldOthers/Caption: dobrar outros tiddlers
|
||||
FoldOthers/Hint: Dobrar o corpo dos outros tiddlers abertos
|
||||
FullScreen/Caption: Ecrã completo
|
||||
FullScreen/Hint: Entrar ou sair do modo de ecrã completo
|
||||
Heading1/Caption: cabeçalho 1
|
||||
Heading1/Hint: Aplicar formatação de cabeçalho nível 1 a todas as linhas contendo selecção
|
||||
Heading2/Caption: cabeçalho 2
|
||||
Heading2/Hint: Aplicar formatação de cabeçalho nível 2 a todas as linhas contendo selecção
|
||||
Heading3/Caption: cabeçalho 3
|
||||
Heading3/Hint: Aplicar formatação de cabeçalho nível 3 a todas as linhas contendo selecção
|
||||
Heading4/Caption: cabeçalho 4
|
||||
Heading4/Hint: Aplicar formatação de cabeçalho nível 4 a todas as linhas contendo selecção
|
||||
Heading5/Caption: cabeçalho 5
|
||||
Heading5/Hint: Aplicar formatação de cabeçalho nível 5 a todas as linhas contendo selecção
|
||||
Heading6/Caption: cabeçalho 6
|
||||
Heading6/Hint: Aplicar formatação de cabeçalho nível 6 a todas as linhas contendo selecção
|
||||
Help/Caption: ajuda
|
||||
Help/Hint: Mostrar painel de ajuda
|
||||
HideSideBar/Caption: esconder barra lateral
|
||||
HideSideBar/Hint: Esconder a barra lateral
|
||||
Home/Caption: Início
|
||||
@@ -40,22 +80,56 @@ Import/Caption: importar
|
||||
Import/Hint: Importar ficheiros
|
||||
Info/Caption: informação
|
||||
Info/Hint: Mostrar informação sobre este tiddler
|
||||
Italic/Caption: itálico
|
||||
Italic/Hint: Aplicar formatação itálico à selecção
|
||||
Language/Caption: linguagem
|
||||
Language/Hint: Escolher a linguagem do interface do utilizador
|
||||
LineWidth/Caption: espessura da linha
|
||||
LineWidth/Hint: Definir espessura de linha para desenhar
|
||||
Link/Caption: ligação
|
||||
Link/Hint: Criar ligação em wikitext
|
||||
ListBullet/Caption: Lista com marcadores
|
||||
ListBullet/Hint: Aplicar formatação de lista com marcadores às linhas contendo selecção
|
||||
ListNumber/Caption: lista numerada
|
||||
ListNumber/Hint: Aplicar formatação de lista numerada às linhas contendo selecção
|
||||
MonoBlock/Caption: bloco mono-espaçado
|
||||
MonoBlock/Hint: Aplicar formatação de bloco mono-espaçado às linhas contendo selecção
|
||||
MonoLine/Caption: mono-espaçado
|
||||
MonoLine/Hint: Aplicar formatação mono-espaçado à selecção
|
||||
More/Caption: mais
|
||||
More/Hint: Mais acções
|
||||
NewHere/Caption: derivar
|
||||
NewHere/Hint: Criar um novo tiddler etiquetado com o actual
|
||||
NewImage/Caption: nova imagem
|
||||
NewImage/Hint: Criar novo tiddler de imagem
|
||||
NewJournal/Caption: novo diário
|
||||
NewJournal/Hint: Criar um novo tiddler-diário
|
||||
NewJournalHere/Caption: novo diário derivado
|
||||
NewJournalHere/Hint: Criar um novo tiddler-diário etiquetado com o actual
|
||||
NewMarkdown/Caption: novo tiddler Markdown
|
||||
NewMarkdown/Hint: Criar um novo tiddler Markdown
|
||||
NewTiddler/Caption: novo tiddler
|
||||
NewTiddler/Hint: Criar um novo tiddler
|
||||
Opacity/Caption: opacidade
|
||||
Opacity/Hint: Definir opacidade de desenho
|
||||
OpenWindow/Caption: abrir em nova janela
|
||||
OpenWindow/Hint: Abrir tiddler em nova janela
|
||||
Paint/Caption: cor de desenho
|
||||
Paint/Hint: Definir a cor de desenho
|
||||
Palette/Caption: paleta
|
||||
Palette/Hint: Escolher a paleta de cores
|
||||
Permalink/Caption: ligação directa
|
||||
Permalink/Hint: Define o endereço do navegador para apontar directamente para este tiddler
|
||||
Permaview/Caption: vista actual
|
||||
Permaview/Hint: Define o endereço do navegador para apontar directamente para todos os tiddlers actualmente exibidos
|
||||
Picture/Caption: imagem
|
||||
Picture/Hint: Inserir imagem
|
||||
Preview/Caption: pré-visualizar
|
||||
Preview/Hint: Mostrar o painel de pré-visualização
|
||||
PreviewType/Caption: tipo de pré-visualização
|
||||
PreviewType/Hint: Escolher o tipo de pré-visualização
|
||||
Quote/Caption: citação
|
||||
Quote/Hint: Aplicar formatação de citação às linhas contendo selecção
|
||||
Refresh/Caption: actualizar
|
||||
Refresh/Hint: Recarregar totalmente a wiki actual
|
||||
Save/Caption: guardar
|
||||
@@ -64,9 +138,31 @@ SaveWiki/Caption: guardar alterações
|
||||
SaveWiki/Hint: Guardar as alterações
|
||||
ShowSideBar/Caption: Mostrar barra lateral
|
||||
ShowSideBar/Hint: Mostrar a barra lateral
|
||||
Size/Caption: tamanho da imagem
|
||||
Size/Caption/Height: Altura:
|
||||
Size/Caption/Resize: Redimensionar imagem
|
||||
Size/Caption/Width: Largura:
|
||||
Size/Hint: Definir tamanho da imagem
|
||||
Stamp/Caption: carimbo
|
||||
Stamp/Caption/New: Adicione o seu
|
||||
Stamp/Hint: Inserir um excerto de texto pré configurado
|
||||
Stamp/New/Text: Excerto de texto (Lembre-se de adicionar um título descritivo no campo da descrição).
|
||||
Stamp/New/Title: Nome a exibir no menu
|
||||
StoryView/Caption: Vista principal
|
||||
StoryView/Hint: Escolher a visualização principal
|
||||
Strikethrough/Caption: rasurado
|
||||
Strikethrough/Hint: Aplicar formatação rasurado à selecção
|
||||
Subscript/Caption: subscrita
|
||||
Subscript/Hint: Aplicar formatação subscrita à selecção
|
||||
Superscript/Caption: sobrescrita
|
||||
Superscript/Hint: Aplicar formatação sobrescrita à selecção
|
||||
TagManager/Caption: gestor de etiquetas
|
||||
TagManager/Hint: Abrir o gestor de etiquetas
|
||||
Theme/Caption: tema
|
||||
Theme/Hint: Escolher o tema de exibição
|
||||
Underline/Caption: sublinhar
|
||||
Underline/Hint: Aplicar formatação sublinhada à selecção
|
||||
Unfold/Caption: desdobrar tiddler
|
||||
Unfold/Hint: Desdobrar o corpo deste tiddler
|
||||
UnfoldAll/Caption: desdobrar todos os tiddlers
|
||||
UnfoldAll/Hint: Desdobrar o corpo de todos os tiddlers
|
||||
|
||||
@@ -27,17 +27,38 @@ EditorTypes/Hint: Estes tiddlers determinam que editor é utilizado para editar
|
||||
EditorTypes/Type/Caption: Tipo
|
||||
Info/Caption: Informação
|
||||
Info/Hint: Informação acerca desta TiddlyWiki
|
||||
KeyboardShortcuts/Add/Caption: adicionar atalho
|
||||
KeyboardShortcuts/Add/Prompt: Digite o atalho aqui
|
||||
KeyboardShortcuts/Caption: Atalhos de Teclado
|
||||
KeyboardShortcuts/Hint: Gerir atribuições de atalhos de teclado
|
||||
KeyboardShortcuts/NoShortcuts/Caption: Nenhuns atalhos de teclado definidos
|
||||
KeyboardShortcuts/Platform/All: Todas as plataformas
|
||||
KeyboardShortcuts/Platform/Linux: Apenas plataforma Linux
|
||||
KeyboardShortcuts/Platform/Mac: Apenas plataforma Macintosh
|
||||
KeyboardShortcuts/Platform/NonLinux: Apenas plataformas não Linux
|
||||
KeyboardShortcuts/Platform/NonMac: Apenas plataformas não Macintosh
|
||||
KeyboardShortcuts/Platform/NonWindows: Apenas plataformas não Windows
|
||||
KeyboardShortcuts/Platform/Windows: Apenas plataforma Windows
|
||||
KeyboardShortcuts/Remove/Hint: remover atalho de teclado
|
||||
LoadedModules/Caption: Módulos Carregados
|
||||
LoadedModules/Hint: Estes são os módulos tiddler actualmente carregados conectados com os seus tiddlers fonte. Módulos em itálico não têm tiddler fonte, geralmente por serem carregados durante o período de arranque.
|
||||
Palette/Caption: Palete
|
||||
Palette/Editor/Clone/Caption: clone
|
||||
Palette/Editor/Clone/Prompt: Recomenda-se que clone esta palete-sombra antes de a editar
|
||||
Palette/Caption: Paleta
|
||||
Palette/Editor/Clone/Caption: clonar
|
||||
Palette/Editor/Clone/Prompt: Recomenda-se que clone esta paleta-sombra antes de a editar
|
||||
Palette/Editor/Prompt: Edição
|
||||
Palette/Editor/Prompt/Modified: Esta palete-sombra foi modificada
|
||||
Palette/Editor/Prompt/Modified: Esta paleta-sombra foi modificada
|
||||
Palette/Editor/Reset/Caption: repor
|
||||
Palette/HideEditor/Caption: esconder editor
|
||||
Palette/Prompt: Palete actual:
|
||||
Palette/Prompt: Paleta actual:
|
||||
Palette/ShowEditor/Caption: mostrar editor
|
||||
Parsing/Block/Caption: Regras de análise de blocos
|
||||
Parsing/Caption: Análise
|
||||
Parsing/Hint: Aqui pode desactivar globalmente regras individuais do analisador de wiki. Tenha em atenção que desactivar certas regras de análise pode impedir a ~TiddlyWiki de funcionar correctamente (pode repor o funcionamento normal com o [[modo de segurança|http://tiddlywiki.com/#SafeMode]] )
|
||||
Parsing/Inline/Caption: Regras de Análise em Linha
|
||||
Parsing/Pragma/Caption: Regras de Análise Pragma
|
||||
Plugins/Add/Caption: Obter mais extensões
|
||||
Plugins/Add/Hint: Instalar extensões da biblioteca de extensões oficial
|
||||
Plugins/AlreadyInstalled/Hint: Esta extensão já se encontra instalada com a versão<$text text=<<installedVersion>>/>
|
||||
Plugins/Caption: Extensões
|
||||
Plugins/Disable/Caption: desactivar
|
||||
Plugins/Disable/Hint: Desactivar esta extensão quando recarregar a página
|
||||
@@ -45,9 +66,22 @@ Plugins/Disabled/Status: (inactivo)
|
||||
Plugins/Empty/Hint: Nenhum
|
||||
Plugins/Enable/Caption: activar
|
||||
Plugins/Enable/Hint: Activar esta extensão quando recarregar a página
|
||||
Plugins/Install/Caption: instalar
|
||||
Plugins/Installed/Hint: Extensões actualmente instaladas:
|
||||
Plugins/Language/Prompt: Linguagens
|
||||
Plugins/Languages/Caption: Linguagens
|
||||
Plugins/Languages/Hint: Extensões de pacotes de idiomas
|
||||
Plugins/NoInfoFound/Hint: ''"<$text text=<<currentTab>>/>"'' não encontrado
|
||||
Plugins/NoInformation/Hint: Nenhuma informação fornecida
|
||||
Plugins/NotInstalled/Hint: Esta extensão não está actualmente instalada
|
||||
Plugins/OpenPluginLibrary: abrir biblioteca de extensões
|
||||
Plugins/Plugin/Prompt: Extensões
|
||||
Plugins/Plugins/Caption: Extensões
|
||||
Plugins/Plugins/Hint: Extensões
|
||||
Plugins/Reinstall/Caption: reinstalar
|
||||
Plugins/Theme/Prompt: Temas
|
||||
Plugins/Themes/Caption: Temas
|
||||
Plugins/Themes/Hint: Extensões de Temas
|
||||
Saving/Caption: A gravar
|
||||
Saving/Heading: A gravar
|
||||
Saving/TiddlySpot/Advanced/Heading: Definições Avançadas
|
||||
@@ -65,8 +99,26 @@ Settings/AutoSave/Caption: Gravação Automática
|
||||
Settings/AutoSave/Disabled/Description: Não fazer gravação automática
|
||||
Settings/AutoSave/Enabled/Description: Fazer gravação automática
|
||||
Settings/AutoSave/Hint: Guardar alterações automaticamente durante a edição
|
||||
Settings/CamelCase/Caption: Ligações Wiki em Camel Case
|
||||
Settings/CamelCase/Description: Activar ligações em frases ~CamelCase automaticamente
|
||||
Settings/CamelCase/Hint: Pode desactivar a criação automática de ligações em frases em ~CamelCase. Requer recarregar o texto para que tome efeito
|
||||
Settings/Caption: Definições
|
||||
Settings/DefaultSidebarTab/Caption: Separador da barra lateral pré-definido
|
||||
Settings/DefaultSidebarTab/Hint: Definir que separador da barra lateral é exibido por defeito
|
||||
Settings/EditorToolbar/Caption: Barra de Ferramentas do Editor
|
||||
Settings/EditorToolbar/Description: Mostrar barra de ferramentas do editor
|
||||
Settings/EditorToolbar/Hint: Activar ou desactivar a barra de ferramentas do editor
|
||||
Settings/Hint: Estas definições permitem personalizar o comportamento da TiddlyWiki.
|
||||
Settings/LinkToBehaviour/Caption: Comportamento de Abertura de Tiddlers
|
||||
Settings/LinkToBehaviour/InsideRiver/Hint: Navegação do //interior// do rol de tiddlers
|
||||
Settings/LinkToBehaviour/OpenAbove: Abrir acima do tiddler actual
|
||||
Settings/LinkToBehaviour/OpenAtBottom: Abrir no fim do rol de tiddlers
|
||||
Settings/LinkToBehaviour/OpenAtTop: Abrir no topo do rol de tiddlers
|
||||
Settings/LinkToBehaviour/OpenBelow: Abrir abaixo do tiddler actual
|
||||
Settings/LinkToBehaviour/OutsideRiver/Hint: Navegação do //exterior // do rol de tiddlers
|
||||
Settings/MissingLinks/Caption: Ligações Wiki
|
||||
Settings/MissingLinks/Description: Activar ligações para tiddlers em falta
|
||||
Settings/MissingLinks/Hint: Definir se devem ser criadas ligações para tiddlers que ainda não existem
|
||||
Settings/NavigationAddressBar/Caption: Barra de Endereços de Navegação
|
||||
Settings/NavigationAddressBar/Hint: Comportamento da barra de endereços do navegador quando abrir um tiddler:
|
||||
Settings/NavigationAddressBar/No/Description: Não actualizar a barra de endereços
|
||||
@@ -76,10 +128,22 @@ Settings/NavigationHistory/Caption: Histórico de Navegação
|
||||
Settings/NavigationHistory/Hint: Actualizar o histórico do navegador quando navegar para um tiddler
|
||||
Settings/NavigationHistory/No/Description: Não actualizar o histórico
|
||||
Settings/NavigationHistory/Yes/Description: Actualizar o histórico
|
||||
Settings/PerformanceInstrumentation/Caption: Instrumentação de Performance
|
||||
Settings/PerformanceInstrumentation/Description: Activar instrumentação de performance
|
||||
Settings/PerformanceInstrumentation/Hint: Exibe estatísticas de performance na consola de desenvolvimento do navegador. Requer recarregamento para que tome efeito
|
||||
Settings/TitleLinks/Caption: Títulos dos Tiddlers
|
||||
Settings/TitleLinks/Hint: Exibir opcionalmente títulos dos tiddlers como ligações
|
||||
Settings/TitleLinks/No/Description: Não exibir títulos dos tiddlers como ligações
|
||||
Settings/TitleLinks/Yes/Description: Exibir títulos dos tiddlers como ligações
|
||||
Settings/ToolbarButtons/Caption: Botões da Barra de Ferramentas
|
||||
Settings/ToolbarButtons/Hint: Aparência pré definida dos botões da barra de ferramentas:
|
||||
Settings/ToolbarButtons/Icons/Description: Incluir ícone
|
||||
Settings/ToolbarButtons/Text/Description: Incluir texto
|
||||
Settings/ToolbarButtonStyle/Caption: Estilo dos botões da barra de ferramentas
|
||||
Settings/ToolbarButtonStyle/Hint: Escolha o estilo dos botões da barra de ferramentas:
|
||||
Settings/ToolbarButtonStyle/Styles/Borderless: Sem moldura
|
||||
Settings/ToolbarButtonStyle/Styles/Boxed: Caixa
|
||||
Settings/ToolbarButtonStyle/Styles/Rounded: Arredondados
|
||||
StoryView/Caption: Vista principal
|
||||
StoryView/Prompt: Vista actual:
|
||||
Theme/Caption: Tema
|
||||
@@ -87,6 +151,8 @@ Theme/Prompt: Tema Actual
|
||||
TiddlerFields/Caption: Campos dos Tiddlers
|
||||
TiddlerFields/Hint: Esta é uma lista completa dos campos dos tiddlers em utilização nesta wiki (incluindo tiddlers de sistema mas excluindo tiddlers-sombra).
|
||||
Toolbars/Caption: Barras de Ferramentas
|
||||
Toolbars/EditorToolbar/Caption: Barra de Ferramentas do Editor
|
||||
Toolbars/EditorToolbar/Hint: Escolha que botões devem ser exibidos na barra de ferramentas do editor. Alguns botões só serão exibidos enquanto edita tiddlers de certo tipo
|
||||
Toolbars/EditToolbar/Caption: Barra de Ferramentas de Edição
|
||||
Toolbars/EditToolbar/Hint: Escolher que botões são exibidos para tiddlers em modo de edição
|
||||
Toolbars/Hint: Seleccionar que botões da barra de ferramentas são exibidos
|
||||
|
||||
@@ -6,6 +6,9 @@ alert-highlight: Realce de alertas
|
||||
alert-muted-foreground: Fundo de alertas silenciados
|
||||
background: Fundo geral
|
||||
blockquote-bar: Barra de citação
|
||||
button-background: Fundo de botão pré-definido
|
||||
button-border: Moldura de botão pré-definido
|
||||
button-foreground: Primeiro plano de botão pré-definido
|
||||
code-background: Fundo de código
|
||||
code-border: Margem de código
|
||||
code-foreground: Primeiro plano de código
|
||||
@@ -58,6 +61,7 @@ sidebar-tab-foreground: Primeiro plano de separador da barra lateral
|
||||
sidebar-tab-foreground-selected: Primeiro plano de separador seleccionado da barra lateral
|
||||
sidebar-tiddler-link-foreground: Primeiro plano de ligação para tiddler na barra lateral
|
||||
sidebar-tiddler-link-foreground-hover: Primeiro plano de ligação para tiddler na barra lateral sob o cursor
|
||||
site-title-foreground: Primeiro plano do site
|
||||
static-alert-foreground: Primeiro plano de alerta estático
|
||||
tab-background: Fundo de separador
|
||||
tab-background-selected: Fundo de separador seleccionado
|
||||
|
||||
@@ -2,9 +2,12 @@ title: $:/language/EditTemplate/
|
||||
|
||||
Body/External/Hint: Este é um tiddler armazenado fora do ficheiro principal da Tiddlywiki. Pode mudar as etiquetas mas não pode editar o seu conteúdo
|
||||
Body/Placeholder: Escreva o texto para este tiddler
|
||||
Body/Preview/Type/Output: resultado
|
||||
Field/Remove/Caption: remover campo
|
||||
Field/Remove/Hint: Remover campo
|
||||
Fields/Add/Button: adicionar
|
||||
Fields/Add/Dropdown/System: Campos de Sistema
|
||||
Fields/Add/Dropdown/User: Campos do utilizador
|
||||
Fields/Add/Name/Placeholder: nome do campo
|
||||
Fields/Add/Prompt: Adicionar novo campo
|
||||
Fields/Add/Value/Placeholder: valor do campo
|
||||
@@ -14,6 +17,7 @@ Tags/Add/Button: adicionar
|
||||
Tags/Add/Placeholder: nome da etiqueta
|
||||
Tags/Dropdown/Caption: lista de etiquetas
|
||||
Tags/Dropdown/Hint: Mostrar a lista de etiquetas
|
||||
Title/BadCharacterWarning: Atenção: Evite utilizar os caracteres <<bad-chars>> no título de tiddlers
|
||||
Type/Delete/Caption: apagar tipo de conteúdo
|
||||
Type/Delete/Hint: Apagar tipo de conteúdo
|
||||
Type/Dropdown/Caption: Lista de tipo de conteúdo
|
||||
|
||||
@@ -7,5 +7,5 @@ Construir os alvos de construção especificados para a wiki actual. Se nenhum a
|
||||
--build <alvo> [<alvo> ...]
|
||||
```
|
||||
|
||||
Os alvos de contrução são definidos no ficheiro `tiddlywiki.info` na pasta da wiki.
|
||||
Os alvos de construção são definidos no ficheiro `tiddlywiki.info` na pasta da wiki.
|
||||
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
title: $:/language/Import/
|
||||
|
||||
Imported/Hint: Os seguintes tiddlers foram importados:
|
||||
Listing/Cancel/Caption: Cancelar
|
||||
Listing/Hint: Estes tiddlers estão prontos a importar:
|
||||
Listing/Import/Caption: Importar
|
||||
|
||||
@@ -4,20 +4,47 @@ BinaryWarning/Prompt: Este tiddler contém informação binária
|
||||
ClassicWarning/Hint: Este tiddler está escrito no formato de texto wiki da TiddlyWiki Clássica, que não é totalmente compatível com a TiddlyWiki versão 5. Veja http://tiddlywiki.com/static/Upgrading.html para mais detalhes.
|
||||
ClassicWarning/Upgrade/Caption: actualizar
|
||||
CloseAll/Button: fechar todos
|
||||
ColourPicker/Recent: Recente:
|
||||
ConfirmCancelTiddler: Pretende descartar as alterações feitas no tiddler "<$text text=<<title>>/>"?
|
||||
ConfirmDeleteTiddler: Pretende apagar o tiddler "<$text text=<<title>>/>"?
|
||||
ConfirmEditShadowTiddler: Está prestes a editar um Tiddler-Sombra. Quaisquer alterações sobrepor-se-ão aos valores pré definidos de sistema, tornando futuras actualizações mais complexas. Tem a certeza que pretende editar "<$text text=<<title>>/>"?
|
||||
ConfirmOverwriteTiddler: Pretende substituir o tiddler "<$text text=<<title>>/>"?
|
||||
Count: contagem
|
||||
DefaultNewTiddlerTitle: Novo Tiddler
|
||||
DropMessage: Largue aqui (ou carregue no escape para cancelar)
|
||||
Encryption/Cancel: Cancelar
|
||||
Encryption/ConfirmClearPassword: Pretende remover a palavra-passe? Esta acção removerá a encriptação aplicada quando guardar esta wiki
|
||||
Encryption/Password: Palavra Passe
|
||||
Encryption/PromptSetPassword: Definir nova palavra passe para esta TiddlyWiki
|
||||
Encryption/RepeatPassword: Repetir palavra passe
|
||||
Encryption/SetPassword: Definir palavra passe
|
||||
Encryption/Username: Nome de utilizador
|
||||
Error/Caption: Erro
|
||||
Error/Filter: Erro de filtro
|
||||
Error/FilterSyntax: Erro de sintaxe na expressão do filtro
|
||||
Error/IsFilterOperator: Erro de Filtro: Operando desconhecido para o operador de filtro 'is'
|
||||
Error/LoadingPluginLibrary: Erro ao carregar a biblioteca de extensões
|
||||
Error/RecursiveTransclusion: Erro de transclusão recursiva na widget de transclusão
|
||||
Error/RetrievingSkinny: Erro ao obter a lista simples de tiddlers
|
||||
Error/SavingToTWEdit: Erro ao gravar em TWEdit
|
||||
Error/WhileSaving: Erro ao gravar
|
||||
Error/XMLHttpRequest: Código de erro XMLHttpRequest
|
||||
InternalJavaScriptError/Hint: Bem, isto é embaraçoso. Recomenda-se que reinicie a sua TiddlyWiki recarregando o seu navegador
|
||||
InternalJavaScriptError/Title: Erro interno JavaScript
|
||||
InvalidFieldName: Caracteres ilegais no nome do ficheiro "<$text text=<<fieldName>>/>". Os campos apenas podem conter letras minúsculas, dígitos e os caracteres subtraço (`_`), hífen (`-`) e ponto final (`.`)
|
||||
LazyLoadingWarning: <p>A carregar texto externo de ''<$text text={{!!_canonical_uri}}/>''</p><p>Se esta mensagem não desaparecer pode estar a utilizar um navegador que não suporta texto remoto nesta configuração. Veja http://tiddlywiki.com/#ExternalText</p>
|
||||
LoginToTiddlySpace: Entrar em TiddlySpace
|
||||
MissingTiddler/Hint: Tiddler "<$text text=<<currentTiddler>>/>" em falta - clique {{$:/core/images/edit-button}} para criar
|
||||
No: Não
|
||||
OfficialPluginLibrary: Biblioteca de Extensões Official ~TiddlyWiki
|
||||
OfficialPluginLibrary/Hint: A Biblioteca de Extensões Official ~TiddlyWiki em tiddlywiki.com. Extensões temas e pacotes de idiomas são mantidos pela equipa principal.
|
||||
PluginReloadWarning: Por favor grave {{$:/core/ui/Buttons/save-wiki}} e recarregue {{$:/core/ui/Buttons/refresh}} para que as alterações às extensões tomem efeito
|
||||
RecentChanges/DateFormat: DD MMM AAAA
|
||||
SystemTiddler/Tooltip: Este é um tiddler de sistema
|
||||
TagManager/Colour/Heading: Cor
|
||||
TagManager/Count/Heading: Contagem
|
||||
TagManager/Icon/Heading: Ícone
|
||||
TagManager/Info/Heading: Informação
|
||||
TagManager/Tag/Heading: Etiqueta
|
||||
UnsavedChangesWarning: Têm alterações não guardadas na TiddlyWiki
|
||||
Yes: Sim
|
||||
|
||||
@@ -5,6 +5,9 @@ Filter/Caption: Filtro
|
||||
Filter/Hint: Procurar através de [[expressão de filtros|http://tiddlywiki.com/static/Filters.html]]
|
||||
Filter/Matches: //<small><<resultCount>> resultados</small>//
|
||||
Matches: //<small><<resultCount>> resultados</small>//
|
||||
Matches/All: Todas as correspondências:
|
||||
Matches/Title: Correspondências em títulos:
|
||||
Search: Pesquisar
|
||||
Shadows/Caption: Sombras
|
||||
Shadows/Hint: Procurar tiddlers-sombra
|
||||
Shadows/Matches: //<small><<resultCount>> resultados</small>//
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
title: $:/SiteSubtitle
|
||||
|
||||
European Portuguese translation for ~TiddlyWiki 5
|
||||
Tradução de Português Europeu para ~TiddlyWiki 5
|
||||
@@ -1,3 +1,3 @@
|
||||
title: $:/SiteTitle
|
||||
|
||||
~TiddlyWiki Portuguese Translation
|
||||
Tradução para Português da ~TiddlyWiki
|
||||
5
languages/pt-PT/Snippets/ListByTag.tid
Normal file
5
languages/pt-PT/Snippets/ListByTag.tid
Normal file
@@ -0,0 +1,5 @@
|
||||
title: $:/language/Snippets/ListByTag
|
||||
tags: $:/tags/TextEditor/Snippet
|
||||
caption: Lista de tiddlers por etiqueta
|
||||
|
||||
<<list-links "[tag[task]sort[title]]">>
|
||||
7
languages/pt-PT/Snippets/MacroDefinition.tid
Normal file
7
languages/pt-PT/Snippets/MacroDefinition.tid
Normal file
@@ -0,0 +1,7 @@
|
||||
title: $:/language/Snippets/MacroDefinition
|
||||
tags: $:/tags/TextEditor/Snippet
|
||||
caption: Definição de Macro
|
||||
|
||||
\define macroName(param1:"default value",param2)
|
||||
Texto da macro
|
||||
\end
|
||||
8
languages/pt-PT/Snippets/Table4x3.tid
Normal file
8
languages/pt-PT/Snippets/Table4x3.tid
Normal file
@@ -0,0 +1,8 @@
|
||||
title: $:/language/Snippets/Table4x3
|
||||
tags: $:/tags/TextEditor/Snippet
|
||||
caption: Tabela com 4 colunas por 3 linhas
|
||||
|
||||
|! |!Alfa |!Beta |!Gama |!Delta |
|
||||
|!Um| | | | |
|
||||
|!Dois| | | | |
|
||||
|!Três | | | | |
|
||||
9
languages/pt-PT/Snippets/TableOfContents.tid
Normal file
9
languages/pt-PT/Snippets/TableOfContents.tid
Normal file
@@ -0,0 +1,9 @@
|
||||
title: $:/language/Snippets/TableOfContents
|
||||
tags: $:/tags/TextEditor/Snippet
|
||||
caption: Tabela de Conteúdos
|
||||
|
||||
<div class="tc-table-of-contents">
|
||||
|
||||
<<toc-selective-expandable 'TableOfContents'>>
|
||||
|
||||
</div>
|
||||
41
languages/pt-PT/ThemeTweaks.multids
Normal file
41
languages/pt-PT/ThemeTweaks.multids
Normal file
@@ -0,0 +1,41 @@
|
||||
title: $:/language/ThemeTweaks/
|
||||
|
||||
Metrics: Tamanhos
|
||||
Metrics/BodyFontSize: Tamanho da fonte para o corpo do tiddler
|
||||
Metrics/BodyLineHeight: Altura da linha para o corpo do tiddler
|
||||
Metrics/FontSize: Tamanho de fonte
|
||||
Metrics/LineHeight: Altura de linha
|
||||
Metrics/SidebarBreakpoint: Ponto de quebra da barra lateral
|
||||
Metrics/SidebarBreakpoint/Hint: a largura mínima da página para qual o rol de<br>tiddlers e a barra lateral aparecem lado-a-lado
|
||||
Metrics/SidebarWidth: Largura da barra lateral
|
||||
Metrics/SidebarWidth/Hint: a largura da barra lateral no esquema fluido-fixo
|
||||
Metrics/StoryLeft: Posição à esquerda do rol
|
||||
Metrics/StoryLeft/Hint: Distancia a que a margem esquerda do rol de tiddlers<br>(área dos tiddlers) está da esquerda da página
|
||||
Metrics/StoryRight: Rol à direita
|
||||
Metrics/StoryRight/Hint: distancia da margem esquerda da barra<br>lateral à da esquerda da página
|
||||
Metrics/StoryTop: Posição vertical do rol
|
||||
Metrics/StoryTop/Hint: distancia da margem superior do<br>rol ao topo da página
|
||||
Metrics/StoryWidth: Largura do rol
|
||||
Metrics/StoryWidth/Hint: largura total do rol de tiddlers
|
||||
Metrics/TiddlerWidth: Largura dos tiddlers
|
||||
Metrics/TiddlerWidth/Hint: largura do rol de tiddlers
|
||||
Options: Opções
|
||||
Options/CodeWrapping: Dividir linhas longas em blocos de código
|
||||
Options/SidebarLayout: Esquema da barra lateral
|
||||
Options/SidebarLayout/Fixed-Fluid: Rol fixo, barra fluida
|
||||
Options/SidebarLayout/Fluid-Fixed: Rol fluido, barra lateral fixa
|
||||
Options/StickyTitles: Títulos persistentes
|
||||
Options/StickyTitles/Hint: Torna as barras de título dos tiddlers sempre visíveis como se ficassem coladas no topo da janela do navegador. Atenção, não funciona de todo com o Chrome, e pode causar problemas de apresentação no Firefox
|
||||
Settings: Definições
|
||||
Settings/BackgroundImage: Imagem de fundo da página
|
||||
Settings/BackgroundImageAttachment: Anexo de imagem de fundo da página
|
||||
Settings/BackgroundImageAttachment/Fixed: Fixa em relação à janela
|
||||
Settings/BackgroundImageAttachment/Scroll: Rolar com tiddlers
|
||||
Settings/BackgroundImageSize: Tamanho da imagem de fundo
|
||||
Settings/BackgroundImageSize/Auto: Automática
|
||||
Settings/BackgroundImageSize/Contain: Conter
|
||||
Settings/BackgroundImageSize/Cover: Cobrir
|
||||
Settings/CodeFontFamily: Família da fonte de código
|
||||
Settings/FontFamily: Família da fonte
|
||||
ThemeTweaks: Afinações dos Temas
|
||||
ThemeTweaks/Hint: Pode ajustar alguns parâmetros do tema ''Vanilla''.
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "tiddlywiki",
|
||||
"preferGlobal": "true",
|
||||
"version": "5.1.12",
|
||||
"version": "5.1.13",
|
||||
"author": "Jeremy Ruston <jeremy@jermolene.com>",
|
||||
"description": "a non-linear personal web notebook",
|
||||
"contributors": [
|
||||
|
||||
@@ -40,10 +40,6 @@ $tw.config.typeInfo = {
|
||||
}
|
||||
};
|
||||
|
||||
$tw.config.typeTemplates = {
|
||||
"application/x-tiddler": "$:/core/templates/tid-tiddler"
|
||||
};
|
||||
|
||||
FileSystemAdaptor.prototype.getTiddlerFileInfo = function(tiddler,callback) {
|
||||
// See if we've already got information about this file
|
||||
var self = this,
|
||||
@@ -101,6 +97,13 @@ FileSystemAdaptor.prototype.findFirstFilter = function(filters,source) {
|
||||
}
|
||||
};
|
||||
|
||||
/*
|
||||
Add file extension to a file path if it doesn't already exist.
|
||||
*/
|
||||
FileSystemAdaptor.addFileExtension = function(file,extension) {
|
||||
return $tw.utils.strEndsWith(file,extension) ? file : file + extension;
|
||||
};
|
||||
|
||||
|
||||
/*
|
||||
Given a tiddler title and an array of existing filenames, generate a new legal filename for the title, case insensitively avoiding the array of existing filenames
|
||||
@@ -128,12 +131,8 @@ FileSystemAdaptor.prototype.generateTiddlerFilename = function(title,extension,e
|
||||
if(baseFilename.length > 200) {
|
||||
baseFilename = baseFilename.substr(0,200);
|
||||
}
|
||||
// Prevent redundent file extensions
|
||||
if($tw.utils.strEndsWith(baseFilename,extension)) {
|
||||
extension = "";
|
||||
}
|
||||
// Start with the base filename plus the extension
|
||||
var filename = baseFilename + extension,
|
||||
var filename = FileSystemAdaptor.addFileExtension(baseFilename,extension),
|
||||
count = 1;
|
||||
// Add a discriminator if we're clashing with an existing filename while
|
||||
// handling case-insensitive filesystems (NTFS, FAT/FAT32, etc.)
|
||||
@@ -149,7 +148,7 @@ Save a tiddler and invoke the callback with (err,adaptorInfo,revision)
|
||||
FileSystemAdaptor.prototype.saveTiddler = function(tiddler,callback) {
|
||||
var self = this;
|
||||
this.getTiddlerFileInfo(tiddler,function(err,fileInfo) {
|
||||
var template, content, encoding,
|
||||
var template, content, encoding, filepath,
|
||||
_finish = function() {
|
||||
callback(null, {}, 0);
|
||||
};
|
||||
@@ -163,28 +162,30 @@ FileSystemAdaptor.prototype.saveTiddler = function(tiddler,callback) {
|
||||
var typeInfo = $tw.config.contentTypeInfo[fileInfo.type];
|
||||
if(fileInfo.hasMetaFile || typeInfo.encoding === "base64") {
|
||||
// Save the tiddler as a separate body and meta file
|
||||
fs.writeFile(fileInfo.filepath,tiddler.fields.text,{encoding: typeInfo.encoding},function(err) {
|
||||
filepath = fileInfo.filepath;
|
||||
fs.writeFile(filepath,tiddler.fields.text,{encoding: typeInfo.encoding},function(err) {
|
||||
if(err) {
|
||||
return callback(err);
|
||||
}
|
||||
content = self.wiki.renderTiddler("text/plain","$:/core/templates/tiddler-metadata",{variables: {currentTiddler: tiddler.fields.title}});
|
||||
fs.writeFile(fileInfo.filepath + ".meta",content,{encoding: "utf8"},function (err) {
|
||||
filepath = FileSystemAdaptor.addFileExtension(fileInfo.filepath,".meta");
|
||||
fs.writeFile(filepath,content,{encoding: "utf8"},function (err) {
|
||||
if(err) {
|
||||
return callback(err);
|
||||
}
|
||||
self.logger.log("Saved file",fileInfo.filepath);
|
||||
self.logger.log("Saved file",filepath);
|
||||
_finish();
|
||||
});
|
||||
});
|
||||
} else {
|
||||
// Save the tiddler as a self contained templated file
|
||||
template = $tw.config.typeTemplates[fileInfo.type];
|
||||
content = self.wiki.renderTiddler("text/plain",template,{variables: {currentTiddler: tiddler.fields.title}});
|
||||
fs.writeFile(fileInfo.filepath,content,{encoding: "utf8"},function (err) {
|
||||
content = self.wiki.renderTiddler("text/plain","$:/core/templates/tid-tiddler",{variables: {currentTiddler: tiddler.fields.title}});
|
||||
filepath = FileSystemAdaptor.addFileExtension(fileInfo.filepath,".tid");
|
||||
fs.writeFile(filepath,content,{encoding: "utf8"},function (err) {
|
||||
if(err) {
|
||||
return callback(err);
|
||||
}
|
||||
self.logger.log("Saved file",fileInfo.filepath);
|
||||
self.logger.log("Saved file",filepath);
|
||||
_finish();
|
||||
});
|
||||
}
|
||||
@@ -216,7 +217,7 @@ FileSystemAdaptor.prototype.deleteTiddler = function(title,callback,options) {
|
||||
self.logger.log("Deleted file",fileInfo.filepath);
|
||||
// Delete the metafile if present
|
||||
if(fileInfo.hasMetaFile) {
|
||||
fs.unlink(fileInfo.filepath + ".meta",function(err) {
|
||||
fs.unlink(FileSystemAdaptor.addFileExtension(fileInfo.filepath,".meta"),function(err) {
|
||||
if(err) {
|
||||
return callback(err);
|
||||
}
|
||||
|
||||
@@ -7,6 +7,12 @@ tags: [[$:/tags/Stylesheet]]
|
||||
|
||||
{{$:/plugins/tiddlywiki/katex/katex.min.css}}
|
||||
|
||||
/* Force text-rendering (see https://github.com/Jermolene/TiddlyWiki5/issues/2500) */
|
||||
|
||||
.katex {
|
||||
text-rendering: auto;
|
||||
}
|
||||
|
||||
/* Override font URLs */
|
||||
|
||||
@font-face {
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
<p>Welcome to <a class="tc-tiddlylink tc-tiddlylink-resolves" href="http://tiddlywiki.com/static/TiddlyWiki.html">TiddlyWiki</a>, a non-linear personal web notebook that anyone can use and keep forever, independently of any corporation.</p><p><a class="tc-tiddlylink tc-tiddlylink-resolves" href="http://tiddlywiki.com/static/TiddlyWiki.html">TiddlyWiki</a> is a complete interactive wiki in <a class="tc-tiddlylink tc-tiddlylink-resolves" href="http://tiddlywiki.com/static/JavaScript.html">JavaScript</a>. It can be used as a single HTML file in the browser or as a powerful Node.js application. It is highly customisable: the entire user interface is itself implemented in hackable <a class="tc-tiddlylink tc-tiddlylink-resolves" href="http://tiddlywiki.com/static/WikiText.html">WikiText</a>.</p><p>Learn more and see it in action at <a class="tc-tiddlylink-external" href="http://tiddlywiki.com/" target="_blank">http://tiddlywiki.com/</a></p><p>Developer documentation is in progress at <a class="tc-tiddlylink-external" href="http://tiddlywiki.com/dev/" target="_blank">http://tiddlywiki.com/dev/</a></p><h1 class="">Installing <a class="tc-tiddlylink tc-tiddlylink-resolves" href="http://tiddlywiki.com/static/TiddlyWiki.html">TiddlyWiki</a> on Node.js</h1><ol><li>Install <a class="tc-tiddlylink tc-tiddlylink-resolves" href="http://tiddlywiki.com/static/Node.js.html">Node.js</a><ul><li>either from your favourite package manager: typically <code>apt-get install nodejs</code> on Debian/Ubuntu Linux or Termux for Android, or <code>brew install node</code> on a Mac</li><li>or directly from <a class="tc-tiddlylink-external" href="http://nodejs.org" target="_blank">http://nodejs.org</a></li></ul></li><li>Open a command line terminal and type:<blockquote><p><code>npm install -g tiddlywiki</code></p><p>If it fails with an error you may need to re-run the command as an administrator:</p><p><code>sudo npm install -g tiddlywiki</code> (Mac/Linux)</p></blockquote></li><li>Check <a class="tc-tiddlylink tc-tiddlylink-resolves" href="http://tiddlywiki.com/static/TiddlyWiki.html">TiddlyWiki</a> is installed by typing:<blockquote><p><code>tiddlywiki --version</code></p></blockquote></li><li>In response, you should see <a class="tc-tiddlylink tc-tiddlylink-resolves" href="http://tiddlywiki.com/static/TiddlyWiki.html">TiddlyWiki</a> report its current version (eg "5.1.11"; you may also see other debugging information reported)</li><li>Try it out:<ol><li><code>tiddlywiki mynewwiki --init server</code> to create a folder for a new wiki that includes server-related components</li><li><code>tiddlywiki mynewwiki --server</code> to start <a class="tc-tiddlylink tc-tiddlylink-resolves" href="http://tiddlywiki.com/static/TiddlyWiki.html">TiddlyWiki</a></li><li>Visit <a class="tc-tiddlylink-external" href="http://127.0.0.1:8080/" target="_blank">http://127.0.0.1:8080/</a> in your browser</li><li>Try editing and creating tiddlers</li></ol></li><li>Optionally, make an offline copy:<ul><li>click the <svg class="tc-image-save-button tc-image-button" height="22pt" viewBox="0 0 128 128" width="22pt">
|
||||
<p>Welcome to <a class="tc-tiddlylink tc-tiddlylink-resolves" href="http://tiddlywiki.com/static/TiddlyWiki.html">TiddlyWiki</a>, a non-linear personal web notebook that anyone can use and keep forever, independently of any corporation.</p><p><a class="tc-tiddlylink tc-tiddlylink-resolves" href="http://tiddlywiki.com/static/TiddlyWiki.html">TiddlyWiki</a> is a complete interactive wiki in <a class="tc-tiddlylink tc-tiddlylink-resolves" href="http://tiddlywiki.com/static/JavaScript.html">JavaScript</a>. It can be used as a single HTML file in the browser or as a powerful Node.js application. It is highly customisable: the entire user interface is itself implemented in hackable <a class="tc-tiddlylink tc-tiddlylink-resolves" href="http://tiddlywiki.com/static/WikiText.html">WikiText</a>.</p><p>Learn more and see it in action at <a class="tc-tiddlylink-external" href="http://tiddlywiki.com/" rel="noopener noreferrer" target="_blank">http://tiddlywiki.com/</a></p><p>Developer documentation is in progress at <a class="tc-tiddlylink-external" href="http://tiddlywiki.com/dev/" rel="noopener noreferrer" target="_blank">http://tiddlywiki.com/dev/</a></p><h1 class="">Installing <a class="tc-tiddlylink tc-tiddlylink-resolves" href="http://tiddlywiki.com/static/TiddlyWiki.html">TiddlyWiki</a> on Node.js</h1><ol><li>Install <a class="tc-tiddlylink tc-tiddlylink-resolves" href="http://tiddlywiki.com/static/Node.js.html">Node.js</a><ul><li>either from your favourite package manager: typically <code>apt-get install nodejs</code> on Debian/Ubuntu Linux or Termux for Android, or <code>brew install node</code> on a Mac</li><li>or directly from <a class="tc-tiddlylink-external" href="http://nodejs.org" rel="noopener noreferrer" target="_blank">http://nodejs.org</a></li></ul></li><li>Open a command line terminal and type:<blockquote><p><code>npm install -g tiddlywiki</code></p><p>If it fails with an error you may need to re-run the command as an administrator:</p><p><code>sudo npm install -g tiddlywiki</code> (Mac/Linux)</p></blockquote></li><li>Check <a class="tc-tiddlylink tc-tiddlylink-resolves" href="http://tiddlywiki.com/static/TiddlyWiki.html">TiddlyWiki</a> is installed by typing:<blockquote><p><code>tiddlywiki --version</code></p></blockquote></li><li>In response, you should see <a class="tc-tiddlylink tc-tiddlylink-resolves" href="http://tiddlywiki.com/static/TiddlyWiki.html">TiddlyWiki</a> report its current version (eg "5.1.12"; you may also see other debugging information reported)</li><li>Try it out:<ol><li><code>tiddlywiki mynewwiki --init server</code> to create a folder for a new wiki that includes server-related components</li><li><code>tiddlywiki mynewwiki --server</code> to start <a class="tc-tiddlylink tc-tiddlylink-resolves" href="http://tiddlywiki.com/static/TiddlyWiki.html">TiddlyWiki</a></li><li>Visit <a class="tc-tiddlylink-external" href="http://127.0.0.1:8080/" rel="noopener noreferrer" target="_blank">http://127.0.0.1:8080/</a> in your browser</li><li>Try editing and creating tiddlers</li></ol></li><li>Optionally, make an offline copy:<ul><li>click the <svg class="tc-image-save-button tc-image-button" height="22pt" viewBox="0 0 128 128" width="22pt">
|
||||
<g fill-rule="evenodd">
|
||||
<path d="M120.78304,34.329058 C125.424287,43.1924006 128.049406,53.2778608 128.049406,63.9764502 C128.049406,99.3226742 99.3956295,127.97645 64.0494055,127.97645 C28.7031816,127.97645 0.0494055385,99.3226742 0.0494055385,63.9764502 C0.0494055385,28.6302262 28.7031816,-0.0235498012 64.0494055,-0.0235498012 C82.8568763,-0.0235498012 99.769563,8.08898558 111.479045,21.0056358 L114.159581,18.3250998 C117.289194,15.1954866 122.356036,15.1939641 125.480231,18.3181584 C128.598068,21.4359957 128.601317,26.5107804 125.473289,29.6388083 L120.78304,34.329058 Z M108.72451,46.3875877 C110.870571,51.8341374 112.049406,57.767628 112.049406,63.9764502 C112.049406,90.4861182 90.5590735,111.97645 64.0494055,111.97645 C37.5397375,111.97645 16.0494055,90.4861182 16.0494055,63.9764502 C16.0494055,37.4667822 37.5397375,15.9764502 64.0494055,15.9764502 C78.438886,15.9764502 91.3495036,22.308215 100.147097,32.3375836 L58.9411255,73.5435552 L41.975581,56.5780107 C38.8486152,53.4510448 33.7746915,53.4551552 30.6568542,56.5729924 C27.5326599,59.6971868 27.5372202,64.7670668 30.6618725,67.8917192 L53.279253,90.5090997 C54.8435723,92.073419 56.8951519,92.8541315 58.9380216,92.8558261 C60.987971,92.8559239 63.0389578,92.0731398 64.6049211,90.5071765 L108.72451,46.3875877 Z"></path>
|
||||
</g>
|
||||
</svg> <strong>save changes</strong> button in the sidebar, <strong>OR</strong></li><li><code>tiddlywiki --build index</code></li></ul></li></ol><p>The <code>-g</code> flag causes <a class="tc-tiddlylink tc-tiddlylink-resolves" href="http://tiddlywiki.com/static/TiddlyWiki.html">TiddlyWiki</a> to be installed globally. Without it, <a class="tc-tiddlylink tc-tiddlylink-resolves" href="http://tiddlywiki.com/static/TiddlyWiki.html">TiddlyWiki</a> will only be available in the directory where you installed it.</p><p>If you are using Debian or Debian-based Linux and you are receiving a <code>node: command not found</code> error though node.js package is installed, you may need to create a symbolic link between <code>nodejs</code> and <code>node</code>. Consult your distro's manual and <code>whereis</code> to correctly create a link. See github <a class="tc-tiddlylink-external" href="http://github.com/Jermolene/TiddlyWiki5/issues/1434" target="_blank">issue 1434</a></p><p>Example Debian v8.0: <code>sudo ln -s /usr/bin/nodejs /usr/bin/node</code>
|
||||
</svg> <strong>save changes</strong> button in the sidebar, <strong>OR</strong></li><li><code>tiddlywiki --build index</code></li></ul></li></ol><p>The <code>-g</code> flag causes <a class="tc-tiddlylink tc-tiddlylink-resolves" href="http://tiddlywiki.com/static/TiddlyWiki.html">TiddlyWiki</a> to be installed globally. Without it, <a class="tc-tiddlylink tc-tiddlylink-resolves" href="http://tiddlywiki.com/static/TiddlyWiki.html">TiddlyWiki</a> will only be available in the directory where you installed it.</p><p>If you are using Debian or Debian-based Linux and you are receiving a <code>node: command not found</code> error though node.js package is installed, you may need to create a symbolic link between <code>nodejs</code> and <code>node</code>. Consult your distro's manual and <code>whereis</code> to correctly create a link. See github <a class="tc-tiddlylink-external" href="http://github.com/Jermolene/TiddlyWiki5/issues/1434" rel="noopener noreferrer" target="_blank">issue 1434</a></p><p>Example Debian v8.0: <code>sudo ln -s /usr/bin/nodejs /usr/bin/node</code>
|
||||
</p><h1 class="">Using <a class="tc-tiddlylink tc-tiddlylink-resolves" href="http://tiddlywiki.com/static/TiddlyWiki.html">TiddlyWiki</a> on Node.js</h1><p><a class="tc-tiddlylink tc-tiddlylink-resolves" href="http://tiddlywiki.com/static/TiddlyWiki5.html">TiddlyWiki5</a> can be used on the command line to perform an extensive set of operations based on <a class="tc-tiddlylink tc-tiddlylink-resolves" href="http://tiddlywiki.com/static/TiddlyWikiFolders.html">TiddlyWikiFolders</a>, <a class="tc-tiddlylink tc-tiddlylink-resolves" href="http://tiddlywiki.com/static/TiddlerFiles.html">TiddlerFiles</a> and <a class="tc-tiddlylink tc-tiddlylink-missing" href="http://tiddlywiki.com/static/TiddlyWikiFiles.html">TiddlyWikiFiles</a>.</p><p>For example, the following command loads the tiddlers from a <a class="tc-tiddlylink tc-tiddlylink-resolves" href="http://tiddlywiki.com/static/TiddlyWiki.html">TiddlyWiki</a> HTML file and then saves one of them in static HTML:</p><pre><code>tiddlywiki --verbose --load mywiki.html --rendertiddler ReadMe ./readme.html</code></pre><p>Running <code>tiddlywiki</code> from the command line boots the <a class="tc-tiddlylink tc-tiddlylink-resolves" href="http://tiddlywiki.com/static/TiddlyWiki.html">TiddlyWiki</a> kernel, loads the core plugins and establishes an empty wiki store. It then sequentially processes the command line arguments from left to right. The arguments are separated with spaces.</p><p>The first argument is the optional path to the <a class="tc-tiddlylink tc-tiddlylink-resolves" href="http://tiddlywiki.com/static/TiddlyWikiFolders.html">TiddlyWikiFolder</a> to be loaded. If not present, then the current directory is used.</p><p>The commands and their individual arguments follow, each command being identified by the prefix <code>--</code>.</p><pre><code>tiddlywiki [<wikipath>] [--<command> [<arg>[,<arg>]]]</code></pre><p>The available commands are:</p><p><ul class="">
|
||||
|
||||
<li>
|
||||
|
||||
@@ -726,7 +726,7 @@ button.tc-untagged-label {
|
||||
.tc-story-river .tc-tiddler-frame {
|
||||
margin: 0;
|
||||
border: none;
|
||||
padding: 28px;
|
||||
padding: 0;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user