fixed broken links
authorSvjatoslav Agejenko <svjatoslav@svjatoslav.eu>
Mon, 26 Jan 2015 19:10:17 +0000 (21:10 +0200)
committerSvjatoslav Agejenko <svjatoslav@svjatoslav.eu>
Mon, 26 Jan 2015 19:10:17 +0000 (21:10 +0200)
doc/index.html [changed mode: 0755->0644]

old mode 100755 (executable)
new mode 100644 (file)
index 82116d1..775b647
@@ -5,16 +5,16 @@
 <title>JavaInspect</title>\r
 </head>\r
 <body>\r
-       <h1>JavaInspect - Utility to visualize java software</h1>\r
-       <a\r
-               href="http://www2.svjatoslav.eu/gitweb/?p=javainspect.git;a=snapshot;h=HEAD;sf=tgz">Download</a>\r
-       &nbsp;&nbsp;\r
-       <a\r
-               href="http://www2.svjatoslav.eu/gitbrowse/javainspect/doc/index.html">Online\r
-               homepage</a> &nbsp;&nbsp;\r
-       <a href="http://svjatoslav.eu/programs.jsp">Other applications\r
-               hosted on svjatoslav.eu</a>\r
-       <pre>\r
+        <h1>JavaInspect - Utility to visualize java software</h1>\r
+        <a\r
+                href="http://www2.svjatoslav.eu/gitweb/?p=javainspect.git;a=snapshot;h=HEAD;sf=tgz">Download</a>\r
+        &nbsp;&nbsp;\r
+        <a\r
+                href="http://www2.svjatoslav.eu/gitbrowse/javainspect/doc/index.html">Online\r
+                homepage</a> &nbsp;&nbsp;\r
+        <a href="http://svjatoslav.eu/programs.jsp">Other applications\r
+                hosted on svjatoslav.eu</a>\r
+        <pre>\r
 <b>Program author:</b>\r
     Svjatoslav Agejenko\r
     Homepage: <a href="http://svjatoslav.eu">http://svjatoslav.eu</a>\r
@@ -24,76 +24,76 @@ This software is distributed under <a href="http://www.gnu.org/copyleft/lesser.h
 \r
 </pre>\r
 \r
-       <h2>General</h2>\r
+        <h2>General</h2>\r
 \r
-       Goal: simplify/speed up understanding the computer program code by\r
-       automatically visualizing its structure.\r
-         \r
-       <br/><br/>\r
-       JavaInspect is a Java library that you can embed into your Java project\r
-       with a few lines of Maven configuration and then visualize any part of\r
-       your Java program structure with few simple JavaInspect API calls at\r
-       application runtime.\r
+        Goal: simplify/speed up understanding the computer program code by\r
+        automatically visualizing its structure.\r
 \r
-       <br />\r
-       <br /> JavaInspect uses Java reflection to discover class relations and\r
-       structure and produces GraphViz dot file that describes your\r
-       application. Then launches GraphViz to generate bitmap graph in PNG\r
-       format on your Desktop directory.\r
+        <br/><br/>\r
+        JavaInspect is a Java library that you can embed into your Java project\r
+        with a few lines of Maven configuration and then visualize any part of\r
+        your Java program structure with few simple JavaInspect API calls at\r
+        application runtime.\r
 \r
+        <br />\r
+        <br /> JavaInspect uses Java reflection to discover class relations and\r
+        structure and produces GraphViz dot file that describes your\r
+        application. Then launches GraphViz to generate bitmap graph in PNG\r
+        format on your Desktop directory.\r
 \r
-       <h2>Current status</h2>\r
 \r
-       This is simple utility, quickly written. Tested on Linux (can be\r
-       relatively simply ported to other operating systems too). So far I used\r
-       it for my own needs. There might be bugs and missing features. Feedback\r
-       and code contributions are welcome.\r
+        <h2>Current status</h2>\r
 \r
+        This is simple utility, quickly written. Tested on Linux (can be\r
+        relatively simply ported to other operating systems too). So far I used\r
+        it for my own needs. There might be bugs and missing features. Feedback\r
+        and code contributions are welcome.\r
 \r
-       <h2>Example graphs</h2>\r
 \r
-       Example visualization of\r
-       <a href="http://www2.svjatoslav.eu/gitbrowse/sixth/doc/">Sixth</a>\r
-       project:\r
-       <a\r
-               href="http://www2.svjatoslav.eu/gitbrowse/sixth/doc/architecture%20graphs/index.html">architecture\r
-               graphs</a>\r
+        <h2>Example graphs</h2>\r
 \r
-       <br />\r
-       <br /> A very simple example:\r
-       <br />\r
-       <a href="example.png"><img src="example.resized.png" /></a>\r
+        Example visualization of\r
+        <a href="http://www2.svjatoslav.eu/gitbrowse/sixth/doc/">Sixth</a>\r
+        project:\r
+        <a\r
+                href="http://www2.svjatoslav.eu/projects/sixth/codegraphs/">architecture\r
+                graphs</a>\r
 \r
-       <br /> Graph legend:\r
-       <br />\r
-       <img src="legend.png" />\r
+        <br />\r
+        <br /> A very simple example:\r
+        <br />\r
+        <a href="example.png"><img src="example.resized.png" /></a>\r
 \r
+        <br /> Graph legend:\r
+        <br />\r
+        <img src="legend.png" />\r
 \r
-       <h2>Usage example 1</h2>\r
+\r
+        <h2>Usage example 1</h2>\r
 \r
 <pre>\r
 <code>\r
-               /*\r
-                * This example demonstrates generating of class graph from hand picked\r
-                * classes.\r
-                */\r
+                /*\r
+                 * This example demonstrates generating of class graph from hand picked\r
+                 * classes.\r
+                 */\r
 \r
-               // Create graph\r
-               final ClassGraph graph = new ClassGraph();\r
+                // Create graph\r
+                final ClassGraph graph = new ClassGraph();\r
 \r
-               // While classes and objects can be immediately passed to ClassGraph\r
-               // constructor as arguments, it is also possible to add then one by one\r
-               // as in the following example.\r
+                // While classes and objects can be immediately passed to ClassGraph\r
+                // constructor as arguments, it is also possible to add then one by one\r
+                // as in the following example.\r
 \r
-               // Add some object to the graph.\r
-               graph.addObject(graph);\r
+                // Add some object to the graph.\r
+                graph.addObject(graph);\r
 \r
-               // Add some class to the graph.\r
-               graph.addClass(Utils.class);\r
+                // Add some class to the graph.\r
+                graph.addClass(Utils.class);\r
 \r
-               // Produce bitmap image titled "JavaInspect.png" to the user Desktop\r
-               // directory and keep intermediary GraphViz DOT file for reference.\r
-               graph.generateGraph("JavaInspect", true);\r
+                // Produce bitmap image titled "JavaInspect.png" to the user Desktop\r
+                // directory and keep intermediary GraphViz DOT file for reference.\r
+                graph.generateGraph("JavaInspect", true);\r
 </code>\r
 \r
 \r
@@ -104,24 +104,24 @@ Result:
 </pre>\r
 \r
 \r
-       <h2>Usage example 2</h2>\r
+        <h2>Usage example 2</h2>\r
 \r
 <pre>\r
 <code>\r
-               // Recursively scan current directory for Java source code and attempt\r
-               // to detect class names from there to be added to the graph.\r
-               graph.addProject(".");\r
+                // Recursively scan current directory for Java source code and attempt\r
+                // to detect class names from there to be added to the graph.\r
+                graph.addProject(".");\r
 \r
-               // Blacklist example classes from being shown on the graph\r
-               graph.getFilter().blacklistClassPattern(\r
-                               "eu.svjatoslav.inspector.java.structure.example.*");\r
+                // Blacklist example classes from being shown on the graph\r
+                graph.getFilter().blacklistClassPattern(\r
+                                "eu.svjatoslav.inspector.java.structure.example.*");\r
 \r
-               // do not show single classes with no relationships on the graph\r
-               graph.hideOrphanedClasses();\r
+                // do not show single classes with no relationships on the graph\r
+                graph.hideOrphanedClasses();\r
 \r
-               // Produce bitmap image titled "JavaInspect full project.png" to the\r
-               // user Desktop directory.\r
-               graph.generateGraph("JavaInspect full project");\r
+                // Produce bitmap image titled "JavaInspect full project.png" to the\r
+                // user Desktop directory.\r
+                graph.generateGraph("JavaInspect full project");\r
 </code>\r
 \r
 \r
@@ -132,8 +132,8 @@ Result:
 \r
 \r
 \r
-       <h2>Embedding JavaInspect in your project</h2>\r
-       <pre>\r
+        <h2>Embedding JavaInspect in your project</h2>\r
+        <pre>\r
 \r
 Declare JavaInspect as dependency:\r
 \r
@@ -146,13 +146,13 @@ Declare JavaInspect as dependency:
             &lt;artifactId&gt;javainspect&lt;/artifactId&gt;\r
             &lt;version&gt;1.3&lt;/version&gt;\r
         &lt;/dependency&gt;\r
\r
+\r
     &lt;/dependencies&gt;\r
-    \r
-  \r
-  \r
+\r
+\r
+\r
 Add Maven repository to retrieve artifact from:\r
-  \r
+\r
     &lt;repositories&gt;\r
         &lt;repository&gt;\r
             &lt;id&gt;svjatoslav.eu&lt;/id&gt;\r
@@ -165,11 +165,11 @@ Add Maven repository to retrieve artifact from:
 \r
 \r
 \r
-       <h2>Requirements</h2>\r
+        <h2>Requirements</h2>\r
 \r
-       <br>\r
-       <a href="http://www.graphviz.org/">GraphViz</a> - shall be installed on\r
-       the computer.\r
+        <br>\r
+        <a href="http://www.graphviz.org/">GraphViz</a> - shall be installed on\r
+        the computer.\r
 \r
 \r
 </body>\r