makedocs 9.45 KB
Newer Older
1
#!/bin/bash
2
. bash_helper_functions
3
4
5
6
7
8
9

report_failure ()
{
    echo "  **** failed to complete **** "
    exit 1
}

10
11
12
13
14
htmlify_python_file ()
{
    pygmentize -f html -O full,style=vs $1 > $1.html
}

Davis King's avatar
Davis King committed
15

16
17
add_links_between_example_programs()
{
18
    EXT=$3
19
20
    # Get the list of example program filenames
    pushd $1 > /dev/null
21
    FILES=`ls *.$EXT`
22
23
24
25
26
27
28
29
30
    popd > /dev/null

    # Now run sed on all the htmlified example programs to add the links between them.
    for f in $FILES
    do
        #escape the . in the filename
        escaped_name=`echo $f | sed -e 's/\./\\\./g'`
        pushd $1 > /dev/null
        # get a list of all the html example files that contain the name
31
        matching_html_files=`grep -e "\b$escaped_name\b" -l *.$EXT | sed -e "s/\.$EXT\b/.$EXT.html/g"`
32
33
34
35
36
37
38
39
40
41
42
43
44
        popd > /dev/null

        # now actually run sed to add the links
        pushd $2 > /dev/null
        if [ -n "$matching_html_files" ]
        then
            sed -i -e "s/\b$escaped_name\b/<a href=\"$escaped_name.html\">$escaped_name<\/a>/g" $matching_html_files
        fi
        popd > /dev/null
    done

}

45
46
47
48
49
50
htmlify_cmake ()
{
    echo "<html><head><title>" > $1.html;
    echo $1 >> $1.html;
    echo "</title></head><body bgcolor='white'><pre>" >> $1.html;

51
52
53
54
55
    #  line 1: make comments green
    #  line 2: add links into the add_subdirectory directives
    #  line 3: make literal quotes red
    #  line 4: make the directives show up blue
    #  line 5: make variable names show up purple
56
57
58
59
60
61
62
    sed -e "s/^\([ ]*#.*\)/<font color='#009900'>\1<\/font>/" \
        -e "s/add_subdirectory\([ ]*\)(\([ ]*\)\([^ ]*\)\([ ]*\)\([^ )]*\)/add_subdirectory\1(\2\3\4<a href='\3\/CMakeLists.txt.html'>\5<\/a>/"  \
        -e "s/\"\([^\"]*\)\"/\"<font color='#CC0000'>\1<\/font>\"/g"  \
        -e "s/^\([ ]*[^( ]*[ ]*\)(/<font color='blue'>\1<\/font>(/" \
        -e "s/{\([^}]*\)}/\{<font color='#BB00BB'>\1<\/font>}/g"  \
        $1 >> $1.html;

63
64
65
66
67
68
69
70
71
72
73
    echo "</pre></body></html>" >> $1.html;
}

htmlify_python()
{
    FILES=`\ls $1/*.py`
    for i in $FILES
    do
        htmlify_python_file ${i}
        rm ${i}
    done
74
75
}

76

77
78
79
80
81
82
83
makedocs ()
{

    REVNUM_FILE=.logger_revnum



84
    # figure out the short number that identifies this particular changeset
85
86
87
    get_short_revision_number `cat $REVNUM_FILE`
    LOGGER_REVNUM=$RESULT

88
    XSLT_OPTIONS="--nodtdattr   --nonet   --novalid"
89
    DATE_TODAY=`date --date= "+%b %d, %Y"`;
90
91
92
93




94
    # The revision number we are currently at
95
96
97
    CHANGESET_ID=`hg id -i | sed -e 's/\+//'`
    get_short_revision_number $CHANGESET_ID 
    REVISION=$RESULT
98
99


100
101
102
103
    if [ "$1" = "makerel" ] 
        then
        RELEASE=${MAJOR_NUM}.${MINOR_NUM} 
    else
104
        RELEASE=${MAJOR_NUM}.${MINOR_NUM}.${PATCH_NUM}
105
    fi;
106

107
    # get XML versions of the change logs
108
    BASE_LOGGER_REVNUM=`echo $LOGGER_REVNUM - 1000 | bc`
109
110
    NEXT_LOGGER_REVNUM=`echo $LOGGER_REVNUM + 1 | bc`
    echo Getting the mercurial change logs for revisions $NEXT_LOGGER_REVNUM:$REVISION
111
    hg log -v ../dlib ../examples ../tools ../python_examples --style=xml  -r$NEXT_LOGGER_REVNUM:$REVISION > docs/log.txt || report_failure
112
    echo Getting the mercurial change logs for revisions $BASE_LOGGER_REVNUM:$LOGGER_REVNUM
113
    hg log -v ../dlib ../examples ../tools ../python_examples --style=xml  -r$BASE_LOGGER_REVNUM:$LOGGER_REVNUM > docs/old_log.txt || report_failure 
114

115
    # grab a clean copy of the repository 
116
    rm -rf docs/cache
117
118
    rm -rf docs/web
    rm -rf docs/chm/docs
119
120
121
    hg archive docs/cache || report_failure
    # Don't need the docs folder in the cache, moreover, deleting it here avoids letting the makerel script include it in the dlib tar balls.
    rm -rf docs/cache/docs
122

123
124
125
    echo "#ifndef DLIB_REVISION_H"           > docs/cache/dlib/revision.h
    echo "// Version: " $RELEASE            >> docs/cache/dlib/revision.h
    echo "// Date:    " `date`              >> docs/cache/dlib/revision.h
126
127
128
    echo "// Mercurial Revision ID: " $CHANGESET_ID >> docs/cache/dlib/revision.h
    echo "#define DLIB_MAJOR_VERSION " $MAJOR_NUM >> docs/cache/dlib/revision.h
    echo "#define DLIB_MINOR_VERSION " $MINOR_NUM >> docs/cache/dlib/revision.h
129
    echo "#define DLIB_PATCH_VERSION " $PATCH_NUM >> docs/cache/dlib/revision.h
130
131
132
    echo "#endif"                           >> docs/cache/dlib/revision.h


133
134
135
136
    rm -rf docs/web
    rm -rf docs/chm/docs
    mkdir docs/web
    mkdir docs/chm/docs
137
138
139

    echo Creating HTML version of the source
    htmlify --title "dlib C++ Library - " -i docs/cache -o htmltemp.$$
140
    add_links_between_example_programs docs/cache/examples htmltemp.$$/examples cpp
141
142
143
144
145
146
147
148

    echo Copying files around...
    cp -r htmltemp.$$/dlib docs/web
    cp -r htmltemp.$$/dlib docs/chm/docs
    cp -r htmltemp.$$/examples/* docs/web
    cp -r htmltemp.$$/examples/* docs/chm/docs
    rm -rf htmltemp.$$

149
150
    # create python docs unless you say ./makedocs fast
    if [ "$1" != "fast" ] 
151
    then
152
        cd ..
153
        python setup.py build || report_failure
154
155
156
157
158
        python setup.py build_sphinx -c docs/docs/python --build-dir docs/sphinx.$$ || report_failure
        cd docs
        cp -r sphinx.$$/html docs/web/python
        mv  sphinx.$$/html docs/chm/docs/python
        rm -rf sphinx.$$
Davis King's avatar
Davis King committed
159
160
161
    fi;


162
163
164
165
166
167
168
169
170
171
172
    cp docs/cache/dlib/test/makefile docs/web/dlib/test
    cp docs/cache/dlib/test/makefile docs/chm/docs/dlib/test

    cp docs/cache/dlib/test/CMakeLists.txt docs/web/dlib/test
    cp docs/cache/dlib/test/CMakeLists.txt docs/chm/docs/dlib/test
    cp docs/cache/dlib/CMakeLists.txt docs/web/dlib
    cp docs/cache/dlib/CMakeLists.txt docs/chm/docs/dlib
    mkdir docs/web/examples || report_failure
    cp docs/cache/examples/CMakeLists.txt docs/web/examples
    mkdir docs/chm/docs/examples || report_failure 
    cp docs/cache/examples/CMakeLists.txt docs/chm/docs/examples
173
174
175
176
177
    cp docs/cache/python_examples/*.py docs/chm/docs/
    cp docs/cache/python_examples/*.py docs/web/

    htmlify_python docs/chm/docs/
    htmlify_python docs/web/
178
179
    add_links_between_example_programs docs/cache/python_examples docs/chm/docs py
    add_links_between_example_programs docs/cache/python_examples docs/web py
180

181
182
    cp docs/*.gif docs/web
    cp docs/*.gif docs/chm/docs
183
184
    cp docs/ml_guide.svg docs/web
    cp docs/ml_guide.svg docs/chm/docs
185
186
    cp -r docs/guipics docs/web
    cp -r docs/guipics docs/chm/docs
Davis King's avatar
Davis King committed
187
188
    cp -r docs/images docs/web
    cp -r docs/images docs/chm/docs
189
190
    cp docs/*.html docs/web
    cp docs/*.html docs/chm/docs
191
192
193
194
    cp docs/*.css docs/web
    cp docs/*.css docs/chm/docs
    cp docs/*.js docs/web
    cp docs/*.js docs/chm/docs
195
    cp docs/*.png docs/web
Davis King's avatar
Davis King committed
196
    cp docs/*.pdf docs/web
Davis King's avatar
Davis King committed
197
    cp docs/*.jpg docs/web
Davis King's avatar
Davis King committed
198
    cp docs/*.webm docs/web
199
    cp docs/*.ico docs/web
200
    cp docs/*.png docs/chm/docs
Davis King's avatar
Davis King committed
201
    cp docs/*.pdf docs/chm/docs
Davis King's avatar
Davis King committed
202
    cp docs/*.jpg docs/chm/docs
Davis King's avatar
Davis King committed
203
    cp docs/*.webm docs/chm/docs
204
    cp docs/*.ico docs/chm/docs
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220

    cd docs/chm/docs || report_failure 
    htmlify_cmake dlib/CMakeLists.txt;
    htmlify_cmake examples/CMakeLists.txt;
    htmlify_cmake dlib/test/CMakeLists.txt;
    cd ../../.. || report_failure
    cd docs/web || report_failure
    htmlify_cmake dlib/CMakeLists.txt;
    htmlify_cmake examples/CMakeLists.txt;
    htmlify_cmake dlib/test/CMakeLists.txt;
    cd ../.. || report_failure

    find docs/web docs/chm -name "CMakeLists.txt" | xargs rm



221
222
223
224
225
    # generate the HTML docs
    echo Generate HTML docs from XML and XSLT style sheet
    FILES=`\ls docs/*.xml | grep -v main_menu.xml`
    for i in $FILES
    do
226

227
        # The last modified date for these files should always be the release date (regardless of when the actual xml files were modified). 
Davis King's avatar
Davis King committed
228
        if [ "${i}" = "docs/release_notes.xml" -o ${i} = "docs/old_release_notes.xml" \
229
230
             -o ${i} = "docs/change_log.xml" -o ${i} = "docs/old_change_log.xml" \
             -o ${i} = "docs/index.xml" ] 
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
        then
            DATE=$DATE_TODAY
        else
            get_last_modified_date ${i}
            DATE=$RESULT
        fi;

        #make web version
        cat docs/stylesheet.xsl | sed -e 's/"is_chm">[^<]*/"is_chm">false/' -e "s/_CURRENT_RELEASE_/$RELEASE/" -e "s/_LAST_MODIFIED_DATE_/$DATE/" \
            > docs/stylesheet.$$.xsl
        OUT_FILE=$(echo ${i} | sed -e "s/\.xml/\.html/" | sed -e "s/docs\//docs\/web\//")
        xsltproc $XSLT_OPTIONS -o $OUT_FILE docs/stylesheet.$$.xsl ${i}

        #make chm version
        cat docs/stylesheet.xsl | sed -e 's/"is_chm">[^<]*/"is_chm">true/' -e "s/_CURRENT_RELEASE_/$RELEASE/" -e "s/_LAST_MODIFIED_DATE_/$DATE/" \
            > docs/stylesheet.$$.xsl
        OUT_FILE=$(echo ${i} | sed -e "s/\.xml/\.html/" | sed -e "s/docs\//docs\/chm\/docs\//")
        xsltproc $XSLT_OPTIONS -o $OUT_FILE docs/stylesheet.$$.xsl ${i}

        rm docs/stylesheet.$$.xsl
    done
252

253
254
255
256
257
258
259
# Delete doc type header stuff
#    FILES=`find docs/chm docs/web -iname "*.html" -type f`
#    for i in $FILES
#    do
#        sed -e '/<!DOCTYPE/d' ${i} > temp.$$;
#        mv temp.$$ ${i};
#    done
260
261
262
263


    echo Generating sitemap
    cd docs/web || report_failure
264
    find . -name "*.html" |  awk '{ print "http://dlib.net" substr($1,2)}' > sitemap.txt
265
266
267
268
269
270

    # make the main index have a 301 redirect.  Use php to do this
    echo '<?php if ($_SERVER["SERVER_NAME"] != "dlib.net") { header("Location: http://dlib.net/", true, 301); exit; } ?>' > index.php
    cat index.html >> index.php
    rm index.html

271
272
273
274
275
276
277
278
279
280
    cd ../..
}


./testenv || report_failure




# build all the html documentation
281
makedocs $1
282
283
284
285
286

# now make the table of contents for the chm file
echo Generating the table of contents for the chm file
xsltproc -o docs/chm/Table\ of\ Contents.hhc docs/chm/htmlhelp_stylesheet.xsl docs/chm/toc.xml