From: <no...@us...> - 2003-06-29 13:27:50
|
Log Message: ----------- Improved the appearance of the online docs Modified Files: -------------- /cvsroot/htmlunit/htmlunit: project.properties project.xml /cvsroot/htmlunit/htmlunit/src/xdocs/images: HtmlUnitLogo.jpg Added Files: ----------- /cvsroot/htmlunit/htmlunit: checkstyle.xml /cvsroot/htmlunit/htmlunit/src/xdocs/images: GargoyleSoftwareLogo.jpg Revision Data ------------- --- NEW FILE: checkstyle.xml --- <?xml version="1.0"?> <!DOCTYPE module PUBLIC "-//Puppy Crawl//DTD Check Configuration 1.1//EN" "http://www.puppycrawl.com/dtds/configuration_1_1.dtd"> <!-- Checkstyle checks configured for Maven. --> <module name="Checker"> <!-- Checks that a package.html file exists for each package. --> <!-- See http://checkstyle.sf.net/config_javadoc.html#PackageHtml --> <module name="PackageHtml"/> <!-- Checks whether files end with a new line. --> <!-- See http://checkstyle.sf.net/config_misc.html#NewlineAtEndOfFile --> <module name="NewlineAtEndOfFile"/> <!-- Checks that property files contain the same keys. --> <!-- See http://checkstyle.sf.net/config_misc.html#Translation --> <module name="Translation"/> <module name="TreeWalker"> <property name="cacheFile" value="${checkstyle.cache.file}"/> <!-- ************************************************************** --> <!-- Checks that are different from the sun coding conventions ones --> <!-- ************************************************************** --> <module name="Header"> <property name="headerFile" value="${basedir}/LICENSE.txt"/> <property name="ignoreLines" value="1,2,3,4,5,6"/> </module> <property name="tabWidth" value="4"/> <module name="LeftCurly"> <property name="option" value="eol"/> </module> <module name="RightCurly"> <property name="option" value="alone"/> </module> <module name="LineLength"> <property name="max" value="120"/> </module> <module name="MethodLength"> <property name="max" value="175"/> </module> <!-- No Paren pad check <module name="ParenPad"/> --> <module name="ConstantName"> <property name="format" value="log|^[a-zA-Z][a-zA-Z0-9_]*$"/> </module> <!-- ************************************************************** --> <!-- Default Sun coding conventions checks --> <!-- ************************************************************** --> <!-- Checks for Javadoc comments. --> <!-- See http://checkstyle.sf.net/config_javadoc.html --> <module name="JavadocMethod"/> <module name="JavadocType"> <property name="scope" value="protected"/> <property name="authorFormat" value="\S"/> <property name="versionFormat" value="\$Revision.*\$"/> </module> <module name="JavadocVariable"/> <!-- Checks for Naming Conventions. --> <!-- See http://checkstyle.sf.net/config_naming.html --> <module name="LocalFinalVariableName"/> <module name="LocalVariableName"/> <module name="MethodName"> <property name="format" value="^[a-zA-Z0-9]+|test[A-Z][a-zA-Z0-9_]+$"/> </module> <module name="PackageName"/> <module name="ParameterName"/> <module name="StaticVariableName"/> <module name="TypeName"/> <module name="MemberName"> <property name="format" value="^[a-z][a-zA-Z0-9_]+_$"/> </module> <!-- Checks for imports --> <!-- See http://checkstyle.sf.net/config_import.html --> <module name="AvoidStarImport"/> <module name="IllegalImport"/> <!-- defaults to sun.* packages --> <module name="RedundantImport"/> <module name="UnusedImports"/> <!-- Checks for Size Violations. --> <!-- See http://checkstyle.sf.net/config_sizes.html --> <module name="FileLength"/> <module name="ParameterNumber"/> <!-- Checks for whitespace --> <!-- See http://checkstyle.sf.net/config_whitespace.html --> <!-- <module name="EmptyForIteratorPad"/> <module name="NoWhitespaceAfter"/> <module name="NoWhitespaceBefore"/> <module name="OperatorWrap"/> <module name="WhitespaceAfter"/> <module name="WhitespaceAround"/> --> <module name="TabCharacter"/> <!-- Modifier Checks --> <!-- See http://checkstyle.sf.net/config_modifiers.html --> <module name="ModifierOrder"/> <module name="RedundantModifier"/> <!-- Checks for blocks. You know, those {}'s --> <!-- See http://checkstyle.sf.net/config_blocks.html --> <module name="AvoidNestedBlocks"/> <module name="EmptyBlock"/> <module name="NeedBraces"/> <!-- Checks for common coding problems --> <!-- See http://checkstyle.sf.net/config_coding.html --> <module name="AvoidInlineConditionals"/> <module name="DoubleCheckedLocking"/> <module name="EmptyStatement"/> <module name="EqualsHashCode"/> <module name="HiddenField"/> <module name="IllegalInstantiation"/> <module name="InnerAssignment"/> <module name="MagicNumber"/> <module name="MissingSwitchDefault"/> <module name="RedundantThrows"/> <!-- <module name="SimplifyBooleanExpression"/> --> <module name="SimplifyBooleanReturn"/> <!-- Checks for class design --> <!-- See http://checkstyle.sf.net/config_design.html --> <!-- <module name="DesignForExtension"/> --> <module name="FinalClass"/> <module name="HideUtilityClassConstructor"/> <module name="InterfaceIsType"/> <module name="VisibilityModifier"/> <!-- Miscellaneous other checks. --> <!-- See http://checkstyle.sf.net/config_misc.html --> <!-- <module name="ArrayTypeStyle"/> --> <!-- <module name="FinalParameters"/> --> <module name="GenericIllegalRegexp"> <property name="format" value="\s+$"/> <property name="message" value="Line has trailing spaces."/> </module> <module name="TodoComment"/> <module name="UpperEll"/> </module> </module> Index: project.properties =================================================================== RCS file: /cvsroot/htmlunit/htmlunit/project.properties,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- project.properties 12 Apr 2003 16:50:51 -0000 1.8 +++ project.properties 29 Jun 2003 13:27:46 -0000 1.9 @@ -1,15 +1,66 @@ -maven.checkstyle.properties=${basedir}/build/checkstyle-prod.properties -maven.javadoc.links=http://java.sun.com/j2se/1.4.1/docs/api/, http://jakarta.apache.org/commons/logging/apidocs/ -maven.linkcheck.enable=true -maven.junit.fork = yes -maven.junit.usefile=false -maven.ui.banner.foreground=black -maven.ui.banner.background=white +##################################################### +# Build and Deployment +##################################################### +maven.repo.remote=http://www.ibiblio.org/maven/,http://nanning.sourceforge.net/maven-repo/ + +##################################################### +# Properties related to project-site +##################################################### maven.xdoc.date=left maven.xdoc.version=${pom.currentVersion} +maven.linkcheck.enable = true +maven.javadoc.links=http://java.sun.com/j2se/1.4.1/docs/api/, http://jakarta.apache.org/commons/logging/apidocs/ +maven.xdoc.poweredby.image=maven-button-1.png maven.docs.src=${basedir}/src/xdocs maven.faq.src.file=${basedir}/src/xdocs/faq.fml -maven.uberjar.main=org.apache.commons.jelly.Jelly -#maven.jar.override=on +##################################################### +# Site Colors +##################################################### +maven.ui.body.background = #FFFFFF +maven.ui.body.foreground = #1F354D +maven.ui.section.background = #A2B7C5 +maven.ui.section.foreground = #FFFFFF +maven.ui.subsection.background = #F2F5F7 +maven.ui.subsection.foreground = #1F354D +maven.ui.table.header.background = #E5E3DB +maven.ui.table.header.foreground = #686868 +maven.ui.table.row.odd.background = #F5F4F1 +maven.ui.table.row.odd.foreground = #686868 +maven.ui.table.row.even.background = #F5F4F1 +maven.ui.table.row.even.foreground = #686868 +maven.ui.banner.background = #FFFFFF +maven.ui.banner.foreground = #FFFFFF +maven.ui.banner.border.top = #A2B7C5 +maven.ui.banner.border.bottom = #A2B7C5 +maven.ui.source.background = #FFFFFF +maven.ui.source.foreground = #000000 +maven.ui.source.border.right = #A2B7C5 +maven.ui.source.border.left = #A2B7C5 +maven.ui.source.border.top = #A2B7C5 +maven.ui.source.border.bottom = #A2B7C5 +maven.ui.navcol.background = #F2F5F7 +maven.ui.navcol.background.ns4 = #F2F5F7 +maven.ui.navcol.foreground = #000000 +maven.ui.navcol.foreground.ns4 = #555 +maven.ui.navcol.border.top = #F2F5F7 +maven.ui.navcol.border.right = #A2B7C5 +maven.ui.navcol.border.bottom = #A2B7C5 +maven.ui.breadcrumbs.background = #D5E1E9 +maven.ui.breadcrumbs.foreground = #000000 +maven.ui.breadcrumbs.border.top = #D5E1E9 +maven.ui.breadcrumbs.border.bottom = #A2B7C5 +maven.ui.href.link = #1F354D +maven.ui.href.link.active = #FF5A00 +maven.ui.href.link.selfref = #1F354D +##################################################### +# Checkstyle +##################################################### +maven.checkstyle.properties=${basedir}/checkstyle.xml + +##################################################### +# Tests +##################################################### +maven.junit.fork = yes +maven.junit.usefile=false Index: project.xml =================================================================== RCS file: /cvsroot/htmlunit/htmlunit/project.xml,v retrieving revision 1.21 retrieving revision 1.22 diff -u -d -r1.21 -r1.22 --- project.xml 3 Jun 2003 17:26:57 -0000 1.21 +++ project.xml 29 Jun 2003 13:27:46 -0000 1.22 @@ -9,7 +9,7 @@ <organization> <name>Gargoyle Software Inc.</name> <url>http://www.GargoyleSoftware.com/</url> - <logo>http://www.gargoylesoftware.com/images/CompanyLogoSmall.gif</logo> + <logo>/images/GargoyleSoftwareLogo.jpg</logo> </organization> <inceptionYear>2002</inceptionYear> <package>com.gargoylesoftware.htmlunit</package> @@ -51,13 +51,13 @@ <mailingLists> <mailingList> - <name>HtmlUnit Users</name> + <name>HtmlUnit Users</name> <subscribe>http://lists.sourceforge.net/lists/listinfo/htmlunit-user</subscribe> <unsubscribe>http://lists.sourceforge.net/lists/listinfo/htmlunit-user</unsubscribe> <archive>http://lists.sourceforge.net/lists/listinfo/htmlunit-user</archive> </mailingList> <mailingList> - <name>HtmlUnit Developers</name> + <name>HtmlUnit Developers</name> <subscribe>http://lists.sourceforge.net/lists/listinfo/htmlunit-develop</subscribe> <unsubscribe>http://lists.sourceforge.net/lists/listinfo/htmlunit-develop</unsubscribe> <archive>http://lists.sourceforge.net/lists/listinfo/htmlunit-develop</archive> --- NEW FILE: GargoyleSoftwareLogo.jpg --- ÿØÿà |