Skip to main content

Map TiddlyWeb URLs to your own custom URLs

Project description

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.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tiddlywebplugins.urls-0.6.1.tar.gz (12.1 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page