Codebase list yodl / debian/2.15.1-1
Imported Debian patch 2.15.1-1 Frank B. Brokken authored 14 years ago tony mancill committed 11 years ago
10 changed file(s) with 47 addition(s) and 7 deletion(s). Raw diff Collapse all Expand all
0 #define VERSION "2.15.0"
0 #define VERSION "2.15.1"
11 #define YEARS "1996-2009"
0 yodl (2.15.1)
1
2 * Added a chartable translation to macros/yodl/chartables/man.tables.yo: in
3 man-pages the - character is by default interpreted as hyphen, not as
4 minus. The chartable now defines '-' = "\\-" turning - characters
5 into man-page minus characters. Forced hyphens can be written as
6 manpagecommand(\CHAR(40)hy)
7
8 * Added scripts/hrefnotmpinstall (href no tmp/install) removing tmp/install
9 hyperlinks from html-version of the manual: given yodl.html,
10 the manual pages now link locally to each other.
11
12 -- Frank B. Brokken <f.b.brokken@rug.nl> Mon, 27 Jul 2009 11:32:35 +0200
13
014 yodl (2.15.0)
115
216 * Detected a bug! Lines starting with + characters (like +NOTRANS, but also
0 yodl (2.15.1-1) unstable; urgency=low
1
2 * New upstream release
3
4 [ tony mancill ]
5 * debian/control:
6 - Remove "inherited" Section: from binary package
7 - Modify yodl-doc package description
8
9 -- Frank B. Brokken <f.b.brokken@rug.nl> Mon, 27 Jul 2009 11:33:57 +0200
10
011 yodl (2.15.0-1) unstable; urgency=low
112
213 * New upstream release
1212
1313 Package: yodl
1414 Architecture: any
15 Section: text
1615 Depends: ${shlibs:Depends}, ${misc:Depends}
1716 Suggests: yodl-doc
1817 Description: Your Own Document Language (Yodl) is a pre-document language
2928 Architecture: all
3029 Section: doc
3130 Depends: ${shlibs:Depends}, ${misc:Depends}
32 Description: Your Own Document Language (Yodl) is a pre-document language
31 Description: Documenation for Your Own Document Language (Yodl)
3332 Yodl is a package that implements a pre-document language and tools to
3433 process it. The idea of Yodl is that you write up a document in a
3534 pre-language, then use the tools (e.g. yodl2html) to convert it to some
100100 # Archive downloaded from https://www.icce.rug.nl/debian/yodl
101101 # file: yodl_x.y.z.tar.gz
102102
103 MD5TRUSTED := c7acac379a28381d63ca12607b3f2495
103 MD5TRUSTED := 4a6bec6216f5b9c4f6c18e8d8dff8deb
104104
105105 DEBVERSION:=$(shell head -n 1 debian/changelog | sed -e 's/^[^(]*(\([^)]*\)).*/\1/')
106106 UPVERSION:=$(shell echo $(DEBVERSION) | sed -e 's/^.*://' -e 's/-[0-9.]*$$//' -e 's/.dfsg$$//')
6060 md(g_install + DOCDOC);
6161
6262 buildManual("html", usePath);
63 system("scripts/hrefnotmpinstall");
64
6365 buildManual("txt", usePath);
6466 buildManual("latex", usePath);
6567
4141 )
4242 SETCOUNTER(XXone)(ARG2)\
4343 ADDTOCOUNTER(XXone)(-ARG1)\
44 ADDTOSYMBOL(XXtablealign)(-)\
44 ADDTOSYMBOL(XXtablealign)(+NOTRANS(-))\
4545 addntosymbol(XXtablealign)(XXone)(s)\
4646 ADDTOSYMBOL(XXtablealign)(+XXnl())\
4747 ADDTOSYMBOL(XXroffcontents)(XXroffcmd()()()())\
2121 NOTRANS(></td>)\
2222 XXnl()\
2323 <ms man>
24 addntosymbol(XXtablealign)(XXtablewidth)(-)\
24 addntosymbol(XXtablealign)(XXtablewidth)(NOTRANS(-))\
2525 ADDTOSYMBOL(XXtablealign)(XXnl())\
2626 <else>
2727 XXnl()\
2828 <>
2929 )
30
31
32
00
1 COMMENT(*** Character translation tables. ***)
1 COMMENT(*** Character translation tables.
2 To force a hyphen, use manpagecommand(\CHAR(40)hy) ***)
23
34 DEFINECHARTABLE(standard)(
45 '\\' = "\\e"
6 '-' = "\\-"
57 '\'' = "\\\050cq\\&"
68 '"' = "\\\050dq\\&"
79 '.' = "\\&."
0 #!/bin/bash
1
2 cd tmp/install/usr/share/doc/yodl-doc
3 for x in *html
4 do
5 sed 's,href="tmp/install//usr/share/doc/yodl-doc/,href=",g' $x > $x.tmp
6 mv $x.tmp $x
7 done
8