Welcome, guest | Sign In | My Account | Store | Cart

Notice! PyPM is being replaced with the ActiveState Platform, which enhances PyPM’s build and deploy capabilities. Create your free Platform account to download ActivePython or customize Python with the packages you require and get automatic updates.

Download
ActivePython
INSTALL>
pypm install tiddlywebplugins.urls

How to install tiddlywebplugins.urls

  1. Download and install ActivePython
  2. Open Command Prompt
  3. Type pypm install tiddlywebplugins.urls
 Python 2.7Python 3.2Python 3.3
Windows (32-bit)
0.6
0.6.1Never BuiltWhy not?
0.6 Available View build log
0.5 Available View build log
Windows (64-bit)
0.6
0.6.1Never BuiltWhy not?
0.6 Available View build log
0.5 Available View build log
Mac OS X (10.5+)
0.6
0.6.1Never BuiltWhy not?
0.6 Available View build log
0.5 Available View build log
Linux (32-bit)
0.6.1 Available View build log
0.6 Available View build log
0.5 Available View build log
Linux (64-bit)
0.6.1 Available View build log
0.6 Available View build log
0.5 Available View build log
 
Author
Lastest release
version 0.6.1 on Apr 14th, 2013

tiddlywebplugins.urls

This plugin lets you:

  • Map a custom URL to a default TiddlyWeb URL.
  • Map a custom URL to any other URL, for use as a URL shortener

It uses selector syntax for the custom URL (http://lukearno.com/projects/selector/)

Configuration

This plugin is a "system" and a "twanager" plugin. Type twanager usage in the command line. Your tiddlywebconfig.py should look similar to this configuration:

config = {
'system_plugins': ['tiddlywebwiki', 'tiddlywebplugins.urls' ],
'secret': 'XXXXXXXX',
'twanager_plugins': ['tiddlywebwiki', 'tiddlywebplugins.urls'],

# the tiddlywebwiki.friendlywiki function doesn't work with urls plugin,

# it needs to be disabled.
'tiddlywebwiki.friendlywiki': False,

#'url_bag':'__urls',
}

Note: All urls are stored in a bag called "urls" by default.

The name of this bag can be changed by adding "urls_bag" to tiddlywebconfig.py, but all tiddlers in the bag must be "url tiddlers" of the described format. If this bag doesn't exists already, it will be created automatically.

Rewrite URLs

To bring up a tiddlywiki at /default, create a tiddler like:

title:
/default

text:
/recipes/default/tiddlers.wiki

This configuration creates a link eg: http://example.com/default that would otherwise be: http://example.com/recipes/default/tiddlers.wiki, which is still valid. Be sure the recipe named "default" exists!

Flexible Version

Using the above format you'd need to create one tiddler per recipe. This isn't very "user friendly". So we need to be more flexibe, using "placeholders" to define the relation. Now we want to map every recipe_name, that the user may enter eg: /wiki/anyRecipeName:

title:
/wiki/{recipe_name:segment}

text:
/recipes/{{ recipe_name }}/tiddlers.wiki

A URL http://example.com/wiki/myWiki will load http://example.com/recipes/myWiki/tiddlers.wiki

Redirect URLs

Redirect to internal URL

If you want to redirect instead of rewrite to an internal URL, you can add the tag "redirect":

title:
/wiki/{user:segment}

tags:
redirect

text:
/recipes/{{ user }}/tiddlers.wiki

Be aware, that adding a user will not automatically add a user recipe. So if you need one, you need to create it.

Redirect to exernal URL

To create a short link to google.com, you might do the following. There is no need for the "redirect" tag:

title:
/google

text:
http://www.google.com

Experimental

If we create a tiddlywiki with a bag eg: /bags/{{ bag_name }}/tiddlers.wiki it will be loaded as a TiddlyWiki representation, but it is not saveable:

title:
/test/{bag_name:segment}

text:
/recipes/experiment/tiddlers.wiki

The experiment recipe needs to look similar to this one (in production you'll need access rights!):

desc: some description text ...
policy: {"read": [], "create": [], "manage": [R:ADMIN], "write": [], "owner": null, "delete": []}

/bags/system/tiddlers
/bags/{{ bag_name }}/tiddlers

Where bag_name can be any variable name.

Note that this does not support PUTs, you are unable to PUT to the recipe (unless you provide a default for bag_name). This version needs a client side plugin to work with PUTs.

Subscribe to package updates

Last updated Apr 14th, 2013

Download Stats

Last month:10

What does the lock icon mean?

Builds marked with a lock icon are only available via PyPM to users with a current ActivePython Business Edition subscription.

Need custom builds or support?

ActivePython Enterprise Edition guarantees priority access to technical support, indemnification, expert consulting and quality-assured language builds.

Plan on re-distributing ActivePython?

Get re-distribution rights and eliminate legal risks with ActivePython OEM Edition.