Merge lp:~zorba-coders/zorba/website_integration_new into lp:zorba

Proposed by Sorin Marian Nasoi
Status: Merged
Merged at revision: 11605
Proposed branch: lp:~zorba-coders/zorba/website_integration_new
Merge into: lp:zorba
Diff against target: 1727 lines (+68/-1009)
26 files modified
doc/CMakeLists.txt (+1/-65)
doc/c/CMakeLists.txt (+0/-16)
doc/c/doxy.config.in (+7/-7)
doc/c/examples/CMakeLists.txt (+1/-1)
doc/code/CMakeLists.txt (+0/-6)
doc/code/doxy.config.in (+3/-3)
doc/csharp/CMakeLists.txt (+0/-16)
doc/csharp/doxy.config.in (+7/-7)
doc/cxx/CMakeLists.txt (+0/-16)
doc/cxx/doxy.config.in (+7/-7)
doc/java/CMakeLists.txt (+0/-16)
doc/java/doxy.config.in (+7/-7)
doc/php/CMakeLists.txt (+0/-7)
doc/php/doxy.config.in (+7/-7)
doc/python/CMakeLists.txt (+0/-16)
doc/python/doxy.config.in (+7/-7)
doc/ruby/CMakeLists.txt (+0/-7)
doc/ruby/doxy.config.in (+7/-7)
doc/style/footer.html (+0/-14)
doc/style/header.html (+0/-44)
doc/style/stylesheet.css (+0/-655)
doc/xqj/CMakeLists.txt (+0/-16)
doc/xqj/doxy.config.in (+7/-7)
doc/zorba/CMakeLists.txt (+0/-26)
doc/zorba/doxy.config.in (+7/-7)
doc/zorba/xqdoc/CMakeLists.txt (+0/-22)
To merge this branch: bzr merge lp:~zorba-coders/zorba/website_integration_new
Reviewer Review Type Date Requested Status
Chris Hillery Approve
Sorin Marian Nasoi Approve
Review via email: mp+181721@code.launchpad.net

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

To post a comment you must log in.
Revision history for this message
Sorin Marian Nasoi (sorin.marian.nasoi) :
review: Approve
Revision history for this message
Chris Hillery (ceejatec) :
review: Approve
Revision history for this message
Zorba Build Bot (zorba-buildbot) wrote :
Revision history for this message
Zorba Build Bot (zorba-buildbot) wrote :

Validation queue succeeded - proposal merged!

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'doc/CMakeLists.txt'
2--- doc/CMakeLists.txt 2013-02-07 17:24:36 +0000
3+++ doc/CMakeLists.txt 2013-08-23 06:50:34 +0000
4@@ -18,7 +18,7 @@
5 FIND_PACKAGE(Doxygen)
6 INCLUDE(${CMAKE_SOURCE_DIR}/cmake_modules/CMakeUseDoxygen.cmake)
7
8-# add an artifical target doc which will be used for
9+# add an artificial target 'doc' which will be used for
10 # - host language api documentation generated by doxygen (c++, c api, swig apis)
11 # - manually written documentation (also generated by doxygen; build instructions, ...)
12 # - xquery api documentation generated by zorba (xqdoc; all modules in the modules directory)
13@@ -45,7 +45,6 @@
14 ADD_SUBDIRECTORY(ruby)
15 ADD_SUBDIRECTORY(php)
16 ADD_SUBDIRECTORY(csharp)
17-
18 ENDIF (SWIG_FOUND)
19
20 # generate Doxygen code documentation
21@@ -64,66 +63,3 @@
22 FILE(MAKE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/php/html)
23 FILE(MAKE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/ruby/html)
24 ENDIF (SWIG_FOUND)
25-
26-INSTALL(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/cxx/html
27- COMPONENT "doc"
28- DESTINATION share/doc/zorba-${ZORBA_MAJOR_NUMBER}.${ZORBA_MINOR_NUMBER}.${ZORBA_PATCH_NUMBER}/cxx)
29-
30-INSTALL(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/c/html
31- COMPONENT "doc"
32- DESTINATION share/doc/zorba-${ZORBA_MAJOR_NUMBER}.${ZORBA_MINOR_NUMBER}.${ZORBA_PATCH_NUMBER}/c)
33-
34-INSTALL(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/code/html
35- COMPONENT "doc"
36- DESTINATION share/doc/zorba-${ZORBA_MAJOR_NUMBER}.${ZORBA_MINOR_NUMBER}.${ZORBA_PATCH_NUMBER}/code)
37-
38-IF (SWIG_FOUND)
39- INSTALL(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/java/html
40- COMPONENT "doc"
41- DESTINATION share/doc/zorba-${ZORBA_MAJOR_NUMBER}.${ZORBA_MINOR_NUMBER}.${ZORBA_PATCH_NUMBER}/java)
42-
43- INSTALL(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/php/html
44- COMPONENT "doc"
45- DESTINATION share/doc/zorba-${ZORBA_MAJOR_NUMBER}.${ZORBA_MINOR_NUMBER}.${ZORBA_PATCH_NUMBER}/php)
46-
47- INSTALL(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/python/html
48- COMPONENT "doc"
49- DESTINATION share/doc/zorba-${ZORBA_MAJOR_NUMBER}.${ZORBA_MINOR_NUMBER}.${ZORBA_PATCH_NUMBER}/python)
50-
51- INSTALL(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/ruby/html
52- COMPONENT "doc"
53- DESTINATION share/doc/zorba-${ZORBA_MAJOR_NUMBER}.${ZORBA_MINOR_NUMBER}.${ZORBA_PATCH_NUMBER}/ruby)
54-
55- INSTALL(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/xqj/html
56- COMPONENT "doc"
57- DESTINATION share/doc/zorba-${ZORBA_MAJOR_NUMBER}.${ZORBA_MINOR_NUMBER}.${ZORBA_PATCH_NUMBER}/xqj)
58-
59- INSTALL(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/csharp/html
60- COMPONENT "doc"
61- DESTINATION share/doc/zorba-${ZORBA_MAJOR_NUMBER}.${ZORBA_MINOR_NUMBER}.${ZORBA_PATCH_NUMBER}/csharp)
62-ENDIF (SWIG_FOUND)
63-
64-INSTALL(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/zorba/html
65- COMPONENT "doc"
66- DESTINATION
67- share/doc/zorba-${ZORBA_MAJOR_NUMBER}.${ZORBA_MINOR_NUMBER}.${ZORBA_PATCH_NUMBER}/zorba)
68-
69-INSTALL(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/zorba/xqdoc
70- COMPONENT "doc"
71- DESTINATION
72- share/doc/zorba-${ZORBA_MAJOR_NUMBER}.${ZORBA_MINOR_NUMBER}.${ZORBA_PATCH_NUMBER}/zorba
73- PATTERN "*.vcxproj" EXCLUDE
74- PATTERN "*.vcxproj.*" EXCLUDE
75- PATTERN "*.cmake" EXCLUDE
76- PATTERN "Win32" EXCLUDE
77- PATTERN "CMakeFiles" EXCLUDE)
78-
79-
80-INSTALL(FILES ${CMAKE_SOURCE_DIR}/LICENSE.txt
81- DESTINATION share/doc/zorba-${ZORBA_MAJOR_NUMBER}.${ZORBA_MINOR_NUMBER}.${ZORBA_PATCH_NUMBER})
82-INSTALL(FILES ${CMAKE_SOURCE_DIR}/README.txt
83- DESTINATION share/doc/zorba-${ZORBA_MAJOR_NUMBER}.${ZORBA_MINOR_NUMBER}.${ZORBA_PATCH_NUMBER})
84-INSTALL(FILES ${CMAKE_SOURCE_DIR}/NOTICE.txt
85- DESTINATION share/doc/zorba-${ZORBA_MAJOR_NUMBER}.${ZORBA_MINOR_NUMBER}.${ZORBA_PATCH_NUMBER})
86-INSTALL(FILES ${CMAKE_SOURCE_DIR}/AUTHORS.txt
87- DESTINATION share/doc/zorba-${ZORBA_MAJOR_NUMBER}.${ZORBA_MINOR_NUMBER}.${ZORBA_PATCH_NUMBER})
88
89=== modified file 'doc/c/CMakeLists.txt'
90--- doc/c/CMakeLists.txt 2013-02-07 17:24:36 +0000
91+++ doc/c/CMakeLists.txt 2013-08-23 06:50:34 +0000
92@@ -18,20 +18,4 @@
93
94 IF (DOXYGEN_FOUND)
95 ADD_DEPENDENCIES(doc "cdocs")
96- CONFIGURE_FILE (${CMAKE_CURRENT_SOURCE_DIR}/../style/rtab_b.gif
97- ${CMAKE_CURRENT_BINARY_DIR}/html/rtab_b.gif COPYONLY)
98- CONFIGURE_FILE (${CMAKE_CURRENT_SOURCE_DIR}/../style/rtab_r.gif
99- ${CMAKE_CURRENT_BINARY_DIR}/html/rtab_r.gif COPYONLY)
100- CONFIGURE_FILE (${CMAKE_CURRENT_SOURCE_DIR}/../style/rtab_l.gif
101- ${CMAKE_CURRENT_BINARY_DIR}/html/rtab_l.gif COPYONLY)
102- CONFIGURE_FILE (${CMAKE_CURRENT_SOURCE_DIR}/../style/download.png
103- ${CMAKE_CURRENT_BINARY_DIR}/html/download.png COPYONLY)
104- CONFIGURE_FILE (${CMAKE_CURRENT_SOURCE_DIR}/../style/modules.png
105- ${CMAKE_CURRENT_BINARY_DIR}/html/modules.png COPYONLY)
106- CONFIGURE_FILE (${CMAKE_CURRENT_SOURCE_DIR}/../style/terminal.png
107- ${CMAKE_CURRENT_BINARY_DIR}/html/terminal.png COPYONLY)
108- CONFIGURE_FILE (${CMAKE_CURRENT_SOURCE_DIR}/../style/documentation.png
109- ${CMAKE_CURRENT_BINARY_DIR}/html/documentation.png COPYONLY)
110- CONFIGURE_FILE (${CMAKE_CURRENT_SOURCE_DIR}/../style/noisepattern.png
111- ${CMAKE_CURRENT_BINARY_DIR}/html/noisepattern.png COPYONLY)
112 ENDIF (DOXYGEN_FOUND)
113
114=== modified file 'doc/c/doxy.config.in'
115--- doc/c/doxy.config.in 2013-02-07 17:24:36 +0000
116+++ doc/c/doxy.config.in 2013-08-23 06:50:34 +0000
117@@ -528,7 +528,7 @@
118 # then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy
119 # in the documentation. The default is NO.
120
121-SHOW_DIRECTORIES = YES
122+#SHOW_DIRECTORIES = YES
123
124 # Set the SHOW_FILES tag to NO to disable the generation of the Files page.
125 # This will remove the Files entry from the Quick Index and from the
126@@ -840,7 +840,7 @@
127 # If the GENERATE_HTML tag is set to YES (the default) Doxygen will
128 # generate HTML output.
129
130-GENERATE_HTML = YES
131+GENERATE_HTML = NO
132
133 # The HTML_OUTPUT tag is used to specify where the HTML docs will be put.
134 # If a relative path is entered the value of OUTPUT_DIRECTORY will be
135@@ -865,13 +865,13 @@
136 # have to redo this when upgrading to a newer version of doxygen or when
137 # changing the value of configuration settings such as GENERATE_TREEVIEW!
138
139-HTML_HEADER = @CMAKE_CURRENT_SOURCE_DIR@/../style/header.html
140+HTML_HEADER =
141
142 # The HTML_FOOTER tag can be used to specify a personal HTML footer for
143 # each generated HTML page. If it is left blank doxygen will generate a
144 # standard footer.
145
146-HTML_FOOTER = @CMAKE_CURRENT_SOURCE_DIR@/../style/footer.html
147+HTML_FOOTER =
148
149 # If the HTML_TIMESTAMP tag is set to YES then the generated HTML documentation will contain the timesstamp.
150
151@@ -884,7 +884,7 @@
152 # the style sheet file to the HTML output directory, so don't put your own
153 # stylesheet in the HTML output directory as well, or it will be erased!
154
155-HTML_STYLESHEET = @CMAKE_CURRENT_SOURCE_DIR@/../style/stylesheet.css
156+HTML_STYLESHEET =
157
158 # The HTML_EXTRA_FILES tag can be used to specify one or more extra images or
159 # other source files which should be copied to the HTML output directory. Note
160@@ -930,7 +930,7 @@
161 # files or namespaces will be aligned in HTML using tables. If set to
162 # NO a bullet list will be used.
163
164-HTML_ALIGN_MEMBERS = YES
165+#HTML_ALIGN_MEMBERS = YES
166
167 # If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML
168 # documentation will contain sections that can be hidden and shown after the
169@@ -1117,7 +1117,7 @@
170 # By enabling USE_INLINE_TREES, doxygen will generate the Groups, Directories,
171 # and Class Hierarchy pages using a tree view instead of an ordered list.
172
173-USE_INLINE_TREES = NO
174+#USE_INLINE_TREES = NO
175
176 # If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be
177 # used to set the initial width (in pixels) of the frame in which the tree
178
179=== modified file 'doc/c/examples/CMakeLists.txt'
180--- doc/c/examples/CMakeLists.txt 2013-02-07 17:24:36 +0000
181+++ doc/c/examples/CMakeLists.txt 2013-08-23 06:50:34 +0000
182@@ -60,6 +60,6 @@
183 INSTALL(FILES ${CAPI_EXAMPLES}
184 ${CMAKE_CURRENT_BINARY_DIR}/cexamples.c
185 ${CMAKE_CURRENT_BINARY_DIR}/cparsing.xml
186- COMPONENT "doc"
187+ COMPONENT "c_examples"
188 DESTINATION
189 share/doc/zorba-${ZORBA_MAJOR_NUMBER}.${ZORBA_MINOR_NUMBER}.${ZORBA_PATCH_NUMBER}/c/examples)
190
191=== modified file 'doc/code/CMakeLists.txt'
192--- doc/code/CMakeLists.txt 2013-02-07 17:24:36 +0000
193+++ doc/code/CMakeLists.txt 2013-08-23 06:50:34 +0000
194@@ -15,12 +15,6 @@
195 ZORBA_DOXYGEN("${CMAKE_CURRENT_SOURCE_DIR}" "${CMAKE_CURRENT_BINARY_DIR}" "codedocs")
196
197 IF (DOXYGEN_FOUND)
198- CONFIGURE_FILE (${CMAKE_CURRENT_SOURCE_DIR}/../style/rtab_b.gif
199- ${CMAKE_CURRENT_BINARY_DIR}/html/rtab_b.gif COPYONLY)
200- CONFIGURE_FILE (${CMAKE_CURRENT_SOURCE_DIR}/../style/rtab_r.gif
201- ${CMAKE_CURRENT_BINARY_DIR}/html/rtab_r.gif COPYONLY)
202- CONFIGURE_FILE (${CMAKE_CURRENT_SOURCE_DIR}/../style/rtab_l.gif
203- ${CMAKE_CURRENT_BINARY_DIR}/html/rtab_l.gif COPYONLY)
204 CONFIGURE_FILE (${CMAKE_CURRENT_SOURCE_DIR}/headers_svg/components.svg
205 ${CMAKE_CURRENT_BINARY_DIR}/headers_svg/components.svg COPYONLY)
206 CONFIGURE_FILE (${CMAKE_CURRENT_SOURCE_DIR}/headers_svg/headers.svg
207
208=== modified file 'doc/code/doxy.config.in'
209--- doc/code/doxy.config.in 2013-02-07 17:24:36 +0000
210+++ doc/code/doxy.config.in 2013-08-23 06:50:34 +0000
211@@ -839,13 +839,13 @@
212 # each generated HTML page. If it is left blank doxygen will generate a
213 # standard header.
214
215-HTML_HEADER = @CMAKE_CURRENT_SOURCE_DIR@/../style/header.html
216+HTML_HEADER =
217
218 # The HTML_FOOTER tag can be used to specify a personal HTML footer for
219 # each generated HTML page. If it is left blank doxygen will generate a
220 # standard footer.
221
222-HTML_FOOTER = @CMAKE_CURRENT_SOURCE_DIR@/../style/footer.html
223+HTML_FOOTER =
224
225 # If the HTML_TIMESTAMP tag is set to YES then the generated HTML
226 # documentation will contain the timesstamp.
227@@ -859,7 +859,7 @@
228 # the style sheet file to the HTML output directory, so don't put your own
229 # stylesheet in the HTML output directory as well, or it will be erased!
230
231-HTML_STYLESHEET = @CMAKE_CURRENT_SOURCE_DIR@/../style/stylesheet.css
232+HTML_STYLESHEET =
233
234 # The HTML_COLORSTYLE_HUE tag controls the color of the HTML output.
235 # Doxygen will adjust the colors in the stylesheet and background images
236
237=== modified file 'doc/csharp/CMakeLists.txt'
238--- doc/csharp/CMakeLists.txt 2013-04-06 00:56:45 +0000
239+++ doc/csharp/CMakeLists.txt 2013-08-23 06:50:34 +0000
240@@ -19,20 +19,4 @@
241
242 IF (DOXYGEN_FOUND)
243 ADD_DEPENDENCIES (doc "csharpdocs")
244-
245- CONFIGURE_FILE (
246- ${CMAKE_CURRENT_SOURCE_DIR}/../style/rtab_b.gif
247- ${CMAKE_CURRENT_BINARY_DIR}/html/rtab_b.gif
248- COPYONLY
249- )
250- CONFIGURE_FILE (
251- ${CMAKE_CURRENT_SOURCE_DIR}/../style/rtab_r.gif
252- ${CMAKE_CURRENT_BINARY_DIR}/html/rtab_r.gif
253- COPYONLY
254- )
255- CONFIGURE_FILE (
256- ${CMAKE_CURRENT_SOURCE_DIR}/../style/rtab_l.gif
257- ${CMAKE_CURRENT_BINARY_DIR}/html/rtab_l.gif
258- COPYONLY
259- )
260 ENDIF (DOXYGEN_FOUND)
261
262=== modified file 'doc/csharp/doxy.config.in'
263--- doc/csharp/doxy.config.in 2013-02-07 17:24:36 +0000
264+++ doc/csharp/doxy.config.in 2013-08-23 06:50:34 +0000
265@@ -528,7 +528,7 @@
266 # then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy
267 # in the documentation. The default is NO.
268
269-SHOW_DIRECTORIES = YES
270+#SHOW_DIRECTORIES = YES
271
272 # Set the SHOW_FILES tag to NO to disable the generation of the Files page.
273 # This will remove the Files entry from the Quick Index and from the
274@@ -838,7 +838,7 @@
275 # If the GENERATE_HTML tag is set to YES (the default) Doxygen will
276 # generate HTML output.
277
278-GENERATE_HTML = YES
279+GENERATE_HTML = NO
280
281 # The HTML_OUTPUT tag is used to specify where the HTML docs will be put.
282 # If a relative path is entered the value of OUTPUT_DIRECTORY will be
283@@ -863,13 +863,13 @@
284 # have to redo this when upgrading to a newer version of doxygen or when
285 # changing the value of configuration settings such as GENERATE_TREEVIEW!
286
287-HTML_HEADER = @CMAKE_CURRENT_SOURCE_DIR@/../style/header.html
288+HTML_HEADER =
289
290 # The HTML_FOOTER tag can be used to specify a personal HTML footer for
291 # each generated HTML page. If it is left blank doxygen will generate a
292 # standard footer.
293
294-HTML_FOOTER = @CMAKE_CURRENT_SOURCE_DIR@/../style/footer.html
295+HTML_FOOTER =
296
297 # If the HTML_TIMESTAMP tag is set to YES then the generated HTML documentation will contain the timesstamp.
298
299@@ -882,7 +882,7 @@
300 # the style sheet file to the HTML output directory, so don't put your own
301 # stylesheet in the HTML output directory as well, or it will be erased!
302
303-HTML_STYLESHEET = @CMAKE_CURRENT_SOURCE_DIR@/../style/stylesheet.css
304+HTML_STYLESHEET =
305
306 # The HTML_EXTRA_FILES tag can be used to specify one or more extra images or
307 # other source files which should be copied to the HTML output directory. Note
308@@ -928,7 +928,7 @@
309 # files or namespaces will be aligned in HTML using tables. If set to
310 # NO a bullet list will be used.
311
312-HTML_ALIGN_MEMBERS = YES
313+#HTML_ALIGN_MEMBERS = YES
314
315 # If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML
316 # documentation will contain sections that can be hidden and shown after the
317@@ -1115,7 +1115,7 @@
318 # By enabling USE_INLINE_TREES, doxygen will generate the Groups, Directories,
319 # and Class Hierarchy pages using a tree view instead of an ordered list.
320
321-USE_INLINE_TREES = NO
322+#USE_INLINE_TREES = NO
323
324 # If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be
325 # used to set the initial width (in pixels) of the frame in which the tree
326
327=== modified file 'doc/cxx/CMakeLists.txt'
328--- doc/cxx/CMakeLists.txt 2013-02-07 17:24:36 +0000
329+++ doc/cxx/CMakeLists.txt 2013-08-23 06:50:34 +0000
330@@ -18,20 +18,4 @@
331
332 IF (DOXYGEN_FOUND)
333 ADD_DEPENDENCIES(doc "cxxdocs")
334- CONFIGURE_FILE (${CMAKE_CURRENT_SOURCE_DIR}/../style/rtab_b.gif
335- ${CMAKE_CURRENT_BINARY_DIR}/html/rtab_b.gif COPYONLY)
336- CONFIGURE_FILE (${CMAKE_CURRENT_SOURCE_DIR}/../style/rtab_r.gif
337- ${CMAKE_CURRENT_BINARY_DIR}/html/rtab_r.gif COPYONLY)
338- CONFIGURE_FILE (${CMAKE_CURRENT_SOURCE_DIR}/../style/rtab_l.gif
339- ${CMAKE_CURRENT_BINARY_DIR}/html/rtab_l.gif COPYONLY)
340- CONFIGURE_FILE (${CMAKE_CURRENT_SOURCE_DIR}/../style/download.png
341- ${CMAKE_CURRENT_BINARY_DIR}/html/download.png COPYONLY)
342- CONFIGURE_FILE (${CMAKE_CURRENT_SOURCE_DIR}/../style/modules.png
343- ${CMAKE_CURRENT_BINARY_DIR}/html/modules.png COPYONLY)
344- CONFIGURE_FILE (${CMAKE_CURRENT_SOURCE_DIR}/../style/terminal.png
345- ${CMAKE_CURRENT_BINARY_DIR}/html/terminal.png COPYONLY)
346- CONFIGURE_FILE (${CMAKE_CURRENT_SOURCE_DIR}/../style/documentation.png
347- ${CMAKE_CURRENT_BINARY_DIR}/html/documentation.png COPYONLY)
348- CONFIGURE_FILE (${CMAKE_CURRENT_SOURCE_DIR}/../style/noisepattern.png
349- ${CMAKE_CURRENT_BINARY_DIR}/html/noisepattern.png COPYONLY)
350 ENDIF (DOXYGEN_FOUND)
351
352=== modified file 'doc/cxx/doxy.config.in'
353--- doc/cxx/doxy.config.in 2013-02-07 17:24:36 +0000
354+++ doc/cxx/doxy.config.in 2013-08-23 06:50:34 +0000
355@@ -528,7 +528,7 @@
356 # then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy
357 # in the documentation. The default is NO.
358
359-SHOW_DIRECTORIES = YES
360+#SHOW_DIRECTORIES = YES
361
362 # Set the SHOW_FILES tag to NO to disable the generation of the Files page.
363 # This will remove the Files entry from the Quick Index and from the
364@@ -852,7 +852,7 @@
365 # If the GENERATE_HTML tag is set to YES (the default) Doxygen will
366 # generate HTML output.
367
368-GENERATE_HTML = YES
369+GENERATE_HTML = NO
370
371 # The HTML_OUTPUT tag is used to specify where the HTML docs will be put.
372 # If a relative path is entered the value of OUTPUT_DIRECTORY will be
373@@ -877,13 +877,13 @@
374 # have to redo this when upgrading to a newer version of doxygen or when
375 # changing the value of configuration settings such as GENERATE_TREEVIEW!
376
377-HTML_HEADER = @CMAKE_CURRENT_SOURCE_DIR@/../style/header.html
378+HTML_HEADER =
379
380 # The HTML_FOOTER tag can be used to specify a personal HTML footer for
381 # each generated HTML page. If it is left blank doxygen will generate a
382 # standard footer.
383
384-HTML_FOOTER = @CMAKE_CURRENT_SOURCE_DIR@/../style/footer.html
385+HTML_FOOTER =
386
387 # If the HTML_TIMESTAMP tag is set to YES then the generated HTML documentation will contain the timesstamp.
388
389@@ -896,7 +896,7 @@
390 # the style sheet file to the HTML output directory, so don't put your own
391 # stylesheet in the HTML output directory as well, or it will be erased!
392
393-HTML_STYLESHEET = @CMAKE_CURRENT_SOURCE_DIR@/../style/stylesheet.css
394+HTML_STYLESHEET =
395
396 # The HTML_EXTRA_FILES tag can be used to specify one or more extra images or
397 # other source files which should be copied to the HTML output directory. Note
398@@ -942,7 +942,7 @@
399 # files or namespaces will be aligned in HTML using tables. If set to
400 # NO a bullet list will be used.
401
402-HTML_ALIGN_MEMBERS = YES
403+#HTML_ALIGN_MEMBERS = YES
404
405 # If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML
406 # documentation will contain sections that can be hidden and shown after the
407@@ -1129,7 +1129,7 @@
408 # By enabling USE_INLINE_TREES, doxygen will generate the Groups, Directories,
409 # and Class Hierarchy pages using a tree view instead of an ordered list.
410
411-USE_INLINE_TREES = NO
412+#USE_INLINE_TREES = NO
413
414 # If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be
415 # used to set the initial width (in pixels) of the frame in which the tree
416
417=== modified file 'doc/java/CMakeLists.txt'
418--- doc/java/CMakeLists.txt 2013-02-07 17:24:36 +0000
419+++ doc/java/CMakeLists.txt 2013-08-23 06:50:34 +0000
420@@ -18,20 +18,4 @@
421
422 IF (DOXYGEN_FOUND)
423 ADD_DEPENDENCIES (doc "javadocs")
424-
425- CONFIGURE_FILE (
426- ${CMAKE_CURRENT_SOURCE_DIR}/../style/rtab_b.gif
427- ${CMAKE_CURRENT_BINARY_DIR}/html/rtab_b.gif
428- COPYONLY
429- )
430- CONFIGURE_FILE (
431- ${CMAKE_CURRENT_SOURCE_DIR}/../style/rtab_r.gif
432- ${CMAKE_CURRENT_BINARY_DIR}/html/rtab_r.gif
433- COPYONLY
434- )
435- CONFIGURE_FILE (
436- ${CMAKE_CURRENT_SOURCE_DIR}/../style/rtab_l.gif
437- ${CMAKE_CURRENT_BINARY_DIR}/html/rtab_l.gif
438- COPYONLY
439- )
440 ENDIF (DOXYGEN_FOUND)
441
442=== modified file 'doc/java/doxy.config.in'
443--- doc/java/doxy.config.in 2013-02-07 17:24:36 +0000
444+++ doc/java/doxy.config.in 2013-08-23 06:50:34 +0000
445@@ -528,7 +528,7 @@
446 # then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy
447 # in the documentation. The default is NO.
448
449-SHOW_DIRECTORIES = YES
450+#SHOW_DIRECTORIES = YES
451
452 # Set the SHOW_FILES tag to NO to disable the generation of the Files page.
453 # This will remove the Files entry from the Quick Index and from the
454@@ -838,7 +838,7 @@
455 # If the GENERATE_HTML tag is set to YES (the default) Doxygen will
456 # generate HTML output.
457
458-GENERATE_HTML = YES
459+GENERATE_HTML = NO
460
461 # The HTML_OUTPUT tag is used to specify where the HTML docs will be put.
462 # If a relative path is entered the value of OUTPUT_DIRECTORY will be
463@@ -863,13 +863,13 @@
464 # have to redo this when upgrading to a newer version of doxygen or when
465 # changing the value of configuration settings such as GENERATE_TREEVIEW!
466
467-HTML_HEADER = @CMAKE_CURRENT_SOURCE_DIR@/../style/header.html
468+HTML_HEADER =
469
470 # The HTML_FOOTER tag can be used to specify a personal HTML footer for
471 # each generated HTML page. If it is left blank doxygen will generate a
472 # standard footer.
473
474-HTML_FOOTER = @CMAKE_CURRENT_SOURCE_DIR@/../style/footer.html
475+HTML_FOOTER =
476
477 # If the HTML_TIMESTAMP tag is set to YES then the generated HTML documentation will contain the timesstamp.
478
479@@ -882,7 +882,7 @@
480 # the style sheet file to the HTML output directory, so don't put your own
481 # stylesheet in the HTML output directory as well, or it will be erased!
482
483-HTML_STYLESHEET = @CMAKE_CURRENT_SOURCE_DIR@/../style/stylesheet.css
484+HTML_STYLESHEET =
485
486 # The HTML_EXTRA_FILES tag can be used to specify one or more extra images or
487 # other source files which should be copied to the HTML output directory. Note
488@@ -928,7 +928,7 @@
489 # files or namespaces will be aligned in HTML using tables. If set to
490 # NO a bullet list will be used.
491
492-HTML_ALIGN_MEMBERS = YES
493+#HTML_ALIGN_MEMBERS = YES
494
495 # If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML
496 # documentation will contain sections that can be hidden and shown after the
497@@ -1115,7 +1115,7 @@
498 # By enabling USE_INLINE_TREES, doxygen will generate the Groups, Directories,
499 # and Class Hierarchy pages using a tree view instead of an ordered list.
500
501-USE_INLINE_TREES = NO
502+#USE_INLINE_TREES = NO
503
504 # If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be
505 # used to set the initial width (in pixels) of the frame in which the tree
506
507=== modified file 'doc/php/CMakeLists.txt'
508--- doc/php/CMakeLists.txt 2013-02-07 17:24:36 +0000
509+++ doc/php/CMakeLists.txt 2013-08-23 06:50:34 +0000
510@@ -18,11 +18,4 @@
511
512 IF (DOXYGEN_FOUND)
513 ADD_DEPENDENCIES(doc "phpdocs")
514-
515- CONFIGURE_FILE (${CMAKE_CURRENT_SOURCE_DIR}/../style/rtab_b.gif
516- ${CMAKE_CURRENT_BINARY_DIR}/html/rtab_b.gif COPYONLY)
517- CONFIGURE_FILE (${CMAKE_CURRENT_SOURCE_DIR}/../style/rtab_r.gif
518- ${CMAKE_CURRENT_BINARY_DIR}/html/rtab_r.gif COPYONLY)
519- CONFIGURE_FILE (${CMAKE_CURRENT_SOURCE_DIR}/../style/rtab_l.gif
520- ${CMAKE_CURRENT_BINARY_DIR}/html/rtab_l.gif COPYONLY)
521 ENDIF (DOXYGEN_FOUND)
522
523=== modified file 'doc/php/doxy.config.in'
524--- doc/php/doxy.config.in 2013-02-07 17:24:36 +0000
525+++ doc/php/doxy.config.in 2013-08-23 06:50:34 +0000
526@@ -528,7 +528,7 @@
527 # then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy
528 # in the documentation. The default is NO.
529
530-SHOW_DIRECTORIES = YES
531+#SHOW_DIRECTORIES = YES
532
533 # Set the SHOW_FILES tag to NO to disable the generation of the Files page.
534 # This will remove the Files entry from the Quick Index and from the
535@@ -838,7 +838,7 @@
536 # If the GENERATE_HTML tag is set to YES (the default) Doxygen will
537 # generate HTML output.
538
539-GENERATE_HTML = YES
540+GENERATE_HTML = NO
541
542 # The HTML_OUTPUT tag is used to specify where the HTML docs will be put.
543 # If a relative path is entered the value of OUTPUT_DIRECTORY will be
544@@ -863,13 +863,13 @@
545 # have to redo this when upgrading to a newer version of doxygen or when
546 # changing the value of configuration settings such as GENERATE_TREEVIEW!
547
548-HTML_HEADER = @CMAKE_CURRENT_SOURCE_DIR@/../style/header.html
549+HTML_HEADER =
550
551 # The HTML_FOOTER tag can be used to specify a personal HTML footer for
552 # each generated HTML page. If it is left blank doxygen will generate a
553 # standard footer.
554
555-HTML_FOOTER = @CMAKE_CURRENT_SOURCE_DIR@/../style/footer.html
556+HTML_FOOTER =
557
558 # If the HTML_TIMESTAMP tag is set to YES then the generated HTML documentation will contain the timesstamp.
559
560@@ -882,7 +882,7 @@
561 # the style sheet file to the HTML output directory, so don't put your own
562 # stylesheet in the HTML output directory as well, or it will be erased!
563
564-HTML_STYLESHEET = @CMAKE_CURRENT_SOURCE_DIR@/../style/stylesheet.css
565+HTML_STYLESHEET =
566
567 # The HTML_EXTRA_FILES tag can be used to specify one or more extra images or
568 # other source files which should be copied to the HTML output directory. Note
569@@ -928,7 +928,7 @@
570 # files or namespaces will be aligned in HTML using tables. If set to
571 # NO a bullet list will be used.
572
573-HTML_ALIGN_MEMBERS = YES
574+#HTML_ALIGN_MEMBERS = YES
575
576 # If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML
577 # documentation will contain sections that can be hidden and shown after the
578@@ -1115,7 +1115,7 @@
579 # By enabling USE_INLINE_TREES, doxygen will generate the Groups, Directories,
580 # and Class Hierarchy pages using a tree view instead of an ordered list.
581
582-USE_INLINE_TREES = NO
583+#USE_INLINE_TREES = NO
584
585 # If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be
586 # used to set the initial width (in pixels) of the frame in which the tree
587
588=== modified file 'doc/python/CMakeLists.txt'
589--- doc/python/CMakeLists.txt 2013-02-07 17:24:36 +0000
590+++ doc/python/CMakeLists.txt 2013-08-23 06:50:34 +0000
591@@ -18,20 +18,4 @@
592
593 IF (DOXYGEN_FOUND)
594 ADD_DEPENDENCIES (doc "pythondocs")
595-
596- CONFIGURE_FILE (
597- ${CMAKE_CURRENT_SOURCE_DIR}/../style/rtab_b.gif
598- ${CMAKE_CURRENT_BINARY_DIR}/html/rtab_b.gif
599- COPYONLY
600- )
601- CONFIGURE_FILE (
602- ${CMAKE_CURRENT_SOURCE_DIR}/../style/rtab_r.gif
603- ${CMAKE_CURRENT_BINARY_DIR}/html/rtab_r.gif
604- COPYONLY
605- )
606- CONFIGURE_FILE (
607- ${CMAKE_CURRENT_SOURCE_DIR}/../style/rtab_l.gif
608- ${CMAKE_CURRENT_BINARY_DIR}/html/rtab_l.gif
609- COPYONLY
610- )
611 ENDIF (DOXYGEN_FOUND)
612
613=== modified file 'doc/python/doxy.config.in'
614--- doc/python/doxy.config.in 2013-02-07 17:24:36 +0000
615+++ doc/python/doxy.config.in 2013-08-23 06:50:34 +0000
616@@ -528,7 +528,7 @@
617 # then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy
618 # in the documentation. The default is NO.
619
620-SHOW_DIRECTORIES = YES
621+#SHOW_DIRECTORIES = YES
622
623 # Set the SHOW_FILES tag to NO to disable the generation of the Files page.
624 # This will remove the Files entry from the Quick Index and from the
625@@ -838,7 +838,7 @@
626 # If the GENERATE_HTML tag is set to YES (the default) Doxygen will
627 # generate HTML output.
628
629-GENERATE_HTML = YES
630+GENERATE_HTML = NO
631
632 # The HTML_OUTPUT tag is used to specify where the HTML docs will be put.
633 # If a relative path is entered the value of OUTPUT_DIRECTORY will be
634@@ -863,13 +863,13 @@
635 # have to redo this when upgrading to a newer version of doxygen or when
636 # changing the value of configuration settings such as GENERATE_TREEVIEW!
637
638-HTML_HEADER = @CMAKE_CURRENT_SOURCE_DIR@/../style/header.html
639+HTML_HEADER =
640
641 # The HTML_FOOTER tag can be used to specify a personal HTML footer for
642 # each generated HTML page. If it is left blank doxygen will generate a
643 # standard footer.
644
645-HTML_FOOTER = @CMAKE_CURRENT_SOURCE_DIR@/../style/footer.html
646+HTML_FOOTER =
647
648 # If the HTML_TIMESTAMP tag is set to YES then the generated HTML documentation will contain the timesstamp.
649
650@@ -882,7 +882,7 @@
651 # the style sheet file to the HTML output directory, so don't put your own
652 # stylesheet in the HTML output directory as well, or it will be erased!
653
654-HTML_STYLESHEET = @CMAKE_CURRENT_SOURCE_DIR@/../style/stylesheet.css
655+HTML_STYLESHEET =
656
657 # The HTML_EXTRA_FILES tag can be used to specify one or more extra images or
658 # other source files which should be copied to the HTML output directory. Note
659@@ -928,7 +928,7 @@
660 # files or namespaces will be aligned in HTML using tables. If set to
661 # NO a bullet list will be used.
662
663-HTML_ALIGN_MEMBERS = YES
664+#HTML_ALIGN_MEMBERS = YES
665
666 # If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML
667 # documentation will contain sections that can be hidden and shown after the
668@@ -1115,7 +1115,7 @@
669 # By enabling USE_INLINE_TREES, doxygen will generate the Groups, Directories,
670 # and Class Hierarchy pages using a tree view instead of an ordered list.
671
672-USE_INLINE_TREES = NO
673+#USE_INLINE_TREES = NO
674
675 # If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be
676 # used to set the initial width (in pixels) of the frame in which the tree
677
678=== modified file 'doc/ruby/CMakeLists.txt'
679--- doc/ruby/CMakeLists.txt 2013-02-07 17:24:36 +0000
680+++ doc/ruby/CMakeLists.txt 2013-08-23 06:50:34 +0000
681@@ -18,12 +18,5 @@
682
683 IF (DOXYGEN_FOUND)
684 ADD_DEPENDENCIES(doc "rubydocs")
685-
686- CONFIGURE_FILE (${CMAKE_CURRENT_SOURCE_DIR}/../style/rtab_b.gif
687- ${CMAKE_CURRENT_BINARY_DIR}/html/rtab_b.gif COPYONLY)
688- CONFIGURE_FILE (${CMAKE_CURRENT_SOURCE_DIR}/../style/rtab_r.gif
689- ${CMAKE_CURRENT_BINARY_DIR}/html/rtab_r.gif COPYONLY)
690- CONFIGURE_FILE (${CMAKE_CURRENT_SOURCE_DIR}/../style/rtab_l.gif
691- ${CMAKE_CURRENT_BINARY_DIR}/html/rtab_l.gif COPYONLY)
692 ENDIF (DOXYGEN_FOUND)
693
694
695=== modified file 'doc/ruby/doxy.config.in'
696--- doc/ruby/doxy.config.in 2013-02-07 17:24:36 +0000
697+++ doc/ruby/doxy.config.in 2013-08-23 06:50:34 +0000
698@@ -528,7 +528,7 @@
699 # then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy
700 # in the documentation. The default is NO.
701
702-SHOW_DIRECTORIES = YES
703+#SHOW_DIRECTORIES = YES
704
705 # Set the SHOW_FILES tag to NO to disable the generation of the Files page.
706 # This will remove the Files entry from the Quick Index and from the
707@@ -838,7 +838,7 @@
708 # If the GENERATE_HTML tag is set to YES (the default) Doxygen will
709 # generate HTML output.
710
711-GENERATE_HTML = YES
712+GENERATE_HTML = NO
713
714 # The HTML_OUTPUT tag is used to specify where the HTML docs will be put.
715 # If a relative path is entered the value of OUTPUT_DIRECTORY will be
716@@ -863,13 +863,13 @@
717 # have to redo this when upgrading to a newer version of doxygen or when
718 # changing the value of configuration settings such as GENERATE_TREEVIEW!
719
720-HTML_HEADER = @CMAKE_CURRENT_SOURCE_DIR@/../style/header.html
721+HTML_HEADER =
722
723 # The HTML_FOOTER tag can be used to specify a personal HTML footer for
724 # each generated HTML page. If it is left blank doxygen will generate a
725 # standard footer.
726
727-HTML_FOOTER = @CMAKE_CURRENT_SOURCE_DIR@/../style/footer.html
728+HTML_FOOTER =
729
730 # If the HTML_TIMESTAMP tag is set to YES then the generated HTML documentation will contain the timesstamp.
731
732@@ -882,7 +882,7 @@
733 # the style sheet file to the HTML output directory, so don't put your own
734 # stylesheet in the HTML output directory as well, or it will be erased!
735
736-HTML_STYLESHEET = @CMAKE_CURRENT_SOURCE_DIR@/../style/stylesheet.css
737+HTML_STYLESHEET =
738
739 # The HTML_EXTRA_FILES tag can be used to specify one or more extra images or
740 # other source files which should be copied to the HTML output directory. Note
741@@ -928,7 +928,7 @@
742 # files or namespaces will be aligned in HTML using tables. If set to
743 # NO a bullet list will be used.
744
745-HTML_ALIGN_MEMBERS = YES
746+#HTML_ALIGN_MEMBERS = YES
747
748 # If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML
749 # documentation will contain sections that can be hidden and shown after the
750@@ -1115,7 +1115,7 @@
751 # By enabling USE_INLINE_TREES, doxygen will generate the Groups, Directories,
752 # and Class Hierarchy pages using a tree view instead of an ordered list.
753
754-USE_INLINE_TREES = NO
755+#USE_INLINE_TREES = NO
756
757 # If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be
758 # used to set the initial width (in pixels) of the frame in which the tree
759
760=== removed directory 'doc/style'
761=== removed file 'doc/style/documentation.png'
762Binary 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
763=== removed file 'doc/style/download.png'
764Binary 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
765=== removed file 'doc/style/footer.html'
766--- doc/style/footer.html 2013-02-07 17:24:36 +0000
767+++ doc/style/footer.html 1970-01-01 00:00:00 +0000
768@@ -1,14 +0,0 @@
769-
770-<!-- footer.html-->
771- </div>
772-
773-<div id="footer">
774- <div id="innerfooter"><p>Zorba is supported by the <a href="http://flworfound.org/" target="_blank">FLWOR
775- Foundation</a> and distributed under
776- <a href="http://www.apache.org/licenses/LICENSE-2.0.html" target="_blank">Apache Licence, Version 2.0</a>.</p>
777- </div>
778-</div>
779-
780-</body>
781-</html>
782-
783
784=== removed file 'doc/style/header.html'
785--- doc/style/header.html 2013-02-07 17:24:36 +0000
786+++ doc/style/header.html 1970-01-01 00:00:00 +0000
787@@ -1,44 +0,0 @@
788-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
789-<html>
790- <head>
791- <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
792- <meta name="copyright" content="The FLWOR Foundation" />
793- <link rel="shortcut icon" href="../../../../favicon.ico" />
794- <link type="text/css" href="stylesheet.css" rel="stylesheet" />
795- <!--link type="text/css" href="../../zorba/xqdoc/xhtml/styles/reset.css" rel="stylesheet" /-->
796- <link type="text/css" href="../../zorba/xqdoc/xhtml/styles/main.css" rel="stylesheet" />
797- <!--link type="text/css" href="doxygen.css" rel="stylesheet" /-->
798- <script src="http://www.google.com/js/gweb/analytics/autotrack.js"> </script>
799- <script>//<![CDATA[
800-new gweb.analytics.AutoTrack({profile: 'UA-4281090-1'});
801- //]]></script>
802- </head>
803- <body>
804-<body>
805-<div id="header">
806- <div class="innerheader text-left">
807- <div id="logo_container"><a href="../../../../html/index.html"><img
808- src="../../zorba/xqdoc/xhtml/images/zorba_logo.png"
809- alt="Zorba C++ XQuery Processor"></a>
810- <h1><a href="../../../../html/index.html">Zorba</a></h1>
811- <p><a href="../../../../html/index.html">The XQuery Processor</a></p></div>
812- <div id="innermenu" class="box">
813- <ul>
814- <li style="width:102px !important;"><a
815- href="../../../../doc/latest/zorba/html/index.html" class="documentation">Documentation</a>
816- </li>
817- <li><a href="http://try.zorba-xquery.com" target="_blank" class="tryzorba">Live Demo</a></li>
818- <li><a href="../../../../html/modules.html" class="modules">Modules</a></li>
819- <li><a href="../../../../html/downloads.html" class="download">Download</a></li>
820- <li><a href="../../../../html/tools.html" class="tools">Tools</a></li>
821- <li><a href="../../../../html/blog.html" class="blog">Blog</a></li>
822- <li><a href="../../../../html/code.html" class="open">Code</a></li>
823- </ul>
824- </div>
825- </div>
826-</div>
827-<!-- up to here in header.html -->
828-
829-<div id="main">
830-<!-- Generated by Doxygen 1.5.5 -->
831-
832
833=== removed file 'doc/style/modules.png'
834Binary 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
835=== removed file 'doc/style/noisepattern.png'
836Binary 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
837=== removed file 'doc/style/rtab_b.gif'
838Binary 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
839=== removed file 'doc/style/rtab_l.gif'
840Binary 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
841=== removed file 'doc/style/rtab_r.gif'
842Binary 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
843=== removed file 'doc/style/stylesheet.css'
844--- doc/style/stylesheet.css 2013-02-07 17:24:36 +0000
845+++ doc/style/stylesheet.css 1970-01-01 00:00:00 +0000
846@@ -1,655 +0,0 @@
847-/* Doxygen */
848-BODY,H1,H2,H3,H4,H5,H6,P,CENTER,TD,TH,UL,DL,DIV {
849- font-family: Geneva, Arial, Helvetica, sans-serif;
850-}
851-BODY,TD {
852- font-size: 90%;
853-}
854-H1 {
855- text-align: center;
856- font-size: 160%;
857-}
858-H2 {
859- font-size: 120%;
860-}
861-H3 {
862- font-size: 100%;
863-}
864-CAPTION {
865- font-weight: bold
866-}
867-DIV.qindex {
868- width: 100%;
869- background-color: #e8eef2;
870- border: 1px solid #84b0c7;
871- text-align: center;
872- margin: 2px;
873- padding: 2px;
874- line-height: 140%;
875-}
876-DIV.navpath {
877- width: 100%;
878- background-color: #e8eef2;
879- border: 1px solid #84b0c7;
880- text-align: center;
881- margin: 2px;
882- padding: 2px;
883- line-height: 140%;
884-}
885-DIV.navtab {
886- background-color: #e8eef2;
887- border: 1px solid #84b0c7;
888- text-align: center;
889- margin: 2px;
890- margin-right: 15px;
891- padding: 2px;
892-}
893-TD.navtab {
894- font-size: 70%;
895-}
896-A.qindex {
897- text-decoration: none;
898- font-weight: bold;
899- color: #1A419D;
900-}
901-A.qindex:visited {
902- text-decoration: none;
903- font-weight: bold;
904- color: #1A419D
905-}
906-A.qindex:hover {
907- text-decoration: none;
908- background-color: #ddddff;
909-}
910-A.qindexHL {
911- text-decoration: none;
912- font-weight: bold;
913- background-color: #6666cc;
914- color: #ffffff;
915- border: 1px double #9295C2;
916-}
917-A.qindexHL:hover {
918- text-decoration: none;
919- background-color: #6666cc;
920- color: #ffffff;
921-}
922-A.qindexHL:visited {
923- text-decoration: none;
924- background-color: #6666cc;
925- color: #ffffff
926-}
927-A.el {
928- text-decoration: none;
929- /*font-weight: bold;*/
930-}
931-A.elRef {
932- /*font-weight: bold;*/
933-}
934-A.code:link {
935- text-decoration: none;
936- font-weight: normal;
937- color: #0000FF
938-}
939-A.code:visited {
940- text-decoration: none;
941- font-weight: normal;
942- color: #0000FF
943-}
944-A.codeRef:link {
945- font-weight: normal;
946- color: #0000FF
947-}
948-A.codeRef:visited {
949- font-weight: normal;
950- color: #0000FF
951-}
952-A:hover {
953- text-decoration: underline;
954- /*background-color: #f2f2ff*/
955-}
956-DL.el {
957- margin-left: -1cm
958-}
959-.fragment {
960- font-family: monospace, fixed;
961- font-size: 95%;
962-}
963-PRE.fragment {
964- border: 1px solid #CCCCCC;
965- background-color: #f5f5f5;
966- /*margin-top: 4px;
967- margin-bottom: 4px;
968- margin-left: 2px;
969- margin-right: 8px;*/
970- padding-left: 6px;
971- padding-right: 6px;
972- padding-top: 4px;
973- padding-bottom: 4px;
974-}
975-DIV.ah {
976- background-color: black;
977- font-weight: bold;
978- color: #ffffff;
979- margin-bottom: 3px;
980- margin-top: 3px
981-}
982-
983-DIV.groupHeader {
984- margin-left: 16px;
985- margin-top: 12px;
986- margin-bottom: 6px;
987- font-weight: bold;
988-}
989-DIV.groupText {
990- margin-left: 16px;
991- font-style: italic;
992- font-size: 90%
993-}
994-BODY {
995- background: white;
996- color: #333333;
997- margin-right: 20px;
998- margin-left: 20px;
999-}
1000-TD.indexkey {
1001- background-color: #e8eef2;
1002- font-weight: bold;
1003- padding-right : 10px;
1004- padding-top : 2px;
1005- padding-left : 10px;
1006- padding-bottom : 2px;
1007- margin-left : 0px;
1008- margin-right : 0px;
1009- margin-top : 2px;
1010- margin-bottom : 2px;
1011- border: 1px solid #CCCCCC;
1012-}
1013-TD.indexvalue {
1014- background-color: #e8eef2;
1015- font-style: italic;
1016- padding-right : 10px;
1017- padding-top : 2px;
1018- padding-left : 10px;
1019- padding-bottom : 2px;
1020- margin-left : 0px;
1021- margin-right : 0px;
1022- margin-top : 2px;
1023- margin-bottom : 2px;
1024- border: 1px solid #CCCCCC;
1025-}
1026-TR.memlist {
1027- background-color: #f0f0f0;
1028-}
1029-P.formulaDsp {
1030- text-align: center;
1031-}
1032-IMG.formulaDsp {
1033-}
1034-IMG.formulaInl {
1035- vertical-align: middle;
1036-}
1037-SPAN.keyword { color: #008000 }
1038-SPAN.keywordtype { color: #604020 }
1039-SPAN.keywordflow { color: #e08000 }
1040-SPAN.comment { color: #800000 }
1041-SPAN.preprocessor { color: #806020 }
1042-SPAN.stringliteral { color: #002080 }
1043-SPAN.charliteral { color: #008080 }
1044-SPAN.vhdldigit { color: #ff00ff }
1045-SPAN.vhdlchar { color: #000000 }
1046-SPAN.vhdlkeyword { color: #700070 }
1047-SPAN.vhdllogic { color: #ff0000 }
1048-
1049-.mdescLeft {
1050- padding: 0px 8px 4px 8px;
1051- font-size: 80%;
1052- font-style: italic;
1053- background-color: #FAFAFA;
1054- border-top: 1px none #E0E0E0;
1055- border-right: 1px none #E0E0E0;
1056- border-bottom: 1px none #E0E0E0;
1057- border-left: 1px none #E0E0E0;
1058- margin: 0px;
1059-}
1060-.mdescRight {
1061- padding: 0px 8px 4px 8px;
1062- font-size: 80%;
1063- font-style: italic;
1064- background-color: #FAFAFA;
1065- border-top: 1px none #E0E0E0;
1066- border-right: 1px none #E0E0E0;
1067- border-bottom: 1px none #E0E0E0;
1068- border-left: 1px none #E0E0E0;
1069- margin: 0px;
1070-}
1071-.memItemLeft {
1072- padding: 1px 0px 0px 8px;
1073- margin: 4px;
1074- border-top-width: 1px;
1075- border-right-width: 1px;
1076- border-bottom-width: 1px;
1077- border-left-width: 1px;
1078- border-top-color: #E0E0E0;
1079- border-right-color: #E0E0E0;
1080- border-bottom-color: #E0E0E0;
1081- border-left-color: #E0E0E0;
1082- border-top-style: solid;
1083- border-right-style: none;
1084- border-bottom-style: none;
1085- border-left-style: none;
1086- background-color: #FAFAFA;
1087- font-size: 80%;
1088-}
1089-.memItemRight {
1090- padding: 1px 8px 0px 8px;
1091- margin: 4px;
1092- border-top-width: 1px;
1093- border-right-width: 1px;
1094- border-bottom-width: 1px;
1095- border-left-width: 1px;
1096- border-top-color: #E0E0E0;
1097- border-right-color: #E0E0E0;
1098- border-bottom-color: #E0E0E0;
1099- border-left-color: #E0E0E0;
1100- border-top-style: solid;
1101- border-right-style: none;
1102- border-bottom-style: none;
1103- border-left-style: none;
1104- background-color: #FAFAFA;
1105- font-size: 80%;
1106-}
1107-.memTemplItemLeft {
1108- padding: 1px 0px 0px 8px;
1109- margin: 4px;
1110- border-top-width: 1px;
1111- border-right-width: 1px;
1112- border-bottom-width: 1px;
1113- border-left-width: 1px;
1114- border-top-color: #E0E0E0;
1115- border-right-color: #E0E0E0;
1116- border-bottom-color: #E0E0E0;
1117- border-left-color: #E0E0E0;
1118- border-top-style: none;
1119- border-right-style: none;
1120- border-bottom-style: none;
1121- border-left-style: none;
1122- background-color: #FAFAFA;
1123- font-size: 80%;
1124-}
1125-.memTemplItemRight {
1126- padding: 1px 8px 0px 8px;
1127- margin: 4px;
1128- border-top-width: 1px;
1129- border-right-width: 1px;
1130- border-bottom-width: 1px;
1131- border-left-width: 1px;
1132- border-top-color: #E0E0E0;
1133- border-right-color: #E0E0E0;
1134- border-bottom-color: #E0E0E0;
1135- border-left-color: #E0E0E0;
1136- border-top-style: none;
1137- border-right-style: none;
1138- border-bottom-style: none;
1139- border-left-style: none;
1140- background-color: #FAFAFA;
1141- font-size: 80%;
1142-}
1143-.memTemplParams {
1144- padding: 1px 0px 0px 8px;
1145- margin: 4px;
1146- border-top-width: 1px;
1147- border-right-width: 1px;
1148- border-bottom-width: 1px;
1149- border-left-width: 1px;
1150- border-top-color: #E0E0E0;
1151- border-right-color: #E0E0E0;
1152- border-bottom-color: #E0E0E0;
1153- border-left-color: #E0E0E0;
1154- border-top-style: solid;
1155- border-right-style: none;
1156- border-bottom-style: none;
1157- border-left-style: none;
1158- color: #606060;
1159- background-color: #FAFAFA;
1160- font-size: 80%;
1161-}
1162-.search {
1163- color: #003399;
1164- font-weight: bold;
1165-}
1166-FORM.search {
1167- margin-bottom: 0px;
1168- margin-top: 0px;
1169-}
1170-INPUT.search {
1171- font-size: 75%;
1172- color: #000080;
1173- font-weight: normal;
1174- background-color: #e8eef2;
1175-}
1176-TD.tiny {
1177- font-size: 75%;
1178-}
1179-a {
1180- color: #1A41A8;
1181- text-decoration: none;
1182-}
1183-a:visited {
1184- color: #2A3798;
1185-}
1186-.dirtab {
1187- padding: 4px;
1188- border-collapse: collapse;
1189- border: 1px solid #84b0c7;
1190-}
1191-TH.dirtab {
1192- background: #e8eef2;
1193- font-weight: bold;
1194-}
1195-HR {
1196- height: 1px;
1197- border: none;
1198- border-top: 1px solid black;
1199-}
1200-
1201-/* Style for detailed member documentation */
1202-.memtemplate {
1203- font-size: 80%;
1204- color: #606060;
1205- font-weight: normal;
1206- margin-left: 3px;
1207-}
1208-.memnav {
1209- background-color: #e8eef2;
1210- border: 1px solid #84b0c7;
1211- text-align: center;
1212- margin: 2px;
1213- margin-right: 15px;
1214- padding: 2px;
1215-}
1216-.memitem {
1217- padding: 4px;
1218- background-color: #eef3f5;
1219- border-width: 1px;
1220- border-style: solid;
1221- border-color: #dedeee;
1222- -moz-border-radius: 8px 8px 8px 8px;
1223-}
1224-.memname {
1225- white-space: nowrap;
1226- font-weight: bold;
1227-}
1228-.memdoc{
1229- padding-left: 10px;
1230-}
1231-.memproto {
1232- background-color: #d5e1e8;
1233- width: 100%;
1234- border-width: 1px;
1235- border-style: solid;
1236- border-color: #84b0c7;
1237- font-weight: bold;
1238- -moz-border-radius: 8px 8px 8px 8px;
1239-}
1240-.paramkey {
1241- text-align: right;
1242-}
1243-.paramtype {
1244- white-space: nowrap;
1245-}
1246-.paramname {
1247- color: #602020;
1248- font-style: italic;
1249- white-space: nowrap;
1250-}
1251-/* End Styling for detailed member documentation */
1252-
1253-/* for the tree view */
1254-.ftvtree {
1255- font-family: sans-serif;
1256- margin:0.5em;
1257-}
1258-.directory {
1259- font-size: 9pt;
1260- font-weight: bold;
1261-}
1262-.directory h3 {
1263- margin: 0px;
1264- margin-top: 1em;
1265- font-size: 11pt;
1266-}
1267-.directory > h3 {
1268- margin-top: 0;
1269-}
1270-.directory p {
1271- margin: 0px;
1272- white-space: nowrap;
1273-}
1274-.directory div {
1275- display: none;
1276- margin: 0px;
1277-}
1278-.directory img {
1279- vertical-align: -30%;
1280-}
1281-
1282-/* Tabs */
1283-DIV.tabs
1284-{
1285- float : left;
1286- width : 100%;
1287- background : url("rtab_b.gif") repeat-x bottom;
1288- margin-bottom : 4px;
1289-}
1290-
1291-DIV.tabs UL
1292-{
1293- margin : 0px;
1294- padding-left : 10px;
1295- list-style : none;
1296-}
1297-
1298-DIV.tabs LI, DIV.tabs FORM
1299-{
1300- display : inline;
1301- margin : 0px;
1302- padding : 0px;
1303-}
1304-
1305-DIV.tabs FORM
1306-{
1307- float : right;
1308-}
1309-
1310-DIV.tabs A
1311-{
1312- float : left;
1313- background : url("rtab_r.gif") no-repeat right top;
1314- border-bottom : 1px solid #84B0C7;
1315- font-size : x-small;
1316- font-weight : bold;
1317- text-decoration : none;
1318-}
1319-
1320-DIV.tabs A:hover
1321-{
1322- background-position: 100% -150px;
1323-}
1324-
1325-DIV.tabs A:link, DIV.tabs A:visited,
1326-DIV.tabs A:active, DIV.tabs A:hover
1327-{
1328- color: #1A419D;
1329-}
1330-
1331-DIV.tabs SPAN
1332-{
1333- float : left;
1334- display : block;
1335- background : url("rtab_l.gif") no-repeat left top;
1336- padding : 5px 9px;
1337- white-space : nowrap;
1338-}
1339-
1340-DIV.tabs INPUT
1341-{
1342- float : right;
1343- display : inline;
1344- font-size : 1em;
1345-}
1346-
1347-DIV.tabs TD
1348-{
1349- font-size : x-small;
1350- font-weight : bold;
1351- text-decoration : none;
1352-}
1353-
1354-
1355-
1356-/* Commented Backslash Hack hides rule from IE5-Mac \*/
1357-DIV.tabs SPAN {float : none;}
1358-/* End IE5-Mac hack */
1359-
1360-DIV.tabs A:hover SPAN
1361-{
1362- background-position: 0% -150px;
1363-}
1364-
1365-DIV.tabs LI.current A
1366-{
1367- background-position: 100% -150px;
1368- border-width : 0px;
1369-}
1370-
1371-DIV.tabs LI.current SPAN
1372-{
1373- background-position: 0% -150px;
1374- padding-bottom : 6px;
1375-}
1376-
1377-DIV.navpath
1378-{
1379- background : none;
1380- border : none;
1381- border-bottom : 1px solid #84B0C7;
1382-}
1383-
1384-/* Hide Search Box */
1385-#searchli , #MSearchClose, #MSearchSelectWindow, #MSearchSelectWindow {
1386- display: none;
1387-}
1388-
1389-/* Zorba Custom CSS */
1390-table.ft_rels {
1391- border-collapse: collapse;
1392-}
1393-
1394-table.ft_rels td {
1395- border-width: 1px;
1396- border-color: #CCCCCC;
1397- border-style: solid;
1398- padding: 2px;
1399- vertical-align: top;
1400-}
1401-
1402-table.ft_rels th {
1403- border-width: 1px;
1404- border-color: #CCCCCC;
1405- border-style: solid;
1406- padding: 2px;
1407- text-align: left;
1408-}
1409-
1410-#page {
1411- padding: 10px;
1412-}
1413-
1414-#page p {
1415- padding: 0px;
1416-}
1417-
1418-.contents {
1419- padding: 5px;
1420- margin: 5px;
1421- line-height: 1.4;
1422-}
1423-
1424-.contents p,
1425-.contents pre {
1426- margin: 14px 0;
1427-}
1428-
1429-.textblock p,
1430-.textblock pre {
1431- margin: 14px 0;
1432-}
1433-
1434-
1435-/* If the website stylesheet is not present, we don't display the header and footer. */
1436-#header, #featuring, #footer {
1437- display: block;
1438-}
1439-
1440-.header
1441-{
1442- clear: left;
1443-}
1444-
1445-#main {
1446- text-align: left;
1447- line-height: 1.4;
1448- margin: 10px;
1449-}
1450-
1451-/* Fulltext tables */
1452-table.ft_rels {
1453- border-collapse: collapse;
1454-}
1455-table.ft_rels td {
1456- border-width: 1px;
1457- border-color: #CCCCCC;
1458- border-style: solid;
1459- padding: 2px;
1460- vertical-align: top;
1461-}
1462-table.ft_rels th {
1463- border-width: 1px;
1464- border-color: #CCCCCC;
1465- border-style: solid;
1466- padding: 2px;
1467- text-align: left;
1468-}
1469-
1470-/* Table in Documentation index page */
1471-.tdDocIndexTable
1472-{
1473- vertical-align: top;
1474- font-size: 100%;
1475- padding: 5px;
1476- width: 50%;
1477-}
1478-
1479-/* Doxygen table */
1480-.doxtable {
1481- border-collapse: collapse;
1482- border-style:none;
1483-}
1484-
1485-.doxtable tr,td {
1486- border-style: none;
1487-}
1488-
1489-#main p, li, h1, h2, h3
1490-{
1491- margin-top: 0.3em;
1492- margin-bottom: 0.3em;
1493-}
1494-
1495-#discuss
1496-{
1497- /*display:none;*/
1498- padding: 5px;
1499- margin: 5px;
1500-}
1501-
1502
1503=== removed file 'doc/style/terminal.png'
1504Binary 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
1505=== modified file 'doc/xqj/CMakeLists.txt'
1506--- doc/xqj/CMakeLists.txt 2013-04-06 00:56:45 +0000
1507+++ doc/xqj/CMakeLists.txt 2013-08-23 06:50:34 +0000
1508@@ -19,20 +19,4 @@
1509
1510 IF (DOXYGEN_FOUND)
1511 ADD_DEPENDENCIES (doc "xqjdocs")
1512-
1513- CONFIGURE_FILE (
1514- ${CMAKE_CURRENT_SOURCE_DIR}/../style/rtab_b.gif
1515- ${CMAKE_CURRENT_BINARY_DIR}/html/rtab_b.gif
1516- COPYONLY
1517- )
1518- CONFIGURE_FILE (
1519- ${CMAKE_CURRENT_SOURCE_DIR}/../style/rtab_r.gif
1520- ${CMAKE_CURRENT_BINARY_DIR}/html/rtab_r.gif
1521- COPYONLY
1522- )
1523- CONFIGURE_FILE (
1524- ${CMAKE_CURRENT_SOURCE_DIR}/../style/rtab_l.gif
1525- ${CMAKE_CURRENT_BINARY_DIR}/html/rtab_l.gif
1526- COPYONLY
1527- )
1528 ENDIF (DOXYGEN_FOUND)
1529
1530=== modified file 'doc/xqj/doxy.config.in'
1531--- doc/xqj/doxy.config.in 2013-02-07 17:24:36 +0000
1532+++ doc/xqj/doxy.config.in 2013-08-23 06:50:34 +0000
1533@@ -528,7 +528,7 @@
1534 # then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy
1535 # in the documentation. The default is NO.
1536
1537-SHOW_DIRECTORIES = YES
1538+#SHOW_DIRECTORIES = YES
1539
1540 # Set the SHOW_FILES tag to NO to disable the generation of the Files page.
1541 # This will remove the Files entry from the Quick Index and from the
1542@@ -839,7 +839,7 @@
1543 # If the GENERATE_HTML tag is set to YES (the default) Doxygen will
1544 # generate HTML output.
1545
1546-GENERATE_HTML = YES
1547+GENERATE_HTML = NO
1548
1549 # The HTML_OUTPUT tag is used to specify where the HTML docs will be put.
1550 # If a relative path is entered the value of OUTPUT_DIRECTORY will be
1551@@ -864,13 +864,13 @@
1552 # have to redo this when upgrading to a newer version of doxygen or when
1553 # changing the value of configuration settings such as GENERATE_TREEVIEW!
1554
1555-HTML_HEADER = @CMAKE_CURRENT_SOURCE_DIR@/../style/header.html
1556+HTML_HEADER =
1557
1558 # The HTML_FOOTER tag can be used to specify a personal HTML footer for
1559 # each generated HTML page. If it is left blank doxygen will generate a
1560 # standard footer.
1561
1562-HTML_FOOTER = @CMAKE_CURRENT_SOURCE_DIR@/../style/footer.html
1563+HTML_FOOTER =
1564
1565 # If the HTML_TIMESTAMP tag is set to YES then the generated HTML documentation will contain the timesstamp.
1566
1567@@ -883,7 +883,7 @@
1568 # the style sheet file to the HTML output directory, so don't put your own
1569 # stylesheet in the HTML output directory as well, or it will be erased!
1570
1571-HTML_STYLESHEET = @CMAKE_CURRENT_SOURCE_DIR@/../style/stylesheet.css
1572+HTML_STYLESHEET =
1573
1574 # The HTML_EXTRA_FILES tag can be used to specify one or more extra images or
1575 # other source files which should be copied to the HTML output directory. Note
1576@@ -929,7 +929,7 @@
1577 # files or namespaces will be aligned in HTML using tables. If set to
1578 # NO a bullet list will be used.
1579
1580-HTML_ALIGN_MEMBERS = YES
1581+#HTML_ALIGN_MEMBERS = YES
1582
1583 # If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML
1584 # documentation will contain sections that can be hidden and shown after the
1585@@ -1116,7 +1116,7 @@
1586 # By enabling USE_INLINE_TREES, doxygen will generate the Groups, Directories,
1587 # and Class Hierarchy pages using a tree view instead of an ordered list.
1588
1589-USE_INLINE_TREES = NO
1590+#USE_INLINE_TREES = NO
1591
1592 # If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be
1593 # used to set the initial width (in pixels) of the frame in which the tree
1594
1595=== modified file 'doc/zorba/CMakeLists.txt'
1596--- doc/zorba/CMakeLists.txt 2013-06-21 20:13:41 +0000
1597+++ doc/zorba/CMakeLists.txt 2013-08-23 06:50:34 +0000
1598@@ -27,32 +27,6 @@
1599 # which is used to build all documentation related targets
1600 LIST(APPEND ZORBA_DOC_DEPENDENCIES docs)
1601
1602- # and install all doxygen required styles and images
1603- CONFIGURE_FILE (${CMAKE_CURRENT_SOURCE_DIR}/../style/rtab_b.gif
1604- ${CMAKE_CURRENT_BINARY_DIR}/html/rtab_b.gif COPYONLY)
1605- CONFIGURE_FILE (${CMAKE_CURRENT_SOURCE_DIR}/../style/rtab_r.gif
1606- ${CMAKE_CURRENT_BINARY_DIR}/html/rtab_r.gif COPYONLY)
1607- CONFIGURE_FILE (${CMAKE_CURRENT_SOURCE_DIR}/../style/rtab_l.gif
1608- ${CMAKE_CURRENT_BINARY_DIR}/html/rtab_l.gif COPYONLY)
1609- CONFIGURE_FILE (${CMAKE_CURRENT_SOURCE_DIR}/../style/download.png
1610- ${CMAKE_CURRENT_BINARY_DIR}/html/download.png COPYONLY)
1611- CONFIGURE_FILE (${CMAKE_CURRENT_SOURCE_DIR}/../style/modules.png
1612- ${CMAKE_CURRENT_BINARY_DIR}/html/modules.png COPYONLY)
1613- CONFIGURE_FILE (${CMAKE_CURRENT_SOURCE_DIR}/../style/terminal.png
1614- ${CMAKE_CURRENT_BINARY_DIR}/html/terminal.png COPYONLY)
1615- CONFIGURE_FILE (${CMAKE_CURRENT_SOURCE_DIR}/../style/documentation.png
1616- ${CMAKE_CURRENT_BINARY_DIR}/html/documentation.png COPYONLY)
1617- CONFIGURE_FILE (${CMAKE_CURRENT_SOURCE_DIR}/../style/noisepattern.png
1618- ${CMAKE_CURRENT_BINARY_DIR}/html/noisepattern.png COPYONLY)
1619- CONFIGURE_FILE (${CMAKE_CURRENT_SOURCE_DIR}/scripting_spec.html
1620- ${CMAKE_CURRENT_BINARY_DIR}/html/scripting_spec.html COPYONLY)
1621- CONFIGURE_FILE (${CMAKE_CURRENT_SOURCE_DIR}/XQueryforJSON.html
1622- ${CMAKE_CURRENT_BINARY_DIR}/html/XQueryforJSON.html COPYONLY)
1623- CONFIGURE_FILE (${CMAKE_CURRENT_SOURCE_DIR}/JSONforXQuery.html
1624- ${CMAKE_CURRENT_BINARY_DIR}/html/JSONforXQuery.html COPYONLY)
1625- CONFIGURE_FILE (${CMAKE_CURRENT_SOURCE_DIR}/W3C-WD.css
1626- ${CMAKE_CURRENT_BINARY_DIR}/html/W3C-WD.css COPYONLY)
1627-
1628 FILE(WRITE ${CMAKE_CURRENT_BINARY_DIR}/known_issues.dox "/** \\page known_issues Known Issues
1629 ")
1630 FILE(READ ${CMAKE_SOURCE_DIR}/KNOWN_ISSUES.txt KNWON_ISSUES_CONTENS)
1631
1632=== modified file 'doc/zorba/doxy.config.in'
1633--- doc/zorba/doxy.config.in 2013-02-07 17:24:36 +0000
1634+++ doc/zorba/doxy.config.in 2013-08-23 06:50:34 +0000
1635@@ -528,7 +528,7 @@
1636 # then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy
1637 # in the documentation. The default is NO.
1638
1639-SHOW_DIRECTORIES = YES
1640+#SHOW_DIRECTORIES = YES
1641
1642 # Set the SHOW_FILES tag to NO to disable the generation of the Files page.
1643 # This will remove the Files entry from the Quick Index and from the
1644@@ -859,7 +859,7 @@
1645 # If the GENERATE_HTML tag is set to YES (the default) Doxygen will
1646 # generate HTML output.
1647
1648-GENERATE_HTML = YES
1649+GENERATE_HTML = NO
1650
1651 # The HTML_OUTPUT tag is used to specify where the HTML docs will be put.
1652 # If a relative path is entered the value of OUTPUT_DIRECTORY will be
1653@@ -884,13 +884,13 @@
1654 # have to redo this when upgrading to a newer version of doxygen or when
1655 # changing the value of configuration settings such as GENERATE_TREEVIEW!
1656
1657-HTML_HEADER = @CMAKE_CURRENT_SOURCE_DIR@/../style/header.html
1658+HTML_HEADER =
1659
1660 # The HTML_FOOTER tag can be used to specify a personal HTML footer for
1661 # each generated HTML page. If it is left blank doxygen will generate a
1662 # standard footer.
1663
1664-HTML_FOOTER = @CMAKE_CURRENT_SOURCE_DIR@/../style/footer.html
1665+HTML_FOOTER =
1666
1667 # If the HTML_TIMESTAMP tag is set to YES then the generated HTML documentation will contain the timesstamp.
1668
1669@@ -903,7 +903,7 @@
1670 # the style sheet file to the HTML output directory, so don't put your own
1671 # stylesheet in the HTML output directory as well, or it will be erased!
1672
1673-HTML_STYLESHEET = @CMAKE_CURRENT_SOURCE_DIR@/../style/stylesheet.css
1674+HTML_STYLESHEET =
1675
1676 # The HTML_EXTRA_FILES tag can be used to specify one or more extra images or
1677 # other source files which should be copied to the HTML output directory. Note
1678@@ -949,7 +949,7 @@
1679 # files or namespaces will be aligned in HTML using tables. If set to
1680 # NO a bullet list will be used.
1681
1682-HTML_ALIGN_MEMBERS = YES
1683+#HTML_ALIGN_MEMBERS = YES
1684
1685 # If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML
1686 # documentation will contain sections that can be hidden and shown after the
1687@@ -1136,7 +1136,7 @@
1688 # By enabling USE_INLINE_TREES, doxygen will generate the Groups, Directories,
1689 # and Class Hierarchy pages using a tree view instead of an ordered list.
1690
1691-USE_INLINE_TREES = NO
1692+#USE_INLINE_TREES = NO
1693
1694 # If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be
1695 # used to set the initial width (in pixels) of the frame in which the tree
1696
1697=== modified file 'doc/zorba/xqdoc/CMakeLists.txt'
1698--- doc/zorba/xqdoc/CMakeLists.txt 2013-06-21 18:33:53 +0000
1699+++ doc/zorba/xqdoc/CMakeLists.txt 2013-08-23 06:50:34 +0000
1700@@ -16,28 +16,6 @@
1701 MESSAGE(WARNING "Can not build XQDoc documentation because 'File' module is not present")
1702 ELSE(NOT ZORBA_WITH_FILE_ACCESS)
1703
1704-INSTALL(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/images
1705- DESTINATION share/zorba-${ZORBA_MAJOR_NUMBER}.${ZORBA_MINOR_NUMBER}.${ZORBA_PATCH_NUMBER}/xqdoc/requisites
1706- COMPONENT "doc"
1707- PATTERN "*.svn" EXCLUDE
1708- )
1709-INSTALL(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/js
1710- DESTINATION share/zorba-${ZORBA_MAJOR_NUMBER}.${ZORBA_MINOR_NUMBER}.${ZORBA_PATCH_NUMBER}/xqdoc/requisites
1711- COMPONENT "doc"
1712- PATTERN "*.svn" EXCLUDE
1713- )
1714-INSTALL(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/css
1715- DESTINATION share/zorba-${ZORBA_MAJOR_NUMBER}.${ZORBA_MINOR_NUMBER}.${ZORBA_PATCH_NUMBER}/xqdoc/requisites
1716- COMPONENT "doc"
1717- PATTERN "*.svn" EXCLUDE
1718- )
1719-INSTALL(FILES src/xqdoc-html.xq
1720- src/xqdoc-html.xqy
1721- template.xml
1722- DESTINATION share/zorba-${ZORBA_MAJOR_NUMBER}.${ZORBA_MINOR_NUMBER}.${ZORBA_PATCH_NUMBER}/xqdoc/generator/
1723- COMPONENT "doc"
1724- )
1725-
1726 CONFIGURE_FILE (${CMAKE_CURRENT_SOURCE_DIR}/src/xqdoc-html.xq
1727 ${CMAKE_CURRENT_BINARY_DIR}/../../../xqdoc/generator/xqdoc-html.xq COPYONLY)
1728

Subscribers

People subscribed via source and target branches