SVN 207 multi-status

Source: Internet
Author: User

Recently updated WebKit, And the svn 207 multi-status error occurs:

SVN: propfind of '/Repository/WebKit /! SVN/BC/19963/trunk/layouttests/fast/XPath/4 XPath/CORE/test. js': 207
Multi-status (http://svn.webkit.org)

A lot of people have encountered this problem when searching on the Internet. WebKit has a checkin to solve this problem: http://trac.webkit.org/changeset/73547,but this issue has not been completely resolved.

After trying a lot of methods, we found that we can solve the problem by using the following methods:

1. Delete the directory layouttests/fast/XPath/4 XPath/core.

2. Use SVN for separate checkout http://svn.webkit.org/repository/webkit/trunk/LayoutTests/fast/xpath/4XPath/Core

3. Copy the core directory to the layouttests/fast/XPath/4 XPath/directory.

4. Update WebKit


In addition, updating the layouttests directory is time-consuming, and timeout issues often occur. SVN does not retry, so I wrote the following Python script for retry.

import subprocess  if __name__  ==  "__main__":while True:returnCode = subprocess.call('c:/cygwin/bin/svn.exe update')  print 'returncode:', returnCodeif returnCode == 0:breakprint 'try again'

The bat of this Python script started:

cd /d %~dp0set PATH=D:\tools\Python;%PATH%python updateCode.py

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.