andi Sat Sep 22 13:01:04 2001 EDT
Added files:
/r2/binarycloud/user/htdocs compilertest.html
Modified files:
/r2/binarycloud/user/htdocs Makefile
Log:
Quick hack compiler test. This will become compilertest.php during make.
Index: r2/binarycloud/user/htdocs/Makefile
diff -u r2/binarycloud/user/htdocs/Makefile:1.6 r2/binarycloud/user/htdocs/Makefile:1.7
--- r2/binarycloud/user/htdocs/Makefile:1.6 Wed Aug 1 14:47:53 2001
+++ r2/binarycloud/user/htdocs/Makefile Sat Sep 22 13:01:04 2001
@@ -1,5 +1,5 @@
# {{{ Header
-# -File $Id: Makefile,v 1.6 2001/08/01 21:47:53 alex Exp $
+# -File $Id: Makefile,v 1.7 2001/09/22 20:01:04 andi Exp $
# -License LGPL (http://www.gnu.org/copyleft/lesser.html)
# -Copyright 2001, Intacct Corp.
# -Author odysseas tsatalos, ody...@ya...
@@ -21,11 +21,21 @@
HTDOCFILES=`find . -name '*' | grep '[.]' | grep -v resources | grep -v CVS `
RESOURCEFILES=`find resources -name '*' | grep '[.]' `
-all: htresources htfiles
+all: htresources htfiles bcctest
htfiles:
@$(INSTALLCODE) $(SITEBUILD_DIR) $(HTDOCFILES)
htresources:
@$(INSTALLCODE) $(SITEBUILD_DIR) $(RESOURCEFILES)
+
+#
+# very quick hack to test the bcc (andi)
+#
+bcctest:
+ @echo "in user/htdocs (bcc compilertest)";
+ @$(PHP_COMMAND) $(TOOLS_DIR)/compiletags.php $(SITEBUILD_DIR) $(USER_DIR)/htdocs/compilertest.html $(SITEBUILD_DIR)/compilertest.php
+
+
+
Index: r2/binarycloud/user/htdocs/compilertest.html
+++ r2/binarycloud/user/htdocs/compilertest.html
<html>
<head>
<title>Test</title>
<link rel="stylesheet" type="text/css" href="resources/css/binarycloud.css" />
<script src="resources/js/base_lib.js" language="javascript"></script>
</head>
<body bgcolor="#EEEEEE" text="#000000" link="#003366" alink="#CCCCCC" vlink="#003366" topmargin="0" leftmargin="0" marginwidth="0" marginheight="0">
<b> blah </b>
<bc:module id="moo" name="HelloWorld" package="hello_world">
<cache expires="30" use_uri="true" var="$moo"/>
<params>
<param_name>value</param_name>
<another_param_name>another_value</another_param_name>
</params>
</bc:module>
<bc:img id="abcimg" />
<bc:js id="moo" inline="true" />
<bc:css id="moo" inline="false" />
<bc:href id="href" href="/archive/mp3/any_document.mp3" usedocroot="true" />
</body>
</html>
|