You can use this plugin to make easy-to-type shortforms/acronyms of topic names. For example:
Main.LightweightDirectoryAccessProtocol
Main.LDAP
contains just a redirect tag. Referencing Main.LDAP
anywhere or entering it in the Jump Box takes one directly to Main.LightweightDirectoryAccessProtocol
%REDIRECT{"SomeTopic"}%
%REDIRECT{"Someweb.SomeTopic"}%
%REDIRECT{"http://domain.com/"}%
http://domain.com/twiki/bin/view/Main/TopicThatContainsARedirect?q=LDAP"}%
. The landing topic url will contain these parameters
%REDIRECT{"Someweb.SomeTopic?q=LDAP"}%
REDIRECT
parameters override url parameters
To view the topic that contains a REDIRECT
, pass parameter noredirect=on
to the url. For example:
http://domain.com/twiki/bin/view/Main/WebHome?noredirect=on
A redirect now appends the redirectedfrom
parameter to the url which contains the Web.Topic that the user has been redirected from. This allows us to display Wikipedia like "Redirected from ..." text on the destination topic. You can use the %URLPARAM{redirectedfrom}%
variable to access the parameter and create the "Redirected from..." text.
Below is an example you can put in your template:
%IF{ "$'URLPARAM{redirectedfrom}'" then="<span class='twikiGrayText'>(Redirected from <a href='%SCRIPTURLPATH{view}%/%URLPARAM{redirectedfrom}%?noredirect=on'>%URLPARAM{redirectedfrom}%</a>)</span>"}%
Which will display the following on topics that have been redirected:
(Redirected from Web.Topic)
Redirection happens even if %REDIRECT{"SomeTopic"}%
is in an included topic. The redirectedfrom
URL parameter has the including topic rather than included topic.
For example, let's say we have the following topics.
Then, when IncludingTopic is viewed, redirection to the RedirectDestination occurs with the redirectedfrom=WEB.IncludingTopic
URL parameter.
IncludedTopic:
%REDIRECT{"RedirectDestination"}%
IncludingTopic:
%INCLUDE{"IncludedTopic"}%
If installed:
Note: You do not need to install anything on the browser to use this plugin. The following instructions are for the administrator who installs the plugin on the TWiki server.
RedirectPlugin.zip
in your twiki installation directory. Content: File: | Description: |
---|---|
data/TWiki/RedirectPlugin.txt | Plugin topic |
data/TWiki/VarREDIRECT.txt | REDIRECT variable documentation topic |
data/Sandbox/RedirectPluginTest.txt | Test topic |
data/Sandbox/RedirectPluginDestination.txt | Test topic, landing page |
lib/TWiki/Plugins/RedirectPlugin.pm | Plugin Perl module |
Plugin Author: | TWiki:Main.SteveMokris |
Copyright: | © 2003 TWiki:Main.SteveMokris, © 2003-2015 TWiki:TWiki.TWikiContributor |
License: | GPL (GNU General Public License) |
Plugin Version: | 2015-12-02 |
Change History: | |
2015-12-02: | TWikibug:Item7703: Fix URL issue with anchor & query mismatch -- thanks TWiki:Main.JoshuaTharp for patch |
2014-05-31: | TWikibug:Item7503: barfing undef Fast CGI and %TOC% |
2013-08-14: | TWikibug:Item7315: redirectedfrom URL parameter based on %BASEWEB% and %BASETOPIC% -- TWiki:Main.HideyoImazu |
2012-12-01: | TWikibug:Item7020: Add category to variable REDIRECT -- TWiki:Main.PeterThoeny |
2012-09-20: | TWikibug:Item6937: RedirectPlugin doesn't recognize Site.Site.Page format. |
2011-07-15: | TWikibug:Item6725: Change global package variables from "use vars" to "our"; doc improvements |
2011-05-10: | TWikibug:Item6701: Doc improvements, adding VarREDIRECT variable documentation -- TWiki:Main.PeterThoeny |
2011-02-14: | TWikibug:Item6664: Remove any newline characters from redirect URL before redirecting -- TWiki:Main.DipuDeshmukh |
2010-07-25: | TWikibug:Item6530: Doc fixes |
24 Nov 2008: | TWiki:Main.AndrewRJones: Ability to display Wikipedia like "Redirected from..." |
22 Apr 2007: | Arthur Clemens: url parameters are now passed on. Adapted from TWiki:Main.JohnRouillard. |
21 Apr 2007: | Arthur Clemens: fixed redirect to non-wiki word topics; added noredirect=on parameter; added support for TWiki:Codev.ShorterURLs. |
10 Aug 2006: | Ability to redirect to URL restored by TWiki:Main/ThomasWeigert. Also added support for URL parameters. Fixed a few bugs. |
09 Jun 2006: | Dakar port by TWiki:Main/MeredithLesley |
20 Jun 2003: | Initial version |
CPAN Dependencies: | none |
Other Dependencies: | none |
Perl Version: | 5.005 |
Plugin Home: | http://TWiki.org/cgi-bin/view/Plugins/RedirectPlugin |
Feedback: | http://TWiki.org/cgi-bin/view/Plugins/RedirectPluginDev |
Appraisal: | http://TWiki.org/cgi-bin/view/Plugins/RedirectPluginAppraisal |
Related Topics: VarREDIRECT, RedirectPluginDestination, RedirectPluginTest, TWikiPlugins, AdminDocumentationCategory