📄 status.xmap
字号:
<?xml version="1.0"?>
<!-- ===============================================
Todo and changes pipelines, and anything else reporting the 'status' of the project.
Note that the regular (forrest.xmap) pipeline will handle Todo or Changes XML files, so
long as they have an appropriate DOCTYPE declaration. This sitemap is purely for
generating stuff from status.xml.
Generates : Source XML for todo.xml, changes.xml. Output HTML for changes.rss
Example URL: http://localhost:8888/changes.xml
Used by : sitemap.xmap
Uses : status.xml
$Revision: 1.10 $
==================================================== -->
<map:sitemap xmlns:map="http://apache.org/cocoon/sitemap/1.0">
<map:components>
<map:generators default="file"/>
<map:serializers default="html">
<map:serializer name="rss091" mime-type="text/xml" src="org.apache.cocoon.serialization.XMLSerializer">
<doctype-public>-//Netscape Communications//DTD RSS 0.91//EN</doctype-public>
<doctype-system>http://my.netscape.com/publish/formats/rss-0.91.dtd</doctype-system>
<encoding>ISO-8859-1</encoding>
</map:serializer>
</map:serializers>
<map:transformers default="xslt"/>
<map:matchers default="wildcard"/>
<map:selectors default="browser"/>
</map:components>
<map:pipelines>
<map:pipeline>
<map:match pattern="changes.xml">
<map:generate type="file" src="status.xml" />
<map:transform src="resources/stylesheets/changes2document.xsl" >
<map:parameter name="bugtracking-url" value="{defaults:bugtracking-url}"/>
</map:transform >
<map:serialize type="xml-document"/>
</map:match>
<map:match pattern="changes.rss">
<map:generate src="status.xml" />
<map:transform src="resources/stylesheets/changes2rss.xsl" />
<map:serialize type="rss091" />
</map:match>
<map:match pattern="todo.xml">
<map:generate type="file" src="status.xml" />
<map:transform src="resources/stylesheets/todo2document.xsl" />
<map:serialize type="xml-document"/>
</map:match>
</map:pipeline>
</map:pipelines>
</map:sitemap>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -