View | Details | Raw Unified | Return to bug 38900
Collapse All | Expand All

(-)src/modules/xhtml/xslt/clean-xhtml.xsl (-1 / +1 lines)
Lines 21-27 Link Here
21
    >
21
    >
22
22
23
  <xsl:import href="fallback://lenya/resources/kupu/apache-lenya/lenya/kupusave.xsl"/>
23
  <xsl:import href="fallback://lenya/resources/kupu/apache-lenya/lenya/kupusave.xsl"/>
24
  <xsl:import href="fallback://lenya/xslt/bxe/change-object-path-back.xsl"/>
24
  <xsl:import href="fallback://lenya/modules/bxe/xslt/change-object-path-back.xsl"/>
25
25
26
  <xsl:template match="@*|node()">
26
  <xsl:template match="@*|node()">
27
    <xsl:copy>
27
    <xsl:copy>
(-)src/modules/webdav/java/src/org/apache/lenya/cms/usecases/webdav/Put.java (-1 / +1 lines)
Lines 112-118 Link Here
112
            String tempSourceUri = "context://lenya/pubs/" + pubId + "/work/webdav/content/"
112
            String tempSourceUri = "context://lenya/pubs/" + pubId + "/work/webdav/content/"
113
                    + doc.getArea() + "/" + path + ".tmp";
113
                    + doc.getArea() + "/" + path + ".tmp";
114
            tempSourceUri = tempSourceUri.substring("lenya://".length());
114
            tempSourceUri = tempSourceUri.substring("lenya://".length());
115
            tempSourceUri = "context://" + tempSourceUri;
115
            tempSourceUri = "context:" + tempSourceUri;
116
116
117
            try {
117
            try {
118
                SourceUtil.copy(resolver, uploadSourceUri, tempSourceUri, true);
118
                SourceUtil.copy(resolver, uploadSourceUri, tempSourceUri, true);

Return to bug 38900