jarspy-commits Mailing List for JarSpy- Java Archive Spying Utility (Page 2)
Status: Beta
Brought to you by:
brown_j
You can subscribe to this list here.
2001 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(39) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2002 |
Jan
(39) |
Feb
(12) |
Mar
|
Apr
(10) |
May
|
Jun
(24) |
Jul
(38) |
Aug
(9) |
Sep
(58) |
Oct
(34) |
Nov
|
Dec
(13) |
2003 |
Jan
(64) |
Feb
(3) |
Mar
(17) |
Apr
(20) |
May
(8) |
Jun
(3) |
Jul
|
Aug
(6) |
Sep
(6) |
Oct
(1) |
Nov
|
Dec
|
2005 |
Jan
(41) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(2) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Jeff B. <br...@us...> - 2005-01-28 04:26:40
|
Update of /cvsroot/jarspy/JarSpy2/src/java/org/jarspy/gui In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25514/src/java/org/jarspy/gui Modified Files: JarSpyGUI.java Log Message: use jgoodies Index: JarSpyGUI.java =================================================================== RCS file: /cvsroot/jarspy/JarSpy2/src/java/org/jarspy/gui/JarSpyGUI.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** JarSpyGUI.java 28 Jan 2005 02:49:15 -0000 1.1.1.1 --- JarSpyGUI.java 28 Jan 2005 04:26:29 -0000 1.2 *************** *** 19,38 **** package org.jarspy.gui; - import org.jarspy.gui.util.Splasher; import org.jarspy.JarInspector; ! import org.jarspy.gui.actions.AboutAction; ! import org.jarspy.gui.actions.ActionNames; ! import org.jarspy.gui.actions.DecompileAction; ! import org.jarspy.gui.actions.ExitAction; ! import org.jarspy.gui.actions.ExtractArchiveAction; ! import org.jarspy.gui.actions.OpenArchiveAction; ! import org.jarspy.gui.actions.ViewJarContentsAction; ! import org.jarspy.gui.actions.ViewManifestAction; import org.jarspy.preferences.JarSpyPreferences; import org.jarspy.preferences.JarSpyPreferencesFactory; ! import java.awt.BorderLayout; ! import java.awt.Container; ! import java.awt.Dimension; ! import java.awt.Point; import java.awt.event.WindowListener; import java.io.File; --- 19,30 ---- package org.jarspy.gui; import org.jarspy.JarInspector; ! import org.jarspy.gui.actions.*; ! import org.jarspy.gui.util.Splasher; import org.jarspy.preferences.JarSpyPreferences; import org.jarspy.preferences.JarSpyPreferencesFactory; ! ! import javax.swing.*; ! import java.awt.*; import java.awt.event.WindowListener; import java.io.File; *************** *** 44,57 **** import java.util.Map; import java.util.jar.JarFile; - import javax.swing.Action; - import javax.swing.ImageIcon; - import javax.swing.JFrame; - import javax.swing.JMenu; - import javax.swing.JMenuBar; - import javax.swing.JMenuItem; - import javax.swing.JOptionPane; - import javax.swing.JToolBar; - import javax.swing.SwingUtilities; - import javax.swing.UIManager; /** --- 36,39 ---- *************** *** 104,118 **** jarSpyPreferences = JarSpyPreferencesFactory.getPreferences(); - String preferredLookAndFeelClassName = - jarSpyPreferences.getPreferredLookAndFeel(); - if (preferredLookAndFeelClassName != null) { - try { - UIManager.setLookAndFeel(preferredLookAndFeelClassName); - SwingUtilities.updateComponentTreeUI(this); - } catch (Exception e) { - e.printStackTrace(); - } - } - Point mainWindowLocation = jarSpyPreferences.getMainWindowPosition(); setLocation(mainWindowLocation); --- 86,89 ---- *************** *** 142,158 **** private void createActions() { actions.put(ActionNames.OPEN_ARCHIVE_ACTION, ! new OpenArchiveAction(this)); actions.put(ActionNames.EXIT_ACTION, ! new ExitAction(this)); actions.put(ActionNames.EXTRACT_ARCHIVE_ACTION, ! new ExtractArchiveAction(this, jarInspector)); actions.put(ActionNames.VIEW_MANIFEST_ACTION, ! new ViewManifestAction(this, jarInspector)); actions.put(ActionNames.ABOUT_ACTION, ! new AboutAction(this)); actions.put(ActionNames.DECOMPILE_ACTION, ! new DecompileAction(this, jarInspector)); actions.put(ActionNames.VIEW_JAR_CONTENTS_ACTION, ! new ViewJarContentsAction(this)); } --- 113,129 ---- private void createActions() { actions.put(ActionNames.OPEN_ARCHIVE_ACTION, ! new OpenArchiveAction(this)); actions.put(ActionNames.EXIT_ACTION, ! new ExitAction(this)); actions.put(ActionNames.EXTRACT_ARCHIVE_ACTION, ! new ExtractArchiveAction(this, jarInspector)); actions.put(ActionNames.VIEW_MANIFEST_ACTION, ! new ViewManifestAction(this, jarInspector)); actions.put(ActionNames.ABOUT_ACTION, ! new AboutAction(this)); actions.put(ActionNames.DECOMPILE_ACTION, ! new DecompileAction(this, jarInspector)); actions.put(ActionNames.VIEW_JAR_CONTENTS_ACTION, ! new ViewJarContentsAction(this)); } *************** *** 278,282 **** jarSpyPreferences.saveMainWindowPosition(getLocation()); jarSpyPreferences.saveMainWindowSize(getSize()); - jarSpyPreferences.savePreferredLookAndFeel(UIManager.getLookAndFeel().getClass().getName()); JarFile jarFile = jarInspector.getJarFile(); if (jarFile != null) { --- 249,252 ---- *************** *** 297,306 **** } catch (ClassNotFoundException e) { JOptionPane.showMessageDialog(null, ! "JarSpy requires Java Runtime 1.3 or greater.", ! "Incompatible VM", ! JOptionPane.ERROR_MESSAGE); System.exit(0); } new JarSpyGUI(a.length > 0 ? a[0] : null); } --- 267,277 ---- } catch (ClassNotFoundException e) { JOptionPane.showMessageDialog(null, ! "JarSpy requires Java Runtime 1.3 or greater.", ! "Incompatible VM", ! JOptionPane.ERROR_MESSAGE); System.exit(0); } + UIManager.setLookAndFeel("com.jgoodies.plaf.plastic.PlasticXPLookAndFeel"); new JarSpyGUI(a.length > 0 ? a[0] : null); } |
From: Jeff B. <br...@us...> - 2005-01-28 04:24:55
|
Update of /cvsroot/jarspy/JarSpy2 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25168 Modified Files: project.xml Log Message: use jgoodies Index: project.xml =================================================================== RCS file: /cvsroot/jarspy/JarSpy2/project.xml,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** project.xml 28 Jan 2005 02:49:11 -0000 1.1.1.1 --- project.xml 28 Jan 2005 04:24:24 -0000 1.2 *************** *** 80,83 **** --- 80,95 ---- <url>http://jode.sourceforge.net/</url> </dependency> + <dependency> + <groupId>jgoodies</groupId> + <artifactId>forms</artifactId> + <version>1.0.4</version> + <url>http://www.jgoodies.com/</url> + </dependency> + <dependency> + <groupId>jgoodies</groupId> + <artifactId>looks</artifactId> + <version>1.2.2</version> + <url>http://www.jgoodies.com/</url> + </dependency> </dependencies> |
From: Jeff B. <br...@us...> - 2005-01-28 04:23:31
|
Update of /cvsroot/jarspy/JarSpy2/src/java/org/jarspy/gui/classdetails In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24940/src/java/org/jarspy/gui/classdetails Modified Files: GeneralTab.java Log Message: use jgoodies Index: GeneralTab.java =================================================================== RCS file: /cvsroot/jarspy/JarSpy2/src/java/org/jarspy/gui/classdetails/GeneralTab.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** GeneralTab.java 28 Jan 2005 02:49:16 -0000 1.1.1.1 --- GeneralTab.java 28 Jan 2005 04:23:17 -0000 1.2 *************** *** 19,29 **** package org.jarspy.gui.classdetails; import org.jarspy.ClassInfo; ! import java.awt.Font; ! import java.awt.GridBagConstraints; ! import java.awt.GridBagLayout; ! import javax.swing.JComponent; ! import javax.swing.JLabel; ! import javax.swing.JPanel; /** --- 19,28 ---- package org.jarspy.gui.classdetails; + import com.jgoodies.forms.builder.DefaultFormBuilder; + import com.jgoodies.forms.layout.FormLayout; + import com.jgoodies.forms.layout.Sizes; import org.jarspy.ClassInfo; ! ! import javax.swing.*; /** *************** *** 44,84 **** public GeneralTab() { super("General"); ! setLayout(new GridBagLayout()); ! GridBagConstraints gbc = new GridBagConstraints(); ! gbc.gridx = gbc.RELATIVE; ! gbc.gridy = 0; ! gbc.insets.top = ! gbc.insets.bottom = ! gbc.insets.left = ! gbc.insets.right = 5; ! JComponent[][] labelPairs = { ! {new JLabel("Name:"), className}, ! {new JLabel("Super Class:"), superClass}, ! {new JLabel("Type:"), type}, ! {new JLabel("Major Version Number:"), classMajorVersion}, ! {new JLabel("Minor Version Number:"), classMinorVersion}, ! {new JLabel("Abstract?:"), isAbstract}, ! {new JLabel("Final?:"), isFinal} ! }; ! for (int i = 0; i < labelPairs.length; i++) { ! JComponent[] labelPair = labelPairs[i]; ! gbc.gridy++; ! gbc.anchor = gbc.NORTHEAST; ! gbc.weightx = 0; ! Font font = labelPair[0].getFont(); ! labelPair[0].setFont(font.deriveFont(Font.BOLD)); ! add(labelPair[0], gbc); ! gbc.anchor = gbc.NORTHWEST; ! gbc.weightx = 1; ! add(labelPair[1], gbc); ! } ! gbc.weighty = 1; ! gbc.weightx = 0; ! add(new JPanel(), gbc); } --- 43,70 ---- public GeneralTab() { super("General"); ! final FormLayout layout = new FormLayout("r:p, 4dlu, l:p:g", ""); ! final DefaultFormBuilder builder = new DefaultFormBuilder(this, layout); ! builder.setLineGapSize(Sizes.DLUY5); ! builder.append("Name:"); ! builder.append(className); ! builder.append("Super Class:"); ! builder.append(superClass); ! builder.append("Type:"); ! builder.append(type); ! builder.append("Major Version Number:"); ! builder.append(classMajorVersion); ! builder.append("Minor Version Number:"); ! builder.append(classMinorVersion); ! ! builder.append("Abstract?:"); ! builder.append(isAbstract); ! ! builder.append("Final?:"); ! builder.append(isFinal); } |
From: Jeff B. <br...@us...> - 2005-01-28 02:49:31
|
Update of /cvsroot/jarspy/JarSpy2 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5407 Log Message: Status: Vendor Tag: jarspy Release Tags: initial N JarSpy2/LICENSE.txt N JarSpy2/maven.xml N JarSpy2/project.properties N JarSpy2/project.xml N JarSpy2/src/conf/org/jarspy/application.properties N JarSpy2/src/images/org/jarspy/gui/images/class_obj.gif N JarSpy2/src/images/org/jarspy/gui/images/decompile.gif N JarSpy2/src/images/org/jarspy/gui/images/exit.gif N JarSpy2/src/images/org/jarspy/gui/images/extract.gif N JarSpy2/src/images/org/jarspy/gui/images/field_default_obj.gif N JarSpy2/src/images/org/jarspy/gui/images/int_obj.gif N JarSpy2/src/images/org/jarspy/gui/images/jar.gif N JarSpy2/src/images/org/jarspy/gui/images/Jar16.gif N JarSpy2/src/images/org/jarspy/gui/images/jarcontents.gif N JarSpy2/src/images/org/jarspy/gui/images/jaricon.psp N JarSpy2/src/images/org/jarspy/gui/images/jaricon16.gif N JarSpy2/src/images/org/jarspy/gui/images/jaricon32.gif N JarSpy2/src/images/org/jarspy/gui/images/manifest.gif N JarSpy2/src/images/org/jarspy/gui/images/methdef_obj.gif N JarSpy2/src/images/org/jarspy/gui/images/open.gif N JarSpy2/src/images/org/jarspy/gui/images/package_obj.gif N JarSpy2/src/images/org/jarspy/gui/images/question.gif N JarSpy2/src/images/org/jarspy/gui/images/Thumbs.db N JarSpy2/src/java/org/jarspy/App.java N JarSpy2/src/java/org/jarspy/ApplicationProperties.java N JarSpy2/src/java/org/jarspy/ClassInfo.java N JarSpy2/src/java/org/jarspy/JarInspector.java N JarSpy2/src/java/org/jarspy/JarInspectorListener.java N JarSpy2/src/java/org/jarspy/JarProcessingListener.java N JarSpy2/src/java/org/jarspy/classinfo/AccessFlags.java N JarSpy2/src/java/org/jarspy/classinfo/ClassReader.java N JarSpy2/src/java/org/jarspy/classinfo/CRField.java N JarSpy2/src/java/org/jarspy/classinfo/CRMethod.java N JarSpy2/src/java/org/jarspy/classinfo/InvalidClassFileException.java N JarSpy2/src/java/org/jarspy/classinfo/SignatureDescriptor.java N JarSpy2/src/java/org/jarspy/classinfo/constantpool/AbstractConstantPoolEntry.java N JarSpy2/src/java/org/jarspy/classinfo/constantpool/ConstantPool.java N JarSpy2/src/java/org/jarspy/classinfo/constantpool/ConstantPoolEntry.java N JarSpy2/src/java/org/jarspy/classinfo/constantpool/ConstantPoolEntryType.java N JarSpy2/src/java/org/jarspy/classinfo/constantpool/CP_ClassEntry.java N JarSpy2/src/java/org/jarspy/classinfo/constantpool/CP_DoubleEntry.java N JarSpy2/src/java/org/jarspy/classinfo/constantpool/CP_FieldrefEntry.java N JarSpy2/src/java/org/jarspy/classinfo/constantpool/CP_FloatEntry.java N JarSpy2/src/java/org/jarspy/classinfo/constantpool/CP_IntegerEntry.java N JarSpy2/src/java/org/jarspy/classinfo/constantpool/CP_InterfaceMethodrefEntry.java N JarSpy2/src/java/org/jarspy/classinfo/constantpool/CP_LongEntry.java N JarSpy2/src/java/org/jarspy/classinfo/constantpool/CP_MethodrefEntry.java N JarSpy2/src/java/org/jarspy/classinfo/constantpool/CP_NameAndTypeEntry.java N JarSpy2/src/java/org/jarspy/classinfo/constantpool/CP_StringEntry.java N JarSpy2/src/java/org/jarspy/classinfo/constantpool/CP_Utf8Entry.java N JarSpy2/src/java/org/jarspy/classinfo/constantpool/DefaultConstantPool.java N JarSpy2/src/java/org/jarspy/classinfo/constantpool/DefaultCP_ClassEntry.java N JarSpy2/src/java/org/jarspy/classinfo/constantpool/DefaultCP_DoubleEntry.java N JarSpy2/src/java/org/jarspy/classinfo/constantpool/DefaultCP_FieldrefEntry.java N JarSpy2/src/java/org/jarspy/classinfo/constantpool/DefaultCP_FloatEntry.java N JarSpy2/src/java/org/jarspy/classinfo/constantpool/DefaultCP_IntegerEntry.java N JarSpy2/src/java/org/jarspy/classinfo/constantpool/DefaultCP_InterfaceMethodrefEntry.java N JarSpy2/src/java/org/jarspy/classinfo/constantpool/DefaultCP_LongEntry.java N JarSpy2/src/java/org/jarspy/classinfo/constantpool/DefaultCP_MethdrefEntry.java N JarSpy2/src/java/org/jarspy/classinfo/constantpool/DefaultCP_NameAndTypeEntry.java N JarSpy2/src/java/org/jarspy/classinfo/constantpool/DefaultCP_StringEntry.java N JarSpy2/src/java/org/jarspy/classinfo/constantpool/DefaultCP_Utf8Entry.java N JarSpy2/src/java/org/jarspy/classinfo/constantpool/DefaultNULLCPEntry.java N JarSpy2/src/java/org/jarspy/gui/AboutJarSpy.java N JarSpy2/src/java/org/jarspy/gui/ClassesViewer.java N JarSpy2/src/java/org/jarspy/gui/ClassSelectionListener.java N JarSpy2/src/java/org/jarspy/gui/DecompileGUI.java N JarSpy2/src/java/org/jarspy/gui/DecompilePanel.java N JarSpy2/src/java/org/jarspy/gui/JarContentsTableModel.java N JarSpy2/src/java/org/jarspy/gui/JarFileSelectionListener.java N JarSpy2/src/java/org/jarspy/gui/JarSpyGUI.java N JarSpy2/src/java/org/jarspy/gui/JarSpyInfoPanel.java N JarSpy2/src/java/org/jarspy/gui/JarSpyToolbarButton.java N JarSpy2/src/java/org/jarspy/gui/ManifestDialog.java N JarSpy2/src/java/org/jarspy/gui/MemoryMeter.java N JarSpy2/src/java/org/jarspy/gui/StatusBar.java N JarSpy2/src/java/org/jarspy/gui/StatusScreen.java N JarSpy2/src/java/org/jarspy/gui/actions/AboutAction.java N JarSpy2/src/java/org/jarspy/gui/actions/ActionNames.java N JarSpy2/src/java/org/jarspy/gui/actions/DecompileAction.java N JarSpy2/src/java/org/jarspy/gui/actions/ExitAction.java N JarSpy2/src/java/org/jarspy/gui/actions/ExtractArchiveAction.java N JarSpy2/src/java/org/jarspy/gui/actions/JarSpyAction.java N JarSpy2/src/java/org/jarspy/gui/actions/OpenArchiveAction.java N JarSpy2/src/java/org/jarspy/gui/actions/ViewJarContentsAction.java N JarSpy2/src/java/org/jarspy/gui/actions/ViewManifestAction.java N JarSpy2/src/java/org/jarspy/gui/classdetails/AbstractClassDetailTab.java N JarSpy2/src/java/org/jarspy/gui/classdetails/ClassDetailsPanel.java N JarSpy2/src/java/org/jarspy/gui/classdetails/ClassDetailTab.java N JarSpy2/src/java/org/jarspy/gui/classdetails/ClassDetailTabbedPane.java N JarSpy2/src/java/org/jarspy/gui/classdetails/ConstantPoolTab.java N JarSpy2/src/java/org/jarspy/gui/classdetails/DependencyTab.java N JarSpy2/src/java/org/jarspy/gui/classdetails/FieldsTab.java N JarSpy2/src/java/org/jarspy/gui/classdetails/GeneralTab.java N JarSpy2/src/java/org/jarspy/gui/classdetails/MethodsTab.java N JarSpy2/src/java/org/jarspy/gui/classdetails/NoClassSelectedPanel.java N JarSpy2/src/java/org/jarspy/gui/tree/JarSpyClassTree.java N JarSpy2/src/java/org/jarspy/gui/tree/JarSpyClassTreeNode.java N JarSpy2/src/java/org/jarspy/gui/tree/JarSpyFieldTreeNode.java N JarSpy2/src/java/org/jarspy/gui/tree/JarSpyMethodTreeNode.java N JarSpy2/src/java/org/jarspy/gui/tree/JarSpyPackageTreeNode.java N JarSpy2/src/java/org/jarspy/gui/tree/JarSpyRootTreeNode.java N JarSpy2/src/java/org/jarspy/gui/tree/JarSpyTreeCellRenderer.java N JarSpy2/src/java/org/jarspy/gui/tree/JarSpyTreeModel.java N JarSpy2/src/java/org/jarspy/gui/tree/JarSpyTreeNode.java N JarSpy2/src/java/org/jarspy/gui/util/Splasher.java N JarSpy2/src/java/org/jarspy/gui/util/TextAreaWriter.java N JarSpy2/src/java/org/jarspy/intellij/plugin/ConfigComponent.java N JarSpy2/src/java/org/jarspy/intellij/plugin/JarSpyIntelliJPlugin.java N JarSpy2/src/java/org/jarspy/intellij/plugin/JarSpyIntelliJPluginAction.java N JarSpy2/src/java/org/jarspy/io/NullWriter.java N JarSpy2/src/java/org/jarspy/preferences/DefaultJarSpyPreferences.java N JarSpy2/src/java/org/jarspy/preferences/J2SEJarSpyPreferences.java N JarSpy2/src/java/org/jarspy/preferences/JarSpyPreferences.java N JarSpy2/src/java/org/jarspy/preferences/JarSpyPreferencesFactory.java No conflicts created by this import ***** Bogus filespec: - Imported sources |
From: Jeff B. <br...@us...> - 2005-01-28 00:49:57
|
Update of /cvsroot/jarspy/JarSpy In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13551 Modified Files: LICENSE.txt Log Message: Index: LICENSE.txt =================================================================== RCS file: /cvsroot/jarspy/JarSpy/LICENSE.txt,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** LICENSE.txt 14 Dec 2001 23:36:21 -0000 1.1 --- LICENSE.txt 28 Jan 2005 00:49:49 -0000 1.2 *************** *** 56,60 **** The precise terms and conditions for copying, distribution and modification follow. ! GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION --- 56,60 ---- The precise terms and conditions for copying, distribution and modification follow. ! GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION *************** *** 111,115 **** does not normally print such an announcement, your work based on the Program is not required to print an announcement.) ! These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, --- 111,115 ---- does not normally print such an announcement, your work based on the Program is not required to print an announcement.) ! These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, *************** *** 169,173 **** distribution of the source code, even though third parties are not compelled to copy the source along with the object code. ! 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt --- 169,173 ---- distribution of the source code, even though third parties are not compelled to copy the source along with the object code. ! 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt *************** *** 226,230 **** This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. ! 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the --- 226,230 ---- This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. ! 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the *************** *** 279,283 **** END OF TERMS AND CONDITIONS ! How to Apply These Terms to Your New Programs --- 279,283 ---- END OF TERMS AND CONDITIONS ! How to Apply These Terms to Your New Programs |
From: Jeff B. <br...@us...> - 2005-01-12 02:28:46
|
Update of /cvsroot/jarspy/JarSpy-htdocs/phpinc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3588/phpinc Modified Files: navigation.inc Log Message: Index: navigation.inc =================================================================== RCS file: /cvsroot/jarspy/JarSpy-htdocs/phpinc/navigation.inc,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** navigation.inc 12 Jan 2005 01:52:11 -0000 1.1 --- navigation.inc 12 Jan 2005 02:28:36 -0000 1.2 *************** *** 6,10 **** <a href="/">Home</a><br/> <a href="/features.php">Features</a><br/> ! <a href="/webstart/index.php">Download</a><br/> <a href="/intellijPlugin.php">IntelliJ Plugin</a><br/> <a href="/main-screen-shot.php">Screen Shots</a><br/> --- 6,10 ---- <a href="/">Home</a><br/> <a href="/features.php">Features</a><br/> ! <a href="/webstart/">Download</a><br/> <a href="/intellijPlugin.php">IntelliJ Plugin</a><br/> <a href="/main-screen-shot.php">Screen Shots</a><br/> |
From: Jeff B. <br...@us...> - 2005-01-12 02:28:45
|
Update of /cvsroot/jarspy/JarSpy-htdocs/webstart In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3588/webstart Removed Files: index.html Log Message: --- index.html DELETED --- |
From: Jeff B. <br...@us...> - 2005-01-12 02:27:53
|
Update of /cvsroot/jarspy/JarSpy-htdocs/webstart In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3385/webstart Modified Files: index.php Log Message: added bbclone Index: index.php =================================================================== RCS file: /cvsroot/jarspy/JarSpy-htdocs/webstart/index.php,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** index.php 12 Jan 2005 01:52:11 -0000 1.7 --- index.php 12 Jan 2005 02:27:40 -0000 1.8 *************** *** 77,80 **** --- 77,86 ---- include '../phpinc/navigation.inc'; ?> + <?php + define("_BBC_PAGE_NAME", "Download"); + define("_BBCLONE_DIR", "../bbclone/"); + define("COUNTER", _BBCLONE_DIR."mark_page.php"); + if (is_readable(COUNTER)) include_once(COUNTER); + ?> </body> </html> |
From: Jeff B. <br...@us...> - 2005-01-12 02:27:52
|
Update of /cvsroot/jarspy/JarSpy-htdocs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3385 Modified Files: contributors.php features.php index.php intellijPlugin.php license.php main-screen-shot.php Log Message: added bbclone Index: contributors.php =================================================================== RCS file: /cvsroot/jarspy/JarSpy-htdocs/contributors.php,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** contributors.php 12 Jan 2005 01:52:10 -0000 1.5 --- contributors.php 12 Jan 2005 02:27:40 -0000 1.6 *************** *** 20,23 **** --- 20,29 ---- include 'phpinc/navigation.inc'; ?> + <?php + define("_BBC_PAGE_NAME", "Contributors"); + define("_BBCLONE_DIR", "./bbclone/"); + define("COUNTER", _BBCLONE_DIR."mark_page.php"); + if (is_readable(COUNTER)) include_once(COUNTER); + ?> </body> </html> Index: features.php =================================================================== RCS file: /cvsroot/jarspy/JarSpy-htdocs/features.php,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** features.php 12 Jan 2005 01:52:10 -0000 1.5 --- features.php 12 Jan 2005 02:27:40 -0000 1.6 *************** *** 69,72 **** --- 69,78 ---- include 'phpinc/navigation.inc'; ?> + <?php + define("_BBC_PAGE_NAME", "Features"); + define("_BBCLONE_DIR", "./bbclone/"); + define("COUNTER", _BBCLONE_DIR."mark_page.php"); + if (is_readable(COUNTER)) include_once(COUNTER); + ?> </body> Index: index.php =================================================================== RCS file: /cvsroot/jarspy/JarSpy-htdocs/index.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** index.php 12 Jan 2005 01:52:10 -0000 1.1 --- index.php 12 Jan 2005 02:27:40 -0000 1.2 *************** *** 30,33 **** --- 30,39 ---- include 'phpinc/navigation.inc'; ?> + <?php + define("_BBC_PAGE_NAME", "Home"); + define("_BBCLONE_DIR", "./bbclone/"); + define("COUNTER", _BBCLONE_DIR."mark_page.php"); + if (is_readable(COUNTER)) include_once(COUNTER); + ?> </body> </html> Index: intellijPlugin.php =================================================================== RCS file: /cvsroot/jarspy/JarSpy-htdocs/intellijPlugin.php,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** intellijPlugin.php 12 Jan 2005 01:52:10 -0000 1.12 --- intellijPlugin.php 12 Jan 2005 02:27:40 -0000 1.13 *************** *** 34,37 **** --- 34,43 ---- include 'phpinc/navigation.inc'; ?> + <?php + define("_BBC_PAGE_NAME", "IntelliJ"); + define("_BBCLONE_DIR", "./bbclone/"); + define("COUNTER", _BBCLONE_DIR."mark_page.php"); + if (is_readable(COUNTER)) include_once(COUNTER); + ?> </body> Index: license.php =================================================================== RCS file: /cvsroot/jarspy/JarSpy-htdocs/license.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** license.php 12 Jan 2005 01:52:10 -0000 1.4 --- license.php 12 Jan 2005 02:27:40 -0000 1.5 *************** *** 369,372 **** --- 369,378 ---- include 'phpinc/navigation.inc'; ?> + <?php + define("_BBC_PAGE_NAME", "License"); + define("_BBCLONE_DIR", "./bbclone/"); + define("COUNTER", _BBCLONE_DIR."mark_page.php"); + if (is_readable(COUNTER)) include_once(COUNTER); + ?> </body> Index: main-screen-shot.php =================================================================== RCS file: /cvsroot/jarspy/JarSpy-htdocs/main-screen-shot.php,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** main-screen-shot.php 12 Jan 2005 01:52:10 -0000 1.5 --- main-screen-shot.php 12 Jan 2005 02:27:40 -0000 1.6 *************** *** 65,68 **** --- 65,74 ---- include 'phpinc/navigation.inc'; ?> + <?php + define("_BBC_PAGE_NAME", "ScreenShots"); + define("_BBCLONE_DIR", "./bbclone/"); + define("COUNTER", _BBCLONE_DIR."mark_page.php"); + if (is_readable(COUNTER)) include_once(COUNTER); + ?> </body> |
From: Jeff B. <br...@us...> - 2005-01-12 01:52:40
|
Update of /cvsroot/jarspy/JarSpy-htdocs/css In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29714/css Added Files: jarspy.css Log Message: new site layout --- NEW FILE: jarspy.css --- body { color:#333; background-color:white; margin:20px; padding:0px; font:14px verdana, arial, helvetica, sans-serif; } .content { position:relative; /* Position is declared "relative" to gain control of stacking order (z-index). */ width:auto; min-width:120px; margin:0px 50px 20px 230px; background-color:white; padding:10px; z-index:3; /* This allows the content to overlap the right menu in narrow windows in good browsers. */ } .page-heading { margin: 20px 0px 20px 0px; color:#2222cc; font: 24px arial, verdana, helvetica, sans-serif; } a { color:#0066FF; text-decoration:none; } a:hover {text-decoration:underline } p { margin-top: 5px; margin-bottom: 35px; } .sectionHeader { margin-top: 15px; margin-bottom: 8px; color:black; font-size: 110%; font-weight: bold; } .leftcontents { margin: 0px 0px 20px 0px; position:absolute; width:150px; top:20px; left:20px; background-color:#ffffff; padding:10px; z-index:1; voice-family: "\"}\""; voice-family:inherit; width:200px; } .leftcontents div { border: 1px solid #369; border-top-width: 0px; padding: 5px; font-size: 14px; margin-bottom: 15px; } .leftcontents h2 { font-family: Arial, Helvetica, sans-serif; text-transform: uppercase; background: #369 url(/images/rcorner.gif) right top no-repeat; color: white; margin: 12px 0px 0px 0px; font-size: 16px; padding: 3px; } .leftcontents h3 { color: #cc6600; font-weight: 600; margin: 0px; margin: 12px 0px 0px 0px; font-size: 14px; } .rightcontents { voice-family: "\"}\""; voice-family:inherit; width:200px; margin: 0px 0px 20px 0px; position:absolute; top:20px; right:20px; background-color:#fff; padding:5px; z-index:1; /* Again, the ugly brilliant hack. */ voice-family: "\"}\""; voice-family:inherit; width:230px; } .rightcontents div { border: 1px solid #369; border-top-width: 0px; padding: 5px; font-size: 14px; margin-bottom: 15px; } .rightcontents h2 { font-family: Arial, Helvetica, sans-serif; text-transform: uppercase; background: #369 url(/images/rcorner.gif) right top no-repeat; color: white; margin: 12px 0px 0px 0px; font-size: 16px; padding: 3px; } .rightcontents h3 { color: #cc6600; font-weight: 600; margin: 0px; margin: 12px 0px 0px 0px; font-size: 14px; } |
From: Jeff B. <br...@us...> - 2005-01-12 01:52:40
|
Update of /cvsroot/jarspy/JarSpy-htdocs/webstart In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29714/webstart Modified Files: index.php Removed Files: driveError.jpg Log Message: new site layout Index: index.php =================================================================== RCS file: /cvsroot/jarspy/JarSpy-htdocs/webstart/index.php,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** index.php 15 Jun 2003 23:21:58 -0000 1.6 --- index.php 12 Jan 2005 01:52:11 -0000 1.7 *************** *** 4,10 **** <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>JarSpy - Download</title> ! <link rel="stylesheet" href="../nav_style.css" type="text/css"> </head> <body> <p> (NOTE: The JarSpy plugin for IntelliJ IDEA may be found <a href="../intellijPlugin.php">here</a>.) --- 4,12 ---- <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>JarSpy - Download</title> ! <link rel="stylesheet" href="/css/jarspy.css" type="text/css"> </head> <body> + <div class="content"> + <div class="page-heading">JarSpy - Download</div> <p> (NOTE: The JarSpy plugin for IntelliJ IDEA may be found <a href="../intellijPlugin.php">here</a>.) *************** *** 68,99 **** in...@ja...</a> if you have any questions. - <p> - <b>NOTE:</b> - If you see an error dialog like the following when starting up JarSpy... - <br><br> - - <img src="driveError.jpg"> - - <br><br> - - ... simply click "Cancel" and the application should start up fine. - Upgrading to the latest version of the J2SE and the latest version of - WebStart should make this problem go away. See the following bugs... - - <br><br> - <a href="http://forum.java.sun.com/thread.jsp?forum=38&thread=71610" target="_top">http://forum.java.sun.com/thread.jsp?forum=38&thread=71610 </a><br> - <a href="http://forum.java.sun.com/thread.jsp?forum=38&thread=71491" target="_top">http://forum.java.sun.com/thread.jsp?forum=38&thread=71491 </a> - <p>The very latest JarSpy source code is available for download from the <a href="../cvs.php" target="mainFrameWindow">JarSpy CVS Repository</a>. ! <? ! DEFINE ("_BBC_PAGE_NAME", "Web Start"); ! DEFINE ("_BBCLONE_DIR", "../bbclone-0.32/"); ! DEFINE ("_JARSPY_COUNTER", _BBCLONE_DIR . "mark_page.php"); ! if(file_exists(_JARSPY_COUNTER)) ! { ! include(_JARSPY_COUNTER); ! } ?> </body> --- 70,79 ---- in...@ja...</a> if you have any questions. <p>The very latest JarSpy source code is available for download from the <a href="../cvs.php" target="mainFrameWindow">JarSpy CVS Repository</a>. ! </div> ! <?php ! include '../phpinc/navigation.inc'; ?> </body> --- driveError.jpg DELETED --- |
From: Jeff B. <br...@us...> - 2005-01-12 01:52:38
|
Update of /cvsroot/jarspy/JarSpy-htdocs/phpinc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29714/phpinc Added Files: navigation.inc Log Message: new site layout --- NEW FILE: navigation.inc --- <div class="leftcontents"> <h2>Site Navigation</h2> <div> <h3>Links</h3> <a href="/">Home</a><br/> <a href="/features.php">Features</a><br/> <a href="/webstart/index.php">Download</a><br/> <a href="/intellijPlugin.php">IntelliJ Plugin</a><br/> <a href="/main-screen-shot.php">Screen Shots</a><br/> <a href="/cvs.php">CVS</a><br/> <a href="/contributors.php">Contributors</a><br/> <a href="/license.php">License</a><br/> </div> <h2>Email Us</h2> <div> <h3>General:</h3> <a href="mailto:co...@ja...">co...@ja...</a> <h3>Report A Bug:</h3> <a href="mailto:su...@ja...">su...@ja...</a> </div> </div> |
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 --- |
From: Jeff B. <br...@us...> - 2005-01-12 01:52:29
|
Update of /cvsroot/jarspy/JarSpy-htdocs/images In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29714/images Added Files: rcorner.gif Log Message: new site layout --- NEW FILE: rcorner.gif --- GIF89a ¨Ñ(Òäéq©ÒG¦*ªÓ¨PbݹuiDWö´uªV®\ÏVíª¶-Ò²hÉ |
From: Jeff B. <br...@us...> - 2005-01-12 01:50:05
|
Update of /cvsroot/jarspy/JarSpy-htdocs/css In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29186/css Log Message: Directory /cvsroot/jarspy/JarSpy-htdocs/css added to the repository |
From: Jeff B. <br...@us...> - 2005-01-12 01:49:45
|
Update of /cvsroot/jarspy/JarSpy-htdocs/phpinc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29144/phpinc Log Message: Directory /cvsroot/jarspy/JarSpy-htdocs/phpinc added to the repository |
From: Jeff B. <br...@us...> - 2005-01-08 04:46:31
|
Update of /cvsroot/jarspy/JarSpy In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14734 Modified Files: .build.properties Log Message: change path to openapi.jar Index: .build.properties =================================================================== RCS file: /cvsroot/jarspy/JarSpy/.build.properties,v retrieving revision 1.25 retrieving revision 1.26 diff -C2 -d -r1.25 -r1.26 *** .build.properties 14 Sep 2003 18:57:33 -0000 1.25 --- .build.properties 8 Jan 2005 04:46:23 -0000 1.26 *************** *** 10,14 **** plugin.descriptor.file=META-INF/plugin.xml plugin.jar.file=${lib.dir}/jarspy-plugin.jar ! intellij.openapi.jar=c:/IntelliJ-IDEA-3.0.5/lib/openapi.jar dist.dir=dist --- 10,14 ---- plugin.descriptor.file=META-INF/plugin.xml plugin.jar.file=${lib.dir}/jarspy-plugin.jar ! intellij.openapi.jar=c:/IntelliJ-IDEA-4.5/lib/openapi.jar dist.dir=dist |
From: Jeff B. <br...@us...> - 2005-01-08 04:34:46
|
Update of /cvsroot/jarspy/JarSpy In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12856 Modified Files: build.xml Log Message: Index: build.xml =================================================================== RCS file: /cvsroot/jarspy/JarSpy/build.xml,v retrieving revision 1.34 retrieving revision 1.35 diff -C2 -d -r1.34 -r1.35 *** build.xml 29 Mar 2003 00:20:07 -0000 1.34 --- build.xml 8 Jan 2005 04:34:38 -0000 1.35 *************** *** 1,4 **** <project name="JarSpy" default="compile" basedir="."> - <!-- pull in the project properties --> <property file=".build.properties"/> --- 1,3 ---- |
From: Jeff B. <br...@us...> - 2003-10-20 02:07:23
|
Update of /cvsroot/jarspy/JarSpy/src/com/ociweb/jarspy/gui In directory sc8-pr-cvs1:/tmp/cvs-serv27433 Modified Files: JarSpyInfoPanel.java Log Message: Index: JarSpyInfoPanel.java =================================================================== RCS file: /cvsroot/jarspy/JarSpy/src/com/ociweb/jarspy/gui/JarSpyInfoPanel.java,v retrieving revision 1.27 retrieving revision 1.28 diff -C2 -d -r1.27 -r1.28 *** JarSpyInfoPanel.java 25 Jan 2003 23:24:31 -0000 1.27 --- JarSpyInfoPanel.java 20 Oct 2003 01:35:54 -0000 1.28 *************** *** 63,67 **** add(new JLabel("http://www.jarspy.org/"), gbc); add(new JLabel("Email: co...@ja..."), gbc); ! add(new JLabel("(c) Copyright 2001 - 2003 Jeff Brown"), gbc); gbc.insets.top = 20; add(new JLabel("Distributed Under The GNU General Public License (GPL)"), gbc); --- 63,67 ---- add(new JLabel("http://www.jarspy.org/"), gbc); add(new JLabel("Email: co...@ja..."), gbc); ! add(new JLabel("\u00a9 2001 - 2003 Jeff Brown"), gbc); gbc.insets.top = 20; add(new JLabel("Distributed Under The GNU General Public License (GPL)"), gbc); |
From: Jeff B. <br...@us...> - 2003-09-14 21:57:25
|
Update of /cvsroot/jarspy/JarSpy-htdocs/intellijPlugin In directory sc8-pr-cvs1:/tmp/cvs-serv5072/intellijPlugin Modified Files: jarspy-plugin.jar Log Message: update intellij plugin Index: jarspy-plugin.jar =================================================================== RCS file: /cvsroot/jarspy/JarSpy-htdocs/intellijPlugin/jarspy-plugin.jar,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 Binary files /tmp/cvsSxc3Ai and /tmp/cvsO8TTAs differ |
From: Jeff B. <br...@us...> - 2003-09-14 21:57:25
|
Update of /cvsroot/jarspy/JarSpy-htdocs In directory sc8-pr-cvs1:/tmp/cvs-serv5072 Modified Files: intellijPlugin.php Log Message: update intellij plugin Index: intellijPlugin.php =================================================================== RCS file: /cvsroot/jarspy/JarSpy-htdocs/intellijPlugin.php,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** intellijPlugin.php 29 Aug 2003 13:42:15 -0000 1.10 --- intellijPlugin.php 14 Sep 2003 21:57:21 -0000 1.11 *************** *** 12,16 **** A JarSpy plugin for <a href="http://www.intellij.com/" target="_top">IntelliJ IDEA</a> is in development. Click <a href="intellijPlugin/jarspy-plugin.jar">here</a> to download ! the latest plugin release (build 30). <p> --- 12,16 ---- A JarSpy plugin for <a href="http://www.intellij.com/" target="_top">IntelliJ IDEA</a> is in development. Click <a href="intellijPlugin/jarspy-plugin.jar">here</a> to download ! the latest plugin release (build 31). <p> |
From: Jeff B. <br...@us...> - 2003-09-14 21:50:42
|
Update of /cvsroot/jarspy/JarSpy In directory sc8-pr-cvs1:/tmp/cvs-serv3595 Modified Files: build.number Log Message: updated build number Index: build.number =================================================================== RCS file: /cvsroot/jarspy/JarSpy/build.number,v retrieving revision 1.27 retrieving revision 1.28 diff -C2 -d -r1.27 -r1.28 *** build.number 29 Aug 2003 13:30:54 -0000 1.27 --- build.number 14 Sep 2003 21:50:37 -0000 1.28 *************** *** 1,3 **** #Build Number for ANT. Do not edit! ! #Fri Aug 29 08:30:52 CDT 2003 ! build.number=31 --- 1,3 ---- #Build Number for ANT. Do not edit! ! #Sun Sep 14 16:50:34 CDT 2003 ! build.number=32 |
From: Jeff B. <br...@us...> - 2003-09-14 18:57:37
|
Update of /cvsroot/jarspy/JarSpy In directory sc8-pr-cvs1:/tmp/cvs-serv27898 Modified Files: .build.properties Log Message: update IntelliJ install dir Index: .build.properties =================================================================== RCS file: /cvsroot/jarspy/JarSpy/.build.properties,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -d -r1.24 -r1.25 *** .build.properties 29 Aug 2003 13:30:45 -0000 1.24 --- .build.properties 14 Sep 2003 18:57:33 -0000 1.25 *************** *** 10,14 **** plugin.descriptor.file=META-INF/plugin.xml plugin.jar.file=${lib.dir}/jarspy-plugin.jar ! intellij.openapi.jar=/home/jeff/apps/IntelliJ-IDEA-3.0.5/lib/openapi.jar dist.dir=dist --- 10,14 ---- plugin.descriptor.file=META-INF/plugin.xml plugin.jar.file=${lib.dir}/jarspy-plugin.jar ! intellij.openapi.jar=c:/IntelliJ-IDEA-3.0.5/lib/openapi.jar dist.dir=dist |
From: Jeff B. <br...@us...> - 2003-09-14 18:54:34
|
Update of /cvsroot/jarspy/JarSpy/src/com/ociweb/jarspy/intellij/plugin In directory sc8-pr-cvs1:/tmp/cvs-serv27233/src/com/ociweb/jarspy/intellij/plugin Modified Files: JarSpyIntelliJPlugin.java Log Message: update icon file name to be compatible with latest EAP Index: JarSpyIntelliJPlugin.java =================================================================== RCS file: /cvsroot/jarspy/JarSpy/src/com/ociweb/jarspy/intellij/plugin/JarSpyIntelliJPlugin.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** JarSpyIntelliJPlugin.java 6 Apr 2003 20:22:07 -0000 1.7 --- JarSpyIntelliJPlugin.java 14 Sep 2003 18:54:30 -0000 1.8 *************** *** 60,64 **** treeIconPropertiesMap.put(JarSpyTreeCellRenderer.ARCHIVE_ICON_PROPERTY_KEY, ! "/nodes/jar.png"); treeIconPropertiesMap.put(JarSpyTreeCellRenderer.PACKAGE_CLOSED_ICON_PROPERTY_KEY, --- 60,64 ---- treeIconPropertiesMap.put(JarSpyTreeCellRenderer.ARCHIVE_ICON_PROPERTY_KEY, ! "/nodes/ppJar.png"); treeIconPropertiesMap.put(JarSpyTreeCellRenderer.PACKAGE_CLOSED_ICON_PROPERTY_KEY, |
From: Jeff B. <br...@us...> - 2003-09-14 17:24:43
|
Update of /cvsroot/jarspy/JarSpy In directory sc8-pr-cvs1:/tmp/cvs-serv1607 Modified Files: README Log Message: Index: README =================================================================== RCS file: /cvsroot/jarspy/JarSpy/README,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** README 29 Sep 2002 14:59:45 -0000 1.15 --- README 14 Sep 2003 17:24:33 -0000 1.16 *************** *** 1,3 **** ! JarSpy v0.7.1 http://www.jarspy.org/ ======================================= --- 1,3 ---- ! JarSpy v0.8 http://www.jarspy.org/ ======================================= |