zorba-coders team mailing list archive
-
zorba-coders team
-
Mailing list archive
-
Message #25333
[Merge] lp:~zorba-coders/zorba/website_integration_new into lp:zorba
Sorin Marian Nasoi has proposed merging lp:~zorba-coders/zorba/website_integration_new into lp:zorba.
Commit message:
- removed all files that were used by the Doxygen HTML generation (HTML header, footer, stylesheet) and also the images used in the Docygen HTML pages (style/*.png and style/*.gif)
- removed all HTML pages from the list of files installed in the 'doc' component
- updated the install target for the C examples from 'doc' to 'c_example'
Updated the doxygen config files (for c,csharp,cxx,java,php,python,ruby,xqj,zorba):
- now 'make doc' does not generate HTML documentation for Doxygen, it only generates the Docygen XML's
- all the deprecated params in doxy.config.in files (SHOW_DIRECTORIES, USE_INLINE_TREES, HTML_ALIGN_MEMBERS) were removed
Requested reviews:
Sorin Marian Nasoi (sorin.marian.nasoi)
For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/website_integration_new/+merge/181721
--
https://code.launchpad.net/~zorba-coders/zorba/website_integration_new/+merge/181721
Your team Zorba Coders is subscribed to branch lp:zorba.
=== modified file 'doc/CMakeLists.txt'
--- doc/CMakeLists.txt 2013-02-07 17:24:36 +0000
+++ doc/CMakeLists.txt 2013-08-23 06:50:34 +0000
@@ -18,7 +18,7 @@
FIND_PACKAGE(Doxygen)
INCLUDE(${CMAKE_SOURCE_DIR}/cmake_modules/CMakeUseDoxygen.cmake)
-# add an artifical target doc which will be used for
+# add an artificial target 'doc' which will be used for
# - host language api documentation generated by doxygen (c++, c api, swig apis)
# - manually written documentation (also generated by doxygen; build instructions, ...)
# - xquery api documentation generated by zorba (xqdoc; all modules in the modules directory)
@@ -45,7 +45,6 @@
ADD_SUBDIRECTORY(ruby)
ADD_SUBDIRECTORY(php)
ADD_SUBDIRECTORY(csharp)
-
ENDIF (SWIG_FOUND)
# generate Doxygen code documentation
@@ -64,66 +63,3 @@
FILE(MAKE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/php/html)
FILE(MAKE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/ruby/html)
ENDIF (SWIG_FOUND)
-
-INSTALL(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/cxx/html
- COMPONENT "doc"
- DESTINATION share/doc/zorba-${ZORBA_MAJOR_NUMBER}.${ZORBA_MINOR_NUMBER}.${ZORBA_PATCH_NUMBER}/cxx)
-
-INSTALL(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/c/html
- COMPONENT "doc"
- DESTINATION share/doc/zorba-${ZORBA_MAJOR_NUMBER}.${ZORBA_MINOR_NUMBER}.${ZORBA_PATCH_NUMBER}/c)
-
-INSTALL(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/code/html
- COMPONENT "doc"
- DESTINATION share/doc/zorba-${ZORBA_MAJOR_NUMBER}.${ZORBA_MINOR_NUMBER}.${ZORBA_PATCH_NUMBER}/code)
-
-IF (SWIG_FOUND)
- INSTALL(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/java/html
- COMPONENT "doc"
- DESTINATION share/doc/zorba-${ZORBA_MAJOR_NUMBER}.${ZORBA_MINOR_NUMBER}.${ZORBA_PATCH_NUMBER}/java)
-
- INSTALL(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/php/html
- COMPONENT "doc"
- DESTINATION share/doc/zorba-${ZORBA_MAJOR_NUMBER}.${ZORBA_MINOR_NUMBER}.${ZORBA_PATCH_NUMBER}/php)
-
- INSTALL(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/python/html
- COMPONENT "doc"
- DESTINATION share/doc/zorba-${ZORBA_MAJOR_NUMBER}.${ZORBA_MINOR_NUMBER}.${ZORBA_PATCH_NUMBER}/python)
-
- INSTALL(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/ruby/html
- COMPONENT "doc"
- DESTINATION share/doc/zorba-${ZORBA_MAJOR_NUMBER}.${ZORBA_MINOR_NUMBER}.${ZORBA_PATCH_NUMBER}/ruby)
-
- INSTALL(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/xqj/html
- COMPONENT "doc"
- DESTINATION share/doc/zorba-${ZORBA_MAJOR_NUMBER}.${ZORBA_MINOR_NUMBER}.${ZORBA_PATCH_NUMBER}/xqj)
-
- INSTALL(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/csharp/html
- COMPONENT "doc"
- DESTINATION share/doc/zorba-${ZORBA_MAJOR_NUMBER}.${ZORBA_MINOR_NUMBER}.${ZORBA_PATCH_NUMBER}/csharp)
-ENDIF (SWIG_FOUND)
-
-INSTALL(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/zorba/html
- COMPONENT "doc"
- DESTINATION
- share/doc/zorba-${ZORBA_MAJOR_NUMBER}.${ZORBA_MINOR_NUMBER}.${ZORBA_PATCH_NUMBER}/zorba)
-
-INSTALL(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/zorba/xqdoc
- COMPONENT "doc"
- DESTINATION
- share/doc/zorba-${ZORBA_MAJOR_NUMBER}.${ZORBA_MINOR_NUMBER}.${ZORBA_PATCH_NUMBER}/zorba
- PATTERN "*.vcxproj" EXCLUDE
- PATTERN "*.vcxproj.*" EXCLUDE
- PATTERN "*.cmake" EXCLUDE
- PATTERN "Win32" EXCLUDE
- PATTERN "CMakeFiles" EXCLUDE)
-
-
-INSTALL(FILES ${CMAKE_SOURCE_DIR}/LICENSE.txt
- DESTINATION share/doc/zorba-${ZORBA_MAJOR_NUMBER}.${ZORBA_MINOR_NUMBER}.${ZORBA_PATCH_NUMBER})
-INSTALL(FILES ${CMAKE_SOURCE_DIR}/README.txt
- DESTINATION share/doc/zorba-${ZORBA_MAJOR_NUMBER}.${ZORBA_MINOR_NUMBER}.${ZORBA_PATCH_NUMBER})
-INSTALL(FILES ${CMAKE_SOURCE_DIR}/NOTICE.txt
- DESTINATION share/doc/zorba-${ZORBA_MAJOR_NUMBER}.${ZORBA_MINOR_NUMBER}.${ZORBA_PATCH_NUMBER})
-INSTALL(FILES ${CMAKE_SOURCE_DIR}/AUTHORS.txt
- DESTINATION share/doc/zorba-${ZORBA_MAJOR_NUMBER}.${ZORBA_MINOR_NUMBER}.${ZORBA_PATCH_NUMBER})
=== modified file 'doc/c/CMakeLists.txt'
--- doc/c/CMakeLists.txt 2013-02-07 17:24:36 +0000
+++ doc/c/CMakeLists.txt 2013-08-23 06:50:34 +0000
@@ -18,20 +18,4 @@
IF (DOXYGEN_FOUND)
ADD_DEPENDENCIES(doc "cdocs")
- CONFIGURE_FILE (${CMAKE_CURRENT_SOURCE_DIR}/../style/rtab_b.gif
- ${CMAKE_CURRENT_BINARY_DIR}/html/rtab_b.gif COPYONLY)
- CONFIGURE_FILE (${CMAKE_CURRENT_SOURCE_DIR}/../style/rtab_r.gif
- ${CMAKE_CURRENT_BINARY_DIR}/html/rtab_r.gif COPYONLY)
- CONFIGURE_FILE (${CMAKE_CURRENT_SOURCE_DIR}/../style/rtab_l.gif
- ${CMAKE_CURRENT_BINARY_DIR}/html/rtab_l.gif COPYONLY)
- CONFIGURE_FILE (${CMAKE_CURRENT_SOURCE_DIR}/../style/download.png
- ${CMAKE_CURRENT_BINARY_DIR}/html/download.png COPYONLY)
- CONFIGURE_FILE (${CMAKE_CURRENT_SOURCE_DIR}/../style/modules.png
- ${CMAKE_CURRENT_BINARY_DIR}/html/modules.png COPYONLY)
- CONFIGURE_FILE (${CMAKE_CURRENT_SOURCE_DIR}/../style/terminal.png
- ${CMAKE_CURRENT_BINARY_DIR}/html/terminal.png COPYONLY)
- CONFIGURE_FILE (${CMAKE_CURRENT_SOURCE_DIR}/../style/documentation.png
- ${CMAKE_CURRENT_BINARY_DIR}/html/documentation.png COPYONLY)
- CONFIGURE_FILE (${CMAKE_CURRENT_SOURCE_DIR}/../style/noisepattern.png
- ${CMAKE_CURRENT_BINARY_DIR}/html/noisepattern.png COPYONLY)
ENDIF (DOXYGEN_FOUND)
=== modified file 'doc/c/doxy.config.in'
--- doc/c/doxy.config.in 2013-02-07 17:24:36 +0000
+++ doc/c/doxy.config.in 2013-08-23 06:50:34 +0000
@@ -528,7 +528,7 @@
# then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy
# in the documentation. The default is NO.
-SHOW_DIRECTORIES = YES
+#SHOW_DIRECTORIES = YES
# Set the SHOW_FILES tag to NO to disable the generation of the Files page.
# This will remove the Files entry from the Quick Index and from the
@@ -840,7 +840,7 @@
# If the GENERATE_HTML tag is set to YES (the default) Doxygen will
# generate HTML output.
-GENERATE_HTML = YES
+GENERATE_HTML = NO
# The HTML_OUTPUT tag is used to specify where the HTML docs will be put.
# If a relative path is entered the value of OUTPUT_DIRECTORY will be
@@ -865,13 +865,13 @@
# have to redo this when upgrading to a newer version of doxygen or when
# changing the value of configuration settings such as GENERATE_TREEVIEW!
-HTML_HEADER = @CMAKE_CURRENT_SOURCE_DIR@/../style/header.html
+HTML_HEADER =
# The HTML_FOOTER tag can be used to specify a personal HTML footer for
# each generated HTML page. If it is left blank doxygen will generate a
# standard footer.
-HTML_FOOTER = @CMAKE_CURRENT_SOURCE_DIR@/../style/footer.html
+HTML_FOOTER =
# If the HTML_TIMESTAMP tag is set to YES then the generated HTML documentation will contain the timesstamp.
@@ -884,7 +884,7 @@
# the style sheet file to the HTML output directory, so don't put your own
# stylesheet in the HTML output directory as well, or it will be erased!
-HTML_STYLESHEET = @CMAKE_CURRENT_SOURCE_DIR@/../style/stylesheet.css
+HTML_STYLESHEET =
# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or
# other source files which should be copied to the HTML output directory. Note
@@ -930,7 +930,7 @@
# files or namespaces will be aligned in HTML using tables. If set to
# NO a bullet list will be used.
-HTML_ALIGN_MEMBERS = YES
+#HTML_ALIGN_MEMBERS = YES
# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML
# documentation will contain sections that can be hidden and shown after the
@@ -1117,7 +1117,7 @@
# By enabling USE_INLINE_TREES, doxygen will generate the Groups, Directories,
# and Class Hierarchy pages using a tree view instead of an ordered list.
-USE_INLINE_TREES = NO
+#USE_INLINE_TREES = NO
# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be
# used to set the initial width (in pixels) of the frame in which the tree
=== modified file 'doc/c/examples/CMakeLists.txt'
--- doc/c/examples/CMakeLists.txt 2013-02-07 17:24:36 +0000
+++ doc/c/examples/CMakeLists.txt 2013-08-23 06:50:34 +0000
@@ -60,6 +60,6 @@
INSTALL(FILES ${CAPI_EXAMPLES}
${CMAKE_CURRENT_BINARY_DIR}/cexamples.c
${CMAKE_CURRENT_BINARY_DIR}/cparsing.xml
- COMPONENT "doc"
+ COMPONENT "c_examples"
DESTINATION
share/doc/zorba-${ZORBA_MAJOR_NUMBER}.${ZORBA_MINOR_NUMBER}.${ZORBA_PATCH_NUMBER}/c/examples)
=== modified file 'doc/code/CMakeLists.txt'
--- doc/code/CMakeLists.txt 2013-02-07 17:24:36 +0000
+++ doc/code/CMakeLists.txt 2013-08-23 06:50:34 +0000
@@ -15,12 +15,6 @@
ZORBA_DOXYGEN("${CMAKE_CURRENT_SOURCE_DIR}" "${CMAKE_CURRENT_BINARY_DIR}" "codedocs")
IF (DOXYGEN_FOUND)
- CONFIGURE_FILE (${CMAKE_CURRENT_SOURCE_DIR}/../style/rtab_b.gif
- ${CMAKE_CURRENT_BINARY_DIR}/html/rtab_b.gif COPYONLY)
- CONFIGURE_FILE (${CMAKE_CURRENT_SOURCE_DIR}/../style/rtab_r.gif
- ${CMAKE_CURRENT_BINARY_DIR}/html/rtab_r.gif COPYONLY)
- CONFIGURE_FILE (${CMAKE_CURRENT_SOURCE_DIR}/../style/rtab_l.gif
- ${CMAKE_CURRENT_BINARY_DIR}/html/rtab_l.gif COPYONLY)
CONFIGURE_FILE (${CMAKE_CURRENT_SOURCE_DIR}/headers_svg/components.svg
${CMAKE_CURRENT_BINARY_DIR}/headers_svg/components.svg COPYONLY)
CONFIGURE_FILE (${CMAKE_CURRENT_SOURCE_DIR}/headers_svg/headers.svg
=== modified file 'doc/code/doxy.config.in'
--- doc/code/doxy.config.in 2013-02-07 17:24:36 +0000
+++ doc/code/doxy.config.in 2013-08-23 06:50:34 +0000
@@ -839,13 +839,13 @@
# each generated HTML page. If it is left blank doxygen will generate a
# standard header.
-HTML_HEADER = @CMAKE_CURRENT_SOURCE_DIR@/../style/header.html
+HTML_HEADER =
# The HTML_FOOTER tag can be used to specify a personal HTML footer for
# each generated HTML page. If it is left blank doxygen will generate a
# standard footer.
-HTML_FOOTER = @CMAKE_CURRENT_SOURCE_DIR@/../style/footer.html
+HTML_FOOTER =
# If the HTML_TIMESTAMP tag is set to YES then the generated HTML
# documentation will contain the timesstamp.
@@ -859,7 +859,7 @@
# the style sheet file to the HTML output directory, so don't put your own
# stylesheet in the HTML output directory as well, or it will be erased!
-HTML_STYLESHEET = @CMAKE_CURRENT_SOURCE_DIR@/../style/stylesheet.css
+HTML_STYLESHEET =
# The HTML_COLORSTYLE_HUE tag controls the color of the HTML output.
# Doxygen will adjust the colors in the stylesheet and background images
=== modified file 'doc/csharp/CMakeLists.txt'
--- doc/csharp/CMakeLists.txt 2013-04-06 00:56:45 +0000
+++ doc/csharp/CMakeLists.txt 2013-08-23 06:50:34 +0000
@@ -19,20 +19,4 @@
IF (DOXYGEN_FOUND)
ADD_DEPENDENCIES (doc "csharpdocs")
-
- CONFIGURE_FILE (
- ${CMAKE_CURRENT_SOURCE_DIR}/../style/rtab_b.gif
- ${CMAKE_CURRENT_BINARY_DIR}/html/rtab_b.gif
- COPYONLY
- )
- CONFIGURE_FILE (
- ${CMAKE_CURRENT_SOURCE_DIR}/../style/rtab_r.gif
- ${CMAKE_CURRENT_BINARY_DIR}/html/rtab_r.gif
- COPYONLY
- )
- CONFIGURE_FILE (
- ${CMAKE_CURRENT_SOURCE_DIR}/../style/rtab_l.gif
- ${CMAKE_CURRENT_BINARY_DIR}/html/rtab_l.gif
- COPYONLY
- )
ENDIF (DOXYGEN_FOUND)
=== modified file 'doc/csharp/doxy.config.in'
--- doc/csharp/doxy.config.in 2013-02-07 17:24:36 +0000
+++ doc/csharp/doxy.config.in 2013-08-23 06:50:34 +0000
@@ -528,7 +528,7 @@
# then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy
# in the documentation. The default is NO.
-SHOW_DIRECTORIES = YES
+#SHOW_DIRECTORIES = YES
# Set the SHOW_FILES tag to NO to disable the generation of the Files page.
# This will remove the Files entry from the Quick Index and from the
@@ -838,7 +838,7 @@
# If the GENERATE_HTML tag is set to YES (the default) Doxygen will
# generate HTML output.
-GENERATE_HTML = YES
+GENERATE_HTML = NO
# The HTML_OUTPUT tag is used to specify where the HTML docs will be put.
# If a relative path is entered the value of OUTPUT_DIRECTORY will be
@@ -863,13 +863,13 @@
# have to redo this when upgrading to a newer version of doxygen or when
# changing the value of configuration settings such as GENERATE_TREEVIEW!
-HTML_HEADER = @CMAKE_CURRENT_SOURCE_DIR@/../style/header.html
+HTML_HEADER =
# The HTML_FOOTER tag can be used to specify a personal HTML footer for
# each generated HTML page. If it is left blank doxygen will generate a
# standard footer.
-HTML_FOOTER = @CMAKE_CURRENT_SOURCE_DIR@/../style/footer.html
+HTML_FOOTER =
# If the HTML_TIMESTAMP tag is set to YES then the generated HTML documentation will contain the timesstamp.
@@ -882,7 +882,7 @@
# the style sheet file to the HTML output directory, so don't put your own
# stylesheet in the HTML output directory as well, or it will be erased!
-HTML_STYLESHEET = @CMAKE_CURRENT_SOURCE_DIR@/../style/stylesheet.css
+HTML_STYLESHEET =
# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or
# other source files which should be copied to the HTML output directory. Note
@@ -928,7 +928,7 @@
# files or namespaces will be aligned in HTML using tables. If set to
# NO a bullet list will be used.
-HTML_ALIGN_MEMBERS = YES
+#HTML_ALIGN_MEMBERS = YES
# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML
# documentation will contain sections that can be hidden and shown after the
@@ -1115,7 +1115,7 @@
# By enabling USE_INLINE_TREES, doxygen will generate the Groups, Directories,
# and Class Hierarchy pages using a tree view instead of an ordered list.
-USE_INLINE_TREES = NO
+#USE_INLINE_TREES = NO
# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be
# used to set the initial width (in pixels) of the frame in which the tree
=== modified file 'doc/cxx/CMakeLists.txt'
--- doc/cxx/CMakeLists.txt 2013-02-07 17:24:36 +0000
+++ doc/cxx/CMakeLists.txt 2013-08-23 06:50:34 +0000
@@ -18,20 +18,4 @@
IF (DOXYGEN_FOUND)
ADD_DEPENDENCIES(doc "cxxdocs")
- CONFIGURE_FILE (${CMAKE_CURRENT_SOURCE_DIR}/../style/rtab_b.gif
- ${CMAKE_CURRENT_BINARY_DIR}/html/rtab_b.gif COPYONLY)
- CONFIGURE_FILE (${CMAKE_CURRENT_SOURCE_DIR}/../style/rtab_r.gif
- ${CMAKE_CURRENT_BINARY_DIR}/html/rtab_r.gif COPYONLY)
- CONFIGURE_FILE (${CMAKE_CURRENT_SOURCE_DIR}/../style/rtab_l.gif
- ${CMAKE_CURRENT_BINARY_DIR}/html/rtab_l.gif COPYONLY)
- CONFIGURE_FILE (${CMAKE_CURRENT_SOURCE_DIR}/../style/download.png
- ${CMAKE_CURRENT_BINARY_DIR}/html/download.png COPYONLY)
- CONFIGURE_FILE (${CMAKE_CURRENT_SOURCE_DIR}/../style/modules.png
- ${CMAKE_CURRENT_BINARY_DIR}/html/modules.png COPYONLY)
- CONFIGURE_FILE (${CMAKE_CURRENT_SOURCE_DIR}/../style/terminal.png
- ${CMAKE_CURRENT_BINARY_DIR}/html/terminal.png COPYONLY)
- CONFIGURE_FILE (${CMAKE_CURRENT_SOURCE_DIR}/../style/documentation.png
- ${CMAKE_CURRENT_BINARY_DIR}/html/documentation.png COPYONLY)
- CONFIGURE_FILE (${CMAKE_CURRENT_SOURCE_DIR}/../style/noisepattern.png
- ${CMAKE_CURRENT_BINARY_DIR}/html/noisepattern.png COPYONLY)
ENDIF (DOXYGEN_FOUND)
=== modified file 'doc/cxx/doxy.config.in'
--- doc/cxx/doxy.config.in 2013-02-07 17:24:36 +0000
+++ doc/cxx/doxy.config.in 2013-08-23 06:50:34 +0000
@@ -528,7 +528,7 @@
# then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy
# in the documentation. The default is NO.
-SHOW_DIRECTORIES = YES
+#SHOW_DIRECTORIES = YES
# Set the SHOW_FILES tag to NO to disable the generation of the Files page.
# This will remove the Files entry from the Quick Index and from the
@@ -852,7 +852,7 @@
# If the GENERATE_HTML tag is set to YES (the default) Doxygen will
# generate HTML output.
-GENERATE_HTML = YES
+GENERATE_HTML = NO
# The HTML_OUTPUT tag is used to specify where the HTML docs will be put.
# If a relative path is entered the value of OUTPUT_DIRECTORY will be
@@ -877,13 +877,13 @@
# have to redo this when upgrading to a newer version of doxygen or when
# changing the value of configuration settings such as GENERATE_TREEVIEW!
-HTML_HEADER = @CMAKE_CURRENT_SOURCE_DIR@/../style/header.html
+HTML_HEADER =
# The HTML_FOOTER tag can be used to specify a personal HTML footer for
# each generated HTML page. If it is left blank doxygen will generate a
# standard footer.
-HTML_FOOTER = @CMAKE_CURRENT_SOURCE_DIR@/../style/footer.html
+HTML_FOOTER =
# If the HTML_TIMESTAMP tag is set to YES then the generated HTML documentation will contain the timesstamp.
@@ -896,7 +896,7 @@
# the style sheet file to the HTML output directory, so don't put your own
# stylesheet in the HTML output directory as well, or it will be erased!
-HTML_STYLESHEET = @CMAKE_CURRENT_SOURCE_DIR@/../style/stylesheet.css
+HTML_STYLESHEET =
# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or
# other source files which should be copied to the HTML output directory. Note
@@ -942,7 +942,7 @@
# files or namespaces will be aligned in HTML using tables. If set to
# NO a bullet list will be used.
-HTML_ALIGN_MEMBERS = YES
+#HTML_ALIGN_MEMBERS = YES
# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML
# documentation will contain sections that can be hidden and shown after the
@@ -1129,7 +1129,7 @@
# By enabling USE_INLINE_TREES, doxygen will generate the Groups, Directories,
# and Class Hierarchy pages using a tree view instead of an ordered list.
-USE_INLINE_TREES = NO
+#USE_INLINE_TREES = NO
# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be
# used to set the initial width (in pixels) of the frame in which the tree
=== modified file 'doc/java/CMakeLists.txt'
--- doc/java/CMakeLists.txt 2013-02-07 17:24:36 +0000
+++ doc/java/CMakeLists.txt 2013-08-23 06:50:34 +0000
@@ -18,20 +18,4 @@
IF (DOXYGEN_FOUND)
ADD_DEPENDENCIES (doc "javadocs")
-
- CONFIGURE_FILE (
- ${CMAKE_CURRENT_SOURCE_DIR}/../style/rtab_b.gif
- ${CMAKE_CURRENT_BINARY_DIR}/html/rtab_b.gif
- COPYONLY
- )
- CONFIGURE_FILE (
- ${CMAKE_CURRENT_SOURCE_DIR}/../style/rtab_r.gif
- ${CMAKE_CURRENT_BINARY_DIR}/html/rtab_r.gif
- COPYONLY
- )
- CONFIGURE_FILE (
- ${CMAKE_CURRENT_SOURCE_DIR}/../style/rtab_l.gif
- ${CMAKE_CURRENT_BINARY_DIR}/html/rtab_l.gif
- COPYONLY
- )
ENDIF (DOXYGEN_FOUND)
=== modified file 'doc/java/doxy.config.in'
--- doc/java/doxy.config.in 2013-02-07 17:24:36 +0000
+++ doc/java/doxy.config.in 2013-08-23 06:50:34 +0000
@@ -528,7 +528,7 @@
# then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy
# in the documentation. The default is NO.
-SHOW_DIRECTORIES = YES
+#SHOW_DIRECTORIES = YES
# Set the SHOW_FILES tag to NO to disable the generation of the Files page.
# This will remove the Files entry from the Quick Index and from the
@@ -838,7 +838,7 @@
# If the GENERATE_HTML tag is set to YES (the default) Doxygen will
# generate HTML output.
-GENERATE_HTML = YES
+GENERATE_HTML = NO
# The HTML_OUTPUT tag is used to specify where the HTML docs will be put.
# If a relative path is entered the value of OUTPUT_DIRECTORY will be
@@ -863,13 +863,13 @@
# have to redo this when upgrading to a newer version of doxygen or when
# changing the value of configuration settings such as GENERATE_TREEVIEW!
-HTML_HEADER = @CMAKE_CURRENT_SOURCE_DIR@/../style/header.html
+HTML_HEADER =
# The HTML_FOOTER tag can be used to specify a personal HTML footer for
# each generated HTML page. If it is left blank doxygen will generate a
# standard footer.
-HTML_FOOTER = @CMAKE_CURRENT_SOURCE_DIR@/../style/footer.html
+HTML_FOOTER =
# If the HTML_TIMESTAMP tag is set to YES then the generated HTML documentation will contain the timesstamp.
@@ -882,7 +882,7 @@
# the style sheet file to the HTML output directory, so don't put your own
# stylesheet in the HTML output directory as well, or it will be erased!
-HTML_STYLESHEET = @CMAKE_CURRENT_SOURCE_DIR@/../style/stylesheet.css
+HTML_STYLESHEET =
# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or
# other source files which should be copied to the HTML output directory. Note
@@ -928,7 +928,7 @@
# files or namespaces will be aligned in HTML using tables. If set to
# NO a bullet list will be used.
-HTML_ALIGN_MEMBERS = YES
+#HTML_ALIGN_MEMBERS = YES
# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML
# documentation will contain sections that can be hidden and shown after the
@@ -1115,7 +1115,7 @@
# By enabling USE_INLINE_TREES, doxygen will generate the Groups, Directories,
# and Class Hierarchy pages using a tree view instead of an ordered list.
-USE_INLINE_TREES = NO
+#USE_INLINE_TREES = NO
# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be
# used to set the initial width (in pixels) of the frame in which the tree
=== modified file 'doc/php/CMakeLists.txt'
--- doc/php/CMakeLists.txt 2013-02-07 17:24:36 +0000
+++ doc/php/CMakeLists.txt 2013-08-23 06:50:34 +0000
@@ -18,11 +18,4 @@
IF (DOXYGEN_FOUND)
ADD_DEPENDENCIES(doc "phpdocs")
-
- CONFIGURE_FILE (${CMAKE_CURRENT_SOURCE_DIR}/../style/rtab_b.gif
- ${CMAKE_CURRENT_BINARY_DIR}/html/rtab_b.gif COPYONLY)
- CONFIGURE_FILE (${CMAKE_CURRENT_SOURCE_DIR}/../style/rtab_r.gif
- ${CMAKE_CURRENT_BINARY_DIR}/html/rtab_r.gif COPYONLY)
- CONFIGURE_FILE (${CMAKE_CURRENT_SOURCE_DIR}/../style/rtab_l.gif
- ${CMAKE_CURRENT_BINARY_DIR}/html/rtab_l.gif COPYONLY)
ENDIF (DOXYGEN_FOUND)
=== modified file 'doc/php/doxy.config.in'
--- doc/php/doxy.config.in 2013-02-07 17:24:36 +0000
+++ doc/php/doxy.config.in 2013-08-23 06:50:34 +0000
@@ -528,7 +528,7 @@
# then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy
# in the documentation. The default is NO.
-SHOW_DIRECTORIES = YES
+#SHOW_DIRECTORIES = YES
# Set the SHOW_FILES tag to NO to disable the generation of the Files page.
# This will remove the Files entry from the Quick Index and from the
@@ -838,7 +838,7 @@
# If the GENERATE_HTML tag is set to YES (the default) Doxygen will
# generate HTML output.
-GENERATE_HTML = YES
+GENERATE_HTML = NO
# The HTML_OUTPUT tag is used to specify where the HTML docs will be put.
# If a relative path is entered the value of OUTPUT_DIRECTORY will be
@@ -863,13 +863,13 @@
# have to redo this when upgrading to a newer version of doxygen or when
# changing the value of configuration settings such as GENERATE_TREEVIEW!
-HTML_HEADER = @CMAKE_CURRENT_SOURCE_DIR@/../style/header.html
+HTML_HEADER =
# The HTML_FOOTER tag can be used to specify a personal HTML footer for
# each generated HTML page. If it is left blank doxygen will generate a
# standard footer.
-HTML_FOOTER = @CMAKE_CURRENT_SOURCE_DIR@/../style/footer.html
+HTML_FOOTER =
# If the HTML_TIMESTAMP tag is set to YES then the generated HTML documentation will contain the timesstamp.
@@ -882,7 +882,7 @@
# the style sheet file to the HTML output directory, so don't put your own
# stylesheet in the HTML output directory as well, or it will be erased!
-HTML_STYLESHEET = @CMAKE_CURRENT_SOURCE_DIR@/../style/stylesheet.css
+HTML_STYLESHEET =
# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or
# other source files which should be copied to the HTML output directory. Note
@@ -928,7 +928,7 @@
# files or namespaces will be aligned in HTML using tables. If set to
# NO a bullet list will be used.
-HTML_ALIGN_MEMBERS = YES
+#HTML_ALIGN_MEMBERS = YES
# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML
# documentation will contain sections that can be hidden and shown after the
@@ -1115,7 +1115,7 @@
# By enabling USE_INLINE_TREES, doxygen will generate the Groups, Directories,
# and Class Hierarchy pages using a tree view instead of an ordered list.
-USE_INLINE_TREES = NO
+#USE_INLINE_TREES = NO
# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be
# used to set the initial width (in pixels) of the frame in which the tree
=== modified file 'doc/python/CMakeLists.txt'
--- doc/python/CMakeLists.txt 2013-02-07 17:24:36 +0000
+++ doc/python/CMakeLists.txt 2013-08-23 06:50:34 +0000
@@ -18,20 +18,4 @@
IF (DOXYGEN_FOUND)
ADD_DEPENDENCIES (doc "pythondocs")
-
- CONFIGURE_FILE (
- ${CMAKE_CURRENT_SOURCE_DIR}/../style/rtab_b.gif
- ${CMAKE_CURRENT_BINARY_DIR}/html/rtab_b.gif
- COPYONLY
- )
- CONFIGURE_FILE (
- ${CMAKE_CURRENT_SOURCE_DIR}/../style/rtab_r.gif
- ${CMAKE_CURRENT_BINARY_DIR}/html/rtab_r.gif
- COPYONLY
- )
- CONFIGURE_FILE (
- ${CMAKE_CURRENT_SOURCE_DIR}/../style/rtab_l.gif
- ${CMAKE_CURRENT_BINARY_DIR}/html/rtab_l.gif
- COPYONLY
- )
ENDIF (DOXYGEN_FOUND)
=== modified file 'doc/python/doxy.config.in'
--- doc/python/doxy.config.in 2013-02-07 17:24:36 +0000
+++ doc/python/doxy.config.in 2013-08-23 06:50:34 +0000
@@ -528,7 +528,7 @@
# then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy
# in the documentation. The default is NO.
-SHOW_DIRECTORIES = YES
+#SHOW_DIRECTORIES = YES
# Set the SHOW_FILES tag to NO to disable the generation of the Files page.
# This will remove the Files entry from the Quick Index and from the
@@ -838,7 +838,7 @@
# If the GENERATE_HTML tag is set to YES (the default) Doxygen will
# generate HTML output.
-GENERATE_HTML = YES
+GENERATE_HTML = NO
# The HTML_OUTPUT tag is used to specify where the HTML docs will be put.
# If a relative path is entered the value of OUTPUT_DIRECTORY will be
@@ -863,13 +863,13 @@
# have to redo this when upgrading to a newer version of doxygen or when
# changing the value of configuration settings such as GENERATE_TREEVIEW!
-HTML_HEADER = @CMAKE_CURRENT_SOURCE_DIR@/../style/header.html
+HTML_HEADER =
# The HTML_FOOTER tag can be used to specify a personal HTML footer for
# each generated HTML page. If it is left blank doxygen will generate a
# standard footer.
-HTML_FOOTER = @CMAKE_CURRENT_SOURCE_DIR@/../style/footer.html
+HTML_FOOTER =
# If the HTML_TIMESTAMP tag is set to YES then the generated HTML documentation will contain the timesstamp.
@@ -882,7 +882,7 @@
# the style sheet file to the HTML output directory, so don't put your own
# stylesheet in the HTML output directory as well, or it will be erased!
-HTML_STYLESHEET = @CMAKE_CURRENT_SOURCE_DIR@/../style/stylesheet.css
+HTML_STYLESHEET =
# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or
# other source files which should be copied to the HTML output directory. Note
@@ -928,7 +928,7 @@
# files or namespaces will be aligned in HTML using tables. If set to
# NO a bullet list will be used.
-HTML_ALIGN_MEMBERS = YES
+#HTML_ALIGN_MEMBERS = YES
# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML
# documentation will contain sections that can be hidden and shown after the
@@ -1115,7 +1115,7 @@
# By enabling USE_INLINE_TREES, doxygen will generate the Groups, Directories,
# and Class Hierarchy pages using a tree view instead of an ordered list.
-USE_INLINE_TREES = NO
+#USE_INLINE_TREES = NO
# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be
# used to set the initial width (in pixels) of the frame in which the tree
=== modified file 'doc/ruby/CMakeLists.txt'
--- doc/ruby/CMakeLists.txt 2013-02-07 17:24:36 +0000
+++ doc/ruby/CMakeLists.txt 2013-08-23 06:50:34 +0000
@@ -18,12 +18,5 @@
IF (DOXYGEN_FOUND)
ADD_DEPENDENCIES(doc "rubydocs")
-
- CONFIGURE_FILE (${CMAKE_CURRENT_SOURCE_DIR}/../style/rtab_b.gif
- ${CMAKE_CURRENT_BINARY_DIR}/html/rtab_b.gif COPYONLY)
- CONFIGURE_FILE (${CMAKE_CURRENT_SOURCE_DIR}/../style/rtab_r.gif
- ${CMAKE_CURRENT_BINARY_DIR}/html/rtab_r.gif COPYONLY)
- CONFIGURE_FILE (${CMAKE_CURRENT_SOURCE_DIR}/../style/rtab_l.gif
- ${CMAKE_CURRENT_BINARY_DIR}/html/rtab_l.gif COPYONLY)
ENDIF (DOXYGEN_FOUND)
=== modified file 'doc/ruby/doxy.config.in'
--- doc/ruby/doxy.config.in 2013-02-07 17:24:36 +0000
+++ doc/ruby/doxy.config.in 2013-08-23 06:50:34 +0000
@@ -528,7 +528,7 @@
# then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy
# in the documentation. The default is NO.
-SHOW_DIRECTORIES = YES
+#SHOW_DIRECTORIES = YES
# Set the SHOW_FILES tag to NO to disable the generation of the Files page.
# This will remove the Files entry from the Quick Index and from the
@@ -838,7 +838,7 @@
# If the GENERATE_HTML tag is set to YES (the default) Doxygen will
# generate HTML output.
-GENERATE_HTML = YES
+GENERATE_HTML = NO
# The HTML_OUTPUT tag is used to specify where the HTML docs will be put.
# If a relative path is entered the value of OUTPUT_DIRECTORY will be
@@ -863,13 +863,13 @@
# have to redo this when upgrading to a newer version of doxygen or when
# changing the value of configuration settings such as GENERATE_TREEVIEW!
-HTML_HEADER = @CMAKE_CURRENT_SOURCE_DIR@/../style/header.html
+HTML_HEADER =
# The HTML_FOOTER tag can be used to specify a personal HTML footer for
# each generated HTML page. If it is left blank doxygen will generate a
# standard footer.
-HTML_FOOTER = @CMAKE_CURRENT_SOURCE_DIR@/../style/footer.html
+HTML_FOOTER =
# If the HTML_TIMESTAMP tag is set to YES then the generated HTML documentation will contain the timesstamp.
@@ -882,7 +882,7 @@
# the style sheet file to the HTML output directory, so don't put your own
# stylesheet in the HTML output directory as well, or it will be erased!
-HTML_STYLESHEET = @CMAKE_CURRENT_SOURCE_DIR@/../style/stylesheet.css
+HTML_STYLESHEET =
# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or
# other source files which should be copied to the HTML output directory. Note
@@ -928,7 +928,7 @@
# files or namespaces will be aligned in HTML using tables. If set to
# NO a bullet list will be used.
-HTML_ALIGN_MEMBERS = YES
+#HTML_ALIGN_MEMBERS = YES
# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML
# documentation will contain sections that can be hidden and shown after the
@@ -1115,7 +1115,7 @@
# By enabling USE_INLINE_TREES, doxygen will generate the Groups, Directories,
# and Class Hierarchy pages using a tree view instead of an ordered list.
-USE_INLINE_TREES = NO
+#USE_INLINE_TREES = NO
# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be
# used to set the initial width (in pixels) of the frame in which the tree
=== removed directory 'doc/style'
=== removed file 'doc/style/documentation.png'
Binary files doc/style/documentation.png 2013-02-07 17:24:36 +0000 and doc/style/documentation.png 1970-01-01 00:00:00 +0000 differ
=== removed file 'doc/style/download.png'
Binary files doc/style/download.png 2013-02-07 17:24:36 +0000 and doc/style/download.png 1970-01-01 00:00:00 +0000 differ
=== removed file 'doc/style/footer.html'
--- doc/style/footer.html 2013-02-07 17:24:36 +0000
+++ doc/style/footer.html 1970-01-01 00:00:00 +0000
@@ -1,14 +0,0 @@
-
-<!-- footer.html-->
- </div>
-
-<div id="footer">
- <div id="innerfooter"><p>Zorba is supported by the <a href="http://flworfound.org/"; target="_blank">FLWOR
- Foundation</a> and distributed under
- <a href="http://www.apache.org/licenses/LICENSE-2.0.html"; target="_blank">Apache Licence, Version 2.0</a>.</p>
- </div>
-</div>
-
-</body>
-</html>
-
=== removed file 'doc/style/header.html'
--- doc/style/header.html 2013-02-07 17:24:36 +0000
+++ doc/style/header.html 1970-01-01 00:00:00 +0000
@@ -1,44 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html>
- <head>
- <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
- <meta name="copyright" content="The FLWOR Foundation" />
- <link rel="shortcut icon" href="../../../../favicon.ico" />
- <link type="text/css" href="stylesheet.css" rel="stylesheet" />
- <!--link type="text/css" href="../../zorba/xqdoc/xhtml/styles/reset.css" rel="stylesheet" /-->
- <link type="text/css" href="../../zorba/xqdoc/xhtml/styles/main.css" rel="stylesheet" />
- <!--link type="text/css" href="doxygen.css" rel="stylesheet" /-->
- <script src="http://www.google.com/js/gweb/analytics/autotrack.js";> </script>
- <script>//<![CDATA[
-new gweb.analytics.AutoTrack({profile: 'UA-4281090-1'});
- //]]></script>
- </head>
- <body>
-<body>
-<div id="header">
- <div class="innerheader text-left">
- <div id="logo_container"><a href="../../../../html/index.html"><img
- src="../../zorba/xqdoc/xhtml/images/zorba_logo.png"
- alt="Zorba C++ XQuery Processor"></a>
- <h1><a href="../../../../html/index.html">Zorba</a></h1>
- <p><a href="../../../../html/index.html">The XQuery Processor</a></p></div>
- <div id="innermenu" class="box">
- <ul>
- <li style="width:102px !important;"><a
- href="../../../../doc/latest/zorba/html/index.html" class="documentation">Documentation</a>
- </li>
- <li><a href="http://try.zorba-xquery.com"; target="_blank" class="tryzorba">Live Demo</a></li>
- <li><a href="../../../../html/modules.html" class="modules">Modules</a></li>
- <li><a href="../../../../html/downloads.html" class="download">Download</a></li>
- <li><a href="../../../../html/tools.html" class="tools">Tools</a></li>
- <li><a href="../../../../html/blog.html" class="blog">Blog</a></li>
- <li><a href="../../../../html/code.html" class="open">Code</a></li>
- </ul>
- </div>
- </div>
-</div>
-<!-- up to here in header.html -->
-
-<div id="main">
-<!-- Generated by Doxygen 1.5.5 -->
-
=== removed file 'doc/style/modules.png'
Binary files doc/style/modules.png 2013-02-07 17:24:36 +0000 and doc/style/modules.png 1970-01-01 00:00:00 +0000 differ
=== removed file 'doc/style/noisepattern.png'
Binary files doc/style/noisepattern.png 2013-02-07 17:24:36 +0000 and doc/style/noisepattern.png 1970-01-01 00:00:00 +0000 differ
=== removed file 'doc/style/rtab_b.gif'
Binary files doc/style/rtab_b.gif 2013-02-07 17:24:36 +0000 and doc/style/rtab_b.gif 1970-01-01 00:00:00 +0000 differ
=== removed file 'doc/style/rtab_l.gif'
Binary files doc/style/rtab_l.gif 2013-02-07 17:24:36 +0000 and doc/style/rtab_l.gif 1970-01-01 00:00:00 +0000 differ
=== removed file 'doc/style/rtab_r.gif'
Binary files doc/style/rtab_r.gif 2013-02-07 17:24:36 +0000 and doc/style/rtab_r.gif 1970-01-01 00:00:00 +0000 differ
=== removed file 'doc/style/stylesheet.css'
--- doc/style/stylesheet.css 2013-02-07 17:24:36 +0000
+++ doc/style/stylesheet.css 1970-01-01 00:00:00 +0000
@@ -1,655 +0,0 @@
-/* Doxygen */
-BODY,H1,H2,H3,H4,H5,H6,P,CENTER,TD,TH,UL,DL,DIV {
- font-family: Geneva, Arial, Helvetica, sans-serif;
-}
-BODY,TD {
- font-size: 90%;
-}
-H1 {
- text-align: center;
- font-size: 160%;
-}
-H2 {
- font-size: 120%;
-}
-H3 {
- font-size: 100%;
-}
-CAPTION {
- font-weight: bold
-}
-DIV.qindex {
- width: 100%;
- background-color: #e8eef2;
- border: 1px solid #84b0c7;
- text-align: center;
- margin: 2px;
- padding: 2px;
- line-height: 140%;
-}
-DIV.navpath {
- width: 100%;
- background-color: #e8eef2;
- border: 1px solid #84b0c7;
- text-align: center;
- margin: 2px;
- padding: 2px;
- line-height: 140%;
-}
-DIV.navtab {
- background-color: #e8eef2;
- border: 1px solid #84b0c7;
- text-align: center;
- margin: 2px;
- margin-right: 15px;
- padding: 2px;
-}
-TD.navtab {
- font-size: 70%;
-}
-A.qindex {
- text-decoration: none;
- font-weight: bold;
- color: #1A419D;
-}
-A.qindex:visited {
- text-decoration: none;
- font-weight: bold;
- color: #1A419D
-}
-A.qindex:hover {
- text-decoration: none;
- background-color: #ddddff;
-}
-A.qindexHL {
- text-decoration: none;
- font-weight: bold;
- background-color: #6666cc;
- color: #ffffff;
- border: 1px double #9295C2;
-}
-A.qindexHL:hover {
- text-decoration: none;
- background-color: #6666cc;
- color: #ffffff;
-}
-A.qindexHL:visited {
- text-decoration: none;
- background-color: #6666cc;
- color: #ffffff
-}
-A.el {
- text-decoration: none;
- /*font-weight: bold;*/
-}
-A.elRef {
- /*font-weight: bold;*/
-}
-A.code:link {
- text-decoration: none;
- font-weight: normal;
- color: #0000FF
-}
-A.code:visited {
- text-decoration: none;
- font-weight: normal;
- color: #0000FF
-}
-A.codeRef:link {
- font-weight: normal;
- color: #0000FF
-}
-A.codeRef:visited {
- font-weight: normal;
- color: #0000FF
-}
-A:hover {
- text-decoration: underline;
- /*background-color: #f2f2ff*/
-}
-DL.el {
- margin-left: -1cm
-}
-.fragment {
- font-family: monospace, fixed;
- font-size: 95%;
-}
-PRE.fragment {
- border: 1px solid #CCCCCC;
- background-color: #f5f5f5;
- /*margin-top: 4px;
- margin-bottom: 4px;
- margin-left: 2px;
- margin-right: 8px;*/
- padding-left: 6px;
- padding-right: 6px;
- padding-top: 4px;
- padding-bottom: 4px;
-}
-DIV.ah {
- background-color: black;
- font-weight: bold;
- color: #ffffff;
- margin-bottom: 3px;
- margin-top: 3px
-}
-
-DIV.groupHeader {
- margin-left: 16px;
- margin-top: 12px;
- margin-bottom: 6px;
- font-weight: bold;
-}
-DIV.groupText {
- margin-left: 16px;
- font-style: italic;
- font-size: 90%
-}
-BODY {
- background: white;
- color: #333333;
- margin-right: 20px;
- margin-left: 20px;
-}
-TD.indexkey {
- background-color: #e8eef2;
- font-weight: bold;
- padding-right : 10px;
- padding-top : 2px;
- padding-left : 10px;
- padding-bottom : 2px;
- margin-left : 0px;
- margin-right : 0px;
- margin-top : 2px;
- margin-bottom : 2px;
- border: 1px solid #CCCCCC;
-}
-TD.indexvalue {
- background-color: #e8eef2;
- font-style: italic;
- padding-right : 10px;
- padding-top : 2px;
- padding-left : 10px;
- padding-bottom : 2px;
- margin-left : 0px;
- margin-right : 0px;
- margin-top : 2px;
- margin-bottom : 2px;
- border: 1px solid #CCCCCC;
-}
-TR.memlist {
- background-color: #f0f0f0;
-}
-P.formulaDsp {
- text-align: center;
-}
-IMG.formulaDsp {
-}
-IMG.formulaInl {
- vertical-align: middle;
-}
-SPAN.keyword { color: #008000 }
-SPAN.keywordtype { color: #604020 }
-SPAN.keywordflow { color: #e08000 }
-SPAN.comment { color: #800000 }
-SPAN.preprocessor { color: #806020 }
-SPAN.stringliteral { color: #002080 }
-SPAN.charliteral { color: #008080 }
-SPAN.vhdldigit { color: #ff00ff }
-SPAN.vhdlchar { color: #000000 }
-SPAN.vhdlkeyword { color: #700070 }
-SPAN.vhdllogic { color: #ff0000 }
-
-.mdescLeft {
- padding: 0px 8px 4px 8px;
- font-size: 80%;
- font-style: italic;
- background-color: #FAFAFA;
- border-top: 1px none #E0E0E0;
- border-right: 1px none #E0E0E0;
- border-bottom: 1px none #E0E0E0;
- border-left: 1px none #E0E0E0;
- margin: 0px;
-}
-.mdescRight {
- padding: 0px 8px 4px 8px;
- font-size: 80%;
- font-style: italic;
- background-color: #FAFAFA;
- border-top: 1px none #E0E0E0;
- border-right: 1px none #E0E0E0;
- border-bottom: 1px none #E0E0E0;
- border-left: 1px none #E0E0E0;
- margin: 0px;
-}
-.memItemLeft {
- padding: 1px 0px 0px 8px;
- margin: 4px;
- border-top-width: 1px;
- border-right-width: 1px;
- border-bottom-width: 1px;
- border-left-width: 1px;
- border-top-color: #E0E0E0;
- border-right-color: #E0E0E0;
- border-bottom-color: #E0E0E0;
- border-left-color: #E0E0E0;
- border-top-style: solid;
- border-right-style: none;
- border-bottom-style: none;
- border-left-style: none;
- background-color: #FAFAFA;
- font-size: 80%;
-}
-.memItemRight {
- padding: 1px 8px 0px 8px;
- margin: 4px;
- border-top-width: 1px;
- border-right-width: 1px;
- border-bottom-width: 1px;
- border-left-width: 1px;
- border-top-color: #E0E0E0;
- border-right-color: #E0E0E0;
- border-bottom-color: #E0E0E0;
- border-left-color: #E0E0E0;
- border-top-style: solid;
- border-right-style: none;
- border-bottom-style: none;
- border-left-style: none;
- background-color: #FAFAFA;
- font-size: 80%;
-}
-.memTemplItemLeft {
- padding: 1px 0px 0px 8px;
- margin: 4px;
- border-top-width: 1px;
- border-right-width: 1px;
- border-bottom-width: 1px;
- border-left-width: 1px;
- border-top-color: #E0E0E0;
- border-right-color: #E0E0E0;
- border-bottom-color: #E0E0E0;
- border-left-color: #E0E0E0;
- border-top-style: none;
- border-right-style: none;
- border-bottom-style: none;
- border-left-style: none;
- background-color: #FAFAFA;
- font-size: 80%;
-}
-.memTemplItemRight {
- padding: 1px 8px 0px 8px;
- margin: 4px;
- border-top-width: 1px;
- border-right-width: 1px;
- border-bottom-width: 1px;
- border-left-width: 1px;
- border-top-color: #E0E0E0;
- border-right-color: #E0E0E0;
- border-bottom-color: #E0E0E0;
- border-left-color: #E0E0E0;
- border-top-style: none;
- border-right-style: none;
- border-bottom-style: none;
- border-left-style: none;
- background-color: #FAFAFA;
- font-size: 80%;
-}
-.memTemplParams {
- padding: 1px 0px 0px 8px;
- margin: 4px;
- border-top-width: 1px;
- border-right-width: 1px;
- border-bottom-width: 1px;
- border-left-width: 1px;
- border-top-color: #E0E0E0;
- border-right-color: #E0E0E0;
- border-bottom-color: #E0E0E0;
- border-left-color: #E0E0E0;
- border-top-style: solid;
- border-right-style: none;
- border-bottom-style: none;
- border-left-style: none;
- color: #606060;
- background-color: #FAFAFA;
- font-size: 80%;
-}
-.search {
- color: #003399;
- font-weight: bold;
-}
-FORM.search {
- margin-bottom: 0px;
- margin-top: 0px;
-}
-INPUT.search {
- font-size: 75%;
- color: #000080;
- font-weight: normal;
- background-color: #e8eef2;
-}
-TD.tiny {
- font-size: 75%;
-}
-a {
- color: #1A41A8;
- text-decoration: none;
-}
-a:visited {
- color: #2A3798;
-}
-.dirtab {
- padding: 4px;
- border-collapse: collapse;
- border: 1px solid #84b0c7;
-}
-TH.dirtab {
- background: #e8eef2;
- font-weight: bold;
-}
-HR {
- height: 1px;
- border: none;
- border-top: 1px solid black;
-}
-
-/* Style for detailed member documentation */
-.memtemplate {
- font-size: 80%;
- color: #606060;
- font-weight: normal;
- margin-left: 3px;
-}
-.memnav {
- background-color: #e8eef2;
- border: 1px solid #84b0c7;
- text-align: center;
- margin: 2px;
- margin-right: 15px;
- padding: 2px;
-}
-.memitem {
- padding: 4px;
- background-color: #eef3f5;
- border-width: 1px;
- border-style: solid;
- border-color: #dedeee;
- -moz-border-radius: 8px 8px 8px 8px;
-}
-.memname {
- white-space: nowrap;
- font-weight: bold;
-}
-.memdoc{
- padding-left: 10px;
-}
-.memproto {
- background-color: #d5e1e8;
- width: 100%;
- border-width: 1px;
- border-style: solid;
- border-color: #84b0c7;
- font-weight: bold;
- -moz-border-radius: 8px 8px 8px 8px;
-}
-.paramkey {
- text-align: right;
-}
-.paramtype {
- white-space: nowrap;
-}
-.paramname {
- color: #602020;
- font-style: italic;
- white-space: nowrap;
-}
-/* End Styling for detailed member documentation */
-
-/* for the tree view */
-.ftvtree {
- font-family: sans-serif;
- margin:0.5em;
-}
-.directory {
- font-size: 9pt;
- font-weight: bold;
-}
-.directory h3 {
- margin: 0px;
- margin-top: 1em;
- font-size: 11pt;
-}
-.directory > h3 {
- margin-top: 0;
-}
-.directory p {
- margin: 0px;
- white-space: nowrap;
-}
-.directory div {
- display: none;
- margin: 0px;
-}
-.directory img {
- vertical-align: -30%;
-}
-
-/* Tabs */
-DIV.tabs
-{
- float : left;
- width : 100%;
- background : url("rtab_b.gif") repeat-x bottom;
- margin-bottom : 4px;
-}
-
-DIV.tabs UL
-{
- margin : 0px;
- padding-left : 10px;
- list-style : none;
-}
-
-DIV.tabs LI, DIV.tabs FORM
-{
- display : inline;
- margin : 0px;
- padding : 0px;
-}
-
-DIV.tabs FORM
-{
- float : right;
-}
-
-DIV.tabs A
-{
- float : left;
- background : url("rtab_r.gif") no-repeat right top;
- border-bottom : 1px solid #84B0C7;
- font-size : x-small;
- font-weight : bold;
- text-decoration : none;
-}
-
-DIV.tabs A:hover
-{
- background-position: 100% -150px;
-}
-
-DIV.tabs A:link, DIV.tabs A:visited,
-DIV.tabs A:active, DIV.tabs A:hover
-{
- color: #1A419D;
-}
-
-DIV.tabs SPAN
-{
- float : left;
- display : block;
- background : url("rtab_l.gif") no-repeat left top;
- padding : 5px 9px;
- white-space : nowrap;
-}
-
-DIV.tabs INPUT
-{
- float : right;
- display : inline;
- font-size : 1em;
-}
-
-DIV.tabs TD
-{
- font-size : x-small;
- font-weight : bold;
- text-decoration : none;
-}
-
-
-
-/* Commented Backslash Hack hides rule from IE5-Mac \*/
-DIV.tabs SPAN {float : none;}
-/* End IE5-Mac hack */
-
-DIV.tabs A:hover SPAN
-{
- background-position: 0% -150px;
-}
-
-DIV.tabs LI.current A
-{
- background-position: 100% -150px;
- border-width : 0px;
-}
-
-DIV.tabs LI.current SPAN
-{
- background-position: 0% -150px;
- padding-bottom : 6px;
-}
-
-DIV.navpath
-{
- background : none;
- border : none;
- border-bottom : 1px solid #84B0C7;
-}
-
-/* Hide Search Box */
-#searchli , #MSearchClose, #MSearchSelectWindow, #MSearchSelectWindow {
- display: none;
-}
-
-/* Zorba Custom CSS */
-table.ft_rels {
- border-collapse: collapse;
-}
-
-table.ft_rels td {
- border-width: 1px;
- border-color: #CCCCCC;
- border-style: solid;
- padding: 2px;
- vertical-align: top;
-}
-
-table.ft_rels th {
- border-width: 1px;
- border-color: #CCCCCC;
- border-style: solid;
- padding: 2px;
- text-align: left;
-}
-
-#page {
- padding: 10px;
-}
-
-#page p {
- padding: 0px;
-}
-
-.contents {
- padding: 5px;
- margin: 5px;
- line-height: 1.4;
-}
-
-.contents p,
-.contents pre {
- margin: 14px 0;
-}
-
-.textblock p,
-.textblock pre {
- margin: 14px 0;
-}
-
-
-/* If the website stylesheet is not present, we don't display the header and footer. */
-#header, #featuring, #footer {
- display: block;
-}
-
-.header
-{
- clear: left;
-}
-
-#main {
- text-align: left;
- line-height: 1.4;
- margin: 10px;
-}
-
-/* Fulltext tables */
-table.ft_rels {
- border-collapse: collapse;
-}
-table.ft_rels td {
- border-width: 1px;
- border-color: #CCCCCC;
- border-style: solid;
- padding: 2px;
- vertical-align: top;
-}
-table.ft_rels th {
- border-width: 1px;
- border-color: #CCCCCC;
- border-style: solid;
- padding: 2px;
- text-align: left;
-}
-
-/* Table in Documentation index page */
-.tdDocIndexTable
-{
- vertical-align: top;
- font-size: 100%;
- padding: 5px;
- width: 50%;
-}
-
-/* Doxygen table */
-.doxtable {
- border-collapse: collapse;
- border-style:none;
-}
-
-.doxtable tr,td {
- border-style: none;
-}
-
-#main p, li, h1, h2, h3
-{
- margin-top: 0.3em;
- margin-bottom: 0.3em;
-}
-
-#discuss
-{
- /*display:none;*/
- padding: 5px;
- margin: 5px;
-}
-
=== removed file 'doc/style/terminal.png'
Binary files doc/style/terminal.png 2013-02-07 17:24:36 +0000 and doc/style/terminal.png 1970-01-01 00:00:00 +0000 differ
=== modified file 'doc/xqj/CMakeLists.txt'
--- doc/xqj/CMakeLists.txt 2013-04-06 00:56:45 +0000
+++ doc/xqj/CMakeLists.txt 2013-08-23 06:50:34 +0000
@@ -19,20 +19,4 @@
IF (DOXYGEN_FOUND)
ADD_DEPENDENCIES (doc "xqjdocs")
-
- CONFIGURE_FILE (
- ${CMAKE_CURRENT_SOURCE_DIR}/../style/rtab_b.gif
- ${CMAKE_CURRENT_BINARY_DIR}/html/rtab_b.gif
- COPYONLY
- )
- CONFIGURE_FILE (
- ${CMAKE_CURRENT_SOURCE_DIR}/../style/rtab_r.gif
- ${CMAKE_CURRENT_BINARY_DIR}/html/rtab_r.gif
- COPYONLY
- )
- CONFIGURE_FILE (
- ${CMAKE_CURRENT_SOURCE_DIR}/../style/rtab_l.gif
- ${CMAKE_CURRENT_BINARY_DIR}/html/rtab_l.gif
- COPYONLY
- )
ENDIF (DOXYGEN_FOUND)
=== modified file 'doc/xqj/doxy.config.in'
--- doc/xqj/doxy.config.in 2013-02-07 17:24:36 +0000
+++ doc/xqj/doxy.config.in 2013-08-23 06:50:34 +0000
@@ -528,7 +528,7 @@
# then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy
# in the documentation. The default is NO.
-SHOW_DIRECTORIES = YES
+#SHOW_DIRECTORIES = YES
# Set the SHOW_FILES tag to NO to disable the generation of the Files page.
# This will remove the Files entry from the Quick Index and from the
@@ -839,7 +839,7 @@
# If the GENERATE_HTML tag is set to YES (the default) Doxygen will
# generate HTML output.
-GENERATE_HTML = YES
+GENERATE_HTML = NO
# The HTML_OUTPUT tag is used to specify where the HTML docs will be put.
# If a relative path is entered the value of OUTPUT_DIRECTORY will be
@@ -864,13 +864,13 @@
# have to redo this when upgrading to a newer version of doxygen or when
# changing the value of configuration settings such as GENERATE_TREEVIEW!
-HTML_HEADER = @CMAKE_CURRENT_SOURCE_DIR@/../style/header.html
+HTML_HEADER =
# The HTML_FOOTER tag can be used to specify a personal HTML footer for
# each generated HTML page. If it is left blank doxygen will generate a
# standard footer.
-HTML_FOOTER = @CMAKE_CURRENT_SOURCE_DIR@/../style/footer.html
+HTML_FOOTER =
# If the HTML_TIMESTAMP tag is set to YES then the generated HTML documentation will contain the timesstamp.
@@ -883,7 +883,7 @@
# the style sheet file to the HTML output directory, so don't put your own
# stylesheet in the HTML output directory as well, or it will be erased!
-HTML_STYLESHEET = @CMAKE_CURRENT_SOURCE_DIR@/../style/stylesheet.css
+HTML_STYLESHEET =
# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or
# other source files which should be copied to the HTML output directory. Note
@@ -929,7 +929,7 @@
# files or namespaces will be aligned in HTML using tables. If set to
# NO a bullet list will be used.
-HTML_ALIGN_MEMBERS = YES
+#HTML_ALIGN_MEMBERS = YES
# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML
# documentation will contain sections that can be hidden and shown after the
@@ -1116,7 +1116,7 @@
# By enabling USE_INLINE_TREES, doxygen will generate the Groups, Directories,
# and Class Hierarchy pages using a tree view instead of an ordered list.
-USE_INLINE_TREES = NO
+#USE_INLINE_TREES = NO
# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be
# used to set the initial width (in pixels) of the frame in which the tree
=== modified file 'doc/zorba/CMakeLists.txt'
--- doc/zorba/CMakeLists.txt 2013-06-21 20:13:41 +0000
+++ doc/zorba/CMakeLists.txt 2013-08-23 06:50:34 +0000
@@ -27,32 +27,6 @@
# which is used to build all documentation related targets
LIST(APPEND ZORBA_DOC_DEPENDENCIES docs)
- # and install all doxygen required styles and images
- CONFIGURE_FILE (${CMAKE_CURRENT_SOURCE_DIR}/../style/rtab_b.gif
- ${CMAKE_CURRENT_BINARY_DIR}/html/rtab_b.gif COPYONLY)
- CONFIGURE_FILE (${CMAKE_CURRENT_SOURCE_DIR}/../style/rtab_r.gif
- ${CMAKE_CURRENT_BINARY_DIR}/html/rtab_r.gif COPYONLY)
- CONFIGURE_FILE (${CMAKE_CURRENT_SOURCE_DIR}/../style/rtab_l.gif
- ${CMAKE_CURRENT_BINARY_DIR}/html/rtab_l.gif COPYONLY)
- CONFIGURE_FILE (${CMAKE_CURRENT_SOURCE_DIR}/../style/download.png
- ${CMAKE_CURRENT_BINARY_DIR}/html/download.png COPYONLY)
- CONFIGURE_FILE (${CMAKE_CURRENT_SOURCE_DIR}/../style/modules.png
- ${CMAKE_CURRENT_BINARY_DIR}/html/modules.png COPYONLY)
- CONFIGURE_FILE (${CMAKE_CURRENT_SOURCE_DIR}/../style/terminal.png
- ${CMAKE_CURRENT_BINARY_DIR}/html/terminal.png COPYONLY)
- CONFIGURE_FILE (${CMAKE_CURRENT_SOURCE_DIR}/../style/documentation.png
- ${CMAKE_CURRENT_BINARY_DIR}/html/documentation.png COPYONLY)
- CONFIGURE_FILE (${CMAKE_CURRENT_SOURCE_DIR}/../style/noisepattern.png
- ${CMAKE_CURRENT_BINARY_DIR}/html/noisepattern.png COPYONLY)
- CONFIGURE_FILE (${CMAKE_CURRENT_SOURCE_DIR}/scripting_spec.html
- ${CMAKE_CURRENT_BINARY_DIR}/html/scripting_spec.html COPYONLY)
- CONFIGURE_FILE (${CMAKE_CURRENT_SOURCE_DIR}/XQueryforJSON.html
- ${CMAKE_CURRENT_BINARY_DIR}/html/XQueryforJSON.html COPYONLY)
- CONFIGURE_FILE (${CMAKE_CURRENT_SOURCE_DIR}/JSONforXQuery.html
- ${CMAKE_CURRENT_BINARY_DIR}/html/JSONforXQuery.html COPYONLY)
- CONFIGURE_FILE (${CMAKE_CURRENT_SOURCE_DIR}/W3C-WD.css
- ${CMAKE_CURRENT_BINARY_DIR}/html/W3C-WD.css COPYONLY)
-
FILE(WRITE ${CMAKE_CURRENT_BINARY_DIR}/known_issues.dox "/** \\page known_issues Known Issues
")
FILE(READ ${CMAKE_SOURCE_DIR}/KNOWN_ISSUES.txt KNWON_ISSUES_CONTENS)
=== modified file 'doc/zorba/doxy.config.in'
--- doc/zorba/doxy.config.in 2013-02-07 17:24:36 +0000
+++ doc/zorba/doxy.config.in 2013-08-23 06:50:34 +0000
@@ -528,7 +528,7 @@
# then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy
# in the documentation. The default is NO.
-SHOW_DIRECTORIES = YES
+#SHOW_DIRECTORIES = YES
# Set the SHOW_FILES tag to NO to disable the generation of the Files page.
# This will remove the Files entry from the Quick Index and from the
@@ -859,7 +859,7 @@
# If the GENERATE_HTML tag is set to YES (the default) Doxygen will
# generate HTML output.
-GENERATE_HTML = YES
+GENERATE_HTML = NO
# The HTML_OUTPUT tag is used to specify where the HTML docs will be put.
# If a relative path is entered the value of OUTPUT_DIRECTORY will be
@@ -884,13 +884,13 @@
# have to redo this when upgrading to a newer version of doxygen or when
# changing the value of configuration settings such as GENERATE_TREEVIEW!
-HTML_HEADER = @CMAKE_CURRENT_SOURCE_DIR@/../style/header.html
+HTML_HEADER =
# The HTML_FOOTER tag can be used to specify a personal HTML footer for
# each generated HTML page. If it is left blank doxygen will generate a
# standard footer.
-HTML_FOOTER = @CMAKE_CURRENT_SOURCE_DIR@/../style/footer.html
+HTML_FOOTER =
# If the HTML_TIMESTAMP tag is set to YES then the generated HTML documentation will contain the timesstamp.
@@ -903,7 +903,7 @@
# the style sheet file to the HTML output directory, so don't put your own
# stylesheet in the HTML output directory as well, or it will be erased!
-HTML_STYLESHEET = @CMAKE_CURRENT_SOURCE_DIR@/../style/stylesheet.css
+HTML_STYLESHEET =
# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or
# other source files which should be copied to the HTML output directory. Note
@@ -949,7 +949,7 @@
# files or namespaces will be aligned in HTML using tables. If set to
# NO a bullet list will be used.
-HTML_ALIGN_MEMBERS = YES
+#HTML_ALIGN_MEMBERS = YES
# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML
# documentation will contain sections that can be hidden and shown after the
@@ -1136,7 +1136,7 @@
# By enabling USE_INLINE_TREES, doxygen will generate the Groups, Directories,
# and Class Hierarchy pages using a tree view instead of an ordered list.
-USE_INLINE_TREES = NO
+#USE_INLINE_TREES = NO
# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be
# used to set the initial width (in pixels) of the frame in which the tree
=== modified file 'doc/zorba/xqdoc/CMakeLists.txt'
--- doc/zorba/xqdoc/CMakeLists.txt 2013-06-21 18:33:53 +0000
+++ doc/zorba/xqdoc/CMakeLists.txt 2013-08-23 06:50:34 +0000
@@ -16,28 +16,6 @@
MESSAGE(WARNING "Can not build XQDoc documentation because 'File' module is not present")
ELSE(NOT ZORBA_WITH_FILE_ACCESS)
-INSTALL(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/images
- DESTINATION share/zorba-${ZORBA_MAJOR_NUMBER}.${ZORBA_MINOR_NUMBER}.${ZORBA_PATCH_NUMBER}/xqdoc/requisites
- COMPONENT "doc"
- PATTERN "*.svn" EXCLUDE
- )
-INSTALL(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/js
- DESTINATION share/zorba-${ZORBA_MAJOR_NUMBER}.${ZORBA_MINOR_NUMBER}.${ZORBA_PATCH_NUMBER}/xqdoc/requisites
- COMPONENT "doc"
- PATTERN "*.svn" EXCLUDE
- )
-INSTALL(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/css
- DESTINATION share/zorba-${ZORBA_MAJOR_NUMBER}.${ZORBA_MINOR_NUMBER}.${ZORBA_PATCH_NUMBER}/xqdoc/requisites
- COMPONENT "doc"
- PATTERN "*.svn" EXCLUDE
- )
-INSTALL(FILES src/xqdoc-html.xq
- src/xqdoc-html.xqy
- template.xml
- DESTINATION share/zorba-${ZORBA_MAJOR_NUMBER}.${ZORBA_MINOR_NUMBER}.${ZORBA_PATCH_NUMBER}/xqdoc/generator/
- COMPONENT "doc"
- )
-
CONFIGURE_FILE (${CMAKE_CURRENT_SOURCE_DIR}/src/xqdoc-html.xq
${CMAKE_CURRENT_BINARY_DIR}/../../../xqdoc/generator/xqdoc-html.xq COPYONLY)