Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

sitemap.xmap 4.9KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. <?xml version="1.0"?>
  2. <!--
  3. Licensed to the Apache Software Foundation (ASF) under one or more
  4. contributor license agreements. See the NOTICE file distributed with
  5. this work for additional information regarding copyright ownership.
  6. The ASF licenses this file to You under the Apache License, Version 2.0
  7. (the "License"); you may not use this file except in compliance with
  8. the License. You may obtain a copy of the License at
  9. http://www.apache.org/licenses/LICENSE-2.0
  10. Unless required by applicable law or agreed to in writing, software
  11. distributed under the License is distributed on an "AS IS" BASIS,
  12. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. See the License for the specific language governing permissions and
  14. limitations under the License.
  15. -->
  16. <map:sitemap xmlns:map="http://apache.org/cocoon/sitemap/1.0">
  17. <map:components>
  18. <map:serializers default="html">
  19. <map:serializer name="rss" mime-type="application/rss+xml" src="org.apache.cocoon.serialization.XMLSerializer"/>
  20. </map:serializers>
  21. </map:components>
  22. <map:pipelines>
  23. <!-- This is used by xinclude statements in knownissues.xml -->
  24. <map:pipeline internal-only="true">
  25. <map:match type="regexp" pattern="^(.*?)([^/]*)knownissues-raw-layoutengine.xml$">
  26. <map:generate type="file" src="../../test/layoutengine/disabled-testcases.xml"/>
  27. <map:transform src="resources/stylesheets/disabled-testcases2document.xsl" >
  28. <map:parameter name="bugtracking-url" value="{properties:bugtracking-url}"/>
  29. <map:parameter name="path" value="{1}{2}"/>
  30. </map:transform>
  31. <map:serialize type="xml-document"/>
  32. </map:match>
  33. <map:match type="regexp" pattern="^(.*?)([^/]*)knownissues-raw-fotree.xml$">
  34. <map:generate type="file" src="../../test/fotree/disabled-testcases.xml"/>
  35. <map:transform src="resources/stylesheets/disabled-testcases2document.xsl" >
  36. <map:parameter name="bugtracking-url" value="{properties:bugtracking-url}"/>
  37. <map:parameter name="path" value="{1}{2}"/>
  38. </map:transform>
  39. <map:serialize type="xml-document"/>
  40. </map:match>
  41. <map:match type="regexp" pattern="^(.*?)([^/]*)knownissues-raw-static.xml$">
  42. <!--<map:generate type="file" src="{properties:knownissues}"/>-->
  43. <map:generate type="file" src="../../known-issues.xml"/>
  44. <map:transform src="resources/stylesheets/known-issues2document.xsl"/>
  45. <map:serialize type="xml-document"/>
  46. </map:match>
  47. <map:match type="regexp" pattern="^(.*?)([^/]*)knownissues-raw-layoutengine_(.*).xml$">
  48. <map:generate type="file" src="content/xdocs/{3}/layoutengine/disabled-testcases.xml"/>
  49. <map:transform src="resources/stylesheets/disabled-testcases2document.xsl" >
  50. <map:parameter name="bugtracking-url" value="{properties:bugtracking-url}"/>
  51. <map:parameter name="path" value="{1}{2}"/>
  52. </map:transform>
  53. <map:serialize type="xml-document"/>
  54. </map:match>
  55. <map:match type="regexp" pattern="^(.*?)([^/]*)knownissues-raw-fotree_(.*).xml$">
  56. <map:generate type="file" src="content/xdocs/{3}/fotree/disabled-testcases.xml"/>
  57. <map:transform src="resources/stylesheets/disabled-testcases2document.xsl" >
  58. <map:parameter name="bugtracking-url" value="{properties:bugtracking-url}"/>
  59. <map:parameter name="path" value="{1}{2}"/>
  60. </map:transform>
  61. <map:serialize type="xml-document"/>
  62. </map:match>
  63. <map:match type="regexp" pattern="^(.*?)([^/]*)knownissues-raw-static_(.*).xml$">
  64. <!--<map:generate type="file" src="{properties:knownissues}"/>-->
  65. <map:generate type="file" src="content/xdocs/{3}/known-issues.xml"/>
  66. <map:transform src="resources/stylesheets/known-issues2document.xsl"/>
  67. <map:serialize type="xml-document"/>
  68. </map:match>
  69. </map:pipeline>
  70. <!-- This is used by xinclude statements for News-->
  71. <map:pipeline>
  72. <map:match type="regexp" pattern="^(.*?)([^/]*)subproject-news-document.xml">
  73. <map:generate src="{properties:content.xdocs}{1}news-data.xml"/>
  74. <map:transform src="resources/stylesheets/news2document.xsl" >
  75. <map:parameter name="path" value="{1}{2}"/>
  76. </map:transform>
  77. <map:serialize type="xml"/>
  78. </map:match>
  79. <map:match type="regexp" pattern="^(.*?)([^/]*)subproject-news-feed.rss">
  80. <map:generate src="{properties:content.xdocs}{1}news-data.xml"/>
  81. <map:transform src="resources/stylesheets/news2rss.xsl" >
  82. <map:parameter name="path" value="{1}{2}"/>
  83. <map:parameter name="project-name" value="{properties:projectInfo.project.fullname}"/>
  84. <map:parameter name="project-url" value="{properties:projectInfo.project.url}"/>
  85. </map:transform>
  86. <map:serialize type="rss"/>
  87. </map:match>
  88. </map:pipeline>
  89. </map:pipelines>
  90. </map:sitemap>