--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/.hgignore Thu May 31 15:49:44 2012 +0200
@@ -0,0 +1,4 @@
+.DS_Store
+.git
+.gitignore
+.svn
--- a/readme.txt Thu May 03 13:39:49 2012 -0700
+++ b/readme.txt Thu May 31 15:49:44 2012 +0200
@@ -1,14 +1,14 @@
The test suite is licensed under both the W3C Test Suite License
- (http://www.w3.org/Consortium/Legal/2008/04-testsuite-license.html)
-and the 3-clause BSD License
+ (http://www.w3.org/Consortium/Legal/2008/04-testsuite-license.html)
+and the 3-clause BSD License
(http://www.w3.org/Consortium/Legal/2008/03-bsd-license.html).
-
-To give us permission to distribute your contribution under these
-two licenses, you need to fill out W3C's license grant form
-(http://www.w3.org/2002/09/wbs/1/testgrants2-200409/),
-unless you or your company is a member of the WebAppSec Working Group,
+
+To give us permission to distribute your contribution under these
+two licenses, you need to fill out W3C's license grant form
+(http://www.w3.org/2002/09/wbs/1/testgrants2-200409/),
+unless you or your company is a member of the WebAppSec Working Group,
in which case you're covered already.
Questions, comments and contributions can be submitted to:
-public-webappsec@w3.org
\ No newline at end of file
+public-webappsec@w3.org
--- a/tests/cors/submitted/webkit/resources/basic-auth/.svn/all-wcprops Thu May 03 13:39:49 2012 -0700
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,17 +0,0 @@
-K 25
-svn:wc:ra_dav:version-url
-V 98
-/repository/webkit/!svn/ver/58409/trunk/LayoutTests/http/tests/xmlhttprequest/resources/basic-auth
-END
-access-control-auth-basic.php
-K 25
-svn:wc:ra_dav:version-url
-V 128
-/repository/webkit/!svn/ver/58409/trunk/LayoutTests/http/tests/xmlhttprequest/resources/basic-auth/access-control-auth-basic.php
-END
-basic-auth.php
-K 25
-svn:wc:ra_dav:version-url
-V 113
-/repository/webkit/!svn/ver/24227/trunk/LayoutTests/http/tests/xmlhttprequest/resources/basic-auth/basic-auth.php
-END
--- a/tests/cors/submitted/webkit/resources/basic-auth/.svn/entries Thu May 03 13:39:49 2012 -0700
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,96 +0,0 @@
-10
-
-dir
-102004
-http://svn.webkit.org/repository/webkit/trunk/LayoutTests/http/tests/xmlhttprequest/resources/basic-auth
-http://svn.webkit.org/repository/webkit
-
-
-
-2010-04-28T16:29:22.915186Z
-58409
-jchaffraix@webkit.org
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
-access-control-auth-basic.php
-file
-
-
-
-
-2011-11-14T21:09:08.417946Z
-1342b2f90905a7f1b2fa19ac807a00af
-2010-04-28T16:29:22.915186Z
-58409
-jchaffraix@webkit.org
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-630
-
-basic-auth.php
-file
-
-
-
-
-2011-11-14T21:09:08.417946Z
-a82ea42c784b9b663e54196755ab7112
-2007-07-12T04:17:17.612601Z
-24227
-ap
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-377
-
--- a/tests/cors/submitted/webkit/resources/basic-auth/.svn/text-base/access-control-auth-basic.php.svn-base Thu May 03 13:39:49 2012 -0700
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,17 +0,0 @@
-<?php
-
-header("Access-Control-Allow-Origin: http://127.0.0.1:8000/");
-header("Access-Control-Allow-Credentials: true");
-header("Access-Control-Allow-Methods: PUT");
-
-if ($_SERVER['REQUEST_METHOD'] != "OPTIONS") {
- if (!isset($_SERVER['PHP_AUTH_USER']) || !isset($_REQUEST['uid']) || ($_REQUEST['uid'] != $_SERVER['PHP_AUTH_USER'])) {
- header('WWW-Authenticate: Basic realm="WebKit Test Realm/Cross Origin"');
- header('HTTP/1.0 401 Unauthorized');
- echo 'Authentication canceled';
- exit;
- } else {
- echo "User: {$_SERVER['PHP_AUTH_USER']}, password: {$_SERVER['PHP_AUTH_PW']}.";
- }
-}
-?>
--- a/tests/cors/submitted/webkit/resources/basic-auth/.svn/text-base/basic-auth.php.svn-base Thu May 03 13:39:49 2012 -0700
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,10 +0,0 @@
-<?php
- if (!isset($_SERVER['PHP_AUTH_USER']) || !isset($_REQUEST['uid']) || ($_REQUEST['uid'] != $_SERVER['PHP_AUTH_USER'])) {
- header('WWW-Authenticate: Basic realm="WebKit Test Realm"');
- header('HTTP/1.0 401 Unauthorized');
- echo 'Authentication canceled';
- exit;
- } else {
- echo "User: {$_SERVER['PHP_AUTH_USER']}, password: {$_SERVER['PHP_AUTH_PW']}.";
- }
-?>