You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@vcl.apache.org by jf...@apache.org on 2014/10/31 20:30:18 UTC

svn commit: r1635847 - /vcl/trunk/web/testsetup.php

Author: jfthomps
Date: Fri Oct 31 19:30:18 2014
New Revision: 1635847

URL: http://svn.apache.org/r1635847
Log:
added checks for spyc

Modified:
    vcl/trunk/web/testsetup.php

Modified: vcl/trunk/web/testsetup.php
URL: http://svn.apache.org/viewvc/vcl/trunk/web/testsetup.php?rev=1635847&r1=1635846&r2=1635847&view=diff
==============================================================================
--- vcl/trunk/web/testsetup.php (original)
+++ vcl/trunk/web/testsetup.php Fri Oct 31 19:30:18 2014
@@ -449,6 +449,31 @@ else
 	fail("dojo directory does not exist. Download and install Dojo Toolkit 1.5.0");
 print "</ul>\n";
 
+
+# check for spyc
+title("Testing for existance of spyc 0.5.1 and Spyc.php");
+print "<ul>\n";
+if(is_dir('./.ht-inc/spyc-0.5.1')) {
+	pass("spyc directory exists");
+	if(is_readable('./.ht-inc/spyc-0.5.1')) {
+		pass("spyc directory is readable");
+		if(is_file('./.ht-inc/spyc-0.5.1/Spyc.php')) {
+			pass(".ht-inc/spyc-0.5.1/Spyc.php file exists");
+			if(is_readable('.ht-inc/spyc-0.5.1/Spyc.php'))
+				pass(".ht-inc/spyc-0.5.1/Spyc.php is readable");
+			else
+				fail(".ht-inc/spyc-0.5.1/Spyc.php is not readable. Check permissions on the file.");
+		}
+		else
+			fail(".ht-inc/spyc-0.5.1/Spyc.php file does not exist.  Reinstall Spyc 0.5.1");
+	}
+	else
+		fail("spyc-0.5.1 directory is not readable. Check permissions on this directory");
+}
+else
+	fail(".ht-inc/spyc-0.5.1 directory does not exist. Download and install Spyc 0.5.1");
+print "</ul>\n";
+
 # php display errors
 title("Checking value of PHP display_errors");
 $a = ini_get('display_errors');