Revision: 863
http://svn.sourceforge.net/phpfreechat/?rev=863&view=rev
Author: kerphi
Date: 2006-11-02 00:26:10 -0800 (Thu, 02 Nov 2006)
Log Message:
-----------
add the customize.js source code to help understanding
Modified Paths:
--------------
trunk/demo/demo50_customized_usermetadata.php
Modified: trunk/demo/demo50_customized_usermetadata.php
===================================================================
--- trunk/demo/demo50_customized_usermetadata.php 2006-11-02 08:20:09 UTC (rev 862)
+++ trunk/demo/demo50_customized_usermetadata.php 2006-11-02 08:26:10 UTC (rev 863)
@@ -35,6 +35,17 @@
echo htmlentities($content);
echo "</pre>";
?>
+
+<?php
+ // print the current file
+ echo "<h2>The customized javascript</h2>";
+ $filename = dirname(__FILE__).'/demo50_data/mytheme/customize.js';
+ echo "<p><code>".$filename."</code></p>";
+ echo "<pre style=\"margin: 0 50px 0 50px; padding: 10px; background-color: #DDD;\">";
+ $content = file_get_contents($filename);
+ echo htmlentities($content);
+ echo "</pre>";
+?>
</body>
</html>
\ No newline at end of file
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|