| 1 |
$Id: README.TXT,v 1.3.4.4 2008/01/03 00:19:05 hass Exp $
|
| 2 |
|
| 3 |
Description
|
| 4 |
-----------
|
| 5 |
|
| 6 |
The go module adds the option to add redirected urls. It's much like the url
|
| 7 |
alias system except that it uses redirects to go to the real url. The visits
|
| 8 |
to the 'go' urls are tracked, so you can see how often a certain go url has
|
| 9 |
been visited.
|
| 10 |
The go redirects can be automatically created by enabling the filter. To create
|
| 11 |
a go url the user only has to add a tag like:
|
| 12 |
|
| 13 |
<go href="http://example.org/test/page">An example</go>
|
| 14 |
|
| 15 |
This creates the go url:
|
| 16 |
|
| 17 |
http://drupal.org/go/example.org/test/page
|
| 18 |
|
| 19 |
And the HTML code:
|
| 20 |
|
| 21 |
<a href="http://drupal.org/go/example.org/test/page">An example</a>
|
| 22 |
|
| 23 |
Or with a custom go label:
|
| 24 |
|
| 25 |
<go href="http://example.org/test/page" title="my label">An example</go>
|
| 26 |
|
| 27 |
This creates the go url:
|
| 28 |
|
| 29 |
http://drupal.org/go/my_label
|
| 30 |
|
| 31 |
And the HTML code:
|
| 32 |
|
| 33 |
<a href="http://drupal.org/go/my_label" title="my label">An example</a>
|
| 34 |
|
| 35 |
A disclaimers can be added before the redirect by checking the "Disclaimer" checkbox in the administrative area
|
| 36 |
|
| 37 |
Requirements
|
| 38 |
------------
|
| 39 |
|
| 40 |
This module requires Drupal 6.x
|
| 41 |
|
| 42 |
|
| 43 |
Installation
|
| 44 |
------------
|
| 45 |
|
| 46 |
To use the <go> tag you must activate the filter for the input formats.
|
| 47 |
Be sure to give the go filter a lower weight than the HTML filter.
|
| 48 |
|
| 49 |
|
| 50 |
Configuration
|
| 51 |
-------------
|
| 52 |
|
| 53 |
Go can be configured at Administer -> Settings -> Gotwo settings
|
| 54 |
The list of created redirects is available in Administer -> Site building -> Go redirects
|
| 55 |
|
| 56 |
|
| 57 |
Authors
|
| 58 |
-------
|
| 59 |
|
| 60 |
* Michiel Hendriks <elmuerte@drunksnipers.com> (Original Creator)
|
| 61 |
* Jacob Redding <jacob@wiredgeek.com> (Dislaimer Code, port to 5.x)
|
| 62 |
* Alexander Hass (http://drupal.org/user/85918, port to 6.x)
|
| 63 |
|
| 64 |
Thanks To
|
| 65 |
-------
|
| 66 |
* Robin Rainton (drupal.org/user/27877)
|
| 67 |
|