From 35c70943069b3a331a1e730103e420d5c481cb8b Mon Sep 17 00:00:00 2001 From: Jeremy Ruston Date: Fri, 18 Oct 2013 15:20:33 +0100 Subject: [PATCH] Start building the static files There's a few parts that don't work yet --- contributing.md | 36 +++++---- nbld.sh | 3 + readme.md | 189 ++++++++++++++++++------------------------------ 3 files changed, 92 insertions(+), 136 deletions(-) diff --git a/contributing.md b/contributing.md index 7dbb858dd..8df961a09 100644 --- a/contributing.md +++ b/contributing.md @@ -1,10 +1,8 @@

-Contributing to -TiddlyWiki5

-
-

- -TiddlyWiki5 welcomes contributions to its code and documentation via +Contributing to +TiddlyWiki5

+ +TiddlyWiki5 welcomes contributions to its code and documentation via GitHub. Please take a moment to read these notes to help make the process as smooth as possible.

Bug Reports

From the perspective of the developers, a bug report that says little more than "it doesn't work" can be frustrating. For effective debugging, we need as much information as possible. At a minimum, please try to include:

    @@ -16,24 +14,24 @@ Expected behaviour
  • Context (OS, browser etc.)

There's a lot of good material on the web about bug reports:

Pull Requests

-Like other -OpenSource projects, -TiddlyWiki5 needs a signed -ContributorLicenseAgreement from individual contributors before contributions of code can be accepted. 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 -UnaMesa Association (the legal entity that owns +Like other +OpenSource projects, +TiddlyWiki5 needs a signed +ContributorLicenseAgreement from individual contributors before contributions of code can be accepted. 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 +UnaMesa Association (the legal entity that owns TiddlyWiki on behalf of the community).

-This is a first pass at a CLA for +This is a first pass at a CLA for TiddlyWiki. Please let us know if we missed something important. If we do have to make essential changes to the CLA, there is a possibility that all contributors will need to sign it again

How to sign the CLA

 git clone https://github.com/Jermolene/TiddlyWiki5.git TiddlyWiki5
@@ -51,10 +49,10 @@ Go to your github repo and create a pull request.

Thank you!

Attribution

-The CLA documents used for this project where created using +The CLA documents used for this project where created using Harmony Project Templates. "HA-CLA-I-LIST Version 1.0" for "CLA-individual" and "HA-CLA-E-LIST Version 1.0" for "CLA-entity" -

+

-This file was automatically generated by +This file was automatically generated by TiddlyWiki5

\ No newline at end of file diff --git a/nbld.sh b/nbld.sh index c7dad786e..382d8c25d 100755 --- a/nbld.sh +++ b/nbld.sh @@ -21,6 +21,9 @@ node ./tiddlywiki.js \ ./editions/tw5.com \ --verbose \ --new_rendertiddler $:/core/templates/tiddlywiki5.template.html $TW5_BUILD_OUTPUT/index.html text/plain \ + --new_rendertiddler ReadMe ./readme.md text/html \ + --new_rendertiddler ContributingTemplate ./contributing.md text/html \ + --new_rendertiddler $:/core/templates/static.template.html $TW5_BUILD_OUTPUT/static.html text/plain \ || exit 1 # Run tests diff --git a/readme.md b/readme.md index 2b9b1ab5a..bf179a546 100644 --- a/readme.md +++ b/readme.md @@ -1,105 +1,101 @@

-Welcome to -TiddlyWiki5

-
-

-Welcome to -TiddlyWiki5, a reboot of -TiddlyWiki, the non-linear personal web notebook first released in 2004. It is a complete interactive wiki in -JavaScript that can be run from a single HTML file in the browser or as a powerful +Welcome to +TiddlyWiki5

+Welcome to +TiddlyWiki5, a reboot of +TiddlyWiki, the non-linear personal web notebook first released in 2004. It is a complete interactive wiki in +JavaScript that can be run from a single HTML file in the browser or as a powerful node.js application.

- -TiddlyWiki5 is currently in alpha, meaning it is working but incomplete. It is a great time to get involved and support its + +TiddlyWiki5 is currently in alpha, meaning it is working but incomplete. It is a great time to get involved and support its future development:

- -TiddlyWiki is a free, open source project that depends on + +TiddlyWiki is a free, open source project that depends on your love and support for its survival -

-Getting started with -TiddlyWiki under node.js

-
-

- -TiddlyWiki5 can be used on the command line to perform an extensive set of operations based on tiddlers, -TiddlyWikiFolders, -TiddlerFiles and -TiddlyWikiFiles. For example, the following command loads the tiddlers from a +

+Getting started with +TiddlyWiki under node.js

+ +TiddlyWiki5 can be used on the command line to perform an extensive set of operations based on tiddlers, +TiddlyWikiFolders, +TiddlerFiles and +TiddlyWikiFiles. For example, the following command loads the tiddlers from a TiddlyWiki HTML file and then saves one of them in HTML:

 node tiddlywiki.js --verbose --load mywiki.html --rendertiddler ReadMe ./readme.html

-In order to use -TiddlyWiki5 on the command line you must first install node.js from +In order to use +TiddlyWiki5 on the command line you must first install node.js from http://nodejs.org/

Usage

Running -tiddlywiki.js from the command line boots the +tiddlywiki.js from the command line boots the TiddlyWiki 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.

-The first argument is the optional path to the +The first argument is the optional path to the TiddlyWikiFolder to be loaded. If not present, then the current directory is used.

The commands and their individual arguments follow, each command being identified by the prefix --.

 node tiddlywiki.js [<wikipath>] [--<command> [<arg>[,<arg>]]]

Batch Files

-For trying +For trying TiddlyWiki5 out under node.js, several batch files are provided:

bld.sh builds tw5.com

-This batch file builds several variants of +This batch file builds several variants of TiddlyWiki5 for deployment on tiddlywiki.com.

By default, files are output to a folder called -jermolene.github.com in the same directory as the main +jermolene.github.com in the same directory as the main TiddlyWiki5 directory. You will need to create the directory before running the batch file. For example:

 * /TiddlyWork/ - Directory for working with TiddlyWiki5
 * /TiddlyWork/TiddlyWiki5/ - Directory containing the TiddlyWiki5 repo from GitHub
 * /TiddlyWork/jermolene.github.com/ - Directory for output files

You can override the build output directory by defining the environment variable -TW5_BUILD_OUTPUT. The easiest way to do this is to create a personal batch file to invoke +TW5_BUILD_OUTPUT. The easiest way to do this is to create a personal batch file to invoke TiddlyWiki5 that first sets the environment variable and then invokes bld.sh.

The files output by bld.sh are:

-bld.sh also runs the -TiddlyWiki5 node.js-based test suite (see +bld.sh also runs the +TiddlyWiki5 node.js-based test suite (see TestingMechanism)

serve.sh serves tw5.com

-This batch file starts +This batch file starts TiddlyWiki5 running as an HTTP server with the content from the clientserver edition. By default, the script serves on port 8080.

 ./server.sh UserName

@@ -108,49 +104,33 @@ To experiment with this configuration, run the script and then visit http://0.0.0.0:8080 in a browser.

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).

-wbld.sh builds -TiddlyWiki5 for +wbld.sh builds +TiddlyWiki5 for TiddlyWeb

-This batch file builds and deploys the code for -TiddlyWiki5 in the Sky for TiddlyWeb. If you want to experiment with your own builds of -TiddlyWiki5 for +This batch file builds and deploys the code for +TiddlyWiki5 in the Sky for TiddlyWeb. If you want to experiment with your own builds of +TiddlyWiki5 for TiddlyWeb you could use this batch file as a base.

-2bld.sh builds +2bld.sh builds TiddlyWiki 2.6.5

-This batch file builds +This batch file builds TiddlyWiki 2.6.5 from the original source and then uses the opendiff program to display the differences between them.

Commands

-The following commands are available:

-
-
-

- - -LoadCommand

-

-Load tiddlers from 2.x.x +The following commands are available:

+LoadCommand

+Load tiddlers from 2.x.x TiddlyWiki files ( .html), .tiddler, .tid, .json or other files

---load <filepath>
-
-

- - -PasswordCommand

-

+--load <filepath>

+PasswordCommand

Set a password for subsequent crypto operations

---password <password>
-
-

- - -PrintCommand

-

+--password <password>

+PrintCommand

The print command outputs specified information.

print tiddlers

@@ -164,39 +144,24 @@ Print the titles of the system tiddlers in the wiki store

 --print system

print config

Print the current core configuration

---print config
-
-

- - -RenderTiddlerCommand

-

-Render an individual tiddler as a specified +--print config

+RenderTiddlerCommand

+Render an individual tiddler as a specified ContentType, defaults to text/html and save it to the specified filename

---rendertiddler <title> <filename> [<type>]
-
-

- - -RenderTiddlersCommand

-

-Render a set of tiddlers matching a filter to separate files of a specified +--rendertiddler <title> <filename> [<type>]

+RenderTiddlersCommand

+Render a set of tiddlers matching a filter to separate files of a specified ContentType (defaults to text/html) and extension (defaults to .html).

 --rendertiddlers <filter> <template> <pathname> [<type>] [<extension>]

For example:

---rendertiddlers [!is[system]] $:/core/templates/static.tiddler.html ./static text/plain
-
-

- - -ServerCommand

-

-The server built in to -TiddlyWiki5 is very simple. Although compatible with -TiddlyWeb it doesn't support many of the features needed for robust Internet-facing usage - in particular, +--rendertiddlers [!is[system]] $:/core/templates/static.tiddler.html ./static text/plain

+ServerCommand

+The server built in to +TiddlyWiki5 is very simple. Although compatible with +TiddlyWeb it doesn't support many of the features needed for robust Internet-facing usage - in particular, TiddlyWiki5 is an old-school wiki in the sense that it offers no authentication.

At the root, it serves a rendering of a specified tiddler. Away from the root, it serves individual tiddlers encoded in JSON, and supports the basic HTTP operations for GET, @@ -216,25 +181,15 @@ servetype - the content type with which the root tiddler should be serv username - the default username for signing edits

For example:

---server 8080 $:/core/tiddlywiki5.template.html text/plain text/html MyUserName
-
-

- - -VerboseCommand

-

+--server 8080 $:/core/tiddlywiki5.template.html text/plain text/html MyUserName

+VerboseCommand

Triggers verbose output, useful for debugging

---verbose

+--version

-This readme file was automatically generated by +This readme file was automatically generated by TiddlyWiki5

\ No newline at end of file