Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
Merge branch 'master' into okapi-filters
Browse files Browse the repository at this point in the history
Conflicts:
	zanata-war/src/main/webapp/WEB-INF/urlrewrite.xml
		kept updated files outbound rule and new source_files outbound rule
  • Loading branch information
davidmason committed Sep 4, 2012
2 parents 8035432 + 94e2795 commit 74d21f6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion zanata-war/src/main/webapp/WEB-INF/pages.xml
Expand Up @@ -570,7 +570,7 @@
<param name="project" value="#{projectIterationZipFileAction.projectSlug}" />
<param name="iteration" value="#{projectIterationZipFileAction.iterationSlug}" />
<param name="localeId" value="#{projectIterationZipFileAction.localeId}" />

<action execute="#{projectIterationFilesAction.initialize()}" />
<action execute="#{breadcrumbs.clear}"/>
<action execute="#{breadcrumbs.addLocation('/project/list', messages['jsf.Projects'])}"/>
Expand Down
9 changes: 7 additions & 2 deletions zanata-war/src/main/webapp/WEB-INF/urlrewrite.xml
Expand Up @@ -326,8 +326,13 @@
<to>$1/iteration/source_files/$2/$3?$5</to>
</outbound-rule>
<outbound-rule>
<from>^(/.+)?/iteration/files.seam\?project=([^&amp;]+)&amp;iteration=([^&amp;]+)&amp;localeId=([^&amp;]+)$</from>
<to>$1/iteration/files/$2/$3/$4</to>
<from>^(/.+)?/iteration/files.seam\?project=([^&amp;]+)&amp;iteration=([^&amp;]+)&amp;localeId=([^&amp;]+)(&amp;(.+))?$</from>
<to>$1/iteration/files/$2/$3/$4?$6</to>
</outbound-rule>
<!-- Duplicate rule to handle different parameter order. -->
<outbound-rule>
<from>^(/.+)?/iteration/files.seam\?localeId=([^&amp;]+)&amp;project=([^&amp;]+)&amp;iteration=([^&amp;]+)(&amp;(.+))?$</from>
<to>$1/iteration/files/$3/$4/$2?$6</to>
</outbound-rule>
<outbound-rule>
<from>^(/.+)?/iteration/edit.seam\?projectSlug=([^&amp;]+)&amp;slug=([^&amp;]+)$</from>
Expand Down

0 comments on commit 74d21f6

Please sign in to comment.