Adding JMCR-Stable version
[Benchmarks_CSolver.git] / JMCR-Stable / real-world application / jigsaw / WWW / Doc / User / PageCompilation / Overview.html
diff --git a/JMCR-Stable/real-world application/jigsaw/WWW/Doc/User/PageCompilation/Overview.html b/JMCR-Stable/real-world application/jigsaw/WWW/Doc/User/PageCompilation/Overview.html
new file mode 100644 (file)
index 0000000..a7e2081
--- /dev/null
@@ -0,0 +1,191 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" \r
+   "http://www.w3.org/TR/REC-html40/loose.dtd"> \r
+<HTML>\r
+<HEAD>\r
+    <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">\r
+    <link rel="stylesheet" type="text/css" href="../../style/doc.css">\r
+    <TITLE>Page Compilation</TITLE>\r
+    <STYLE TYPE="text/css">\r
+      DIV.box {\r
+        margin: 2.0%; \r
+        margin-top: 1.0%;\r
+        padding: 1.0%; \r
+        border: thin solid silver; \r
+        width: 100.0%; \r
+      }\r
+\r
+      DIV.boxnat {\r
+        background-color: #CCCCCC;\r
+        margin: 2.0%; \r
+        margin-top: 1.0%;\r
+        padding: 1.0%; \r
+        border: thin solid silver; \r
+        width: 100.0%; \r
+      }\r
+    </STYLE>\r
+\r
+</HEAD>\r
+<BODY TEXT="#000000" BGCOLOR="#FFFFFF" LINK="#0000EE" VLINK="#551A8B"\r
+    ALINK="#FF0000">\r
+    <div class="icons-w3c">\r
+      <a href="../../../../">\r
+       <img src="/Icons/w3c_home" \r
+         border="0" \r
+         alt="W3C logo"\r
+         height="48" \r
+         width="72">\r
+      </a>\r
+    </div>\r
+    <div class="icons-jigsaw">\r
+      <a href="../../../">\r
+       <img src="/Icons/jigsaw" \r
+         border="0"\r
+         alt="Jigsaw"\r
+         height="49"\r
+         width="212">\r
+      </a>\r
+    </div>\r
+    <div class="title">\r
+      <H1 class="title">\r
+       Page Compilation in Jigsaw.</H1>\r
+      <hr NOSHADE width="70%" align="left">\r
+      <a href="../../../Overview.html">Jigsaw Home</a> /\r
+      <a href="../../Overview.html">Documentation Overview</a> / \r
+      <a href="../Tutorials.html">Tutorials</a>\r
+    </div>\r
+    <div class="body">\r
+<UL>\r
+<LI>\r
+<A HREF="#wipc">What is Page Compilation?</A></LI>\r
+\r
+<LI>\r
+<A HREF="#example">Example</A></LI>\r
+\r
+<LI>\r
+<A HREF="#tutorials">Tutorials</A></LI>\r
+</UL>\r
+\r
+<H1>\r
+<A NAME="wipc"></A>What is Page Compilation?</H1>\r
+Page Compilation allows you to generate HTML pages from HTML/Java pages.\r
+<B>Jigsaw</B> has a special frame (<A HREF="../../Reference/org.w3c.jigsaw.pagecompile.PageCompileFrame.html">PageCompileFrame</A>)\r
+that translate the HTML/Java file in a <B>Jigsaw</B> frame source file,\r
+compile it and runs the new compiled frame. The PageCompileFrame can be\r
+used like any other frame. Read the <A HREF="../resource.html">Resource\r
+Configuration page</A> for more details on <B>Jigsaw</B> frames and resources.\r
+<H1>\r
+<A NAME="example"></A>Example:</H1>\r
+The following HTML/Java page\r
+<DIV CLASS="box">\r
+<PRE>&lt;html>\r
+&nbsp;&lt;head>\r
+&nbsp;&nbsp;&nbsp;&nbsp; &lt;title>Page Compilation Test&lt;/title>\r
+&nbsp;&lt;/head>\r
+&nbsp;&lt;body>\r
+&nbsp;&nbsp;&nbsp;&nbsp; &lt;h1>Page Compilation Test&lt;/h1>\r
+&nbsp;&nbsp;&nbsp;&nbsp; <B>&lt;java>\r
+</B>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; out.println ("&lt;p>Page Compilation test");\r
+&nbsp;&nbsp;&nbsp;&nbsp; <B>&lt;/java>\r
+</B>&nbsp;&nbsp;&nbsp;&nbsp; &lt;h1>Display a list&lt;/h1>\r
+&nbsp;&nbsp;&nbsp;&nbsp; &lt;ul>\r
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <B>&lt;java>\r
+</B>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; for (int i = 1; i &lt; 10; i++) {\r
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; out.println ("&lt;li> item " + i);\r
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }\r
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <B>&lt;/java>\r
+</B>&nbsp;&nbsp;&nbsp;&nbsp; &lt;/ul>\r
+&nbsp;&lt;/body>\r
+&lt;/html></PRE>\r
+</DIV>\r
+will be translated in this HTML page:\r
+<DIV CLASS="boxnat">\r
+<H1>\r
+Page Compilation Test</H1>\r
+Page Compilation test\r
+<H1>\r
+Display a list</H1>\r
+\r
+<UL>\r
+<LI>\r
+item 1</LI>\r
+\r
+<LI>\r
+item 2</LI>\r
+\r
+<LI>\r
+item 3</LI>\r
+\r
+<LI>\r
+item 4</LI>\r
+\r
+<LI>\r
+item 5</LI>\r
+\r
+<LI>\r
+item 6</LI>\r
+\r
+<LI>\r
+item 7</LI>\r
+\r
+<LI>\r
+item 8</LI>\r
+\r
+<LI>\r
+item 9</LI>\r
+</UL>\r
+</DIV>\r
+\r
+<H1>\r
+<A NAME="tutorials"></A>Tutorials</H1>\r
+\r
+<UL>\r
+<LI>\r
+<A HREF="configuration.html">Configuring Page Compilation</A></LI>\r
+\r
+<LI>\r
+<A HREF="writing.html">Writing your own HTML/Java pages</A></LI>\r
+\r
+<LI>\r
+<A HREF="reference.html">List of &lt;java> tags, available variables, and\r
+how to use them.</A></LI>\r
+</UL>\r
+    </div> <!-- body -->\r
+    <div class="footer">\r
+<p>\r
+<HR noshade>\r
+    <a href="mailto:jigsaw@w3.org">Jigsaw Team</a><br>\r
+    <span class="mini">\r
+      $Id: Overview.html,v 1.1 2010/06/15 12:20:00 smhuang Exp $\r
+    </span>\r
+    <p class="policyfooter">\r
+      <font size=-1>\r
+       <a href="/Consortium/Legal/ipr-notice.html#Copyright">Copyright</a>\r
+       &copy; 1999 <a href="http://www.w3.org">W3C</a> \r
+       (<a href="http://www.lcs.mit.edu">MIT</a>, \r
+       <a href="http://www.inria.fr/">INRIA</a>, \r
+       <a href="http://www.keio.ac.jp/">Keio</a> ), \r
+       All Rights Reserved. W3C \r
+       <a href="/Consortium/Legal/ipr-notice.html#Legal Disclaimer">\r
+         liability,\r
+       </a>\r
+       <a href="/Consortium/Legal/ipr-notice.html#W3C Trademarks">\r
+         trademark\r
+       </a>, \r
+       <a href="/Consortium/Legal/copyright-documents.html">\r
+         document use \r
+       </a>\r
+       and\r
+       <a href="/Consortium/Legal/copyright-software.html">\r
+         software licensing\r
+       </a> rules apply. Your interactions with this site are in\r
+       accordance with our \r
+       <a href="/Consortium/Legal/privacy-statement.html#Public">\r
+         public\r
+       </a> and \r
+       <a href="/Consortium/Legal/privacy-statement.html#Members">\r
+         Member\r
+       </a>\r
+       privacy statements.</font>\r
+    </div>\r
+</BODY>\r
+</HTML>\r