# SOME DESCRIPTIVE TITLE # Copyright (C) YEAR Free Software Foundation, Inc. # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2013-05-19 00:40+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. type: Plain text #, no-wrap msgid "[[!meta robots=\"noindex, follow\"]]\n" msgstr "" #. type: Plain text msgid "" "To select a set of pages, such as pages that are locked, pages whose commit " "emails you want subscribe to, or pages to combine into a blog, the wiki uses " "a PageSpec. This is an expression that matches a set of pages." msgstr "" #. type: Plain text msgid "" "The simplest PageSpec is a simple list of pages. For example, this matches " "any of the three listed pages:" msgstr "" #. type: Plain text #, no-wrap msgid "\tfoo or bar or baz\n" msgstr "" #. type: Plain text msgid "" "More often you will want to match any pages that have a particular thing in " "their name. You can do this using a glob pattern. \"`*`\" stands for any " "part of a page name, and \"`?`\" for any single letter of a page name. So " "this matches all pages about music, and any [[SubPage]]s of the SandBox, but " "does not match the SandBox itself:" msgstr "" #. type: Plain text #, no-wrap msgid "\t*music* or SandBox/*\n" msgstr "" #. type: Plain text msgid "" "You can also prefix an item with \"`!`\" to skip pages that match it. So to " "match all pages except for Discussion pages and the SandBox:" msgstr "" #. type: Bullet: ' * ' msgid "and !SandBox and !*/Discussion" msgstr "" #. type: Plain text msgid "" "Some more elaborate limits can be added to what matches using these " "functions:" msgstr "" #. type: Plain text #, no-wrap msgid "" "* \"`glob(someglob)`\" - matches pages and other files that match the given " "glob.\n" " Just writing the glob by itself is actually a shorthand for this " "function.\n" "* \"`page(glob)`\" - like `glob()`, but only matches pages, not other " "files\n" "* \"`link(page)`\" - matches only pages that link to a given page (or " "glob)\n" "* \"`tagged(tag)`\" - matches pages that are tagged or link to the given tag " "(or\n" " tags matched by a glob)\n" "* \"`backlink(page)`\" - matches only pages that a given page links to\n" "* \"`creation_month(month)`\" - matches only files created on the given " "month\n" " number\n" "* \"`creation_day(mday)`\" - or day of the month\n" "* \"`creation_year(year)`\" - or year\n" "* \"`created_after(page)`\" - matches only files created after the given " "page\n" " was created\n" "* \"`created_before(page)`\" - matches only files created before the given " "page\n" " was created\n" "* \"`internal(glob)`\" - like `glob()`, but matches even internal-use \n" " pages that globs do not usually match.\n" "* \"`title(glob)`\", \"`author(glob)`\", \"`authorurl(glob)`\",\n" " \"`license(glob)`\", \"`copyright(glob)`\", \"`guid(glob)`\" \n" " - match pages that have the given metadata, matching the specified glob.\n" "* \"`user(username)`\" - tests whether a modification is being made by a\n" " user with the specified username. If openid is enabled, an openid can " "also\n" " be put here. Glob patterns can be used in the username. For example, \n" " to match all openid users, use `user(*://*)`\n" "* \"`admin()`\" - tests whether a modification is being made by one of the\n" " wiki admins.\n" "* \"`ip(address)`\" - tests whether a modification is being made from the\n" " specified IP address.\n" "* \"`comment(glob)`\" - matches comments to a page matching the glob.\n" "* \"`comment_pending(glob)`\" - matches unmoderated, pending comments.\n" "* \"`postcomment(glob)`\" - matches only when comments are being \n" " posted to a page matching the specified glob\n" msgstr "" #. type: Plain text msgid "" "For example, to match all pages in a blog that link to the page about music " "and were written in 2005:" msgstr "" #. type: Plain text #, no-wrap msgid "\tblog/* and link(music) and creation_year(2005)\n" msgstr "" #. type: Plain text msgid "" "Note the use of \"and\" in the above example, that means that only pages " "that match each of the three expressions match the whole. Use \"and\" when " "you want to combine expression like that; \"or\" when it's enough for a page " "to match one expression. Note that it doesn't make sense to say \"index and " "SandBox\", since no page can match both expressions." msgstr "" #. type: Plain text msgid "" "More complex expressions can also be created, by using parentheses for " "grouping. For example, to match pages in a blog that are tagged with either " "of two tags, use:" msgstr "" #. type: Plain text #, no-wrap msgid "\tblog/* and (tagged(foo) or tagged(bar))\n" msgstr "" #. type: Plain text msgid "" "Note that page names in PageSpecs are matched against the absolute filenames " "of the pages in the wiki, so a pagespec \"foo\" used on page \"a/b\" will " "not match a page named \"a/foo\" or \"a/b/foo\". To match relative to the " "directory of the page containing the pagespec, you can use \"./\". For " "example, \"./foo\" on page \"a/b\" matches page \"a/foo\"." msgstr "" #. type: Plain text msgid "" "To indicate the name of the page the PageSpec is used in, you can use a " "single dot. For example, `link(.)` matches all the pages linking to the page " "containing the PageSpec." msgstr ""