diff --git a/README.md b/README.md
index abc02e6a..6f6f9af3 100644
--- a/README.md
+++ b/README.md
@@ -32,7 +32,8 @@ This is essentially a place holder README file until this project gets its seale
~~~~~ groovy
repositories {
- mavenRepo name: "spring-snapshot", urls: "http://maven.springframework.org/snapshot"
+ maven { url "http://repo.springsource.org/libs-milestone" }
+ maven { url "http://repo.springsource.org/libs-snapshot" }
}
dependencies {
diff --git a/build.gradle b/build.gradle
index 6d6db0cc..93e24ff6 100644
--- a/build.gradle
+++ b/build.gradle
@@ -1,27 +1,27 @@
-apply plugin: 'base'
+buildscript {
+ repositories {
+ maven { url 'http://repo.springsource.org/plugins-release' }
+ }
+ dependencies {
+ classpath 'org.springframework.build.gradle:docbook-reference-plugin:0.1.5'
+ }
+}
+
+description = 'Spring Shell'
+group = 'org.springframework.shell'
+
+repositories {
+ maven { url "http://repo.springsource.org/libs-snapshot" }
+ maven { url "http://spring-roo-repository.springsource.org/release" }
+}
+
apply plugin: "java"
apply plugin: 'eclipse'
apply plugin: 'idea'
-apply from: 'maven.gradle'
+apply from: "$rootDir/maven.gradle"
+apply plugin: 'docbook-reference'
-allprojects {
- group = 'org.springframework.shell'
- version = "$springShellVersion"
-
- repositories {
- mavenCentral()
- maven{ url "http://mvnrepository.com/artifact" }
- maven{ url "http://maven.springframework.org/release" }
- maven{ url "http://maven.springframework.org/milestone" }
- maven{ url "http://maven.springframework.org/snapshot" }
- maven{ url "http://maven.springframework.org.s3.amazonaws.com/external" }
- maven{ url "http://repository.springsource.com/maven/bundles/release" }
- maven{ url "http://oss.sonatype.org/content/repositories/snapshots" }
- maven{ url "http://springframework.svn.sourceforge.net/svnroot/springframework/repos/repo-ext/" }
- maven{ url "http://www.datanucleus.org/downloads/maven2/" }
- maven{ url "http://conjars.org/repo" }
- }
-}
+[compileJava, compileTestJava]*.options*.compilerArgs = ["-Xlint:-serial"]
dependencies {
runtime "log4j:log4j:$log4jVersion"
@@ -42,13 +42,158 @@ dependencies {
}
-task wrapper(type: Wrapper) {
+sourceCompatibility = 1.5
+targetCompatibility = 1.5
+
+javadoc {
+ ext.srcDir = file("${projectDir}/docs/src/api")
+ destinationDir = file("${buildDir}/api")
+ ext.tmpDir = file("${buildDir}/api-work")
+
+ configure(options) {
+ stylesheetFile = file("${srcDir}/spring-javadoc.css")
+ overview = "${srcDir}/overview.html"
+ docFilesSubDirs = true
+ outputLevel = org.gradle.external.javadoc.JavadocOutputLevel.QUIET
+ breakIterator = true
+ showFromProtected()
+ groups = [
+ 'Spring Shell' : ['org.springframework.shell*'],
+ ]
+
+ links = [
+ "http://static.springframework.org/spring/docs/3.0.x/javadoc-api",
+ "http://download.oracle.com/javase/6/docs/api",
+ ]
+
+ //exclude "org/springframework/data/redis/config/**"
+ }
+
+ title = "${rootProject.description} ${version} API"
}
jar {
- manifest {
- attributes("version": "$version")
- }
+ manifest.attributes['Implementation-Title'] = 'spring-shell'
+ manifest.attributes['Implementation-Version'] = project.version
+
+ from("$rootDir/docs/src/info") {
+ include "license.txt"
+ include "notice.txt"
+ into "META-INF"
+ expand(copyright: new Date().format('yyyy'), version: project.version)
+ }
}
-defaultTasks 'build'
+task sourcesJar(type: Jar, dependsOn:classes) {
+ classifier = 'sources'
+ from sourceSets.main.allJava
+}
+
+task javadocJar(type: Jar) {
+ classifier = 'javadoc'
+ from javadoc
+}
+
+reference {
+ sourceDir = file('docs/src/reference/docbook')
+}
+
+
+task docsZip(type: Zip) {
+ group = 'Distribution'
+ classifier = 'docs'
+ description = "Builds -${classifier} archive containing api and reference for deployment"
+
+ from('docs/src/info') {
+ include 'changelog.txt'
+ }
+
+ from (javadoc) {
+ into 'api'
+ }
+
+ from (reference) {
+ into 'reference'
+ }
+}
+
+task schemaZip(type: Zip) {
+ group = 'Distribution'
+ classifier = 'schema'
+ description = "Builds -${classifier} archive containing all XSDs for deployment"
+
+ def Properties schemas = new Properties();
+
+ sourceSets.main.resources.find {
+ it.path.endsWith('META-INF' + File.separator + 'spring.schemas')
+ }?.withInputStream { schemas.load(it) }
+
+ ext.paths = [] as Set
+
+ for (def key : schemas.keySet()) {
+ def shortName = key.replaceAll(/http.*schema.(.*).spring-.*/, '$1')
+ assert shortName != key
+ File xsdFile = sourceSets.main.resources.find {
+ it.path.replace('\\', '/').endsWith(schemas.get(key))
+ }
+ assert xsdFile != null
+ def input = xsdFile.path
+
+ if (!paths.contains(input)) {
+ paths.add(input)
+ into (shortName) {
+ from input
+ }
+ }
+ }
+}
+
+task distZip(type: Zip, dependsOn: [jar, docsZip, schemaZip, sourcesJar, javadocJar]) {
+ group = 'Distribution'
+ classifier = 'dist'
+ description = "Builds -${classifier} archive, containing all jars and docs, " +
+ "suitable for community download page."
+
+ ext.zipRootDir = "${project.name}-${project.version}"
+
+ into (zipRootDir) {
+ from('docs/src/info') {
+ include 'readme.txt'
+ include 'license.txt'
+ include 'notice.txt'
+ expand(copyright: new Date().format('yyyy'), version: project.version)
+ }
+
+ from('samples/') {
+ into 'samples'
+ }
+
+ from(zipTree(docsZip.archivePath)) {
+ into "docs"
+ }
+
+ from(zipTree(schemaZip.archivePath)) {
+ into "schema"
+ }
+ into ("dist") {
+ from rootProject.collect { project -> project.libsDir }
+ }
+ }
+}
+
+artifacts {
+ archives sourcesJar
+ archives javadocJar
+
+ archives docsZip
+ archives schemaZip
+ archives distZip
+}
+
+task wrapper(type: Wrapper) {
+ description = 'Generates gradlew[.bat] scripts'
+ gradleVersion = '1.0'
+}
+
+assemble.dependsOn = ['jar', 'sourcesJar']
+defaultTasks 'build'
\ No newline at end of file
diff --git a/docs/build.gradle b/docs/build.gradle
deleted file mode 100644
index 19481606..00000000
--- a/docs/build.gradle
+++ /dev/null
@@ -1,102 +0,0 @@
-import org.apache.tools.ant.filters.ReplaceTokens
-
-// -----------------------------------------------------------------------------
-// Configuration for the docs subproject
-// -----------------------------------------------------------------------------
-
-apply plugin: 'base'
-apply plugin: 'docbook'
-
-assemble.dependsOn = [rootProject.javadoc, 'reference']
-
-[docbookHtml, docbookFoPdf, docbookHtmlSingle]*.group = 'Documentation'
-[docbookHtml, docbookFoPdf, docbookHtmlSingle]*.sourceFileName = 'index.xml'
-[docbookHtml, docbookFoPdf, docbookHtmlSingle]*.sourceDirectory = new File(projectDir, 'src/reference/docbook')
-
-docbookHtml.stylesheet = new File(projectDir, 'src/reference/resources/xsl/html-custom.xsl')
-docbookHtmlSingle.stylesheet = new File(projectDir, 'src/reference/resources/xsl/html-single-custom.xsl')
-docbookFoPdf.stylesheet = new File(projectDir, 'src/reference/resources/xsl/pdf-custom.xsl')
-
-def imagesDir = new File(projectDir, 'src/reference/resources/images');
-[docbookHtml, docbookFoPdf, docbookHtmlSingle]*.admonGraphicsPath = "./images/admon/"
-[docbookFoPdf]*.imgSrcPath = "${imagesDir}"
-[docbookHtml, docbookHtmlSingle]*.imgSrcPath = "./images/"
-
-// defined separately to prevent the replacement from taking place (seems to affect the images)
-imgSpec = copySpec {
- into ('reference') {
- from("$projectDir/src/reference/resources") {
- include 'css/**/*'
- }
- from("$buildDir/docs") {
- include '*.pdf'
- }
- }
-
- into ('reference/images') {
- from (imagesDir)
- }
-}
-
-
-refSpec = copySpec {
- into ('reference') {
- from("$buildDir/docs") {
- exclude '*.fo'
- exclude '*.pdf'
- }
- }
-
- p = new Properties()
-
- for (e in project.properties) {
- if (e.key != null && e.value != null)
- p.setProperty(e.key, e.value.toString())
- }
-
- filter(ReplaceTokens, tokens: p)
-
- with(imgSpec)
-}
-
-task reference (type: Copy) {
- dependsOn 'docbook'
- description = "Builds aggregated DocBook"
- group = "Documentation"
- destinationDir = buildDir
- with(refSpec)
-}
-
-
-apiSpec = copySpec {
- into('api') {
- from(rootProject.javadoc.destinationDir)
- }
-}
-
-task docSiteLogin(type: org.springframework.gradle.tasks.Login) {
- if (project.hasProperty('sshHost')) {
- host = project.property('sshHost')
- username = project.property('sshUsername')
- key = project.property('sshPrivateKey')
- }
-}
-
-infoSpec = copySpec {
- from("$projectDir/src/info") {
- include 'changelog.txt'
- }
-}
-
-// upload task
-task uploadDocs(type: org.springframework.gradle.tasks.ScpUpload) {
- dependsOn rootProject.javadoc, reference
- description = "Upload API Distribution"
- group = "Distribution"
- remoteDir = "/opt/www/domains/springframework.org/www/htdocs/spring-hadoop/docs/${project.version}"
- login = docSiteLogin
-
- with(apiSpec)
- with(refSpec)
- with(infoSpec)
-}
\ No newline at end of file
diff --git a/docs/build/highlighting/c-hl.xml b/docs/build/highlighting/c-hl.xml
deleted file mode 100644
index 44ab02d2..00000000
--- a/docs/build/highlighting/c-hl.xml
+++ /dev/null
@@ -1,101 +0,0 @@
-
-
-
-
- /**
- */
-
-
-
- ///
-
-
-
- /*
- */
-
- //
-
-
- #
- \
-
-
-
- "
- \
-
-
- '
- \
-
-
- 0x
- ul
- lu
- u
- l
-
-
-
- .
-
- e
- ul
- lu
- u
- f
- l
-
-
-
- auto
- _Bool
- break
- case
- char
- _Complex
- const
- continue
- default
- do
- double
- else
- enum
- extern
- float
- for
- goto
- if
- _Imaginary
- inline
- int
- long
- register
- restrict
- return
- short
- signed
- sizeof
- static
- struct
- switch
- typedef
- union
- unsigned
- void
- volatile
- while
-
-
\ No newline at end of file
diff --git a/docs/build/highlighting/cpp-hl.xml b/docs/build/highlighting/cpp-hl.xml
deleted file mode 100644
index 2213b7ce..00000000
--- a/docs/build/highlighting/cpp-hl.xml
+++ /dev/null
@@ -1,150 +0,0 @@
-
-
-
-
- /**
- */
-
-
-
- ///
-
-
-
- /*
- */
-
- //
-
-
- #
- \
-
-
-
- "
- \
-
-
- '
- \
-
-
- 0x
- ul
- lu
- u
- l
-
-
-
- .
-
- e
- ul
- lu
- u
- f
- l
-
-
-
-
- auto
- _Bool
- break
- case
- char
- _Complex
- const
- continue
- default
- do
- double
- else
- enum
- extern
- float
- for
- goto
- if
- _Imaginary
- inline
- int
- long
- register
- restrict
- return
- short
- signed
- sizeof
- static
- struct
- switch
- typedef
- union
- unsigned
- void
- volatile
- while
-
- asm
- dynamic_cast
- namespace
- reinterpret_cast
- try
- bool
- explicit
- new
- static_cast
- typeid
- catch
- false
- operator
- template
- typename
- class
- friend
- private
- this
- using
- const_cast
- inline
- public
- throw
- virtual
- delete
- mutable
- protected
- true
- wchar_t
-
-
\ No newline at end of file
diff --git a/docs/build/highlighting/csharp-hl.xml b/docs/build/highlighting/csharp-hl.xml
deleted file mode 100644
index 8a8a76d1..00000000
--- a/docs/build/highlighting/csharp-hl.xml
+++ /dev/null
@@ -1,187 +0,0 @@
-
-
-
-
- /**
- */
-
-
-
- ///
-
-
-
- /*
- */
-
- //
-
-
- [
- ]
- (
- )
-
-
-
- #
- \
-
-
-
-
- @"
- "
- \
-
-
-
- "
- \
-
-
- '
- \
-
-
- 0x
- ul
- lu
- u
- l
-
-
-
- .
-
- e
- ul
- lu
- u
- f
- d
- m
- l
-
-
-
- abstract
- as
- base
- bool
- break
- byte
- case
- catch
- char
- checked
- class
- const
- continue
- decimal
- default
- delegate
- do
- double
- else
- enum
- event
- explicit
- extern
- false
- finally
- fixed
- float
- for
- foreach
- goto
- if
- implicit
- in
- int
- interface
- internal
- is
- lock
- long
- namespace
- new
- null
- object
- operator
- out
- override
- params
- private
- protected
- public
- readonly
- ref
- return
- sbyte
- sealed
- short
- sizeof
- stackalloc
- static
- string
- struct
- switch
- this
- throw
- true
- try
- typeof
- uint
- ulong
- unchecked
- unsafe
- ushort
- using
- virtual
- void
- volatile
- while
-
-
-
- add
- alias
- get
- global
- partial
- remove
- set
- value
- where
- yield
-
-
\ No newline at end of file
diff --git a/docs/build/highlighting/delphi-hl.xml b/docs/build/highlighting/delphi-hl.xml
deleted file mode 100644
index 2a45d29f..00000000
--- a/docs/build/highlighting/delphi-hl.xml
+++ /dev/null
@@ -1,200 +0,0 @@
-
-
-
-
-
- {$
- }
-
-
-
-
- (*$
- )
-
-
-
- {
- }
-
-
- (*
- *)
-
- //
-
- '
-
-
-
- #$
-
-
-
-
- #
-
-
-
-
- $
-
-
-
- .
- e
-
-
-
-
- and
- else
- inherited
- packed
- then
- array
- end
- initialization
- procedure
- threadvar
- as
- except
- inline
- program
- to
- asm
- exports
- interface
- property
- try
- begin
- file
- is
- raise
- type
- case
- final
- label
- record
- unit
- class
- finalization
- library
- repeat
- unsafe
- const
- finally
- mod
- resourcestring
- until
- constructor
- for
- nil
- sealed
- uses
- destructor
- function
- not
- set
- var
- dispinterface
- goto
- object
- shl
- while
- div
- if
- of
- shr
- with
- do
- implementation
- or
- static
- xor
- downto
- in
- out
- string
-
-
- at
- on
-
-
- absolute
- dynamic
- local
- platform
- requires
- abstract
- export
- message
- private
- resident
- assembler
- external
- name
- protected
- safecall
- automated
- far
- near
- public
- stdcall
- cdecl
- forward
- nodefault
- published
- stored
- contains
- implements
- overload
- read
- varargs
- default
- index
- override
- readonly
- virtual
- deprecated
- inline
- package
- register
- write
- dispid
- library
- pascal
- reintroduce
- writeonly
-
-
-
\ No newline at end of file
diff --git a/docs/build/highlighting/ini-hl.xml b/docs/build/highlighting/ini-hl.xml
deleted file mode 100644
index 84be9c68..00000000
--- a/docs/build/highlighting/ini-hl.xml
+++ /dev/null
@@ -1,45 +0,0 @@
-
-
-
- ;
-
-
- ^(\[.+\]\s*)$
-
- MULTILINE
-
-
-
- ^(.+)(?==)
-
- MULTILINE
-
-
\ No newline at end of file
diff --git a/docs/build/highlighting/java-hl.xml b/docs/build/highlighting/java-hl.xml
deleted file mode 100644
index d499d83f..00000000
--- a/docs/build/highlighting/java-hl.xml
+++ /dev/null
@@ -1,117 +0,0 @@
-
-
-
-
- /**
- */
-
-
-
- /*
- */
-
- //
-
- "
- \
-
-
- '
- \
-
-
- @
- (
- )
-
-
- 0x
-
-
-
- .
- e
- f
- d
- l
-
-
-
- abstract
- boolean
- break
- byte
- case
- catch
- char
- class
- const
- continue
- default
- do
- double
- else
- extends
- final
- finally
- float
- for
- goto
- if
- implements
- import
- instanceof
- int
- interface
- long
- native
- new
- package
- private
- protected
- public
- return
- short
- static
- strictfp
- super
- switch
- synchronized
- this
- throw
- throws
- transient
- try
- void
- volatile
- while
-
-
\ No newline at end of file
diff --git a/docs/build/highlighting/javascript-hl.xml b/docs/build/highlighting/javascript-hl.xml
deleted file mode 100644
index 5749b887..00000000
--- a/docs/build/highlighting/javascript-hl.xml
+++ /dev/null
@@ -1,147 +0,0 @@
-
-
-
-
- /*
- */
-
- //
-
- "
- \
-
-
- '
- \
-
-
- 0x
-
-
-
- .
- e
-
-
-
- break
- case
- catch
- continue
- default
- delete
- do
- else
- finally
- for
- function
- if
- in
- instanceof
- new
- return
- switch
- this
- throw
- try
- typeof
- var
- void
- while
- with
-
- abstract
- boolean
- byte
- char
- class
- const
- debugger
- double
- enum
- export
- extends
- final
- float
- goto
- implements
- import
- int
- interface
- long
- native
- package
- private
- protected
- public
- short
- static
- super
- synchronized
- throws
- transient
- volatile
-
-
- prototype
-
- Array
- Boolean
- Date
- Error
- EvalError
- Function
- Math
- Number
- Object
- RangeError
- ReferenceError
- RegExp
- String
- SyntaxError
- TypeError
- URIError
-
- decodeURI
- decodeURIComponent
- encodeURI
- encodeURIComponent
- eval
- isFinite
- isNaN
- parseFloat
- parseInt
-
- Infinity
- NaN
- undefined
-
-
\ No newline at end of file
diff --git a/docs/build/highlighting/m2-hl.xml b/docs/build/highlighting/m2-hl.xml
deleted file mode 100644
index a3ef3142..00000000
--- a/docs/build/highlighting/m2-hl.xml
+++ /dev/null
@@ -1,90 +0,0 @@
-
-
-
-
- (*
- *)
-
-
- "
-
-
- '
-
-
- .
- e
-
-
-
- and
- array
- begin
- by
- case
- const
- definition
- div
- do
- else
- elsif
- end
- exit
- export
- for
- from
- if
- implementation
- import
- in
- loop
- mod
- module
- not
- of
- or
- pointer
- procedure
- qualified
- record
- repeat
- return
- set
- then
- to
- type
- until
- var
- while
- with
-
-
-
\ No newline at end of file
diff --git a/docs/build/highlighting/myxml-hl.xml b/docs/build/highlighting/myxml-hl.xml
deleted file mode 100644
index efa90d7b..00000000
--- a/docs/build/highlighting/myxml-hl.xml
+++ /dev/null
@@ -1,116 +0,0 @@
-
-
-
-
-
-
-
- A
- ABBR
- ACRONYM
- ADDRESS
- APPLET
- AREA
- B
- BASE
- BASEFONT
- BDO
- BIG
- BLOCKQUOTE
- BODY
- BR
- BUTTON
- CAPTION
- CENTER
- CITE
- CODE
- COL
- COLGROUP
- DD
- DEL
- DFN
- DIR
- DIV
- DL
- DT
- EM
- FIELDSET
- FONT
- FORM
- FRAME
- FRAMESET
- H1
- H2
- H3
- H4
- H5
- H6
- HEAD
- HR
- HTML
- I
- IFRAME
- IMG
- INPUT
- INS
- ISINDEX
- KBD
- LABEL
- LEGEND
- LI
- LINK
- MAP
- MENU
- META
- NOFRAMES
- NOSCRIPT
- OBJECT
- OL
- OPTGROUP
- OPTION
- P
- PARAM
- PRE
- Q
- S
- SAMP
- SCRIPT
- SELECT
- SMALL
- SPAN
- STRIKE
- STRONG
- STYLE
- SUB
- SUP
- TABLE
- TBODY
- TD
- TEXTAREA
- TFOOT
- TH
- THEAD
- TITLE
- TR
- TT
- U
- UL
- VAR
- XMP
-
-
-
-
- xsl:
-
-
-
-
\ No newline at end of file
diff --git a/docs/build/highlighting/perl-hl.xml b/docs/build/highlighting/perl-hl.xml
deleted file mode 100644
index 23fdfd82..00000000
--- a/docs/build/highlighting/perl-hl.xml
+++ /dev/null
@@ -1,120 +0,0 @@
-
-
-
- #
-
- <<
- '
- "
-
-
-
- "
- \
-
-
- '
- \
-
-
-
- 0x
-
-
-
- .
-
-
-
-
- if
- unless
- while
- until
- foreach
- else
- elsif
- for
- when
- default
- given
-
- caller
- continue
- die
- do
- dump
- eval
- exit
- goto
- last
- next
- redo
- return
- sub
- wantarray
-
- caller
- import
- local
- my
- package
- use
-
- do
- import
- no
- package
- require
- use
-
- bless
- dbmclose
- dbmopen
- package
- ref
- tie
- tied
- untie
- use
-
- and
- or
- not
- eq
- ne
- lt
- gt
- le
- ge
- cmp
-
-
\ No newline at end of file
diff --git a/docs/build/highlighting/php-hl.xml b/docs/build/highlighting/php-hl.xml
deleted file mode 100644
index 0daa348c..00000000
--- a/docs/build/highlighting/php-hl.xml
+++ /dev/null
@@ -1,149 +0,0 @@
-
-
-
-
- /**
- */
-
-
-
- ///
-
-
-
- /*
- */
-
- //
- #
-
- "
- \
-
-
-
- '
- \
-
-
-
- <<<
-
-
- 0x
-
-
-
- .
- e
-
-
-
- and
- or
- xor
- __FILE__
- exception
- __LINE__
- array
- as
- break
- case
- class
- const
- continue
- declare
- default
- die
- do
- echo
- else
- elseif
- empty
- enddeclare
- endfor
- endforeach
- endif
- endswitch
- endwhile
- eval
- exit
- extends
- for
- foreach
- function
- global
- if
- include
- include_once
- isset
- list
- new
- print
- require
- require_once
- return
- static
- switch
- unset
- use
- var
- while
- __FUNCTION__
- __CLASS__
- __METHOD__
- final
- php_user_filter
- interface
- implements
- extends
- public
- private
- protected
- abstract
- clone
- try
- catch
- throw
- cfunction
- old_function
- true
- false
-
-
-
-
- ?>
- <?php
- <?=
-
-
-
\ No newline at end of file
diff --git a/docs/build/highlighting/python-hl.xml b/docs/build/highlighting/python-hl.xml
deleted file mode 100644
index 1b1f0873..00000000
--- a/docs/build/highlighting/python-hl.xml
+++ /dev/null
@@ -1,100 +0,0 @@
-
-
-
-
-
- @
- (
- )
-
- #
-
- """
-
-
-
- '''
-
-
-
- "
- \
-
-
- '
- \
-
-
- 0x
- l
-
-
-
- .
-
- e
- l
-
-
-
- and
- del
- from
- not
- while
- as
- elif
- global
- or
- with
- assert
- else
- if
- pass
- yield
- break
- except
- import
- print
- class
- exec
- in
- raise
- continue
- finally
- is
- return
- def
- for
- lambda
- try
-
-
\ No newline at end of file
diff --git a/docs/build/highlighting/ruby-hl.xml b/docs/build/highlighting/ruby-hl.xml
deleted file mode 100644
index 2f743528..00000000
--- a/docs/build/highlighting/ruby-hl.xml
+++ /dev/null
@@ -1,109 +0,0 @@
-
-
-
- #
-
- <<
-
-
-
- "
- \
-
-
- %Q{
- }
- \
-
-
- %/
- /
- \
-
-
- '
- \
-
-
- %q{
- }
- \
-
-
- 0x
-
-
-
- .
- e
-
-
-
- alias
- and
- BEGIN
- begin
- break
- case
- class
- def
- defined
- do
- else
- elsif
- END
- end
- ensure
- false
- for
- if
- in
- module
- next
- nil
- not
- or
- redo
- rescue
- retry
- return
- self
- super
- then
- true
- undef
- unless
- until
- when
- while
- yield
-
-
\ No newline at end of file
diff --git a/docs/build/highlighting/tcl-hl.xml b/docs/build/highlighting/tcl-hl.xml
deleted file mode 100644
index 7a8fa9fb..00000000
--- a/docs/build/highlighting/tcl-hl.xml
+++ /dev/null
@@ -1,180 +0,0 @@
-
-
-
- #
-
- "
- \
-
-
- -[\p{javaJavaIdentifierStart}][\p{javaJavaIdentifierPart}]+
-
-
-
-
- .
-
-
-
-
- if
- then
- else
- elseif
- for
- foreach
- break
- continue
- while
- eval
- case
- in
- switch
- default
- exit
- error
- proc
- rename
- exec
- return
- uplevel
- upvar
- constructor
- destructor
- itcl_class
- loop
- for_array_keys
- for_recursive_glob
- for_file
- method
- body
- configbody
- catch
- namespace
- class
- array
- set
- unset
- package
- source
-
-
- subst
- list
- format
- lappend
- option
- expr
- puts
- winfo
- lindex
- string
-
-
-
- verified
- seteach
- fixme
- debug
- rtl::debug
- rtl::verified
- rtl::template
- rtl::seteach
-
-
- mkProc
- getCreator
- properties
- lappendunique
- rtl::lappendunique
-
-
- place
- pack
- grid
-
-
-
- image
- font
- focus
- tk
- bind
- after
-
-
- toplevel
- frame
- entry
- listbox
- button
- radiobutton
- checkbutton
- canvas
- menu
- menubutton
- text
- label
- message
-
-
-
- zinc
-
-
- tkpath::gradient
-
-
- rtl_combobox
- rtl_tree
- rtl_tabset
- rtl_mlistbox
- rtl_gridwin
- rtlysizer
- rtlxsizer
-
-
-
- goolbar
- gstripes
- zoolbar
- gistbox
- gooleditor
- galette
-
-
-
\ No newline at end of file
diff --git a/docs/build/highlighting/xslthl-config.xml b/docs/build/highlighting/xslthl-config.xml
deleted file mode 100644
index 910289ae..00000000
--- a/docs/build/highlighting/xslthl-config.xml
+++ /dev/null
@@ -1,46 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/docs/src/reference/resources/css/highlight.css b/docs/src/reference/resources/css/highlight.css
deleted file mode 100644
index ffefef72..00000000
--- a/docs/src/reference/resources/css/highlight.css
+++ /dev/null
@@ -1,35 +0,0 @@
-/*
- code highlight CSS resemblign the Eclipse IDE default color schema
- @author Costin Leau
-*/
-
-.hl-keyword {
- color: #7F0055;
- font-weight: bold;
-}
-
-.hl-comment {
- color: #3F5F5F;
- font-style: italic;
-}
-
-.hl-multiline-comment {
- color: #3F5FBF;
- font-style: italic;
-}
-
-.hl-tag {
- color: #3F7F7F;
-}
-
-.hl-attribute {
- color: #7F007F;
-}
-
-.hl-value {
- color: #2A00FF;
-}
-
-.hl-string {
- color: #2A00FF;
-}
\ No newline at end of file
diff --git a/docs/src/reference/resources/css/manual.css b/docs/src/reference/resources/css/manual.css
deleted file mode 100644
index 77569070..00000000
--- a/docs/src/reference/resources/css/manual.css
+++ /dev/null
@@ -1,99 +0,0 @@
-@IMPORT url("highlight.css");
-
-html {
- padding: 0pt;
- margin: 0pt;
-}
-
-body {
- margin-left: 10%;
- margin-right: 10%;
- font-family: Arial, Sans-serif;
-}
-
-div {
- margin: 0pt;
-}
-
-p {
- text-align: justify;
-}
-
-hr {
- border: 1px solid gray;
- background: gray;
-}
-
-h1,h2,h3,h4 {
- color: #234623;
- font-family: Arial, Sans-serif;
-}
-
-pre {
- line-height: 1.0;
- color: black;
-}
-
-pre.programlisting {
- font-size: 10pt;
- padding: 7pt 3pt;
- border: 1pt solid black;
- background: #eeeeee;
- clear: both;
-}
-
-div.table {
- margin: 1em;
- padding: 0.5em;
- text-align: center;
-}
-
-div.table table {
- display: table;
- width: 100%;
-}
-
-div.table td {
- padding-left: 7px;
- padding-right: 7px;
-}
-
-.sidebar {
- float: right;
- margin: 10px 0 10px 30px;
- padding: 10px 20px 20px 20px;
- width: 33%;
- border: 1px solid black;
- background-color: #F4F4F4;
- font-size: 14px;
-}
-
-.mediaobject {
- padding-top: 30px;
- padding-bottom: 30px;
-}
-
-.legalnotice {
- font-family: Verdana, Arial, helvetica, sans-serif;
- font-size: 12px;
- font-style: italic;
-}
-
-p.releaseinfo {
- font-size: 100%;
- font-weight: bold;
- font-family: Verdana, Arial, helvetica, sans-serif;
- padding-top: 10px;
-}
-
-p.pubdate {
- font-size: 120%;
- font-weight: bold;
- font-family: Verdana, Arial, helvetica, sans-serif;
-}
-
-span.productname {
- font-size: 200%;
- font-weight: bold;
- font-family: Verdana, Arial, helvetica, sans-serif;
-}
diff --git a/docs/src/reference/resources/images/admon/blank.png b/docs/src/reference/resources/images/admon/blank.png
deleted file mode 100644
index 764bf4f0..00000000
Binary files a/docs/src/reference/resources/images/admon/blank.png and /dev/null differ
diff --git a/docs/src/reference/resources/images/admon/caution.gif b/docs/src/reference/resources/images/admon/caution.gif
deleted file mode 100644
index d9f5e5b1..00000000
Binary files a/docs/src/reference/resources/images/admon/caution.gif and /dev/null differ
diff --git a/docs/src/reference/resources/images/admon/caution.png b/docs/src/reference/resources/images/admon/caution.png
deleted file mode 100644
index 5b7809ca..00000000
Binary files a/docs/src/reference/resources/images/admon/caution.png and /dev/null differ
diff --git a/docs/src/reference/resources/images/admon/caution.tif b/docs/src/reference/resources/images/admon/caution.tif
deleted file mode 100644
index 4a282948..00000000
Binary files a/docs/src/reference/resources/images/admon/caution.tif and /dev/null differ
diff --git a/docs/src/reference/resources/images/admon/draft.png b/docs/src/reference/resources/images/admon/draft.png
deleted file mode 100644
index 0084708c..00000000
Binary files a/docs/src/reference/resources/images/admon/draft.png and /dev/null differ
diff --git a/docs/src/reference/resources/images/admon/home.gif b/docs/src/reference/resources/images/admon/home.gif
deleted file mode 100644
index 6784f5bb..00000000
Binary files a/docs/src/reference/resources/images/admon/home.gif and /dev/null differ
diff --git a/docs/src/reference/resources/images/admon/home.png b/docs/src/reference/resources/images/admon/home.png
deleted file mode 100644
index cbb711de..00000000
Binary files a/docs/src/reference/resources/images/admon/home.png and /dev/null differ
diff --git a/docs/src/reference/resources/images/admon/important.gif b/docs/src/reference/resources/images/admon/important.gif
deleted file mode 100644
index 6795d9a8..00000000
Binary files a/docs/src/reference/resources/images/admon/important.gif and /dev/null differ
diff --git a/docs/src/reference/resources/images/admon/important.png b/docs/src/reference/resources/images/admon/important.png
deleted file mode 100644
index ad57f6f7..00000000
Binary files a/docs/src/reference/resources/images/admon/important.png and /dev/null differ
diff --git a/docs/src/reference/resources/images/admon/important.tif b/docs/src/reference/resources/images/admon/important.tif
deleted file mode 100644
index 184de637..00000000
Binary files a/docs/src/reference/resources/images/admon/important.tif and /dev/null differ
diff --git a/docs/src/reference/resources/images/admon/next.gif b/docs/src/reference/resources/images/admon/next.gif
deleted file mode 100644
index aa1516e6..00000000
Binary files a/docs/src/reference/resources/images/admon/next.gif and /dev/null differ
diff --git a/docs/src/reference/resources/images/admon/next.png b/docs/src/reference/resources/images/admon/next.png
deleted file mode 100644
index 45835bf8..00000000
Binary files a/docs/src/reference/resources/images/admon/next.png and /dev/null differ
diff --git a/docs/src/reference/resources/images/admon/note.gif b/docs/src/reference/resources/images/admon/note.gif
deleted file mode 100644
index f329d359..00000000
Binary files a/docs/src/reference/resources/images/admon/note.gif and /dev/null differ
diff --git a/docs/src/reference/resources/images/admon/note.png b/docs/src/reference/resources/images/admon/note.png
deleted file mode 100644
index ad57f6f7..00000000
Binary files a/docs/src/reference/resources/images/admon/note.png and /dev/null differ
diff --git a/docs/src/reference/resources/images/admon/note.tif b/docs/src/reference/resources/images/admon/note.tif
deleted file mode 100644
index 08644d6b..00000000
Binary files a/docs/src/reference/resources/images/admon/note.tif and /dev/null differ
diff --git a/docs/src/reference/resources/images/admon/prev.gif b/docs/src/reference/resources/images/admon/prev.gif
deleted file mode 100644
index 64ca8f3c..00000000
Binary files a/docs/src/reference/resources/images/admon/prev.gif and /dev/null differ
diff --git a/docs/src/reference/resources/images/admon/prev.png b/docs/src/reference/resources/images/admon/prev.png
deleted file mode 100644
index cf24654f..00000000
Binary files a/docs/src/reference/resources/images/admon/prev.png and /dev/null differ
diff --git a/docs/src/reference/resources/images/admon/tip.gif b/docs/src/reference/resources/images/admon/tip.gif
deleted file mode 100644
index 823f2b41..00000000
Binary files a/docs/src/reference/resources/images/admon/tip.gif and /dev/null differ
diff --git a/docs/src/reference/resources/images/admon/tip.png b/docs/src/reference/resources/images/admon/tip.png
deleted file mode 100644
index ad57f6f7..00000000
Binary files a/docs/src/reference/resources/images/admon/tip.png and /dev/null differ
diff --git a/docs/src/reference/resources/images/admon/tip.tif b/docs/src/reference/resources/images/admon/tip.tif
deleted file mode 100644
index 4a3d8c75..00000000
Binary files a/docs/src/reference/resources/images/admon/tip.tif and /dev/null differ
diff --git a/docs/src/reference/resources/images/admon/toc-blank.png b/docs/src/reference/resources/images/admon/toc-blank.png
deleted file mode 100644
index 6ffad17a..00000000
Binary files a/docs/src/reference/resources/images/admon/toc-blank.png and /dev/null differ
diff --git a/docs/src/reference/resources/images/admon/toc-minus.png b/docs/src/reference/resources/images/admon/toc-minus.png
deleted file mode 100644
index abbb020c..00000000
Binary files a/docs/src/reference/resources/images/admon/toc-minus.png and /dev/null differ
diff --git a/docs/src/reference/resources/images/admon/toc-plus.png b/docs/src/reference/resources/images/admon/toc-plus.png
deleted file mode 100644
index 941312ce..00000000
Binary files a/docs/src/reference/resources/images/admon/toc-plus.png and /dev/null differ
diff --git a/docs/src/reference/resources/images/admon/up.gif b/docs/src/reference/resources/images/admon/up.gif
deleted file mode 100644
index aabc2d01..00000000
Binary files a/docs/src/reference/resources/images/admon/up.gif and /dev/null differ
diff --git a/docs/src/reference/resources/images/admon/up.png b/docs/src/reference/resources/images/admon/up.png
deleted file mode 100644
index 07634de2..00000000
Binary files a/docs/src/reference/resources/images/admon/up.png and /dev/null differ
diff --git a/docs/src/reference/resources/images/admon/warning.gif b/docs/src/reference/resources/images/admon/warning.gif
deleted file mode 100644
index c6acdec6..00000000
Binary files a/docs/src/reference/resources/images/admon/warning.gif and /dev/null differ
diff --git a/docs/src/reference/resources/images/admon/warning.png b/docs/src/reference/resources/images/admon/warning.png
deleted file mode 100644
index ef3e10f4..00000000
Binary files a/docs/src/reference/resources/images/admon/warning.png and /dev/null differ
diff --git a/docs/src/reference/resources/images/admon/warning.tif b/docs/src/reference/resources/images/admon/warning.tif
deleted file mode 100644
index 7b6611ec..00000000
Binary files a/docs/src/reference/resources/images/admon/warning.tif and /dev/null differ
diff --git a/docs/src/reference/resources/images/batch-wordcount-ide.jpg b/docs/src/reference/resources/images/batch-wordcount-ide.jpg
deleted file mode 100644
index bc35eda3..00000000
Binary files a/docs/src/reference/resources/images/batch-wordcount-ide.jpg and /dev/null differ
diff --git a/docs/src/reference/resources/images/callouts/1.png b/docs/src/reference/resources/images/callouts/1.png
deleted file mode 100644
index 7d473430..00000000
Binary files a/docs/src/reference/resources/images/callouts/1.png and /dev/null differ
diff --git a/docs/src/reference/resources/images/callouts/10.png b/docs/src/reference/resources/images/callouts/10.png
deleted file mode 100644
index 997bbc82..00000000
Binary files a/docs/src/reference/resources/images/callouts/10.png and /dev/null differ
diff --git a/docs/src/reference/resources/images/callouts/11.png b/docs/src/reference/resources/images/callouts/11.png
deleted file mode 100644
index ce47dac3..00000000
Binary files a/docs/src/reference/resources/images/callouts/11.png and /dev/null differ
diff --git a/docs/src/reference/resources/images/callouts/12.png b/docs/src/reference/resources/images/callouts/12.png
deleted file mode 100644
index 31daf4e2..00000000
Binary files a/docs/src/reference/resources/images/callouts/12.png and /dev/null differ
diff --git a/docs/src/reference/resources/images/callouts/13.png b/docs/src/reference/resources/images/callouts/13.png
deleted file mode 100644
index 14021a89..00000000
Binary files a/docs/src/reference/resources/images/callouts/13.png and /dev/null differ
diff --git a/docs/src/reference/resources/images/callouts/14.png b/docs/src/reference/resources/images/callouts/14.png
deleted file mode 100644
index 64014b75..00000000
Binary files a/docs/src/reference/resources/images/callouts/14.png and /dev/null differ
diff --git a/docs/src/reference/resources/images/callouts/15.png b/docs/src/reference/resources/images/callouts/15.png
deleted file mode 100644
index 0d65765f..00000000
Binary files a/docs/src/reference/resources/images/callouts/15.png and /dev/null differ
diff --git a/docs/src/reference/resources/images/callouts/2.png b/docs/src/reference/resources/images/callouts/2.png
deleted file mode 100644
index 5d09341b..00000000
Binary files a/docs/src/reference/resources/images/callouts/2.png and /dev/null differ
diff --git a/docs/src/reference/resources/images/callouts/3.png b/docs/src/reference/resources/images/callouts/3.png
deleted file mode 100644
index ef7b7004..00000000
Binary files a/docs/src/reference/resources/images/callouts/3.png and /dev/null differ
diff --git a/docs/src/reference/resources/images/callouts/4.png b/docs/src/reference/resources/images/callouts/4.png
deleted file mode 100644
index adb8364e..00000000
Binary files a/docs/src/reference/resources/images/callouts/4.png and /dev/null differ
diff --git a/docs/src/reference/resources/images/callouts/5.png b/docs/src/reference/resources/images/callouts/5.png
deleted file mode 100644
index 4d7eb460..00000000
Binary files a/docs/src/reference/resources/images/callouts/5.png and /dev/null differ
diff --git a/docs/src/reference/resources/images/callouts/6.png b/docs/src/reference/resources/images/callouts/6.png
deleted file mode 100644
index 0ba694af..00000000
Binary files a/docs/src/reference/resources/images/callouts/6.png and /dev/null differ
diff --git a/docs/src/reference/resources/images/callouts/7.png b/docs/src/reference/resources/images/callouts/7.png
deleted file mode 100644
index 472e96f8..00000000
Binary files a/docs/src/reference/resources/images/callouts/7.png and /dev/null differ
diff --git a/docs/src/reference/resources/images/callouts/8.png b/docs/src/reference/resources/images/callouts/8.png
deleted file mode 100644
index 5e60973c..00000000
Binary files a/docs/src/reference/resources/images/callouts/8.png and /dev/null differ
diff --git a/docs/src/reference/resources/images/callouts/9.png b/docs/src/reference/resources/images/callouts/9.png
deleted file mode 100644
index a0676d26..00000000
Binary files a/docs/src/reference/resources/images/callouts/9.png and /dev/null differ
diff --git a/docs/src/reference/resources/images/logo.png b/docs/src/reference/resources/images/logo.png
deleted file mode 100644
index a9f6d959..00000000
Binary files a/docs/src/reference/resources/images/logo.png and /dev/null differ
diff --git a/docs/src/reference/resources/images/xdev-spring_logo.jpg b/docs/src/reference/resources/images/xdev-spring_logo.jpg
deleted file mode 100644
index 622962ee..00000000
Binary files a/docs/src/reference/resources/images/xdev-spring_logo.jpg and /dev/null differ
diff --git a/docs/src/reference/resources/xsl/fopdf.xsl b/docs/src/reference/resources/xsl/fopdf.xsl
deleted file mode 100644
index 8582406d..00000000
--- a/docs/src/reference/resources/xsl/fopdf.xsl
+++ /dev/null
@@ -1,449 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ,
-
-
-
-
- (
-
- )
-
-
-
- Copyright © 2010-2011
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -5em
- -5em
-
-
-
-
-
-
-
-
-
-
- Spring Data Redis ()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 0
-
- 1
- 1
- 0
-
-
-
-
-
- book toc
-
-
-
- 2
-
-
-
-
-
-
-
-
-
- 0
- 0
- 0
-
-
- 5mm
- 10mm
- 10mm
-
- 15mm
- 10mm
- 0mm
-
- 18mm
- 18mm
-
-
- 0pc
-
-
-
-
- justify
- false
-
-
- 11
- 8
-
-
- 1.4
-
-
-
-
-
-
- 0.8em
-
-
-
-
-
- 17.4cm
-
-
-
- 4pt
- 4pt
- 4pt
- 4pt
-
-
-
- 0.1pt
- 0.1pt
-
-
-
-
- 1
-
-
-
-
-
-
-
- left
- bold
-
-
- pt
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 0.8em
- 0.8em
- 0.8em
-
-
- pt
-
- 0.1em
- 0.1em
- 0.1em
-
-
- 0.6em
- 0.6em
- 0.6em
-
-
- pt
-
- 0.1em
- 0.1em
- 0.1em
-
-
- 0.4em
- 0.4em
- 0.4em
-
-
- pt
-
- 0.1em
- 0.1em
- 0.1em
-
-
-
-
- bold
-
-
- pt
-
- false
- 0.4em
- 0.6em
- 0.8em
-
-
-
-
-
-
-
-
- pt
-
-
-
-
- 1em
- 1em
- 1em
- #444444
- solid
- 0.1pt
- 0.5em
- 0.5em
- 0.5em
- 0.5em
- 0.5em
- 0.5em
-
-
-
- 1
-
- #F0F0F0
-
-
-
-
-
- 0
- 1
-
-
- 90
-
-
-
-
- '1'
- src/docbkx/resources/images/admons/
-
-
-
-
-
- figure after
- example before
- equation before
- table before
- procedure before
-
-
-
- 1
-
-
-
- 0.8em
- 0.8em
- 0.8em
- 0.1em
- 0.1em
- 0.1em
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/docs/src/reference/resources/xsl/highlight-fo.xsl b/docs/src/reference/resources/xsl/highlight-fo.xsl
deleted file mode 100644
index f0b5dd94..00000000
--- a/docs/src/reference/resources/xsl/highlight-fo.xsl
+++ /dev/null
@@ -1,44 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/docs/src/reference/resources/xsl/highlight.xsl b/docs/src/reference/resources/xsl/highlight.xsl
deleted file mode 100644
index c63c4765..00000000
--- a/docs/src/reference/resources/xsl/highlight.xsl
+++ /dev/null
@@ -1,42 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/docs/src/reference/resources/xsl/html-custom.xsl b/docs/src/reference/resources/xsl/html-custom.xsl
deleted file mode 100644
index a6330843..00000000
--- a/docs/src/reference/resources/xsl/html-custom.xsl
+++ /dev/null
@@ -1,145 +0,0 @@
-
-
-
-
-
-
-
-
-
- '5'
- '1'
-
-
- 1
-
-
- 1
-
-
- 0
- 0
- 1
-
-
-
- images/admon/
- .png
-
- 120
- images/callouts/
- .png
-
-
- css/manual.css
- text/css
- book toc,title
-
- text-align: left
-
-
-
-
-
-
-
-
-
-
-
-
-
- 3
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Begin Google Analytics code
-
-
- End Google Analytics code
-
-
-
-
- Begin LoopFuse code
-
-
- End LoopFuse code
-
-
-
\ No newline at end of file
diff --git a/docs/src/reference/resources/xsl/html-single-custom.xsl b/docs/src/reference/resources/xsl/html-single-custom.xsl
deleted file mode 100644
index c37095bb..00000000
--- a/docs/src/reference/resources/xsl/html-single-custom.xsl
+++ /dev/null
@@ -1,142 +0,0 @@
-
-
-
-
-
-
-
-
-
-
- 1
-
-
- 1
-
-
- 0
- 0
- 1
-
-
-
- images/admon/
- .png
-
- 120
- images/callouts/
- .png
-
-
- css/manual.css
- text/css
- book toc,title
-
- text-align: left
-
-
-
-
-
-
-
-
-
-
-
-
-
- 2
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Begin Google Analytics code
-
-
-End Google Analytics code
-
-
-
-
-Begin LoopFuse code
-
-
-End LoopFuse code
-
-
-
\ No newline at end of file
diff --git a/docs/src/reference/resources/xsl/html.xsl b/docs/src/reference/resources/xsl/html.xsl
deleted file mode 100644
index 2b0f8d6e..00000000
--- a/docs/src/reference/resources/xsl/html.xsl
+++ /dev/null
@@ -1,107 +0,0 @@
-
-
-
-
-
-
-
-
-
-
- 0
- 0
- 1
-
-
-
-
-
- book toc
-
-
-
- 3
-
-
-
-
- 1
-
-
-
-
-
-
- 1
-
-
- 90
-
-
-
-
- 1
- images/admons/
-
-
-
- figure after
- example before
- equation before
- table before
- procedure before
-
-
-
- ,
-
-
-
- ()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/docs/src/reference/resources/xsl/html_chunk.xsl b/docs/src/reference/resources/xsl/html_chunk.xsl
deleted file mode 100644
index 29b35d28..00000000
--- a/docs/src/reference/resources/xsl/html_chunk.xsl
+++ /dev/null
@@ -1,221 +0,0 @@
-
-
-
-
-
-
-
-
-
- '5'
- '1'
- 0
- 0
- 1
-
-
-
- book toc
- qandaset toc
-
-
- 3
-
-
- 1
-
-
-
-
- 1
- 90
-
-
-
-
- 1
- images/admons/
-
-
-
- figure after
- example before
- equation before
- table before
- procedure before
-
-
-
- ,
-
-
-
- ()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 1
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/docs/src/reference/resources/xsl/pdf-custom.xsl b/docs/src/reference/resources/xsl/pdf-custom.xsl
deleted file mode 100644
index cf730cf9..00000000
--- a/docs/src/reference/resources/xsl/pdf-custom.xsl
+++ /dev/null
@@ -1,522 +0,0 @@
-
-
-
-
-
-
-
-
-
-
- '1'
- images/admon/
- .png
-
-
-
-
- 24pt
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -5em
- -5em
-
-
-
-
-
- book toc,title
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- please define productname in your docbook file!
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 0
- 0
- 0
- 0
- 1
-
-
-
-
- 0
- 0
- 0
-
-
-
- false
-
-
- 11
- 8
-
-
- 1.4
-
-
-
- left
- bold
-
-
- pt
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 0.8em
- 0.8em
- 0.8em
-
-
- pt
-
- 0.1em
- 0.1em
- 0.1em
-
-
- 0.6em
- 0.6em
- 0.6em
-
-
- pt
-
- 0.1em
- 0.1em
- 0.1em
-
-
- 0.4em
- 0.4em
- 0.4em
-
-
- pt
-
- 0.1em
- 0.1em
- 0.1em
-
-
- 0.3em
- 0.3em
- 0.3em
-
-
- pt
-
- 0.1em
- 0.1em
- 0.1em
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 4pt
- 4pt
- 4pt
- 4pt
-
-
-
- 0.1pt
- 0.1pt
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- pt
-
-
-
-
- 1em
- 1em
- 1em
- 0.1em
- 0.1em
- 0.1em
-
- #444444
- solid
- 0.1pt
- 0.5em
- 0.5em
- 0.5em
- 0.5em
- 0.5em
- 0.5em
-
-
-
- 1
-
- #F0F0F0
-
-
-
- 0.1em
- 0.1em
- 0.1em
- 0.1em
- 0.1em
- 0.1em
-
-
-
- 0.5em
- 0.5em
- 0.5em
- 0.1em
- 0.1em
- 0.1em
- always
-
-
-
-
-
- normal
- italic
-
-
- pt
-
- false
- 0.1em
- 0.1em
- 0.1em
-
-
-
-
-
- 0
- 1
-
-
- 90
-
-
-
-
-
- figure after
- example after
- equation before
- table before
- procedure before
-
-
-
- 1
-
- 0pt
-
-
- 3
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/docs/src/reference/resources/xsl/pdf-custom.xsl.bak b/docs/src/reference/resources/xsl/pdf-custom.xsl.bak
deleted file mode 100644
index 025522e2..00000000
--- a/docs/src/reference/resources/xsl/pdf-custom.xsl.bak
+++ /dev/null
@@ -1,523 +0,0 @@
-
-
-
-
-
-
-
-
-
- '1'
- images/admon/
- .png
-
-
-
-
- 24pt
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -5em
- -5em
-
-
-
-
-
- book toc,title
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- please define productname in your docbook file!
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 1
- 0
- 1
- 1
-
-
-
-
- 0
- 0
- 0
-
-
-
- false
-
-
- 11
- 8
-
-
- 1.4
-
-
-
- left
- bold
-
-
- pt
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 0.8em
- 0.8em
- 0.8em
-
-
- pt
-
- 0.1em
- 0.1em
- 0.1em
-
-
- 0.6em
- 0.6em
- 0.6em
-
-
- pt
-
- 0.1em
- 0.1em
- 0.1em
-
-
- 0.4em
- 0.4em
- 0.4em
-
-
- pt
-
- 0.1em
- 0.1em
- 0.1em
-
-
- 0.3em
- 0.3em
- 0.3em
-
-
- pt
-
- 0.1em
- 0.1em
- 0.1em
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 4pt
- 4pt
- 4pt
- 4pt
-
-
-
- 0.1pt
- 0.1pt
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- pt
-
-
-
-
- 1em
- 1em
- 1em
- 0.1em
- 0.1em
- 0.1em
-
- #444444
- solid
- 0.1pt
- 0.5em
- 0.5em
- 0.5em
- 0.5em
- 0.5em
- 0.5em
-
-
-
- 1
-
- #F0F0F0
-
-
-
- 0.1em
- 0.1em
- 0.1em
- 0.1em
- 0.1em
- 0.1em
-
-
-
- 0.5em
- 0.5em
- 0.5em
- 0.1em
- 0.1em
- 0.1em
- always
-
-
-
-
-
- normal
- italic
-
-
- pt
-
- false
- 0.1em
- 0.1em
- 0.1em
-
-
-
-
-
- 0
- 1
-
-
- 90
-
-
-
-
-
- figure after
- example after
- equation before
- table before
- procedure before
-
-
-
- 1
-
- 0pt
-
-
- 3
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar
index e98867f1..e3b3376e 100644
Binary files a/gradle/wrapper/gradle-wrapper.jar and b/gradle/wrapper/gradle-wrapper.jar differ
diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties
index 7f8f7ef1..fd3d2363 100644
--- a/gradle/wrapper/gradle-wrapper.properties
+++ b/gradle/wrapper/gradle-wrapper.properties
@@ -1,6 +1,6 @@
-#Wed Apr 25 10:23:49 CST 2012
+#Sun Jul 01 21:12:28 EEST 2012
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
-distributionUrl=http\://services.gradle.org/distributions/gradle-1.0-rc-2-bin.zip
+distributionUrl=http\://services.gradle.org/distributions/gradle-1.0-bin.zip
diff --git a/maven.gradle b/maven.gradle
index 8ce50bad..3f3068cf 100644
--- a/maven.gradle
+++ b/maven.gradle
@@ -7,42 +7,54 @@ ext.optional = { optionalDeps << it }
ext.provided = { providedDeps << it }
install {
- repositories.mavenInstaller {
- customizePom(pom, project)
- }
+ repositories.mavenInstaller {
+ customizePom(pom, project)
+ }
}
def customizePom(pom, gradleProject) {
- pom.whenConfigured { generatedPom ->
- // respect 'optional' and 'provided' dependencies
- gradleProject.optionalDeps.each { dep ->
- generatedPom.dependencies.find { it.artifactId == dep.name }?.optional = true
- }
- gradleProject.providedDeps.each { dep ->
- generatedPom.dependencies.find { it.artifactId == dep.name }?.scope = 'provided'
- }
+ pom.whenConfigured { generatedPom ->
+ // respect 'optional' and 'provided' dependencies
+ gradleProject.optionalDeps.each { dep ->
+ generatedPom.dependencies.find { it.artifactId == dep.name }?.optional = true
+ }
+ gradleProject.providedDeps.each { dep ->
+ generatedPom.dependencies.find { it.artifactId == dep.name }?.scope = 'provided'
+ }
- // eliminate test-scoped dependencies (no need in maven central poms)
- generatedPom.dependencies.removeAll { dep ->
- dep.scope == 'test'
- }
+ // eliminate test-scoped dependencies (no need in maven central poms)
+ generatedPom.dependencies.removeAll { dep ->
+ dep.scope == 'test'
+ }
- // add all items necessary for maven central publication
- generatedPom.project {
- name = gradleProject.description
- description = gradleProject.description
- url = 'https://github.com/SpringSource/spring-shell'
- organization {
- name = 'SpringSource'
- url = 'http://springsource.org/spring-shell'
- }
- licenses {
- license {
- name 'The Apache Software License, Version 2.0'
- url 'http://www.apache.org/licenses/LICENSE-2.0.txt'
- distribution 'repo'
- }
- }
- }
- }
+ // add all items necessary for maven central publication
+ generatedPom.project {
+ name = gradleProject.description
+ description = gradleProject.description
+ url = 'http://github.com/SpringSource/spring-shell'
+ organization {
+ name = 'SpringSource'
+ url = 'http://www.springsource.org/spring-shell'
+ }
+ licenses {
+ license {
+ name 'The Apache Software License, Version 2.0'
+ url 'http://www.apache.org/licenses/LICENSE-2.0.txt'
+ distribution 'repo'
+ }
+ }
+ scm {
+ url = 'http://github.com/SpringSource/spring-shell'
+ connection = 'scm:git:git://github.com/SpringSource/spring-shell'
+ developerConnection = 'scm:git:git://github.com/SpringSource/spring-shell'
+ }
+ developers {
+ developer {
+ id = 'leejianwei'
+ name = 'Jarred Li'
+ email = 'jiali@vmware.com'
+ }
+ }
+ }
+ }
}
\ No newline at end of file