File: get_manual

package info (click to toggle)
debian-edu-doc 2.12.27
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 66,620 kB
  • sloc: xml: 26,777; sh: 228; perl: 117; makefile: 87
file content (273 lines) | stat: -rwxr-xr-x 10,411 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
#!/bin/sh
#
# download the AllInOne page of a manual on wiki.debian.org as docbook
# and transform it into proper XML
#
# very loosly based on the moinmoin2pdf script from Petter Reinholdtsen
#
# Author/Copyright:	Holger Levsen
# Licence:		GPL2+
# first edited:		2006-07-06
# last edited:		2021-08-01
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.

#set -x

exit_loud_and_clearly() {
	echo "-----------------------------------------------------"
	echo
	echo "$1"
	echo
	echo "-----------------------------------------------------"
	exit 1
}

if [ ! $(command -v xmllint) ] ; then
	exit_loud_and_clearly "Please install libxml2-utils."
fi

if [ ! $(command -v GET) ] ; then
	exit_loud_and_clearly "Please install libwww-perl."
fi

if [ "$name" = "" ] ; then
	exit_loud_and_clearly "error: missing \$name variable, not exported from Makefile?"
fi
URL=https://wiki.debian.org
TMPFILE=$(mktemp)
xmlfile=$name.xml

# Get the docbook type manual from the wiki and store a copy as source before
# modifying the file.
PERL_LWP_SSL_VERIFY_HOSTNAME=0 GET -H User-Agent: "${url}AllInOne?action=show&mimetype=text/docbook"|
tee source/AllInOne-$name.xml |

# remove AllInOne page related additions from links
sed "s%$path1/AllInOne/%%g" |

# replace " with \" (like it has been before the docbook export change) to
# avoid a lot of fuzzy strings.
sed "s%"%\"%g" |

# replace tags:
sed "s%code>%computeroutput>%g" |
sed "s%/htdocs/rightsidebar/img/%./images/%g" |

# remove initial and final tags:
perl -pe "s%</?article>%%g" |

# remove tags and enclosed content:
sed "s#<articleinfo>\(.*\)</articleinfo>##g" |

# remove useless img alt text belonging to wiki PNGs (idea, alert, smile, sad):
sed "s#<textobject><phrase>(!)</phrase></textobject>##g" |
sed "s#<textobject><phrase>\\/!\\\</phrase></textobject>##g" |
sed "s#<textobject><phrase>:)</phrase></textobject>##g" |
sed "s#<textobject><phrase>:(</phrase></textobject>##g" |

# Comment useless remarks from XML: they just show an ugly drawing in XML
perl -pe "s%<remark>.*?</remark>%<!-- $& -->%g" |

# Make wiki self links actually local
perl -pe "s%<ulink url=\"$url/?(\w+)#\">(.*?)</ulink>%<link linkend=\"\1\">\2</link>%g" |
perl -pe "s%<ulink url=\"$URL/?(\w+)#\">(.*?)</ulink>%<link linkend=\"\1\">\2</link>%g" |
perl -pe "s%<ulink url=\"https://wiki.debian.org/$path1/(HowTo/)?(\w+)#\">(.*?)</ulink>%<link linkend=\"\2\">\3</link>%g" |
perl -pe "s%<ulink url=\"https://wiki.debian.org/$path1/(HowTo/)?(\w+)#(.*?)\">(.*?)</ulink>%<link linkend=\"\2--\3\">\4</link>%g" |

# introduce line breaks:
sed "s%<title>%\n<title>%g" |
sed "s%<\/title>%\n<\/title>%g" |
sed "s%<section%\n\n<section%g" |
sed "s%<\/section>%\n<\/section>%g" |
sed "s%<para>%\n<para>%g" |
sed "s%<para><anchor%<para>\n<anchor%g" |
# next one commented to catch Catagory links easier
#sed "s%<\/para>%\n<\/para>%g" |
sed "s%FIXME%\nFIXME%g" |
sed "s%<itemizedlist>%\n<itemizedlist>%" |
sed "s%<listitem>%\n<listitem>%" |

# remove lines from file to get rid of the Catagory links
# need to terminate piping here because of the next sed
sed "/CategoryPermalink/d" > $xmlfile

# fix some remaining URLs (see manual specific Makefile for $url vs. $URL)
sed -i "s%$url/DebianEdu/Status/%$URL/DebianEdu/Status/%g" "$xmlfile"
sed -i "s%$url/$path1/%$URL%g" "$xmlfile"

# introduce one more line break now that Catagory links ar gone
sed -i "s%<\/para>%\n<\/para>%g" $xmlfile

# terminate file correctly.
sed -i  "$ s#>#>\n</article>#" $xmlfile

# next sed block is needed to get internal links working in bullseye+.
# Note: on wiki.d.o pages, link anchors must be set above the title like e.g.
# for the Architectur page, level 1, 2 and 3:
#
# <<Anchor(Architecture)>>
# = Architecture =
#
# <<Anchor(Architecture--Network)>>
# == Network ==
#
# <<Anchor(Architecture--File_system_access_configuration)>>
# === File system access configuration ===
#
# the added anchor tag is inserted at/after the end of the previous section and
# included in <para></para>; also the tags' endings differ.
# we want to get out of this mess, we need <section id="...."> above <title>:
#
# modify begin of line
sed -i '/anchor/s%<anchor%<section%' $xmlfile
# modify end of line
sed -i '/id="/s%\/>%>%' $xmlfile
# delete para lines before and after matched line
sed -ni '/id="/{x;n;d;};1h;1!{x;p;};${x;p;}' $xmlfile
# read next lines and delete them conditionally (for two different cases)
sed -i '/id="/{N;N;N;s/<section>//;s/<\/section>//}' $xmlfile
# fix subsection and sub-subsection cases (add closing tag for previous section,
# and also newline to separate the sections)
sed -i '/<\/para>/{n;s%<section id=%</section>\n\n<section id=%}' $xmlfile
# end of internal linking block

######
###### Begin legacy manuals' workaround
######

# use unique section IDs.
if [ "audacity-manual" = "$name" ] || [ "rosegarden-manual" = "$name" ] || \
		[ "debian-edu-itil-manual" = "$name" ] ; then
	seq 0 $(grep "<section>" $xmlfile | wc -l) > id
	for n in `cat id` ; do
		sed -i "0,/<section>/s/<section>/<section id='$n'>/" "$xmlfile"
	done
	rm id
fi

###### Begin legacy manuals' workaround
###
### the sed blocks below are obviously suboptimal but only needed for legacy
### documentation where the sections ids won't change.
###
### ids are collected from old docbook export, these are needed for links inside
### the manual, i.e. from one section to another one. ids are not sequential
### because only the needed ones have been filtered out.
###

# common issues for debian-edu-itil, audacity and rosegarden manuals
if [ "audacity-manual" = "$name" ] || [ "rosegarden-manual" = "$name" ] || [ "debian-edu-itil-manual" = "$name" ] ; then
	# avoid docbook export changes for ITIL, audacity and rosegarden images
	# issues (due to alt tag missing?)
	sed -i "s%https://wiki.debian.org/.*?action=AttachFile&amp;do=get&amp;target=%%"  $xmlfile
fi

# audacity manual specific
if [ "audacity-manual" = "$name" ] ; then
	# rename section ids
	sed -i "s%id='11'>%id='CopyRight'>%" $xmlfile
	sed -i "s%id='13'>%id='Translations'>%" $xmlfile
fi

# rosegarden manual specific
if [ "rosegarden-manual" = "$name" ] ; then
	# rename section ids
	sed -i "s%id='44'>%id='SoundCreation--Sample_Tuning_for_Advanced_Users'>%" $xmlfile
	sed -i "s%id='45'>%id='CopyRight'>%" $xmlfile
	sed -i "s%id='47'>%id='Translations'>%" $xmlfile
fi

# ITIL manual specific
if [ "debian-edu-itil-manual" = "$name" ] ; then
	# fix links containing /en/ (seems to be there out of historic reasons)
	sed -i "s%/en/%/%" $xmlfile
	# no section ids renaming here because most internal links on the wiki seem
	# to be broken anyway
fi
######
###### End legacy manuals' workaround
######

# remove FIXMEs
if [ "$(grep -v FIXMEs $xmlfile | grep FIXME | grep -v 'FIXME&gt;' | grep -v 'status ignore')" != "" ] ; then
	echo "----------------------------------" > $TMPFILE
	echo $xmlfile > $TMPFILE
	grep -v FIXMEs $xmlfile | grep FIXME | grep -v 'FIXME&gt;' | grep -v 'status ignore' > $TMPFILE
fi

# get images and modify $xmlfile
echo "calling ../scripts/get_images $xmlfile $path1"
../scripts/get_images $xmlfile $path1

# turn links into internal references if appropriate
# this needs to run after ./get_images
#
#  -0\777  read multiple lines
perl -0\777 -pi -e "s/<ulink url=\"$path2(.*)\/(.*)\">(.*)\n<\/ulink>/<link linkend=\"\2\">\3<\/link>/g" $xmlfile

# weird hack for subtitle to get a translatable string and a separate space for the date, see Makefile.common.
sed -i "1,/</ s#<#<?xml version=\"1.0\" encoding=\"UTF-8\"?><!DOCTYPE article PUBLIC \"-//OASIS//DTD DocBook XML V4.4//EN\" \"http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd\"><article lang=\"en\"><articleinfo><title>$DEBIAN_EDU_DOC_TITLE</title><subtitle><para>Publish date: </para><para>\ </para></subtitle></articleinfo>\n<#" $xmlfile

# remove the first empty lines
sed -i "1,3d" $xmlfile

# motivate
if [ "$(grep -v FIXMEs $xmlfile |grep FIXME |grep -v 'status ignore'|uniq)" != "" ] ; then
	echo "====================" >> $TMPFILE
	echo `grep -v FIXMEs $xmlfile |grep FIXME |grep -v 'status ignore'|uniq|wc -l` FIXMEs left to fix >> $TMPFILE
	echo "====================" >> $TMPFILE
fi
mv $TMPFILE fixme-status.txt

######
###### remove some untranslatable strings from $xmlfile
######

# create $stripped_xmlfile which will have some non-translatable strings
# removed and will be used for POT and PO file creation via po4a.
stripped_xmlfile=$name-stripped.xml

  # --remove untranslatable image names
  sed -e 's#<imagedata.*</imageobject>#</imageobject>#g' $xmlfile > $stripped_xmlfile

  # --remove paragraphs that just have a <ulink> and no other text
    #---first copy those paragraphs to a tempfile,
    TMPFILE3=$(mktemp)
    cat $xmlfile | sed -n '/^<para><ulink/p' | sed -n '/> *$/p' > $TMPFILE3
    #---and then replace those links with an empty string
    #---but keep the <para> tag to prevent xml from being broken
    while read line ;
      do sed -i "s#$line#<para>#" $stripped_xmlfile
    done < $TMPFILE3

# More removals starting with bookworm wiki content.
if [ "debian-edu-bullseye-manual" = "$name" ] ; then
	continue
else
	# --remove <screen> </screen> blocks
	# ---first adjust formatting to create clean blocks using inserted newlines
	sed -i "s%<screen>%\n&%g" $stripped_xmlfile
	sed -i "s%</screen>%\n&%g" $stripped_xmlfile
	sed -i "s%</screen>%&\n%g" $stripped_xmlfile
	# ---now delete them
	sed -i '/<screen>/,/<\/screen>/d' $stripped_xmlfile
	# --remove automatically generated img alt text (when the file name is
	#   used as replacement in case real alt text hasn't been added on the wiki)
	sed -i 's%<textobject><phrase>\(.*png\)</phrase></textobject>%%g' $stripped_xmlfile
fi

  # --remove FIXME: paragraphs
  sed -i '/^FIXME:/d' $stripped_xmlfile
  # --remove GPL; exclude the ITIL manual which doesn't contain it.
  if [ ! "$name" = "debian-edu-itil-manual" ] ; then
  sed -ni '1h; 1!H; ${ g; s#<para>This program is free.*CONDITIONS</emphasis>#<para>#p }' $stripped_xmlfile
  fi