You can subscribe to this list here.
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(14) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
(7) |
Feb
(16) |
Mar
(41) |
Apr
(19) |
May
(3) |
Jun
(34) |
Jul
(40) |
Aug
(40) |
Sep
(166) |
Oct
(78) |
Nov
(42) |
Dec
(54) |
2005 |
Jan
(2) |
Feb
(19) |
Mar
(19) |
Apr
(31) |
May
(50) |
Jun
(16) |
Jul
|
Aug
(1) |
Sep
(2) |
Oct
(29) |
Nov
|
Dec
|
2006 |
Jan
|
Feb
(5) |
Mar
|
Apr
(2) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(3) |
Dec
|
2007 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(6) |
Nov
|
Dec
|
2008 |
Jan
|
Feb
(7) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2010 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Kurt R. <kr...@us...> - 2010-06-13 21:57:29
|
Update of /cvsroot/xframe/swing/src/net/sf/xframe/swing In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv18806/src/net/sf/xframe/swing Modified Files: JXTable.java Log Message: fixed a bug in isCellEditable, thanx to René Kuser, see Patch 3012553 Index: JXTable.java =================================================================== RCS file: /cvsroot/xframe/swing/src/net/sf/xframe/swing/JXTable.java,v retrieving revision 1.33 retrieving revision 1.34 diff -C2 -d -r1.33 -r1.34 *** JXTable.java 15 Feb 2008 11:24:37 -0000 1.33 --- JXTable.java 13 Jun 2010 21:57:21 -0000 1.34 *************** *** 2779,2783 **** public void removeFrozenColumn(final TableColumn aColumn) { lockedTable.removeColumn(aColumn); ! frozenColumns++; } --- 2779,2783 ---- public void removeFrozenColumn(final TableColumn aColumn) { lockedTable.removeColumn(aColumn); ! frozenColumns--; } |
Update of /cvsroot/xframe/swing In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv25624 Modified Files: .checkstyle .project Added Files: swing-src-checkstyle-settings.xml .fbprefs swing-samples-checkstyle-settings.xml Removed Files: checkstyle.xml Log Message: checkstyle and findbugs settings corrected, all checkstyle and findbugs problems resolved Index: .project =================================================================== RCS file: /cvsroot/xframe/swing/.project,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** .project 30 Jul 2004 12:59:32 -0000 1.1 --- .project 15 Feb 2008 11:24:37 -0000 1.2 *************** *** 16,23 **** --- 16,29 ---- </arguments> </buildCommand> + <buildCommand> + <name>edu.umd.cs.findbugs.plugin.eclipse.findbugsBuilder</name> + <arguments> + </arguments> + </buildCommand> </buildSpec> <natures> <nature>org.eclipse.jdt.core.javanature</nature> <nature>com.atlassw.tools.eclipse.checkstyle.CheckstyleNature</nature> + <nature>edu.umd.cs.findbugs.plugin.eclipse.findbugsNature</nature> </natures> </projectDescription> --- NEW FILE: swing-src-checkstyle-settings.xml --- <?xml version="1.0" encoding="UTF-8"?> <!-- This file is part of the xframe software package hosted at http://xframe.sourceforge.net Copyright (c) 2003 Kurt Riede. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA --> <!DOCTYPE module PUBLIC "-//Puppy Crawl//DTD Check Configuration 1.1//EN" "http://www.puppycrawl.com/dtds/configuration_1_1.dtd"> <module name="Checker"> <module name="TreeWalker"> <module name="com.puppycrawl.tools.checkstyle.checks.ArrayTypeStyleCheck"> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.FinalParametersCheck"> <property name="severity" value="warning"/> <property name="tokens" value="METHOD_DEF, CTOR_DEF"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.GenericIllegalRegexpCheck"> <property name="format" value="\s+$"/> <property name="ignoreCase" value="false"/> <property name="message" value="Line has trailing spaces."/> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.ModifierOrderCheck"> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.RedundantModifierCheck"> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.TodoCommentCheck"> <property name="format" value="TODO:"/> <property name="severity" value="ignore"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.UpperEllCheck"> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.blocks.AvoidNestedBlocksCheck"> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.blocks.EmptyBlockCheck"> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.blocks.LeftCurlyCheck"> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.blocks.NeedBracesCheck"> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.blocks.RightCurlyCheck"> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.coding.AvoidInlineConditionalsCheck"> <property name="severity" value="ignore"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.coding.DoubleCheckedLockingCheck"> <property name="severity" value="error"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.coding.EmptyStatementCheck"> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.coding.EqualsHashCodeCheck"> <property name="severity" value="error"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.coding.HiddenFieldCheck"> <property name="ignoreConstructorParameter" value="true"/> <property name="ignoreSetter" value="false"/> <property name="severity" value="error"/> <property name="tokens" value="PARAMETER_DEF, VARIABLE_DEF"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.coding.IllegalInstantiationCheck"> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.coding.InnerAssignmentCheck"> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.coding.MagicNumberCheck"> <property name="ignoreNumbers" value="-1, 0, 1, 2, 3"/> <property name="severity" value="warning"/> <property name="tokens" value="NUM_DOUBLE, NUM_FLOAT, NUM_INT, NUM_LONG"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.coding.MissingSwitchDefaultCheck"> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.coding.RedundantThrowsCheck"> <property name="allowSubclasses" value="false"/> <property name="allowUnchecked" value="true"/> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.coding.SimplifyBooleanExpressionCheck"> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.coding.SimplifyBooleanReturnCheck"> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.design.DesignForExtensionCheck"> <property name="severity" value="ignore"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.design.FinalClassCheck"> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.design.HideUtilityClassConstructorCheck"> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.design.InterfaceIsTypeCheck"> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.design.MutableExceptionCheck"> <property name="format" value="^.*Exception$|^.*Error$"/> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.design.ThrowsCountCheck"> <property name="max" value="4"/> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.design.VisibilityModifierCheck"> <property name="packageAllowed" value="false"/> <property name="protectedAllowed" value="false"/> <property name="publicMemberPattern" value="^serialVersionUID"/> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.imports.AvoidStarImportCheck"> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.imports.IllegalImportCheck"> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.imports.RedundantImportCheck"> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.imports.UnusedImportsCheck"> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.javadoc.JavadocMethodCheck"> <property name="allowMissingParamTags" value="false"/> <property name="allowMissingReturnTag" value="false"/> <property name="allowMissingThrowsTags" value="false"/> <property name="allowThrowsTagsForSubclasses" value="false"/> <property name="allowUndeclaredRTE" value="false"/> <property name="scope" value="protected"/> <property name="severity" value="warning"/> <property name="tokens" value="METHOD_DEF, CTOR_DEF"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.javadoc.JavadocStyleCheck"> <property name="checkFirstSentence" value="true"/> <property name="checkHtml" value="true"/> <property name="scope" value="protected"/> <property name="severity" value="warning"/> <property name="tokens" value="INTERFACE_DEF, CLASS_DEF, METHOD_DEF, CTOR_DEF, VARIABLE_DEF"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.javadoc.JavadocTypeCheck"> <property name="scope" value="protected"/> <property name="severity" value="warning"/> <property name="tokens" value="CLASS_DEF, INTERFACE_DEF"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.javadoc.JavadocVariableCheck"> <property name="scope" value="protected"/> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.naming.ConstantNameCheck"> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.naming.LocalFinalVariableNameCheck"> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.naming.LocalVariableNameCheck"> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.naming.MemberNameCheck"> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.naming.MethodNameCheck"> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.naming.PackageNameCheck"> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.naming.ParameterNameCheck"> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.naming.StaticVariableNameCheck"> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.naming.TypeNameCheck"> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.sizes.FileLengthCheck"> <property name="severity" value="ignore"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.sizes.LineLengthCheck"> <property name="ignorePattern" value="^$"/> <property name="max" value="128"/> <property name="severity" value="warning"/> <property name="tabWidth" value="4"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.sizes.MethodLengthCheck"> <property name="countEmpty" value="true"/> <property name="max" value="100"/> <property name="severity" value="warning"/> <property name="tokens" value="METHOD_DEF, CTOR_DEF"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.sizes.ParameterNumberCheck"> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.whitespace.EmptyForIteratorPadCheck"> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.whitespace.NoWhitespaceAfterCheck"> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.whitespace.NoWhitespaceBeforeCheck"> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.whitespace.OperatorWrapCheck"> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.whitespace.ParenPadCheck"> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.whitespace.TabCharacterCheck"> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.whitespace.WhitespaceAfterCheck"> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.whitespace.WhitespaceAroundCheck"> <property name="severity" value="warning"/> </module> </module> </module> Index: .checkstyle =================================================================== RCS file: /cvsroot/xframe/swing/.checkstyle,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** .checkstyle 2 Apr 2005 21:12:58 -0000 1.5 --- .checkstyle 15 Feb 2008 11:24:37 -0000 1.6 *************** *** 1,9 **** <?xml version="1.0" encoding="UTF-8"?> ! <fileset-config file-format-version="1.0.0"> ! <fileset check-config-name="xframeCheckstyleSamples" enabled="true" name="samples"> ! <file-match-pattern include-pattern="true" match-pattern="samples/(.*).java"/> </fileset> ! <fileset check-config-name="xframeCheckstyleSource" enabled="true" name="src"> ! <file-match-pattern include-pattern="true" match-pattern="src/(.*).java"/> </fileset> </fileset-config> --- 1,15 ---- <?xml version="1.0" encoding="UTF-8"?> ! <fileset-config file-format-version="1.2.0" simple-config="false"> ! <local-check-config name="swing-src-checkstyle-settings" location="swing-src-checkstyle-settings.xml" type="project" description=""> ! <additional-data name="protect-config-file" value="false"/> ! </local-check-config> ! <local-check-config name="swing-samples-checkstyle-settings" location="swing-samples-checkstyle-settings.xml" type="project" description=""> ! <additional-data name="protect-config-file" value="false"/> ! </local-check-config> ! <fileset name="samples" enabled="true" check-config-name="swing-samples-checkstyle-settings" local="true"> ! <file-match-pattern match-pattern="samples/(.*).java" include-pattern="true"/> </fileset> ! <fileset name="src" enabled="true" check-config-name="swing-src-checkstyle-settings" local="true"> ! <file-match-pattern match-pattern="src/(.*).java" include-pattern="true"/> </fileset> </fileset-config> --- checkstyle.xml DELETED --- --- NEW FILE: swing-samples-checkstyle-settings.xml --- <?xml version="1.0" encoding="UTF-8"?> <!-- This file is part of the xframe software package hosted at http://xframe.sourceforge.net Copyright (c) 2003 Kurt Riede. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA --> <!DOCTYPE module PUBLIC "-//Puppy Crawl//DTD Check Configuration 1.1//EN" "http://www.puppycrawl.com/dtds/configuration_1_1.dtd"> <module name="Checker"> <module name="TreeWalker"> <module name="com.puppycrawl.tools.checkstyle.checks.ArrayTypeStyleCheck"> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.FinalParametersCheck"> <property name="severity" value="warning"/> <property name="tokens" value="METHOD_DEF, CTOR_DEF"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.GenericIllegalRegexpCheck"> <property name="format" value="\s+$"/> <property name="ignoreCase" value="false"/> <property name="message" value="Line has trailing spaces."/> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.ModifierOrderCheck"> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.RedundantModifierCheck"> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.TodoCommentCheck"> <property name="format" value="TODO:"/> <property name="severity" value="ignore"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.UpperEllCheck"> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.blocks.AvoidNestedBlocksCheck"> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.blocks.EmptyBlockCheck"> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.blocks.LeftCurlyCheck"> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.blocks.NeedBracesCheck"> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.blocks.RightCurlyCheck"> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.coding.AvoidInlineConditionalsCheck"> <property name="severity" value="ignore"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.coding.DoubleCheckedLockingCheck"> <property name="severity" value="error"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.coding.EmptyStatementCheck"> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.coding.EqualsHashCodeCheck"> <property name="severity" value="error"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.coding.HiddenFieldCheck"> <property name="ignoreConstructorParameter" value="true"/> <property name="ignoreSetter" value="false"/> <property name="severity" value="error"/> <property name="tokens" value="PARAMETER_DEF, VARIABLE_DEF"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.coding.IllegalInstantiationCheck"> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.coding.InnerAssignmentCheck"> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.coding.MagicNumberCheck"> <property name="ignoreNumbers" value="-1, 0, 1, 2, 3"/> <property name="severity" value="warning"/> <property name="tokens" value="NUM_DOUBLE, NUM_FLOAT, NUM_INT, NUM_LONG"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.coding.MissingSwitchDefaultCheck"> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.coding.RedundantThrowsCheck"> <property name="allowSubclasses" value="false"/> <property name="allowUnchecked" value="true"/> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.coding.SimplifyBooleanExpressionCheck"> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.coding.SimplifyBooleanReturnCheck"> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.design.DesignForExtensionCheck"> <property name="severity" value="ignore"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.design.FinalClassCheck"> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.design.HideUtilityClassConstructorCheck"> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.design.InterfaceIsTypeCheck"> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.design.MutableExceptionCheck"> <property name="format" value="^.*Exception$|^.*Error$"/> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.design.ThrowsCountCheck"> <property name="max" value="4"/> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.design.VisibilityModifierCheck"> <property name="packageAllowed" value="false"/> <property name="protectedAllowed" value="false"/> <property name="publicMemberPattern" value="^serialVersionUID"/> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.imports.AvoidStarImportCheck"> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.imports.IllegalImportCheck"> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.imports.RedundantImportCheck"> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.imports.UnusedImportsCheck"> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.javadoc.JavadocMethodCheck"> <property name="allowMissingParamTags" value="false"/> <property name="allowMissingReturnTag" value="false"/> <property name="allowMissingThrowsTags" value="false"/> <property name="allowThrowsTagsForSubclasses" value="false"/> <property name="allowUndeclaredRTE" value="false"/> <property name="scope" value="protected"/> <property name="severity" value="warning"/> <property name="tokens" value="METHOD_DEF, CTOR_DEF"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.javadoc.JavadocStyleCheck"> <property name="checkFirstSentence" value="true"/> <property name="checkHtml" value="true"/> <property name="scope" value="protected"/> <property name="severity" value="warning"/> <property name="tokens" value="INTERFACE_DEF, CLASS_DEF, METHOD_DEF, CTOR_DEF, VARIABLE_DEF"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.javadoc.JavadocTypeCheck"> <property name="scope" value="protected"/> <property name="severity" value="warning"/> <property name="tokens" value="CLASS_DEF, INTERFACE_DEF"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.javadoc.JavadocVariableCheck"> <property name="scope" value="protected"/> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.naming.ConstantNameCheck"> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.naming.LocalFinalVariableNameCheck"> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.naming.LocalVariableNameCheck"> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.naming.MemberNameCheck"> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.naming.MethodNameCheck"> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.naming.PackageNameCheck"> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.naming.ParameterNameCheck"> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.naming.StaticVariableNameCheck"> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.naming.TypeNameCheck"> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.sizes.FileLengthCheck"> <property name="severity" value="ignore"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.sizes.LineLengthCheck"> <property name="ignorePattern" value="^$"/> <property name="max" value="128"/> <property name="severity" value="warning"/> <property name="tabWidth" value="4"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.sizes.MethodLengthCheck"> <property name="countEmpty" value="true"/> <property name="max" value="100"/> <property name="severity" value="warning"/> <property name="tokens" value="METHOD_DEF, CTOR_DEF"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.sizes.ParameterNumberCheck"> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.whitespace.EmptyForIteratorPadCheck"> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.whitespace.NoWhitespaceAfterCheck"> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.whitespace.NoWhitespaceBeforeCheck"> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.whitespace.OperatorWrapCheck"> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.whitespace.ParenPadCheck"> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.whitespace.TabCharacterCheck"> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.whitespace.WhitespaceAfterCheck"> <property name="severity" value="warning"/> </module> <module name="com.puppycrawl.tools.checkstyle.checks.whitespace.WhitespaceAroundCheck"> <property name="severity" value="warning"/> </module> </module> </module> --- NEW FILE: .fbprefs --- #FindBugs User Preferences #Thu Feb 14 11:54:02 CET 2008 detectorBadAppletConstructor=BadAppletConstructor|false detectorBadResultSetAccess=BadResultSetAccess|true detectorBadSyntaxForRegularExpression=BadSyntaxForRegularExpression|true detectorBadUseOfReturnValue=BadUseOfReturnValue|true detectorBadlyOverriddenAdapter=BadlyOverriddenAdapter|true detectorCheckImmutableAnnotation=CheckImmutableAnnotation|true detectorCloneIdiom=CloneIdiom|true detectorComparatorIdiom=ComparatorIdiom|true detectorConfusedInheritance=ConfusedInheritance|true detectorConfusionBetweenInheritedAndOuterMethod=ConfusionBetweenInheritedAndOuterMethod|true detectorDoInsideDoPrivileged=DoInsideDoPrivileged|true detectorDontCatchIllegalMonitorStateException=DontCatchIllegalMonitorStateException|true detectorDontUseEnum=DontUseEnum|true detectorDroppedException=DroppedException|true detectorDumbMethodInvocations=DumbMethodInvocations|true detectorDumbMethods=DumbMethods|true detectorDuplicateBranches=DuplicateBranches|true detectorEmptyZipFileEntry=EmptyZipFileEntry|true detectorFinalizerNullsFields=FinalizerNullsFields|true detectorFindBadCast2=FindBadCast2|true detectorFindBadForLoop=FindBadForLoop|true detectorFindCircularDependencies=FindCircularDependencies|false detectorFindDeadLocalStores=FindDeadLocalStores|true detectorFindDoubleCheck=FindDoubleCheck|true detectorFindEmptySynchronizedBlock=FindEmptySynchronizedBlock|true detectorFindFieldSelfAssignment=FindFieldSelfAssignment|true detectorFindFinalizeInvocations=FindFinalizeInvocations|true detectorFindFloatEquality=FindFloatEquality|true detectorFindHEmismatch=FindHEmismatch|true detectorFindInconsistentSync2=FindInconsistentSync2|true detectorFindJSR166LockMonitorenter=FindJSR166LockMonitorenter|true detectorFindLocalSelfAssignment2=FindLocalSelfAssignment2|true detectorFindMaskedFields=FindMaskedFields|true detectorFindMismatchedWaitOrNotify=FindMismatchedWaitOrNotify|true detectorFindNakedNotify=FindNakedNotify|true detectorFindNonSerializableStoreIntoSession=FindNonSerializableStoreIntoSession|true detectorFindNonSerializableValuePassedToWriteObject=FindNonSerializableValuePassedToWriteObject|true detectorFindNonShortCircuit=FindNonShortCircuit|true detectorFindNullDeref=FindNullDeref|true detectorFindOpenStream=FindOpenStream|true detectorFindPuzzlers=FindPuzzlers|true detectorFindRefComparison=FindRefComparison|true detectorFindReturnRef=FindReturnRef|true detectorFindRunInvocations=FindRunInvocations|true detectorFindSelfComparison=FindSelfComparison|true detectorFindSelfComparison2=FindSelfComparison2|true detectorFindSleepWithLockHeld=FindSleepWithLockHeld|true detectorFindSpinLoop=FindSpinLoop|true detectorFindSqlInjection=FindSqlInjection|true detectorFindTwoLockWait=FindTwoLockWait|true detectorFindUncalledPrivateMethods=FindUncalledPrivateMethods|true detectorFindUnconditionalWait=FindUnconditionalWait|true detectorFindUninitializedGet=FindUninitializedGet|true detectorFindUnrelatedTypesInGenericContainer=FindUnrelatedTypesInGenericContainer|true detectorFindUnreleasedLock=FindUnreleasedLock|true detectorFindUnsyncGet=FindUnsyncGet|true detectorFindUselessControlFlow=FindUselessControlFlow|true detectorHugeSharedStringConstants=HugeSharedStringConstants|true detectorIDivResultCastToDouble=IDivResultCastToDouble|true detectorIncompatMask=IncompatMask|true detectorInefficientMemberAccess=InefficientMemberAccess|false detectorInefficientToArray=InefficientToArray|true detectorInfiniteLoop=InfiniteLoop|true detectorInfiniteRecursiveLoop=InfiniteRecursiveLoop|true detectorInfiniteRecursiveLoop2=InfiniteRecursiveLoop2|false detectorInheritanceUnsafeGetResource=InheritanceUnsafeGetResource|true detectorInitializationChain=InitializationChain|true detectorInstantiateStaticClass=InstantiateStaticClass|true detectorInvalidJUnitTest=InvalidJUnitTest|true detectorIteratorIdioms=IteratorIdioms|true detectorLazyInit=LazyInit|true detectorLoadOfKnownNullValue=LoadOfKnownNullValue|true detectorMethodReturnCheck=MethodReturnCheck|true detectorMultithreadedInstanceAccess=MultithreadedInstanceAccess|true detectorMutableLock=MutableLock|true detectorMutableStaticFields=MutableStaticFields|true detectorNaming=Naming|true detectorNumberConstructor=NumberConstructor|true detectorPreferZeroLengthArrays=PreferZeroLengthArrays|true detectorPublicSemaphores=PublicSemaphores|false detectorQuestionableBooleanAssignment=QuestionableBooleanAssignment|true detectorReadReturnShouldBeChecked=ReadReturnShouldBeChecked|true detectorRedundantInterfaces=RedundantInterfaces|true detectorRuntimeExceptionCapture=RuntimeExceptionCapture|true detectorSerializableIdiom=SerializableIdiom|true detectorStartInConstructor=StartInConstructor|true detectorStaticCalendarDetector=StaticCalendarDetector|true detectorStringConcatenation=StringConcatenation|true detectorSuperfluousInstanceOf=SuperfluousInstanceOf|true detectorSuspiciousThreadInterrupted=SuspiciousThreadInterrupted|true detectorSwitchFallthrough=SwitchFallthrough|true detectorSynchronizeAndNullCheckField=SynchronizeAndNullCheckField|true detectorTestASM=TestASM|false detectorURLProblems=URLProblems|true detectorUncallableMethodOfAnonymousClass=UncallableMethodOfAnonymousClass|true detectorUnnecessaryMath=UnnecessaryMath|true detectorUnreadFields=UnreadFields|true detectorUseObjectEquals=UseObjectEquals|false detectorUselessSubclassMethod=UselessSubclassMethod|false detectorVarArgsProblems=VarArgsProblems|true detectorVolatileUsage=VolatileUsage|true detectorWaitInLoop=WaitInLoop|true detectorWrongMapIterator=WrongMapIterator|true detectorXMLFactoryBypass=XMLFactoryBypass|true detector_threshold=2 filter_settings=Medium|MALICIOUS_CODE,STYLE,BAD_PRACTICE,CORRECTNESS,I18N,PERFORMANCE,MT_CORRECTNESS|false filter_settings_neg=| |
From: Kurt R. <kr...@us...> - 2008-02-15 11:24:37
|
Update of /cvsroot/xframe/swing/src/net/sf/xframe/swing/scroll In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv25624/src/net/sf/xframe/swing/scroll Modified Files: JScrollPaneAdjuster.java AbstractScrollBinder.java Log Message: checkstyle and findbugs settings corrected, all checkstyle and findbugs problems resolved Index: AbstractScrollBinder.java =================================================================== RCS file: /cvsroot/xframe/swing/src/net/sf/xframe/swing/scroll/AbstractScrollBinder.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** AbstractScrollBinder.java 9 Apr 2005 12:42:46 -0000 1.4 --- AbstractScrollBinder.java 15 Feb 2008 11:24:37 -0000 1.5 *************** *** 182,185 **** --- 182,192 ---- } } + + /** + * @see java.lang.Object#toString() + */ + public String toString() { + return "BoundAdjustmentListener" + "(" + methodName + ")"; + } } Index: JScrollPaneAdjuster.java =================================================================== RCS file: /cvsroot/xframe/swing/src/net/sf/xframe/swing/scroll/JScrollPaneAdjuster.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** JScrollPaneAdjuster.java 4 Nov 2004 13:29:30 -0000 1.2 --- JScrollPaneAdjuster.java 15 Feb 2008 11:24:37 -0000 1.3 *************** *** 39,42 **** --- 39,45 ---- public final class JScrollPaneAdjuster implements PropertyChangeListener, Serializable { + /** serial version ID for serialization. */ + private static final long serialVersionUID = 1L; + /** The scroll pnae to be adjusted. */ private JScrollPane scrollPane; *************** *** 102,106 **** * The adjustment worker. */ ! private final class Adjuster implements ChangeListener, Runnable { /** Indicator of horizontal adjusters. */ --- 105,109 ---- * The adjustment worker. */ ! private static final class Adjuster implements ChangeListener, Runnable { /** Indicator of horizontal adjusters. */ |
From: Kurt R. <kr...@us...> - 2008-02-15 11:24:36
|
Update of /cvsroot/xframe/swing/src/net/sf/xframe/swing/table In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv25624/src/net/sf/xframe/swing/table Modified Files: DefaultColumnGroupHeaderRenderer.java JXTableColumnModel.java JXTableHeader.java KTable.java DefaultJXTabelCellRenderer.java ColumnGroupHeader.java Log Message: checkstyle and findbugs settings corrected, all checkstyle and findbugs problems resolved Index: ColumnGroupHeader.java =================================================================== RCS file: /cvsroot/xframe/swing/src/net/sf/xframe/swing/table/ColumnGroupHeader.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** ColumnGroupHeader.java 22 May 2005 21:26:14 -0000 1.4 --- ColumnGroupHeader.java 15 Feb 2008 11:24:36 -0000 1.5 *************** *** 42,45 **** --- 42,48 ---- public class ColumnGroupHeader extends JTableHeader { + /** serial version ID for serialization. */ + private static final long serialVersionUID = 1L; + /** List of columns and column groups. */ private Vector columns; Index: DefaultColumnGroupHeaderRenderer.java =================================================================== RCS file: /cvsroot/xframe/swing/src/net/sf/xframe/swing/table/DefaultColumnGroupHeaderRenderer.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** DefaultColumnGroupHeaderRenderer.java 12 Nov 2004 11:37:17 -0000 1.2 --- DefaultColumnGroupHeaderRenderer.java 15 Feb 2008 11:24:36 -0000 1.3 *************** *** 38,41 **** --- 38,44 ---- public class DefaultColumnGroupHeaderRenderer extends DefaultTableCellRenderer implements ColumnGroupHeaderRenderer { + /** serial version ID for serialization. */ + private static final long serialVersionUID = 1L; + /** * Constructor. Index: KTable.java =================================================================== RCS file: /cvsroot/xframe/swing/src/net/sf/xframe/swing/table/KTable.java,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** KTable.java 30 Jun 2005 07:07:53 -0000 1.8 --- KTable.java 15 Feb 2008 11:24:36 -0000 1.9 *************** *** 56,59 **** --- 56,62 ---- public final class KTable extends JTable { + /** serial version ID for serialization. */ + private static final long serialVersionUID = 1L; + /** Identifies a KTable that is a locked table within a {@link net.sf.xframe.swing.JXTable JXTable}. */ public static final int TYPE_NONE = 0; Index: JXTableColumnModel.java =================================================================== RCS file: /cvsroot/xframe/swing/src/net/sf/xframe/swing/table/JXTableColumnModel.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** JXTableColumnModel.java 19 May 2005 00:09:28 -0000 1.3 --- JXTableColumnModel.java 15 Feb 2008 11:24:36 -0000 1.4 *************** *** 21,24 **** --- 21,25 ---- package net.sf.xframe.swing.table; + import java.io.Serializable; import java.util.Enumeration; import java.util.NoSuchElementException; *************** *** 35,39 **** * Column model of all locked and scrollable colums. */ ! public class JXTableColumnModel implements TableColumnModel { /** the JXTable where this column model is currently used. */ --- 36,43 ---- * Column model of all locked and scrollable colums. */ ! public class JXTableColumnModel implements TableColumnModel, Serializable { ! ! /** serial version ID for serialization. */ ! private static final long serialVersionUID = 1L; /** the JXTable where this column model is currently used. */ Index: JXTableHeader.java =================================================================== RCS file: /cvsroot/xframe/swing/src/net/sf/xframe/swing/table/JXTableHeader.java,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** JXTableHeader.java 15 Feb 2008 10:43:32 -0000 1.11 --- JXTableHeader.java 15 Feb 2008 11:24:36 -0000 1.12 *************** *** 56,59 **** --- 56,62 ---- public class JXTableHeader extends JComponent implements TableColumnModelListener, Accessible { + /** serial version ID for serialization. */ + private static final long serialVersionUID = 1L; + /** * The table for which this object is the header; *************** *** 887,891 **** * @see #getMouseListeners */ ! public EventListener[] getListeners(final Class listenerType) { final EventListener l; if (listenerType == MouseListener.class) { --- 890,894 ---- * @see #getMouseListeners */ ! public synchronized EventListener[] getListeners(final Class listenerType) { final EventListener l; if (listenerType == MouseListener.class) { Index: DefaultJXTabelCellRenderer.java =================================================================== RCS file: /cvsroot/xframe/swing/src/net/sf/xframe/swing/table/DefaultJXTabelCellRenderer.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** DefaultJXTabelCellRenderer.java 9 Apr 2005 12:48:13 -0000 1.1 --- DefaultJXTabelCellRenderer.java 15 Feb 2008 11:24:36 -0000 1.2 *************** *** 38,41 **** --- 38,44 ---- public class DefaultJXTabelCellRenderer extends DefaultTableCellRenderer { + /** serial version ID for serialization. */ + private static final long serialVersionUID = 1L; + /** * @see javax.swing.table.TableCellRenderer#getTableCellRendererComponent(javax.swing.JTable, |
From: Kurt R. <kr...@us...> - 2008-02-15 11:24:36
|
Update of /cvsroot/xframe/swing/samples/net/sf/xframe/swing/demo In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv25624/samples/net/sf/xframe/swing/demo Modified Files: JXTableDemo3.java JXTableDemo4.java JXTableHeaderToolTips1.java JXTable2Applet.java Log Message: checkstyle and findbugs settings corrected, all checkstyle and findbugs problems resolved Index: JXTableDemo4.java =================================================================== RCS file: /cvsroot/xframe/swing/samples/net/sf/xframe/swing/demo/JXTableDemo4.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** JXTableDemo4.java 9 Apr 2005 15:53:42 -0000 1.1 --- JXTableDemo4.java 15 Feb 2008 11:24:37 -0000 1.2 *************** *** 39,43 **** * Our own table model. */ ! private final class MyTableModel extends DefaultTableModel { private MyTableModel(final int rowCount, final int columnCount) { --- 39,43 ---- * Our own table model. */ ! private static final class MyTableModel extends DefaultTableModel { private MyTableModel(final int rowCount, final int columnCount) { Index: JXTableDemo3.java =================================================================== RCS file: /cvsroot/xframe/swing/samples/net/sf/xframe/swing/demo/JXTableDemo3.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** JXTableDemo3.java 9 Apr 2005 15:52:56 -0000 1.3 --- JXTableDemo3.java 15 Feb 2008 11:24:37 -0000 1.4 *************** *** 39,43 **** * Our own table model. */ ! private final class MyTableModel extends DefaultTableModel { private MyTableModel(final int rowCount, final int columnCount) { --- 39,43 ---- * Our own table model. */ ! private static final class MyTableModel extends DefaultTableModel { private MyTableModel(final int rowCount, final int columnCount) { *************** *** 53,57 **** * Our own cell renderer. */ ! private class ColoredTableCellRenderer extends DefaultJXTabelCellRenderer { public Component getTableCellRendererComponent(final JXTable table, final Object value, final boolean selected, final boolean focused, final int row, final int column) { --- 53,57 ---- * Our own cell renderer. */ ! private static class ColoredTableCellRenderer extends DefaultJXTabelCellRenderer { public Component getTableCellRendererComponent(final JXTable table, final Object value, final boolean selected, final boolean focused, final int row, final int column) { Index: JXTable2Applet.java =================================================================== RCS file: /cvsroot/xframe/swing/samples/net/sf/xframe/swing/demo/JXTable2Applet.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** JXTable2Applet.java 9 Apr 2005 15:51:16 -0000 1.5 --- JXTable2Applet.java 15 Feb 2008 11:24:37 -0000 1.6 *************** *** 28,31 **** --- 28,32 ---- import java.awt.event.ActionEvent; import java.awt.event.ActionListener; + import java.io.Serializable; import java.util.ArrayList; import java.util.Date; *************** *** 403,407 **** * @see Saison */ ! private class Saisons { private List saisons = new ArrayList(); public void addSaison(final Saison saison) { saisons.add(saison); } --- 404,408 ---- * @see Saison */ ! private static class Saisons implements Serializable { private List saisons = new ArrayList(); public void addSaison(final Saison saison) { saisons.add(saison); } *************** *** 427,431 **** * A simple business model for a saison, consisting of a list of date-ranges. */ ! private class Saison { private List durations = new ArrayList(); public void addDuration(final Duration duration) { durations.add(duration); } --- 428,432 ---- * A simple business model for a saison, consisting of a list of date-ranges. */ ! private static class Saison { private List durations = new ArrayList(); public void addDuration(final Duration duration) { durations.add(duration); } *************** *** 444,448 **** * A simple business model for a duration (date-range), consisting of two dates (<tt>from</tt> and <tt>to</tt>). */ ! private class Duration { private Date from = null; private Date to = null; --- 445,449 ---- * A simple business model for a duration (date-range), consisting of two dates (<tt>from</tt> and <tt>to</tt>). */ ! private static class Duration { private Date from = null; private Date to = null; *************** *** 457,461 **** ///////////////////////////////////////// ! private class SaisonsTableModel extends DefaultTableModel { private Saisons saisons; public SaisonsTableModel(final Saisons s) { --- 458,462 ---- ///////////////////////////////////////// ! private static class SaisonsTableModel extends DefaultTableModel { private Saisons saisons; public SaisonsTableModel(final Saisons s) { *************** *** 469,474 **** } saisons.addSaison(saison); - // addColumn("from"); - // addColumn("to"); } public int getColumnCount() { --- 470,473 ---- Index: JXTableHeaderToolTips1.java =================================================================== RCS file: /cvsroot/xframe/swing/samples/net/sf/xframe/swing/demo/JXTableHeaderToolTips1.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** JXTableHeaderToolTips1.java 19 May 2005 00:09:34 -0000 1.1 --- JXTableHeaderToolTips1.java 15 Feb 2008 11:24:37 -0000 1.2 *************** *** 83,87 **** } ! private class ColumnHeaderToolTips extends MouseMotionAdapter { /** Current column whose tooltip is being displayed. --- 83,87 ---- } ! private static class ColumnHeaderToolTips extends MouseMotionAdapter { /** Current column whose tooltip is being displayed. |
From: Kurt R. <kr...@us...> - 2008-02-15 11:24:36
|
Update of /cvsroot/xframe/swing/src/net/sf/xframe/swing In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv25624/src/net/sf/xframe/swing Modified Files: JXTable.java Log Message: checkstyle and findbugs settings corrected, all checkstyle and findbugs problems resolved Index: JXTable.java =================================================================== RCS file: /cvsroot/xframe/swing/src/net/sf/xframe/swing/JXTable.java,v retrieving revision 1.32 retrieving revision 1.33 diff -C2 -d -r1.32 -r1.33 *** JXTable.java 25 Apr 2006 20:13:28 -0000 1.32 --- JXTable.java 15 Feb 2008 11:24:37 -0000 1.33 *************** *** 95,98 **** --- 95,101 ---- CellEditorListener, Accessible { + /** serial version ID for serialization. */ + private static final long serialVersionUID = 1L; + /** * Used to set the horizontal scroll bar policy so that *************** *** 1992,1996 **** */ public void setFont(final Font f) { - final double f12 = 1d + (2d / (2d + 2d + 2d + 2d + 2d)); // 1.2 lockedTable.setFont(f); scrollTable.setFont(f); --- 1995,1998 ---- *************** *** 2001,2005 **** height = (int) (rectangle2D.getHeight() + 1); } else { ! height = (int) (f.getSize() * f12 + 2 * lockedTable.getRowMargin()); } lockedTable.setRowHeight(height); --- 2003,2007 ---- height = (int) (rectangle2D.getHeight() + 1); } else { ! height = (int) (f.getSize() * 1.2 + 2 * lockedTable.getRowMargin()); } lockedTable.setRowHeight(height); *************** *** 2091,2094 **** --- 2093,2098 ---- */ private final class ScrollFirstAction extends AbstractAction { + /** serial version ID for serialization. */ + private static final long serialVersionUID = 1L; /** the original action. */ private final Action originalAction; *************** *** 2114,2117 **** --- 2118,2123 ---- */ private final class LockedLastAction extends AbstractAction { + /** serial version ID for serialization. */ + private static final long serialVersionUID = 1L; /** the original action. */ private final Action originalAction; *************** *** 2138,2141 **** --- 2144,2149 ---- */ private final class LockedNextAction extends AbstractAction { + /** serial version ID for serialization. */ + private static final long serialVersionUID = 1L; /** the original action. */ private final Action originalAction; *************** *** 2161,2164 **** --- 2169,2174 ---- */ private final class ScrollNextAction extends AbstractAction { + /** serial version ID for serialization. */ + private static final long serialVersionUID = 1L; /** the original action. */ private final Action originalAction; *************** *** 2184,2187 **** --- 2194,2199 ---- */ private final class ScrollPreviousAction extends AbstractAction { + /** serial version ID for serialization. */ + private static final long serialVersionUID = 1L; /** the original action. */ private final Action originalAction; *************** *** 2207,2210 **** --- 2219,2224 ---- */ private final class LockedPreviousAction extends AbstractAction { + /** serial version ID for serialization. */ + private static final long serialVersionUID = 1L; /** the original action. */ private final Action originalAction; *************** *** 2238,2241 **** --- 2252,2258 ---- * the column model of the <code>JTableHeader</code> to <code>columnModel</code>. * + * <p>If a JXTable should be serializable, the provided table model must + * also be serializable.</p> + * * @param cm the new data source for this table * @exception IllegalArgumentException if <code>columnModel</code> is <code>null</code> *************** *** 3016,3020 **** * @see #getMouseListeners */ ! public EventListener[] getListeners(final Class listenerType) { final EventListener l; if (listenerType == MouseListener.class) { --- 3033,3037 ---- * @see #getMouseListeners */ ! public synchronized EventListener[] getListeners(final Class listenerType) { final EventListener l; if (listenerType == MouseListener.class) { |
From: Kurt R. <kr...@us...> - 2008-02-15 10:43:42
|
Update of /cvsroot/xframe/swing In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv8299 Modified Files: .classpath Log Message: absolete src folder scatchpad removed Index: .classpath =================================================================== RCS file: /cvsroot/xframe/swing/.classpath,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** .classpath 3 Aug 2004 17:59:12 -0000 1.2 --- .classpath 15 Feb 2008 10:43:45 -0000 1.3 *************** *** 4,8 **** <classpathentry kind="src" path="samples"/> <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> - <classpathentry kind="src" path="scratchpad"/> <classpathentry kind="output" path="classes"/> </classpath> --- 4,7 ---- |
From: Kurt R. <kr...@us...> - 2008-02-15 10:43:28
|
Update of /cvsroot/xframe/swing/src/net/sf/xframe/swing/table In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv8283/src/net/sf/xframe/swing/table Modified Files: JXTableHeader.java Log Message: patch applied [1893896] stack overflow when getting table header tooltip Index: JXTableHeader.java =================================================================== RCS file: /cvsroot/xframe/swing/src/net/sf/xframe/swing/table/JXTableHeader.java,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** JXTableHeader.java 30 Jun 2005 07:07:53 -0000 1.10 --- JXTableHeader.java 15 Feb 2008 10:43:32 -0000 1.11 *************** *** 56,60 **** public class JXTableHeader extends JComponent implements TableColumnModelListener, Accessible { ! /** * The table for which this object is the header; * the default is <code>null</code>. --- 56,60 ---- public class JXTableHeader extends JComponent implements TableColumnModelListener, Accessible { ! /** * The table for which this object is the header; * the default is <code>null</code>. *************** *** 1053,1057 **** */ public String getToolTipText(final MouseEvent e) { ! if (e.getY() < lockedHeader.getWidth()) { return lockedHeader.getToolTipText(e); } else { --- 1053,1057 ---- */ public String getToolTipText(final MouseEvent e) { ! if (e.getX() < lockedHeader.getWidth()) { return lockedHeader.getToolTipText(e); } else { |
From: Kurt R. <kr...@us...> - 2007-10-26 00:04:51
|
Update of /cvsroot/xframe/xsddoc/src/net/sf/xframe/xsddoc In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv6775/src/net/sf/xframe/xsddoc Modified Files: Processor.java Log Message: fix for bug [1609037] param doctitle should be optional Index: Processor.java =================================================================== RCS file: /cvsroot/xframe/xsddoc/src/net/sf/xframe/xsddoc/Processor.java,v retrieving revision 1.43 retrieving revision 1.44 diff -C2 -d -r1.43 -r1.44 *** Processor.java 25 Oct 2007 23:50:31 -0000 1.43 --- Processor.java 26 Oct 2007 00:04:53 -0000 1.44 *************** *** 1123,1126 **** --- 1123,1129 ---- private void setParameters(final Transformer transformer) { transformer.setParameter("schemaLocation", this.mainSchemaLocation); + if (this.doctitle != null) { + this.doctitle = ""; + } transformer.setParameter("doctitle", this.doctitle); if (this.header != null) { |
From: Kurt R. <kr...@us...> - 2007-10-25 23:55:06
|
Update of /cvsroot/xframe/swing In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv3340 Modified Files: project.xml Log Message: repository locations fixed Index: project.xml =================================================================== RCS file: /cvsroot/xframe/swing/project.xml,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** project.xml 30 Jun 2005 07:08:46 -0000 1.5 --- project.xml 25 Oct 2007 23:55:09 -0000 1.6 *************** *** 54,60 **** <issueTrackingUrl>http://sourceforge.net/tracker/?group_id=48863&atid=454391</issueTrackingUrl> <repository> ! <connection>scm:cvs:pserver:ano...@cv...:/cvsroot/xframe:swing</connection> ! <developerConnection>scm:dev...@cv...:/cvsroot/xframe:swing</developerConnection> ! <url>http://cvs.sourceforge.net/viewcvs.py/xframe/swing/</url> </repository> <siteAddress>xframe.sourceforge.net</siteAddress> --- 54,60 ---- <issueTrackingUrl>http://sourceforge.net/tracker/?group_id=48863&atid=454391</issueTrackingUrl> <repository> ! <connection>scm:cvs:pserver:ano...@xf...:/cvsroot/xframe:swing</connection> ! <developerConnection>scm:dev...@xf...:/cvsroot/xframe:swing</developerConnection> ! <url>http://xframe.cvs.sourceforge.net/xframe/swing/</url> </repository> <siteAddress>xframe.sourceforge.net</siteAddress> |
From: Kurt R. <kr...@us...> - 2007-10-25 23:51:31
|
Update of /cvsroot/xframe/xsddoc In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv1848 Modified Files: project.xml Log Message: repository locations fixed Index: project.xml =================================================================== RCS file: /cvsroot/xframe/xsddoc/project.xml,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** project.xml 22 Oct 2005 00:49:40 -0000 1.17 --- project.xml 25 Oct 2007 23:51:34 -0000 1.18 *************** *** 70,76 **** <issueTrackingUrl>http://sourceforge.net/tracker/?group_id=48863&atid=454391</issueTrackingUrl> <repository> ! <connection>scm:cvs:pserver:ano...@cv...:/cvsroot/xframe:xsddoc</connection> ! <developerConnection>scm:dev...@cv...:/cvsroot/xframe:xsddoc</developerConnection> ! <url>http://cvs.sourceforge.net/viewcvs.py/xframe/xsddoc/</url> </repository> <siteAddress>xframe.sourceforge.net</siteAddress> --- 70,76 ---- <issueTrackingUrl>http://sourceforge.net/tracker/?group_id=48863&atid=454391</issueTrackingUrl> <repository> ! <connection>scm:cvs:pserver:ano...@xf...:/cvsroot/xframe:xsddoc</connection> ! <developerConnection>scm:dev...@xf...:/cvsroot/xframe:xsddoc</developerConnection> ! <url>http://xframe.cvs.sourceforge.net/xframe/xsddoc/</url> </repository> <siteAddress>xframe.sourceforge.net</siteAddress> |
From: Kurt R. <kr...@us...> - 2007-10-25 23:51:20
|
Update of /cvsroot/xframe/xsddoc In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv1835 Modified Files: project.properties Log Message: repository locations fixed Index: project.properties =================================================================== RCS file: /cvsroot/xframe/xsddoc/project.properties,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** project.properties 15 Feb 2006 00:40:41 -0000 1.11 --- project.properties 25 Oct 2007 23:51:21 -0000 1.12 *************** *** 162,165 **** --- 162,167 ---- maven.repo.central.directory = /www/www.apache.org/dist/java-repository/ + maven.repo.remote = http://repo1.maven.org/maven/ + # ------------------------------------------------------------------- # P L U G I N P R O P E R I E S |
From: Kurt R. <kr...@us...> - 2007-10-25 23:50:29
|
Update of /cvsroot/xframe/xsddoc/src/net/sf/xframe/xsddoc/xslt In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv1355/src/net/sf/xframe/xsddoc/xslt Modified Files: component.xsl xml2html.xsl Log Message: applied patch [1639999] xsddoc: Display source file name Index: xml2html.xsl =================================================================== RCS file: /cvsroot/xframe/xsddoc/src/net/sf/xframe/xsddoc/xslt/xml2html.xsl,v retrieving revision 1.40 retrieving revision 1.41 diff -C2 -d -r1.40 -r1.41 *** xml2html.xsl 24 Nov 2006 20:52:29 -0000 1.40 --- xml2html.xsl 25 Oct 2007 23:50:31 -0000 1.41 *************** *** 1722,1726 **** <a name="source"/> <dl> ! <dt>Source</dt> <dd> <xsl:copy-of select="*"/> --- 1722,1732 ---- <a name="source"/> <dl> ! <dt>Source (from ! <tt> ! <xsl:call-template name="source-location"> ! <xsl:with-param name="source" select="@from" /> ! </xsl:call-template> ! </tt>) ! </dt> <dd> <xsl:copy-of select="*"/> *************** *** 1729,1732 **** --- 1735,1761 ---- </xsl:template> <!-- + Source URL or file name containing the documented schema element. + If the element came from a file, don't output the directory path + since it probably won't be meaningful. + --> + <xsl:template name="source-location"> + <xsl:param name="source" /> + <xsl:choose> + <xsl:when test="substring-after($source, '://') = '' + or substring-after($source, 'file://') != '' " > + <xsl:variable name="normalized-source" + select="translate($source,'\','/')" /> + <xsl:call-template name="last-substring"> + <xsl:with-param name="string" select="$normalized-source" /> + <xsl:with-param name="substring" select="'/'" /> + </xsl:call-template> + </xsl:when> + <xsl:otherwise> + <xsl:value-of select="$source" /> + </xsl:otherwise> + </xsl:choose> + </xsl:template> + + <!-- Format documentation as a short abstract (upto the first dot). If there is xhtml or other unknown XML inside, pass-thru this XML for later formatting. Index: component.xsl =================================================================== RCS file: /cvsroot/xframe/xsddoc/src/net/sf/xframe/xsddoc/xslt/component.xsl,v retrieving revision 1.31 retrieving revision 1.32 diff -C2 -d -r1.31 -r1.32 *** component.xsl 24 Nov 2006 20:52:29 -0000 1.31 --- component.xsl 25 Oct 2007 23:50:31 -0000 1.32 *************** *** 43,49 **** <xsl:include href="util.xsl"/> <!-- ! The location of the schema to extract from. --> ! <xsl:param name="schemaLocation" select="'S:\BEA\XML\xsddoc\samples\stress\stress.xsd'"/> <!-- Descriptive name of the schema. --- 43,53 ---- <xsl:include href="util.xsl"/> <!-- ! The location of the top-level schema. --> ! <xsl:param name="schemaLocation" /> ! <!-- ! The location of the current schema. ! --> ! <xsl:param name="source" /> <!-- Descriptive name of the schema. *************** *** 258,262 **** </xsl:if> <xsl:apply-templates select="." mode="collectDocs"/> ! <doc:source> <xsl:apply-templates select="." mode="xmldoc"> <xsl:with-param name="children" select="*"/> --- 262,266 ---- </xsl:if> <xsl:apply-templates select="." mode="collectDocs"/> ! <doc:source from="{$source}"> <xsl:apply-templates select="." mode="xmldoc"> <xsl:with-param name="children" select="*"/> |
From: Kurt R. <kr...@us...> - 2007-10-25 23:50:29
|
Update of /cvsroot/xframe/xsddoc/src/net/sf/xframe/xsddoc In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv1355/src/net/sf/xframe/xsddoc Modified Files: Processor.java Log Message: applied patch [1639999] xsddoc: Display source file name Index: Processor.java =================================================================== RCS file: /cvsroot/xframe/xsddoc/src/net/sf/xframe/xsddoc/Processor.java,v retrieving revision 1.42 retrieving revision 1.43 diff -C2 -d -r1.42 -r1.43 *** Processor.java 25 Apr 2006 20:17:57 -0000 1.42 --- Processor.java 25 Oct 2007 23:50:31 -0000 1.43 *************** *** 809,812 **** --- 809,813 ---- } try { + tComponent.setParameter("source", schemaLocation); if (xml) { transform(source, tComponent, component, |
From: Kurt R. <kr...@us...> - 2006-11-24 20:52:31
|
Update of /cvsroot/xframe/xsddoc/src/net/sf/xframe/xsddoc/xslt In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv26354/src/net/sf/xframe/xsddoc/xslt Modified Files: model.xsl component.xsl xml2html.xsl Log Message: applied patch [1601824] xsddoc: improved enumeration support Index: xml2html.xsl =================================================================== RCS file: /cvsroot/xframe/xsddoc/src/net/sf/xframe/xsddoc/xslt/xml2html.xsl,v retrieving revision 1.39 retrieving revision 1.40 diff -C2 -d -r1.39 -r1.40 *** xml2html.xsl 19 Sep 2005 21:09:07 -0000 1.39 --- xml2html.xsl 24 Nov 2006 20:52:29 -0000 1.40 *************** *** 5,9 **** Copyright (c) 2003 Kurt Riede. ! This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public --- 5,9 ---- Copyright (c) 2003 Kurt Riede. ! This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public *************** *** 412,416 **** <xsl:choose> <xsl:when test="contains(normalize-space(@name), '. ')"> ! <xsl:value-of select="substring-before(normalize-space(@name), concat('. ', @tag))"/> </xsl:when> <xsl:otherwise> --- 412,416 ---- <xsl:choose> <xsl:when test="contains(normalize-space(@name), '. ')"> ! <xsl:value-of select="substring-before(normalize-space(@name), concat('. ', @tag))"/> </xsl:when> <xsl:otherwise> *************** *** 1019,1022 **** --- 1019,1051 ---- </xsl:apply-templates> </xsl:if> + <xsl:if test="doc:restriction/doc:enumeration"> + <br/> + <a name="values"/> + <table border="1" cellpadding="3" cellspacing="0" width="100%"> + <tr bgcolor="#CCCCFF" class="TableHeadingColor"> + <td colspan="2"> + <font size="+2"> + <b>Value Summary</b> + </font> + </td> + </tr> + <xsl:apply-templates select="doc:restriction/doc:enumeration" mode="summary"> + <xsl:sort select="@name"/> + </xsl:apply-templates> + </table> + <br/> + <table border="1" cellpadding="3" cellspacing="0" width="100%"> + <tr bgcolor="#CCCCFF" class="TableHeadingColor"> + <td colspan="2"> + <font size="+2"> + <b>Value Detail</b> + </font> + </td> + </tr> + </table> + <xsl:apply-templates select="doc:restriction/doc:enumeration" mode="detail"> + <xsl:sort select="@name"/> + </xsl:apply-templates> + </xsl:if> </xsl:template> <!-- *************** *** 1746,1750 **** <xsl:choose> <xsl:when test="contains(., '.')"> ! </xsl:when> <xsl:otherwise> <xsl:call-template name="short-documentation"> --- 1775,1779 ---- <xsl:choose> <xsl:when test="contains(., '.')"> ! </xsl:when> <xsl:otherwise> <xsl:call-template name="short-documentation"> Index: model.xsl =================================================================== RCS file: /cvsroot/xframe/xsddoc/src/net/sf/xframe/xsddoc/xslt/model.xsl,v retrieving revision 1.31 retrieving revision 1.32 diff -C2 -d -r1.31 -r1.32 *** model.xsl 26 Feb 2005 14:27:12 -0000 1.31 --- model.xsl 24 Nov 2006 20:52:29 -0000 1.32 *************** *** 568,571 **** --- 568,585 ---- </xsl:template> <!-- + enumeration model. + --> + <xsl:template match="xs:enumeration" mode="model"> + <xsl:param name="prohibited" select="string('')"/> + <xsl:element name="doc:{local-name()}"> + <xsl:apply-templates select="@*" mode="model"/> + <xsl:for-each select="xs:annotation/xs:documentation"> + <doc:documentation> + <xsl:copy-of select="* | text()"/> + </doc:documentation> + </xsl:for-each> + </xsl:element> + </xsl:template> + <!-- default elements model. --> Index: component.xsl =================================================================== RCS file: /cvsroot/xframe/xsddoc/src/net/sf/xframe/xsddoc/xslt/component.xsl,v retrieving revision 1.30 retrieving revision 1.31 diff -C2 -d -r1.30 -r1.31 *** component.xsl 22 Apr 2005 14:47:44 -0000 1.30 --- component.xsl 24 Nov 2006 20:52:29 -0000 1.31 *************** *** 274,278 **** </doc:documentation> </xsl:for-each> ! <xsl:apply-templates select="*[((local-name() != 'attribute') and (local-name() != 'element')) or (@name = '')]" mode="collectDocs"/> </xsl:template> <!-- --- 274,278 ---- </doc:documentation> </xsl:for-each> ! <xsl:apply-templates select="*[((local-name() != 'attribute') and (local-name() != 'element') and (local-name() != 'enumeration')) or (@name = '')]" mode="collectDocs"/> </xsl:template> <!-- |
From: Kurt R. <kr...@us...> - 2006-11-24 20:47:03
|
Update of /cvsroot/xframe/xsddoc/bin In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv23429/bin Modified Files: xsddoc.bat Log Message: allow more memory Index: xsddoc.bat =================================================================== RCS file: /cvsroot/xframe/xsddoc/bin/xsddoc.bat,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** xsddoc.bat 30 Sep 2004 11:24:06 -0000 1.10 --- xsddoc.bat 24 Nov 2006 20:47:02 -0000 1.11 *************** *** 43,47 **** for %%i in ("%XSDDOC_HOME%\lib\*.jar") do call "%XSDDOC_HOME%\bin\lcp.bat" %%i ! "%JAVA_HOME%\bin\java.exe" -classpath "%LOCALCLASSPATH%" net.sf.xframe.xsddoc.Main %CMD_LINE_ARGS% set LOCALCLASSPATH= --- 43,47 ---- for %%i in ("%XSDDOC_HOME%\lib\*.jar") do call "%XSDDOC_HOME%\bin\lcp.bat" %%i ! "%JAVA_HOME%\bin\java.exe" -Xmx512m -classpath "%LOCALCLASSPATH%" net.sf.xframe.xsddoc.Main %CMD_LINE_ARGS% set LOCALCLASSPATH= |
From: Kurt R. <kr...@us...> - 2006-11-24 20:37:55
|
Update of /cvsroot/xframe/xsddoc/xdocs In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv19521/xdocs Modified Files: site.jsl Log Message: allow image ads Index: site.jsl =================================================================== RCS file: /cvsroot/xframe/xsddoc/xdocs/site.jsl,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** site.jsl 15 Feb 2006 00:38:53 -0000 1.5 --- site.jsl 24 Nov 2006 20:37:49 -0000 1.6 *************** *** 2,6 **** <!-- * ======================================================================== ! * * Copyright 2004 The Apache Software Foundation. * --- 2,6 ---- <!-- * ======================================================================== ! * * Copyright 2004 The Apache Software Foundation. * *************** *** 8,14 **** * you may not use this file except in compliance with the License. * You may obtain a copy of the License at ! * * http://www.apache.org/licenses/LICENSE-2.0 ! * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, --- 8,14 ---- * you may not use this file except in compliance with the License. * You may obtain a copy of the License at ! * * http://www.apache.org/licenses/LICENSE-2.0 ! * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, *************** *** 16,20 **** * See the License for the specific language governing permissions and * limitations under the License. ! * * ======================================================================== --> --- 16,20 ---- * See the License for the specific language governing permissions and * limitations under the License. ! * * ======================================================================== --> *************** *** 49,56 **** <title>${pom.name} - ${docTitle}</title> </x:if> ! <j:set var="themeUrl" value="${maven.xdoc.theme.url}"/> <util:file var="projectCssFile" name="${maven.docs.src}/style/project.css"/> ! <style type="text/css" media="all"><![CDATA[ @import url("${relativePath}/style/maven-base.css"); --- 49,56 ---- <title>${pom.name} - ${docTitle}</title> </x:if> ! <j:set var="themeUrl" value="${maven.xdoc.theme.url}"/> <util:file var="projectCssFile" name="${maven.docs.src}/style/project.css"/> ! <style type="text/css" media="all"><![CDATA[ @import url("${relativePath}/style/maven-base.css"); *************** *** 66,70 **** ]]></j:if> </style> ! <link rel="stylesheet" type="text/css" href="${relativePath}/style/print.css" media="print"/> <meta http-equiv="Content-Type" content="text/html; charset=${outputencoding}"/> --- 66,70 ---- ]]></j:if> </style> ! <link rel="stylesheet" type="text/css" href="${relativePath}/style/print.css" media="print"/> <meta http-equiv="Content-Type" content="text/html; charset=${outputencoding}"/> *************** *** 73,79 **** <meta name="email" content="${author.attribute('email').value}"/> </x:forEach> ! <jsl:applyTemplates select="$doc/document/head/*"/> ! </head> --- 73,79 ---- <meta name="email" content="${author.attribute('email').value}"/> </x:forEach> ! <jsl:applyTemplates select="$doc/document/head/*"/> ! </head> *************** *** 169,173 **** <div class="clear"><hr /></div> </div> ! <!-- left column start --> <div id="leftColumn"> --- 169,173 ---- <div class="clear"><hr /></div> </div> ! <!-- left column start --> <div id="leftColumn"> *************** *** 214,218 **** </div> <!-- left column end --> ! <!-- body start --> <div id="bodyColumn"> --- 214,218 ---- </div> <!-- left column end --> ! <!-- body start --> <div id="bodyColumn"> *************** *** 227,233 **** <div class="clear"><hr /></div> <!-- body end --> ! ! <!-- footer start --> ! <div id="footer"> <jsl:applyTemplates select="$nav/body/footer"/> <div class="xright"> --- 227,233 ---- <div class="clear"><hr /></div> <!-- body end --> ! ! <!-- footer start --> ! <div id="footer"> <jsl:applyTemplates select="$nav/body/footer"/> <div class="xright"> *************** *** 251,255 **** <div class="clear"><hr /></div> </div> ! <!-- footer end --> </x:element> </html> --- 251,255 ---- <div class="clear"><hr /></div> </div> ! <!-- footer end --> </x:element> </html> *************** *** 356,359 **** --- 356,360 ---- google_ad_height = 600; google_ad_format = "160x600_as"; + google_ad_type = "image"; google_ad_channel =""; google_color_border = "294563"; *************** *** 375,380 **** google_ad_height = 90; google_ad_format = "728x90_as"; google_ad_channel =""; - google_ad_type = "text"; google_color_border = "294563"; google_color_bg = "CFDCED"; --- 376,381 ---- google_ad_height = 90; google_ad_format = "728x90_as"; + google_ad_type = "image"; google_ad_channel =""; google_color_border = "294563"; google_color_bg = "CFDCED"; *************** *** 418,422 **** <div class="source"><pre><jsl:applyTemplates /></pre></div> </jsl:template> ! <!-- preserve whitespace in the following elements --> <jsl:template match="pre | script | style" trim="true"> --- 419,423 ---- <div class="source"><pre><jsl:applyTemplates /></pre></div> </jsl:template> ! <!-- preserve whitespace in the following elements --> <jsl:template match="pre | script | style" trim="true"> *************** *** 429,433 **** </x:element> </jsl:template> ! <!-- xhtml fixup: add missing alt attribute for images --> <jsl:template match="img" trim="true"> --- 430,434 ---- </x:element> </jsl:template> ! <!-- xhtml fixup: add missing alt attribute for images --> <jsl:template match="img" trim="true"> *************** *** 492,496 **** </div> </jsl:template> ! <!-- a goal --> <jsl:template match="goal" trim="true"> --- 493,497 ---- </div> </jsl:template> ! <!-- a goal --> <jsl:template match="goal" trim="true"> *************** *** 503,507 **** </j:otherwise> </j:choose> ! <x:element name="tr"><j:whitespace trim="true"> <x:attribute name="class">${rowMode}</x:attribute> --- 504,508 ---- </j:otherwise> </j:choose> ! <x:element name="tr"><j:whitespace trim="true"> <x:attribute name="class">${rowMode}</x:attribute> *************** *** 510,515 **** <td ><jsl:applyTemplates select="description" /></td> </j:whitespace></x:element> ! </jsl:template> ! <jsl:template match="description"> <jsl:applyTemplates trim="false"/> --- 511,516 ---- <td ><jsl:applyTemplates select="description" /></td> </j:whitespace></x:element> ! </jsl:template> ! <jsl:template match="description"> <jsl:applyTemplates trim="false"/> *************** *** 523,527 **** <j:when test="${attr.name == 'href'}"> <j:set var="href" value="${attr.value}" /> ! <j:choose> <j:when test="${href.startsWith('#')}"> <x:attribute name="href"> --- 524,528 ---- <j:when test="${attr.name == 'href'}"> <j:set var="href" value="${attr.value}" /> ! <j:choose> <j:when test="${href.startsWith('#')}"> <x:attribute name="href"> *************** *** 533,537 **** <x:attribute name="class">externalLink</x:attribute> <x:attribute name="title">External Link</x:attribute> ! </j:when> <j:otherwise> <x:attribute name="href">${href}</x:attribute> --- 534,538 ---- <x:attribute name="class">externalLink</x:attribute> <x:attribute name="title">External Link</x:attribute> ! </j:when> <j:otherwise> <x:attribute name="href">${href}</x:attribute> *************** *** 544,548 **** <x:attribute name="class">newWindow</x:attribute> <x:attribute name="title">New Window</x:attribute> ! </j:if> <x:attribute name="target">${target}</x:attribute> </j:when> --- 545,549 ---- <x:attribute name="class">newWindow</x:attribute> <x:attribute name="title">New Window</x:attribute> ! </j:if> <x:attribute name="target">${target}</x:attribute> </j:when> *************** *** 560,567 **** </x:element> </jsl:template> ! <!-- copy any other elements through --> <jsl:template match="*" trim="false"><jsl:copy trim="false"><jsl:applyTemplates trim="false"/></jsl:copy></jsl:template> ! <!-- element values don't pass through as text --> <jsl:template match="@*"/> --- 561,568 ---- </x:element> </jsl:template> ! <!-- copy any other elements through --> <jsl:template match="*" trim="false"><jsl:copy trim="false"><jsl:applyTemplates trim="false"/></jsl:copy></jsl:template> ! <!-- element values don't pass through as text --> <jsl:template match="@*"/> |
From: Kurt R. <kr...@us...> - 2006-04-25 20:18:00
|
Update of /cvsroot/xframe/xsddoc/src/net/sf/xframe/xsddoc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4696/src/net/sf/xframe/xsddoc Modified Files: Processor.java Log Message: minor fix for empty css argument Index: Processor.java =================================================================== RCS file: /cvsroot/xframe/xsddoc/src/net/sf/xframe/xsddoc/Processor.java,v retrieving revision 1.41 retrieving revision 1.42 diff -C2 -d -r1.41 -r1.42 *** Processor.java 9 May 2005 22:48:26 -0000 1.41 --- Processor.java 25 Apr 2006 20:17:57 -0000 1.42 *************** *** 667,671 **** } FileUtil.copyFile(getResource("/" + this.resourcePrefix + "/css/stylesheet.css"), out + FILE_SEP + "stylesheet.css"); ! if (css != null) { try { FileUtil.copyFile(css, out + FILE_SEP + "stylesheet.css"); --- 667,671 ---- } FileUtil.copyFile(getResource("/" + this.resourcePrefix + "/css/stylesheet.css"), out + FILE_SEP + "stylesheet.css"); ! if (css != null && !"".equals(css)) { try { FileUtil.copyFile(css, out + FILE_SEP + "stylesheet.css"); |
From: Kurt R. <kr...@us...> - 2006-04-25 20:13:32
|
Update of /cvsroot/xframe/swing/src/net/sf/xframe/swing In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1480/src/net/sf/xframe/swing Modified Files: JXTable.java Log Message: TODO comment removed Index: JXTable.java =================================================================== RCS file: /cvsroot/xframe/swing/src/net/sf/xframe/swing/JXTable.java,v retrieving revision 1.31 retrieving revision 1.32 diff -C2 -d -r1.31 -r1.32 *** JXTable.java 23 Aug 2005 23:16:25 -0000 1.31 --- JXTable.java 25 Apr 2006 20:13:28 -0000 1.32 *************** *** 1595,1599 **** * where 0 is the first column * @return the <code>Component</code> under the event location - * TODO handle the renderer correctly across the KTables */ public Component prepareRenderer(final TableCellRenderer renderer, final int row, final int column) { --- 1595,1598 ---- |
From: bforge <bf...@us...> - 2006-02-15 00:59:39
|
Update of /cvsroot/xframe/xsddoc/src/net/sf/xframe/xsddoc/util In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9235/src/net/sf/xframe/xsddoc/util Modified Files: FileUtil.java Log Message: Fix for bug [1362775] Wrong Path for included Schema's Index: FileUtil.java =================================================================== RCS file: /cvsroot/xframe/xsddoc/src/net/sf/xframe/xsddoc/util/FileUtil.java,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** FileUtil.java 26 Feb 2005 14:03:38 -0000 1.8 --- FileUtil.java 15 Feb 2006 00:59:32 -0000 1.9 *************** *** 38,44 **** private static final int COPY_BUFFER_SIZE = 8192; - /** file separator from <code>File.separator</code>. */ - private static final String FILE_SEP = File.separator; - /** * Private default constructor to prevent instantiation. --- 38,41 ---- *************** *** 123,127 **** */ public static String getLocation(final String baseFile, final String file) { ! if (baseFile == null || file.indexOf(':') > 0) { return file; } --- 120,127 ---- */ public static String getLocation(final String baseFile, final String file) { ! if (baseFile == null) { ! return file; ! } ! if (new File(file).isAbsolute()) { return file; } *************** *** 130,134 **** return file; } ! return parent + FILE_SEP + file; } } --- 130,134 ---- return file; } ! return new File(parent, file).getAbsolutePath(); } } |
From: bforge <bf...@us...> - 2006-02-15 00:41:25
|
Update of /cvsroot/xframe/maven-xsddoc-plugin/xdocs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4189/xdocs Modified Files: site.jsl index.xml Log Message: minor documentation changes Index: site.jsl =================================================================== RCS file: /cvsroot/xframe/maven-xsddoc-plugin/xdocs/site.jsl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** site.jsl 9 May 2005 22:48:37 -0000 1.3 --- site.jsl 15 Feb 2006 00:41:16 -0000 1.4 *************** *** 1,4 **** <?xml version="1.0"?> - <!-- * ======================================================================== --- 1,3 ---- *************** *** 108,111 **** --- 107,114 ---- </j:if> + <a href="http://www.buldocs.com/xnsdoc/promotion.html" id="projectLogo"> + <img src="http://www.buldocs.com/xnsdoc/images/adtop-768x60.gif"/> + </a> + <!-- project logo and link --> <j:set var="logo" value="${pom.logo}"/> *************** *** 116,129 **** <j:set var="image" value="${relativePath}${image}"/> </j:if> ! ! <a href="${pom.url}" id="projectLogo"> <img src="${image}" alt="${pom.name}"/> ! </a> </j:if> ! <j:if test="${logo == null or logo == ''}"> <a href="${pom.url}" id="projectLogo"> <span>${pom.name}</span> </a> ! </j:if> <div class="clear"><hr /></div> </div> --- 119,131 ---- <j:set var="image" value="${relativePath}${image}"/> </j:if> ! <!-- a href="${pom.url}" id="projectLogo"> <img src="${image}" alt="${pom.name}"/> ! </a --> </j:if> ! <!-- j:if test="${logo == null or logo == ''}"> <a href="${pom.url}" id="projectLogo"> <span>${pom.name}</span> </a> ! </j:if --> <div class="clear"><hr /></div> </div> *************** *** 133,136 **** --- 135,141 ---- <j:if test="${date == 'left'}"> <div class="xleft"> + <a href="${pom.url}"> + <b><span>${pom.name}</span></b> + </a> - Last published: ${build.date} <j:if test="${!empty(version)}"> *************** *** 188,195 **** </div> </j:if> ! <x:if select="$nav"> ! <jsl:applyTemplates select="$nav/body/search"/> ! <jsl:applyTemplates select="$nav/body/googleAdsenseLeft"/> ! </x:if> <!-- Standard Maven Navigation --> <j:set var="fileName">${file}</j:set> --- 193,198 ---- </div> </j:if> ! <jsl:applyTemplates select="$nav/body/search"/> ! <jsl:applyTemplates select="$nav/body/googleAdsenseLeft"/> <!-- Standard Maven Navigation --> <j:set var="fileName">${file}</j:set> *************** *** 215,219 **** <div id="bodyColumn"> <div class="contentBox"> ! <jsl:applyTemplates select="$nav/body/googleAdsenseTop"/> <!-- FIXME really shouldn't use $doc, but jelly loses it's context again --> <jsl:applyTemplates select="$doc/document/body/section"/> --- 218,222 ---- <div id="bodyColumn"> <div class="contentBox"> ! <!-- jsl:applyTemplates select="$nav/body/googleAdsenseTop"/ --> <!-- FIXME really shouldn't use $doc, but jelly loses it's context again --> <jsl:applyTemplates select="$doc/document/body/section"/> *************** *** 329,336 **** <div id="search"> <h5>Search xframe</h5> ! <form method="get" action="http://www.google.com/custom" target="_top"> ! <a class="navlink" href="http://www.google.com"> ! <img src="http://www.google.com/logos/Logo_25wht.gif" width="75" height="32" alt="Google" /> ! </a> <input type="text" name="q" id="q" size="15" maxlength="255" value=""/> <input type="submit" name="sa" id="btnG" value="Go"/> --- 332,336 ---- <div id="search"> <h5>Search xframe</h5> ! <center><form method="get" action="http://www.google.com/custom" target="_top"> <input type="text" name="q" id="q" size="15" maxlength="255" value=""/> <input type="submit" name="sa" id="btnG" value="Go"/> *************** *** 343,347 **** <input type="hidden" name="cof" value="GALT:#008000;GL:1;DIV:#336699;VLC:663399;AH:center;BGC:FFFFFF;LBGC:336699;ALC:0000FF;LC:0000FF;T:000000;GFNT:0000FF;GIMP:0000FF;FORID:1;"/> <input type="hidden" name="hl" value="en"/> ! </form> </div> </jsl:template> --- 343,347 ---- <input type="hidden" name="cof" value="GALT:#008000;GL:1;DIV:#336699;VLC:663399;AH:center;BGC:FFFFFF;LBGC:336699;ALC:0000FF;LC:0000FF;T:000000;GFNT:0000FF;GIMP:0000FF;FORID:1;"/> <input type="hidden" name="hl" value="en"/> ! </form></center> </div> </jsl:template> Index: index.xml =================================================================== RCS file: /cvsroot/xframe/maven-xsddoc-plugin/xdocs/index.xml,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** index.xml 16 Oct 2005 00:16:34 -0000 1.4 --- index.xml 15 Feb 2006 00:41:16 -0000 1.5 *************** *** 24,28 **** <properties> <title>xsddoc</title> - <author email="kr...@us...">Kurt Riede</author> </properties> --- 24,27 ---- |
From: bforge <bf...@us...> - 2006-02-15 00:40:53
|
Update of /cvsroot/xframe/xsddoc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3924 Modified Files: project.properties Log Message: minor documentation changes Index: project.properties =================================================================== RCS file: /cvsroot/xframe/xsddoc/project.properties,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** project.properties 10 May 2005 16:22:39 -0000 1.10 --- project.properties 15 Feb 2006 00:40:41 -0000 1.11 *************** *** 89,92 **** --- 89,93 ---- maven.xdoc.date = left maven.xdoc.date.format = dd.MM.yyyy HH:mm z + maven.xdoc.legend = false maven.xdoc.jsl = xdocs/site.jsl # maven.xdoc.legend = true |
From: bforge <bf...@us...> - 2006-02-15 00:39:05
|
Update of /cvsroot/xframe/xsddoc/xdocs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3082/xdocs Modified Files: install-stylusstudio.xml compatibility.xml build.xml index.xml examples.xml site.jsl usage-maven.xml install-ant.xml usage-ant.xml install-console.xml usage-console.xml resources-xml-schema.xml Log Message: minor documentation changes Index: site.jsl =================================================================== RCS file: /cvsroot/xframe/xsddoc/xdocs/site.jsl,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** site.jsl 9 May 2005 22:47:01 -0000 1.4 --- site.jsl 15 Feb 2006 00:38:53 -0000 1.5 *************** *** 107,110 **** --- 107,114 ---- </j:if> + <a href="http://www.buldocs.com/xnsdoc/promotion.html" id="projectLogo"> + <img src="http://www.buldocs.com/xnsdoc/images/adtop-768x60.gif"/> + </a> + <!-- project logo and link --> <j:set var="logo" value="${pom.logo}"/> *************** *** 115,128 **** <j:set var="image" value="${relativePath}${image}"/> </j:if> ! ! <a href="${pom.url}" id="projectLogo"> <img src="${image}" alt="${pom.name}"/> ! </a> </j:if> ! <j:if test="${logo == null or logo == ''}"> <a href="${pom.url}" id="projectLogo"> <span>${pom.name}</span> </a> ! </j:if> <div class="clear"><hr /></div> </div> --- 119,131 ---- <j:set var="image" value="${relativePath}${image}"/> </j:if> ! <!-- a href="${pom.url}" id="projectLogo"> <img src="${image}" alt="${pom.name}"/> ! </a --> </j:if> ! <!-- j:if test="${logo == null or logo == ''}"> <a href="${pom.url}" id="projectLogo"> <span>${pom.name}</span> </a> ! </j:if --> <div class="clear"><hr /></div> </div> *************** *** 132,135 **** --- 135,141 ---- <j:if test="${date == 'left'}"> <div class="xleft"> + <a href="${pom.url}"> + <b><span>${pom.name}</span></b> + </a> - Last published: ${build.date} <j:if test="${!empty(version)}"> *************** *** 187,194 **** </div> </j:if> ! <x:if select="$nav"> ! <jsl:applyTemplates select="$nav/body/search"/> ! <jsl:applyTemplates select="$nav/body/googleAdsenseLeft"/> ! </x:if> <!-- Standard Maven Navigation --> <j:set var="fileName">${file}</j:set> --- 193,198 ---- </div> </j:if> ! <jsl:applyTemplates select="$nav/body/search"/> ! <jsl:applyTemplates select="$nav/body/googleAdsenseLeft"/> <!-- Standard Maven Navigation --> <j:set var="fileName">${file}</j:set> *************** *** 214,218 **** <div id="bodyColumn"> <div class="contentBox"> ! <jsl:applyTemplates select="$nav/body/googleAdsenseTop"/> <!-- FIXME really shouldn't use $doc, but jelly loses it's context again --> <jsl:applyTemplates select="$doc/document/body/section"/> --- 218,222 ---- <div id="bodyColumn"> <div class="contentBox"> ! <!-- jsl:applyTemplates select="$nav/body/googleAdsenseTop"/ --> <!-- FIXME really shouldn't use $doc, but jelly loses it's context again --> <jsl:applyTemplates select="$doc/document/body/section"/> *************** *** 328,335 **** <div id="search"> <h5>Search xframe</h5> ! <form method="get" action="http://www.google.com/custom" target="_top"> ! <a class="navlink" href="http://www.google.com"> ! <img src="http://www.google.com/logos/Logo_25wht.gif" width="75" height="32" alt="Google" /> ! </a> <input type="text" name="q" id="q" size="15" maxlength="255" value=""/> <input type="submit" name="sa" id="btnG" value="Go"/> --- 332,336 ---- <div id="search"> <h5>Search xframe</h5> ! <center><form method="get" action="http://www.google.com/custom" target="_top"> <input type="text" name="q" id="q" size="15" maxlength="255" value=""/> <input type="submit" name="sa" id="btnG" value="Go"/> *************** *** 342,346 **** <input type="hidden" name="cof" value="GALT:#008000;GL:1;DIV:#336699;VLC:663399;AH:center;BGC:FFFFFF;LBGC:336699;ALC:0000FF;LC:0000FF;T:000000;GFNT:0000FF;GIMP:0000FF;FORID:1;"/> <input type="hidden" name="hl" value="en"/> ! </form> </div> </jsl:template> --- 343,347 ---- <input type="hidden" name="cof" value="GALT:#008000;GL:1;DIV:#336699;VLC:663399;AH:center;BGC:FFFFFF;LBGC:336699;ALC:0000FF;LC:0000FF;T:000000;GFNT:0000FF;GIMP:0000FF;FORID:1;"/> <input type="hidden" name="hl" value="en"/> ! </form></center> </div> </jsl:template> Index: resources-xml-schema.xml =================================================================== RCS file: /cvsroot/xframe/xsddoc/xdocs/resources-xml-schema.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** resources-xml-schema.xml 21 Oct 2004 09:44:00 -0000 1.1 --- resources-xml-schema.xml 15 Feb 2006 00:38:53 -0000 1.2 *************** *** 23,27 **** <properties> - <author email="kr...@us...">Kurt Riede</author> <title>xframe - xsddoc - documentation tool for W3C XML Schemas</title> </properties> --- 23,26 ---- Index: build.xml =================================================================== RCS file: /cvsroot/xframe/xsddoc/xdocs/build.xml,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** build.xml 9 Oct 2004 23:50:36 -0000 1.3 --- build.xml 15 Feb 2006 00:38:53 -0000 1.4 *************** *** 23,27 **** <properties> - <author email="kr...@us...">Kurt Riede</author> <title>xframe - xsddoc - documentation tool for W3C XML Schemas</title> </properties> --- 23,26 ---- Index: index.xml =================================================================== RCS file: /cvsroot/xframe/xsddoc/xdocs/index.xml,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** index.xml 15 Oct 2005 23:01:26 -0000 1.8 --- index.xml 15 Feb 2006 00:38:53 -0000 1.9 *************** *** 24,28 **** <properties> <title>xsddoc</title> - <author email="kr...@us...">Kurt Riede</author> </properties> --- 24,27 ---- Index: compatibility.xml =================================================================== RCS file: /cvsroot/xframe/xsddoc/xdocs/compatibility.xml,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** compatibility.xml 21 Oct 2004 08:52:56 -0000 1.3 --- compatibility.xml 15 Feb 2006 00:38:53 -0000 1.4 *************** *** 23,27 **** <properties> - <author email="kr...@us...">Kurt Riede</author> <title>xframe - xsddoc - documentation tool for W3C XML Schemas</title> </properties> --- 23,26 ---- Index: install-ant.xml =================================================================== RCS file: /cvsroot/xframe/xsddoc/xdocs/install-ant.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** install-ant.xml 15 Sep 2004 15:19:03 -0000 1.1 --- install-ant.xml 15 Feb 2006 00:38:53 -0000 1.2 *************** *** 23,27 **** <properties> - <author email="kr...@us...">Kurt Riede</author> <title>xframe - xsddoc - documentation tool for W3C XML Schemas</title> </properties> --- 23,26 ---- Index: usage-ant.xml =================================================================== RCS file: /cvsroot/xframe/xsddoc/xdocs/usage-ant.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** usage-ant.xml 26 Feb 2005 14:43:58 -0000 1.2 --- usage-ant.xml 15 Feb 2006 00:38:53 -0000 1.3 *************** *** 23,27 **** <properties> - <author email="kr...@us...">Kurt Riede</author> <title>xframe - xsddoc - documentation tool for W3C XML Schemas</title> </properties> --- 23,26 ---- Index: usage-console.xml =================================================================== RCS file: /cvsroot/xframe/xsddoc/xdocs/usage-console.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** usage-console.xml 26 Feb 2005 14:43:58 -0000 1.2 --- usage-console.xml 15 Feb 2006 00:38:53 -0000 1.3 *************** *** 23,27 **** <properties> - <author email="kr...@us...">Kurt Riede</author> <title>xframe - xsddoc - documentation tool for W3C XML Schemas</title> </properties> --- 23,26 ---- Index: install-stylusstudio.xml =================================================================== RCS file: /cvsroot/xframe/xsddoc/xdocs/install-stylusstudio.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** install-stylusstudio.xml 22 Apr 2005 14:49:07 -0000 1.2 --- install-stylusstudio.xml 15 Feb 2006 00:38:53 -0000 1.3 *************** *** 23,27 **** <properties> - <author email="kr...@us...">Kurt Riede</author> <title>xframe - xsddoc - documentation tool for W3C XML Schemas</title> </properties> --- 23,26 ---- Index: examples.xml =================================================================== RCS file: /cvsroot/xframe/xsddoc/xdocs/examples.xml,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** examples.xml 26 Feb 2005 15:15:23 -0000 1.6 --- examples.xml 15 Feb 2006 00:38:53 -0000 1.7 *************** *** 23,27 **** <properties> - <author email="kr...@us...">Kurt Riede</author> <title>xframe - xsddoc - documentation tool for W3C XML Schemas</title> </properties> --- 23,26 ---- Index: usage-maven.xml =================================================================== RCS file: /cvsroot/xframe/xsddoc/xdocs/usage-maven.xml,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** usage-maven.xml 15 Oct 2005 20:35:52 -0000 1.6 --- usage-maven.xml 15 Feb 2006 00:38:53 -0000 1.7 *************** *** 23,27 **** <properties> - <author email="kr...@us...">Kurt Riede</author> <title>xframe - xsddoc - documentation tool for W3C XML Schemas</title> </properties> --- 23,26 ---- Index: install-console.xml =================================================================== RCS file: /cvsroot/xframe/xsddoc/xdocs/install-console.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** install-console.xml 15 Sep 2004 15:19:03 -0000 1.1 --- install-console.xml 15 Feb 2006 00:38:53 -0000 1.2 *************** *** 23,27 **** <properties> - <author email="kr...@us...">Kurt Riede</author> <title>xframe - xsddoc - documentation tool for W3C XML Schemas</title> </properties> --- 23,26 ---- |
From: bforge <bf...@us...> - 2006-02-15 00:35:38
|
Update of /cvsroot/xframe/xsddoc/src/net/sf/xframe/xsddoc/xslt In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1680/src/net/sf/xframe/xsddoc/xslt Modified Files: index-all.xsl overview-all.xsl schema-index.xsl Log Message: fix for bug [1362791] Transformation fails for root element with ns in attributes Index: overview-all.xsl =================================================================== RCS file: /cvsroot/xframe/xsddoc/src/net/sf/xframe/xsddoc/xslt/overview-all.xsl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** overview-all.xsl 13 Jan 2005 15:56:35 -0000 1.1 --- overview-all.xsl 15 Feb 2006 00:35:27 -0000 1.2 *************** *** 66,70 **** <xsl:template match="xs:schema"> <doc:overview-all href="./schema-summary.html"> ! <xsl:for-each select="@*"> <xsl:attribute name="{name()}"><xsl:value-of select="."/></xsl:attribute> </xsl:for-each> --- 66,70 ---- <xsl:template match="xs:schema"> <doc:overview-all href="./schema-summary.html"> ! <xsl:for-each select="@xs:*"> <xsl:attribute name="{name()}"><xsl:value-of select="."/></xsl:attribute> </xsl:for-each> Index: index-all.xsl =================================================================== RCS file: /cvsroot/xframe/xsddoc/src/net/sf/xframe/xsddoc/xslt/index-all.xsl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** index-all.xsl 13 Jan 2005 15:56:34 -0000 1.1 --- index-all.xsl 15 Feb 2006 00:35:27 -0000 1.2 *************** *** 66,70 **** <xsl:template match="xs:schema"> <doc:index-all href="./schema-summary.html"> ! <xsl:for-each select="@*"> <xsl:attribute name="{name()}"><xsl:value-of select="."/></xsl:attribute> </xsl:for-each> --- 66,70 ---- <xsl:template match="xs:schema"> <doc:index-all href="./schema-summary.html"> ! <xsl:for-each select="@xs:*"> <xsl:attribute name="{name()}"><xsl:value-of select="."/></xsl:attribute> </xsl:for-each> Index: schema-index.xsl =================================================================== RCS file: /cvsroot/xframe/xsddoc/src/net/sf/xframe/xsddoc/xslt/schema-index.xsl,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** schema-index.xsl 13 Dec 2004 13:26:17 -0000 1.14 --- schema-index.xsl 15 Feb 2006 00:35:27 -0000 1.15 *************** *** 76,80 **** </xsl:variable> <doc:schema-index namespace="{$ns}" href="./schema-summary.html"> ! <xsl:for-each select="@*"> <xsl:attribute name="{name()}"><xsl:value-of select="."/></xsl:attribute> </xsl:for-each> --- 76,80 ---- </xsl:variable> <doc:schema-index namespace="{$ns}" href="./schema-summary.html"> ! <xsl:for-each select="@xs:*"> <xsl:attribute name="{name()}"><xsl:value-of select="."/></xsl:attribute> </xsl:for-each> |
From: Kurt R. <kr...@us...> - 2005-10-22 00:50:03
|
Update of /cvsroot/xframe/maven-xsddoc-plugin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12017 Modified Files: project.xml Log Message: adjusted to maven 1.1 Index: project.xml =================================================================== RCS file: /cvsroot/xframe/maven-xsddoc-plugin/project.xml,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** project.xml 16 Oct 2005 00:22:15 -0000 1.8 --- project.xml 22 Oct 2005 00:49:54 -0000 1.9 *************** *** 88,92 **** <developer> <name>Kurt Riede</name> - <id>kriede</id> <email>kr...@us...</email> <roles> --- 88,91 ---- *************** *** 100,104 **** <contributor> <name>Corey Tripp</name> - <id>trippcr</id> <email>tr...@us...</email> <organization/> --- 99,102 ---- |