1
0
Fork 0

removed wiki pages

This commit is contained in:
Frank Celler 2013-08-08 14:07:29 +02:00
parent 94c971af9b
commit 0191273ce9
2 changed files with 2 additions and 114 deletions

View File

@ -69,93 +69,6 @@ DOXYGEN = \
Doxygen/js/server/modules/org/arangodb/simple-query.c \
Doxygen/js/server/server.c
################################################################################
### @brief wiki pages
################################################################################
WIKI = \
Aql \
AqlExamples \
ArangoErrors \
CommandLine \
Communication \
Compiling \
DbaManual \
DbaManualAuthentication \
DbaManualBasics \
DbaManualDatafileDebugger \
DbaManualEmergencyConsole \
ExtendingAql \
FirstStepsArangoDB \
Glossary \
Graphs \
HandlingCollections \
HandlingDocuments \
HandlingEdges \
HandlingIndexes \
Home \
HttpAqlFunctions \
HttpBatch \
HttpCollection \
HttpCurrentDatabase \
HttpCursor \
HttpGraph \
HttpImport \
HttpIndex \
HttpMisc \
HttpQuery \
HttpReplication \
HttpSimple \
HttpSystem \
HttpTransactions \
HttpTraversals \
HttpUser \
ImpManual \
ImpManualBasics \
ImplementorManual \
ImplementorManualArangoErrors \
IndexBitArray \
IndexCap \
IndexCapHttp \
IndexFulltext \
IndexFulltextHttp \
IndexGeo \
IndexGeoHttp \
IndexHash \
IndexHashHttp \
IndexSkiplist \
IndexSkiplistHttp \
InstallManual \
Installing \
JSModuleActions \
JSModuleConsole \
JSModuleFs \
JSModuleGraph \
JSModules \
NamingConventions \
NewFeatures11 \
NewFeatures12 \
NewFeatures13 \
RefManual \
RefManualArangoErrors \
RefManualReplication \
RestDocument \
RestEdge \
SimpleQueries \
Transactions \
Upgrading \
Upgrading11 \
Upgrading12 \
Upgrading13 \
UserManual \
UserManualActions \
UserManualArangosh \
UserManualFoxx \
UserManualFoxxManager \
UserManualReplication \
UserManualWebInterface \
jsUnity
## -----------------------------------------------------------------------------
## --SECTION-- DOXYGEN
## -----------------------------------------------------------------------------
@ -179,7 +92,6 @@ Doxygen/.setup-directories:
@test -d Doxygen/man/man1 || mkdir -p Doxygen/man/man1
@test -d Doxygen/man/man8 || mkdir -p Doxygen/man/man8
@test -d Doxygen/latex/images || mkdir -p Doxygen/latex/images
@test -d Doxygen/wiki || mkdir -p Doxygen/wiki
@test -d Doxygen/xml || mkdir -p Doxygen/xml
@touch $@
@ -236,25 +148,6 @@ doxygen: Doxygen/.setup-directories Doxygen/arango-html.doxy $(DOXYGEN)
cp -R @top_srcdir@/Documentation/images/* Doxygen/doc/images
cp -R @top_srcdir@/Documentation/arangodb.css Doxygen/doc
################################################################################
### @brief wiki
################################################################################
.PHONY: wiki wiki-raw
Doxygen/arango-xml.doxy: Documentation/arango.template Doxygen/toc.doxy
sed -e 's:GENERATE_XML *= *NO:GENERATE_XML = YES:' -e 's:ENABLED_SECTIONS *=:ENABLED_SECTIONS = XML:' < $< > $@
cat Doxygen/toc.doxy >> $@
wiki: wiki-raw
@test -d Doxygen/wiki || mkdir Doxygen/wiki
@for w in $(WIKI); do python @top_srcdir@/Documentation/Scripts/xml2md.py Doxygen/xml/$$w.xml > Doxygen/xml/$$w.md; done
@for w in $(WIKI); do @top_srcdir@/Documentation/Scripts/fixmd.sh Doxygen/xml/$$w.md; done
wiki-raw: Doxygen/arango-xml.doxy $(DOXYGEN)
$(MAKE) lib/BasicsC/voc-errors.h
doxygen Doxygen/arango-xml.doxy > /dev/null
################################################################################
### @brief latex
################################################################################

View File

@ -8,19 +8,14 @@ OUTPUT_FOLDER=Doxygen/manuals/$(PACKAGE_VERSION)
## publish
################################################################################
.PHONY: publish publish-wiki publish-html publish-pdf publish-copy
.PHONY: publish publish-html publish-pdf publish-copy
publish: examples publish-wiki publish-html publish-pdf
publish: examples publish-html publish-pdf
make publish-copy
publish-copy:
cd Doxygen/manuals && scp -r "$(PACKAGE_VERSION)" $(MANUAL_DST)
publish-wiki:
(cd Doxygen/wiki && git checkout --force -- . && git clean -f -d -x && git pull)
$(MAKE) wiki
(cd Doxygen/wiki && git add *.md; git commit -m "`date`" -a; git push)
publish-html:
$(MAKE) doxygen
mkdir -p $(OUTPUT_FOLDER)/images