如何在html中进行SVN http-request checkin / commit

时间:2014-07-21 12:36:19

标签: javascript jquery html ajax svn

我遇到了问题

我想使用网站在我的svn服务器上办理登机手续和结账。 我已经到了可以使用jQuery进行结账的地步。 我剩下的问题是处理MERGE流程。 在MERGE中,svn发送一个分块响应。 但我的控制台只报告错误请求。 wireshark告诉m,Transfer-Encoding是分块的。 但我无法将其设置为分块。如果我将contentType设置为chunked,则将主体分块,而不是transfere-encoding。 和jquery.ajax()不提供Transfer-Encoding。 试图将它放入标题中也没有效果......它甚至没有显示此标题

我的登记密码:

    $.ajax({
        type: "OPTIONS",
        url: baseURL,
        contentType: "text/xml",
        data: '<?xml version="1.0" encoding="utf-8" ?><D:options xmlns:D="DAV:"><D:activity-collection-set></D:activity-collection-set></D:options>',
        success: function(data1, status, jqxhr){
            $.ajax({
                type: "POST",
                url: baseURL + "/!svn/me",
                contentType: "application/vnd.svn-skel",
                data: "(create-txn-with-props (svn:txn-user-agent 40 SVN/1.8.9(i686-pc-linux-gnu) serf/1.3.4 svn:log function svn:txn-client-compat-version 5 1.8.9))",
                success: function(data2, status, jqxhr){
                    rev = jqxhr.getResponseHeader('SVN-Txn-Name');
                    newdata = new XMLSerializer().serializeToString(xmlString["context"]);
                    hashResult = calcMD5(newdata);
                    $.ajax({
                        type: "PUT",
                        url: baseURL + "/!svn/txr/" + rev + file + ".xml",
                        headers: {"X-SVN-Version-Name": latestRev, "X-SVN-Base-Fulltext-MD5":hashBase, "X-SVN-Result-Fulltext-MD5": hashResult},
                        contentType: "text/xml",
                        data: newdata,
                        success: function(data3, status, jqxhr){
                            chunked1 = '<?xml version="1.0" encoding="utf-8"?><D:merge xmlns:D="DAV:"><D:source><D:href>/svn/check/!svn/txn/' + rev + '</D:href></D:source><D:no-auto-merge></D:no-auto-merge><D:no-checkout></D:no-checkout><D:prop><D:checked-in></D:checked-in><D:version-name></D:version-name><D:resourcetype></D:resourcetype><D:creationdate></D:creationdate><D:creator-displayname>';
                            chunked2 = '</D:creator-displayname></D:prop></D:merge>';
                            length1 = chunked1.length;
                            length2 = chunked2.length;
                            $.ajax({
                                type: "MERGE",
                                url: baseURL,
                                headers: {"X-SVN-Options": "release-locks"},
                                contentType: "text/xml",
                                data: length1 + chunked1 + length2 + chunked2,
                                success: function(data4, status, jqxhr){
                                    alert('file submitted');
                                },
                                error: function(jqXHR, textStatus, errorThrown) {
                                    alert(textStatus + ' at MERGE \n' + textStatus);
                                }
                            });
                        },
                        error: function(jqXHR, textStatus, errorThrown) {
                            alert(textStatus + ' at PUT\n' + textStatus);
                            $.ajax({
                                type: "DELETE",
                                url: baseURL + "/!svn/txn/" + rev,
                                success: function(data3, status, jqxhr){
                                    alert('file deleted');
                                }
                            });
                        }
                    });
                },
                error: function(jqXHR, textStatus, errorThrown) {
                    alert(textStatus + ' at POST\n' + textStatus);
                }
            });
        },
        error: function(jqXHR, textStatus, errorThrown) {
            alert(textStatus + ' at OPTIONS\n' + textStatus);
        }
    });

编辑:纠正了我的代码中的一些错误 将问题焦点从PUT更改为MERGE,因为我发现了问题 问题是我在“X-SVN-Version-Name”中传输的不仅仅是数字而是“数字”,因此错误“文件已过期”

1 个答案:

答案 0 :(得分:0)

设置contentType: "text/xml"data: chunked1 + chunked2

比一切正常,svn接受文件