[Jarspy-commits] CVS: JarSpy-htdocs index.php,NONE,1.1 contributors.php,1.4,1.5 cvs.php,1.3,1.4 feat
Status: Beta
Brought to you by:
brown_j
Update of /cvsroot/jarspy/JarSpy-htdocs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29714 Modified Files: contributors.php cvs.php features.php intellijPlugin.php license.php main-screen-shot.php Added Files: index.php Removed Files: index.html nav_style.css Log Message: new site layout --- NEW FILE: index.php --- <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>JarSpy - Main</title> <link rel="stylesheet" href="/css/jarspy.css" type="text/css"> </head> <body> <div class="content"> <div class="page-heading">JarSpy - The Java Archive Spying Utility</div> <p> JarSpy is a utility for "spying" the contents of Java archive files. The current release allows read only access into an archive. This read only access allows the inspection of all of the classes and interfaces contained in the archive. For each class or interface, a list of methods, fields and dependencies are available. JarSpy allows classes and interfaces to be decompiled back to Java source code. <p> Planned functionality includes a visual representation of dependencies between classes. <p> Your input is welcome. If you have a comment about the tool or would just like to let us know that you are using the tool, please drop us a note at <a href="mailto:co...@ja...">co...@ja...</a>. </div> <?php include 'phpinc/navigation.inc'; ?> </body> </html> Index: contributors.php =================================================================== RCS file: /cvsroot/jarspy/JarSpy-htdocs/contributors.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** contributors.php 14 Jun 2003 19:57:37 -0000 1.4 --- contributors.php 12 Jan 2005 01:52:10 -0000 1.5 *************** *** 4,10 **** <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>JarSpy - Contributors</title> ! <link rel="stylesheet" href="nav_style.css" type="text/css"> </head> <body> <p> <b>Jeff Brown</b> started the JarSpy project. Jeff is a Principal Software --- 4,12 ---- <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>JarSpy - Contributors</title> ! <link rel="stylesheet" href="/css/jarspy.css" type="text/css"> </head> <body> + <div class="content"> + <div class="page-heading">JarSpy - Contributors</div> <p> <b>Jeff Brown</b> started the JarSpy project. Jeff is a Principal Software *************** *** 13,24 **** provides Java consulting. Contact Jeff at <a href="mailto:je...@ja...">je...@ja...</a>. ! <? ! DEFINE ("_BBC_PAGE_NAME", "Contributors"); ! DEFINE ("_BBCLONE_DIR", "bbclone-0.32/"); ! DEFINE ("_JARSPY_COUNTER", _BBCLONE_DIR . "mark_page.php"); ! if(file_exists(_JARSPY_COUNTER)) ! { ! include(_JARSPY_COUNTER); ! } ?> </body> --- 15,22 ---- provides Java consulting. Contact Jeff at <a href="mailto:je...@ja...">je...@ja...</a>. ! ! </div> ! <?php ! include 'phpinc/navigation.inc'; ?> </body> Index: cvs.php =================================================================== RCS file: /cvsroot/jarspy/JarSpy-htdocs/cvs.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** cvs.php 14 Jun 2003 19:57:37 -0000 1.3 --- cvs.php 12 Jan 2005 01:52:10 -0000 1.4 *************** *** 4,12 **** <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>JarSpy - CVS</title> ! <link rel="stylesheet" href="nav_style.css" type="text/css"> </head> <body> ! <p> ! <b>Anonymous CVS Access</b> <p> This project's CVS repository can be checked out through --- 4,14 ---- <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>JarSpy - CVS</title> ! <link rel="stylesheet" href="/css/jarspy.css" type="text/css"> </head> <body> ! <div class="content"> ! ! <div class="page-heading">JarSpy - CVS Access</div> ! <p> This project's CVS repository can be checked out through *************** *** 20,32 **** cvs -d:pserver:ano...@cv...:/cvsroot/jarspy checkout JarSpy </pre> ! <? ! DEFINE ("_BBC_PAGE_NAME", "CVS"); ! DEFINE ("_BBCLONE_DIR", "bbclone-0.32/"); ! DEFINE ("_JARSPY_COUNTER", _BBCLONE_DIR . "mark_page.php"); ! if(file_exists(_JARSPY_COUNTER)) ! { ! include(_JARSPY_COUNTER); ! } ?> </body> </html> \ No newline at end of file --- 22,30 ---- cvs -d:pserver:ano...@cv...:/cvsroot/jarspy checkout JarSpy </pre> ! </div> ! <?php ! include 'phpinc/navigation.inc'; ?> + </body> </html> \ No newline at end of file Index: features.php =================================================================== RCS file: /cvsroot/jarspy/JarSpy-htdocs/features.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** features.php 14 Jun 2003 19:57:37 -0000 1.4 --- features.php 12 Jan 2005 01:52:10 -0000 1.5 *************** *** 4,11 **** <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>JarSpy - Features</title> ! <link rel="stylesheet" href="nav_style.css" type="text/css"> </head> <body> <p> <h3>Class And Interface List</h3> --- 4,13 ---- <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>JarSpy - Features</title> ! <link rel="stylesheet" href="/css/jarspy.css" type="text/css"> </head> <body> + <div class="content"> + <div class="page-heading">JarSpy - Features</div> <p> <h3>Class And Interface List</h3> *************** *** 63,74 **** this online survey.</a> ! <? ! DEFINE ("_BBC_PAGE_NAME", "Features"); ! DEFINE ("_BBCLONE_DIR", "bbclone-0.32/"); ! DEFINE ("_JARSPY_COUNTER", _BBCLONE_DIR . "mark_page.php"); ! if(file_exists(_JARSPY_COUNTER)) ! { ! include(_JARSPY_COUNTER); ! } ?> --- 65,71 ---- this online survey.</a> ! </div> ! <?php ! include 'phpinc/navigation.inc'; ?> Index: intellijPlugin.php =================================================================== RCS file: /cvsroot/jarspy/JarSpy-htdocs/intellijPlugin.php,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** intellijPlugin.php 14 Sep 2003 21:57:21 -0000 1.11 --- intellijPlugin.php 12 Jan 2005 01:52:10 -0000 1.12 *************** *** 4,12 **** <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>JarSpy - IntelliJ IDEA Plugin</title> ! <link rel="stylesheet" href="nav_style.css" type="text/css"> </head> <body> ! <p> ! <b>JarSpy - IntelliJ IDEA Plugin</b> <p> A JarSpy plugin for <a href="http://www.intellij.com/" target="_top">IntelliJ IDEA</a> is --- 4,12 ---- <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>JarSpy - IntelliJ IDEA Plugin</title> ! <link rel="stylesheet" href="/css/jarspy.css" type="text/css"> </head> <body> ! <div class="content"> ! <div class="page-heading">JarSpy - IntelliJ IDEA Plugin</div> <p> A JarSpy plugin for <a href="http://www.intellij.com/" target="_top">IntelliJ IDEA</a> is *************** *** 30,43 **** If you have any comments, questions or suggestions about the JarSpy plugin for IntelliJ IDEA, please contact <a href="mailto:int...@ja...">int...@ja...</a>. ! ! <? ! DEFINE ("_BBC_PAGE_NAME", "IntelliJ IDEA Plugin"); ! DEFINE ("_BBCLONE_DIR", "bbclone-0.32/"); ! DEFINE ("_JARSPY_COUNTER", _BBCLONE_DIR . "mark_page.php"); ! if(file_exists(_JARSPY_COUNTER)) ! { ! include(_JARSPY_COUNTER); ! } ?> </body> </html> \ No newline at end of file --- 30,38 ---- If you have any comments, questions or suggestions about the JarSpy plugin for IntelliJ IDEA, please contact <a href="mailto:int...@ja...">int...@ja...</a>. ! </div> ! <?php ! include 'phpinc/navigation.inc'; ?> + </body> </html> \ No newline at end of file Index: license.php =================================================================== RCS file: /cvsroot/jarspy/JarSpy-htdocs/license.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** license.php 14 Jun 2003 19:57:37 -0000 1.3 --- license.php 12 Jan 2005 01:52:10 -0000 1.4 *************** *** 4,10 **** <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>JarSpy - Contributors</title> ! <link rel="stylesheet" href="nav_style.css" type="text/css"> </head> <body> <p> JarSpy is distributed under the GNU General Public License and is free for both --- 4,14 ---- <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>JarSpy - Contributors</title> ! <link rel="stylesheet" href="/css/jarspy.css" type="text/css"> </head> <body> + + <div class="content"> + + <div class="page-heading">JarSpy - License</div> <p> JarSpy is distributed under the GNU General Public License and is free for both *************** *** 360,372 **** Public License instead of this License. </pre> ! <? ! DEFINE ("_BBC_PAGE_NAME", "License"); ! DEFINE ("_BBCLONE_DIR", "bbclone-0.32/"); ! DEFINE ("_JARSPY_COUNTER", _BBCLONE_DIR . "mark_page.php"); ! if(file_exists(_JARSPY_COUNTER)) ! { ! include(_JARSPY_COUNTER); ! } ?> </body> </html> --- 364,373 ---- Public License instead of this License. </pre> ! ! </div> ! <?php ! include 'phpinc/navigation.inc'; ?> + </body> </html> Index: main-screen-shot.php =================================================================== RCS file: /cvsroot/jarspy/JarSpy-htdocs/main-screen-shot.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** main-screen-shot.php 14 Jun 2003 19:57:37 -0000 1.4 --- main-screen-shot.php 12 Jan 2005 01:52:10 -0000 1.5 *************** *** 4,13 **** <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>JarSpy - ScreenShots</title> ! <link rel="stylesheet" href="nav_style.css" type="text/css"> </head> <body> <a name="top"/> - <h1>Screen Shots</h1> <p> --- 4,14 ---- <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>JarSpy - ScreenShots</title> ! <link rel="stylesheet" href="/css/jarspy.css" type="text/css"> </head> <body> + <div class="content"> + <div class="page-heading">JarSpy - Screen Shots</div> <a name="top"/> <p> *************** *** 60,71 **** <img src="images/screenshot-constantpool.jpeg" alt="Constant Pool Tab"/> <a href="#top">back to top</a> ! <? ! DEFINE ("_BBC_PAGE_NAME", "Screenshots"); ! DEFINE ("_BBCLONE_DIR", "bbclone-0.32/"); ! DEFINE ("_JARSPY_COUNTER", _BBCLONE_DIR . "mark_page.php"); ! if(file_exists(_JARSPY_COUNTER)) ! { ! include(_JARSPY_COUNTER); ! } ?> --- 61,67 ---- <img src="images/screenshot-constantpool.jpeg" alt="Constant Pool Tab"/> <a href="#top">back to top</a> ! </div> ! <?php ! include 'phpinc/navigation.inc'; ?> --- index.html DELETED --- --- nav_style.css DELETED --- |