]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/plugin/UriResolver.php
Activated Revision substitution for Subversion
[SourceForge/phpwiki.git] / lib / plugin / UriResolver.php
1 <?php // -*-php-*-
2 rcs_id('$Id$');
3 /*
4  Copyright 2007 $ThePhpWikiProgrammingTeam
5
6  This file is part of PhpWiki.
7
8  PhpWiki is free software; you can redistribute it and/or modify
9  it under the terms of the GNU General Public License as published by
10  the Free Software Foundation; either version 2 of the License, or
11  (at your option) any later version.
12
13  PhpWiki is distributed in the hope that it will be useful,
14  but WITHOUT ANY WARRANTY; without even the implied warranty of
15  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  GNU General Public License for more details.
17
18  You should have received a copy of the GNU General Public License
19  along with PhpWiki; if not, write to the Free Software
20  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21  */
22
23 /**
24  * UriResolver/uri => xml-id 
25  *   This function transforms a valid url-encoded URI into a string
26  *   that can be used as an XML-ID. The mapping should be injective.
27  * Inverse to RdfWriter::makeURIfromXMLExportId()
28  * Usage: internal
29  */
30 require_once('lib/SemanticWeb.php');
31
32 class WikiPlugin_UriResolver
33 extends WikiPlugin
34 {
35     function getName() {
36         return _("UriResolver");
37     }
38
39     function getDescription () {
40         return _("Converts an uri-escaped identifier back to an unique XML-ID");
41     }
42
43     function getVersion() {
44         return preg_replace("/[Revision: $]/", '',
45                             "\$Revision$");
46     }
47
48     function getDefaultArguments() {
49         return array();
50     }
51
52     function allow_undeclared_arg() {
53         return true;
54     }
55
56     function run($dbi, $argstr, &$request, $basepage) {
57         $args = $request->getArgs();
58         unset($args['pagename']);
59         unset($args['action']);
60         unset($args['start_debug']);
61         // FIXME: ?Test=1 => Test
62         $arg = join("/",array_keys($args));
63         $xmlid = RdfWriter::makeXMLExportId($arg);
64         return $xmlid;
65     }
66 };
67
68 // $Log: not supported by cvs2svn $
69
70 // For emacs users
71 // Local Variables:
72 // mode: php
73 // tab-width: 8
74 // c-basic-offset: 4
75 // c-hanging-comment-ender-p: nil
76 // indent-tabs-mode: nil
77 // End:
78 ?>