]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/plugin/UriResolver.php
Update getDescription
[SourceForge/phpwiki.git] / lib / plugin / UriResolver.php
1 <?php
2
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 along
19  * with PhpWiki; if not, write to the Free Software Foundation, Inc.,
20  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 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     {
37         return _("UriResolver");
38     }
39
40     function getDescription()
41     {
42         return _("Converts an URI-escaped identifier back to an unique XML-ID.");
43     }
44
45     function getDefaultArguments()
46     {
47         return array();
48     }
49
50     function allow_undeclared_arg()
51     {
52         return true;
53     }
54
55     function run($dbi, $argstr, &$request, $basepage)
56     {
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 // Local Variables:
69 // mode: php
70 // tab-width: 8
71 // c-basic-offset: 4
72 // c-hanging-comment-ender-p: nil
73 // indent-tabs-mode: nil
74 // End: