summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorAndres Mejia <amejia004@gmail.com>2012-02-05 16:00:12 -0500
committerAndres Mejia <amejia004@gmail.com>2012-02-05 16:00:12 -0500
commit09acd75a9963f5a08d36e5a5aa4a7cfe3b80f813 (patch)
treefce85695346b0d1397ab6b250993532907fbf465 /doc
parent5f9884a01a74d07b37add08cbb7367a6e9819d2f (diff)
downloadlibarchive-09acd75a9963f5a08d36e5a5aa4a7cfe3b80f813.tar.gz
Remove old script that generates wiki pages for googlecode wiki.
Diffstat (limited to 'doc')
-rwxr-xr-xdoc/mdoc2mediawiki.awk451
-rwxr-xr-xdoc/mdoc2wiki.awk99
-rwxr-xr-xdoc/update.sh30
3 files changed, 53 insertions, 527 deletions
diff --git a/doc/mdoc2mediawiki.awk b/doc/mdoc2mediawiki.awk
deleted file mode 100755
index 5fee29c3..00000000
--- a/doc/mdoc2mediawiki.awk
+++ /dev/null
@@ -1,451 +0,0 @@
-#!/usr/bin/awk
-#
-# Copyright (c) 2003 Peter Stuge <stuge-mdoc2man@cdy.org>
-#
-# Permission to use, copy, modify, and distribute this software for any
-# purpose with or without fee is hereby granted, provided that the above
-# copyright notice and this permission notice appear in all copies.
-#
-# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
-# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
-# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
-# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
-# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
-# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
-# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
-
-# Dramatically overhauled by Tim Kientzle. This version almost
-# handles library-style pages with Fn, Ft, etc commands. Still
-# a lot of problems...
-
-BEGIN {
- displaylines = 0
- listdepth = 0
- trailer = ""
- out = ""
- sep = ""
- nextsep = " "
- spaces = " "
-
- NORMAL_STATE = 0
- PRETAG_STATE = 1
- STATE = NORMAL_STATE
-}
-
-# Add a word with appropriate preceding whitespace
-# Maintain a short queue of the expected upcoming word separators.
-function add(str) {
- out=out sep str
- sep = nextsep
- nextsep = " "
-}
-
-# Add a word with no following whitespace
-# Use for opening punctuation such as '('
-function addopen(str) {
- add(str)
- sep = ""
-}
-
-# Add a word with no preceding whitespace
-# Use for closing punctuation such as ')' or '.'
-function addclose(str) {
- sep = ""
- add(str)
-}
-
-# Add a word with no space before or after
-# Use for separating punctuation such as '='
-function addpunct(str) {
- sep = ""
- add(str)
- sep = ""
-}
-
-# Emit the current line so far
-function endline() {
- addclose(trailer)
- trailer = ""
- if(length(out) > 0) {
- if (STATE == PRETAG_STATE) {
- print out
- } else {
- print out " "
- }
- out=""
- }
- if(displaylines > 0) {
- displaylines = displaylines - 1
- if (displaylines == 0)
- dispend()
- }
- # First word on next line has no preceding whitespace
- sep = ""
-}
-
-function linecmd(cmd) {
- endline()
- add(cmd)
- endline()
-}
-
-function breakline() {
- linecmd("<br>")
-}
-
-# Start an indented display
-function dispstart() {
- linecmd("```text")
-}
-
-# End an indented display
-function dispend() {
- linecmd("```")
-}
-
-# Collect rest of input line
-function wtail() {
- retval=""
- while(w<nwords) {
- if(length(retval))
- retval=retval " "
- retval=retval words[++w]
- }
- return retval
-}
-
-function splitwords(l, dest, n, o, w) {
- n = 1
- delete dest
- while (length(l) > 0) {
- sub("^[ \t]*", "", l)
- if (match(l, "^\"")) {
- l = substr(l, 2)
- o = index(l, "\"")
- if (o > 0) {
- w = substr(l, 1, o-1)
- l = substr(l, o+1)
- dest[n++] = w
- } else {
- dest[n++] = l
- l = ""
- }
- } else {
- o = match(l, "[ \t]")
- if (o > 0) {
- w = substr(l, 1, o-1)
- l = substr(l, o+1)
- dest[n++] = w
- } else {
- dest[n++] = l
- l = ""
- }
- }
- }
- return n-1
-}
-
-! /^\./ {
- out = $0
- endline()
- next
-}
-
-/^\.\\"/ { next }
-
-{
- sub("^\\.","")
- nwords=splitwords($0, words)
- # TODO: Instead of iterating 'w' over the array, have a separate
- # function that returns 'next word' and use that. This will allow
- # proper handling of double-quoted arguments as well.
- for(w=1;w<=nwords;w++) {
- if(match(words[w],"^Li$")) { # Literal; rest of line is unformatted
- dispstart()
- displaylines = 1
- } else if(match(words[w],"^Dl$")) { # Display literal
- dispstart()
- displaylines = 1
- } else if(match(words[w],"^Bd$")) { # Begin display
- STATE = PRETAG_STATE
- if(match(words[w+1],"-literal")) {
- dispstart()
- displaylines=10000
- w=nwords
- }
- } else if(match(words[w],"^Ed$")) { # End display
- displaylines = 0
- dispend()
- STATE = NORMAL_STATE
- } else if(match(words[w],"^Ns$")) { # Suppress space before next word
- sep=""
- } else if(match(words[w],"^No$")) { # Normal text
- add(words[++w])
- } else if(match(words[w],"^Dq$")) { # Quote
- addopen("\"")
- add(words[++w])
- while(w<nwords&&!match(words[w+1],"^[\\.,]"))
- add(words[++w])
- addclose("\"")
- } else if(match(words[w],"^Do$")) {
- addopen("\"")
- } else if(match(words[w],"^Dc$")) {
- addclose("\"")
- } else if(match(words[w],"^Oo$")) {
- addopen("<nowiki>[</nowiki>")
- } else if(match(words[w],"^Oc$")) {
- addclose("<nowiki>]</nowiki>")
- } else if(match(words[w],"^Ao$")) {
- addopen("&lt;")
- } else if(match(words[w],"^Ac$")) {
- addclose("&gt;")
- } else if(match(words[w],"^Dd$")) {
- date=wtail()
- next
- } else if(match(words[w],"^Dt$")) {
- id=words[++w] "(" words[++w] ")"
- next
- } else if(match(words[w],"^Ox$")) {
- add("OpenBSD")
- } else if(match(words[w],"^Fx$")) {
- add("FreeBSD")
- } else if(match(words[w],"^Bx$")) {
- add("BSD")
- } else if(match(words[w],"^Nx$")) {
- add("NetBSD")
- } else if(match(words[w],"^St$")) {
- if (match(words[w+1], "^-p1003.1$")) {
- w++
- add("<nowiki>IEEE Std 1003.1 (``POSIX.1'')</nowiki>")
- } else if(match(words[w+1], "^-p1003.1-96$")) {
- w++
- add("<nowiki>ISO/IEC 9945-1:1996 (``POSIX.1'')</nowiki>")
- } else if(match(words[w+1], "^-p1003.1-88$")) {
- w++
- add("<nowiki>IEEE Std 1003.1-1988 (``POSIX.1'')</nowiki>")
- } else if(match(words[w+1], "^-p1003.1-2001$")) {
- w++
- add("<nowiki>IEEE Std 1003.1-2001 (``POSIX.1'')</nowiki>")
- } else if(match(words[w+1], "^-susv2$")) {
- w++
- add("<nowiki>Version 2 of the Single UNIX Specification (``SUSv2'')</nowiki>")
- }
- } else if(match(words[w],"^Ex$")) {
- if (match(words[w+1], "^-std$")) {
- w++
- add("The '''" name "''' utility exits 0 on success, and &gt;0 if an error occurs.")
- }
- } else if(match(words[w],"^Os$")) {
- add(id " manual page")
- } else if(match(words[w],"^Sh$")) {
- section=wtail()
- linecmd("== " section " ==")
- } else if(match(words[w],"^Xr$")) {
- add("'''" words[++w] "'''(" words[++w] ")" words[++w])
- } else if(match(words[w],"^Nm$")) {
- if(match(section,"SYNOPSIS"))
- breakline()
- if(w >= nwords)
- n=name
- else if (match(words[w+1], "^[A-Z][a-z]$"))
- n=name
- else if (match(words[w+1], "^[.,;:]$"))
- n=name
- else {
- n=words[++w]
- if(!length(name))
- name=n
- }
- if(!length(n))
- n=name
- if (displaylines == 0)
- add("'''" n "'''")
- else
- add(n)
- } else if(match(words[w],"^Nd$")) {
- add("- " wtail())
- } else if(match(words[w],"^Fl$")) {
- addopen("-")
- } else if(match(words[w],"^Ar$")) {
- if(w==nwords)
- add("''file ...''")
- else {
- ++w
- gsub("<", "&lt;", words[w])
- add("''" words[w] "''")
- }
- } else if(match(words[w],"^Cm$")) {
- ++w
- if (displaylines == 0) {
- add("'''" words[w] "'''")
- } else
- add(words[w])
- } else if(match(words[w],"^Op$")) {
- addopen("<nowiki>[</nowiki>")
- option=1
- trailer="<nowiki>]</nowiki>" trailer
- } else if(match(words[w],"^Pp$")) {
- ++w
- endline()
- print ""
- } else if(match(words[w],"^An$")) {
- if (match(words[w+1],"-nosplit"))
- ++w
- endline()
- } else if(match(words[w],"^Ss$")) {
- add("===")
- trailer="==="
- } else if(match(words[w],"^Ft$")) {
- if (match(section, "SYNOPSIS")) {
- breakline()
- }
- l = wtail()
- add("'''" l "'''")
- if (match(section, "SYNOPSIS")) {
- breakline()
- }
- } else if(match(words[w],"^Fn$")) {
- ++w
- F = "'''" words[w] "'''("
- Fsep = ""
- while(w<nwords) {
- ++w
- if (match(words[w], "^[.,:]$")) {
- --w
- break
- }
- F = F Fsep "''" words[w] "''"
- Fsep = ", "
- }
- add(F ")")
- if (match(section, "SYNOPSIS")) {
- addclose(";")
- }
- } else if(match(words[w],"^Fo$")) {
- w++
- F = "'''" words[w] "'''("
- Fsep = ""
- } else if(match(words[w],"^Fa$")) {
- w++
- F = F Fsep "''" words[w] "''"
- Fsep = ", "
- } else if(match(words[w],"^Fc$")) {
- add(F ")")
- if (match(section, "SYNOPSIS")) {
- addclose(";")
- }
- } else if(match(words[w],"^Va$")) {
- w++
- add("''" words[w] "''")
- } else if(match(words[w],"^In$")) {
- w++
- add("'''<nowiki>#include <" words[w] "></nowiki>'''")
- } else if(match(words[w],"^Pa$")) {
- w++
-# if(match(words[w],"^\\."))
-# add("\\&")
- if (displaylines == 0)
- add("''" words[w] "''")
- else
- add(words[w])
- } else if(match(words[w],"^Dv$")) {
- linecmd()
- } else if(match(words[w],"^Em|Ev$")) {
- add(".IR")
- } else if(match(words[w],"^Pq$")) {
- addopen("(")
- trailer=")" trailer
- } else if(match(words[w],"^Aq$")) {
- addopen(" &lt;")
- trailer="&gt;" trailer
- } else if(match(words[w],"^Brq$")) {
- addopen("<nowiki>{</nowiki>")
- trailer="<nowiki>}</nowiki>" trailer
- } else if(match(words[w],"^S[xy]$")) {
- add(".B " wtail())
- } else if(match(words[w],"^Tn$")) {
- n=wtail()
- add("'''" n "'''")
- } else if(match(words[w],"^Ic$")) {
- add("''")
- trailer="''" trailer
- } else if(match(words[w],"^Bl$")) {
- ++listdepth
- listnext[listdepth]=""
- if(match(words[w+1],"-bullet")) {
- optlist[listdepth]=1
- addopen("<ul>")
- listclose[listdepth]="</ul>"
- } else if(match(words[w+1],"-enum")) {
- optlist[listdepth]=2
- enum=0
- addopen("<ol>")
- listclose[listdepth]="</ol>"
- } else if(match(words[w+1],"-tag")) {
- optlist[listdepth]=3
- addopen("<dl>")
- listclose[listdepth]="</dl>"
- } else if(match(words[w+1],"-item")) {
- optlist[listdepth]=4
- addopen("<ul>")
- listclose[listdepth]="</ul>"
- }
- w=nwords
- } else if(match(words[w],"^El$")) {
- addclose(listnext[listdepth])
- addclose(listclose[listdepth])
- listclose[listdepth]=""
- listdepth--
- } else if(match(words[w],"^It$")) {
- addclose(listnext[listdepth])
- if(optlist[listdepth]==1) {
- addpunct("<li>")
- listnext[listdepth] = "</li>"
- } else if(optlist[listdepth]==2) {
- addpunct("<li>")
- listnext[listdepth] = "</li>"
- } else if(optlist[listdepth]==3) {
- addpunct("<dt>")
- listnext[listdepth] = "</dt>"
- if(match(words[w+1],"^Xo$")) {
- # Suppress trailer
- w++
- } else if(match(words[w+1],"^Pa$|^Ev$")) {
- addopen("'''")
- w++
- add(words[++w] "'''")
- } else {
- trailer = listnext[listdepth] "<dd>" trailer
- listnext[listdepth] = "</dd>"
- }
- } else if(optlist[listdepth]==4) {
- addpunct("<li>")
- listnext[listdepth] = "</li>"
- }
- } else if(match(words[w], "^Vt$")) {
- w++
- add("''" words[w] "''")
- } else if(match(words[w],"^Xo$")) {
- # TODO: Figure out how to handle this
- } else if(match(words[w],"^Xc$")) {
- # TODO: Figure out how to handle this
- if (optlist[listdepth] == 3) {
- addclose(listnext[listdepth])
- addopen("<dd>")
- listnext[listdepth] = "</dd>"
- }
- } else if(match(words[w],"^[=]$")) {
- addpunct(words[w])
- } else if(match(words[w],"^[[{(]$")) {
- addopen(words[w])
- } else if(match(words[w],"^[\\])}.,;:]$")) {
- addclose(words[w])
- } else {
- sub("\\\\&", "", words[w])
- add(words[w])
- }
- }
- if(match(out,"^\\.[^a-zA-Z]"))
- sub("^\\.","",out)
- endline()
-}
diff --git a/doc/mdoc2wiki.awk b/doc/mdoc2wiki.awk
index 3c4d4116..5fee29c3 100755
--- a/doc/mdoc2wiki.awk
+++ b/doc/mdoc2wiki.awk
@@ -26,6 +26,10 @@ BEGIN {
sep = ""
nextsep = " "
spaces = " "
+
+ NORMAL_STATE = 0
+ PRETAG_STATE = 1
+ STATE = NORMAL_STATE
}
# Add a word with appropriate preceding whitespace
@@ -63,7 +67,11 @@ function endline() {
addclose(trailer)
trailer = ""
if(length(out) > 0) {
- print out
+ if (STATE == PRETAG_STATE) {
+ print out
+ } else {
+ print out " "
+ }
out=""
}
if(displaylines > 0) {
@@ -87,12 +95,12 @@ function breakline() {
# Start an indented display
function dispstart() {
- linecmd("{{{")
+ linecmd("```text")
}
# End an indented display
function dispend() {
- linecmd("}}}")
+ linecmd("```")
}
# Collect rest of input line
@@ -159,6 +167,7 @@ function splitwords(l, dest, n, o, w) {
dispstart()
displaylines = 1
} else if(match(words[w],"^Bd$")) { # Begin display
+ STATE = PRETAG_STATE
if(match(words[w+1],"-literal")) {
dispstart()
displaylines=10000
@@ -167,6 +176,7 @@ function splitwords(l, dest, n, o, w) {
} else if(match(words[w],"^Ed$")) { # End display
displaylines = 0
dispend()
+ STATE = NORMAL_STATE
} else if(match(words[w],"^Ns$")) { # Suppress space before next word
sep=""
} else if(match(words[w],"^No$")) { # Normal text
@@ -182,18 +192,18 @@ function splitwords(l, dest, n, o, w) {
} else if(match(words[w],"^Dc$")) {
addclose("\"")
} else if(match(words[w],"^Oo$")) {
- addopen("`[`")
+ addopen("<nowiki>[</nowiki>")
} else if(match(words[w],"^Oc$")) {
- addclose("`]`")
+ addclose("<nowiki>]</nowiki>")
} else if(match(words[w],"^Ao$")) {
- addopen("`<`")
+ addopen("&lt;")
} else if(match(words[w],"^Ac$")) {
- addclose("`>`")
+ addclose("&gt;")
} else if(match(words[w],"^Dd$")) {
date=wtail()
next
} else if(match(words[w],"^Dt$")) {
- id=wtail()
+ id=words[++w] "(" words[++w] ")"
next
} else if(match(words[w],"^Ox$")) {
add("OpenBSD")
@@ -206,32 +216,32 @@ function splitwords(l, dest, n, o, w) {
} else if(match(words[w],"^St$")) {
if (match(words[w+1], "^-p1003.1$")) {
w++
- add("IEEE Std 1003.1 (``POSIX.1'')")
+ add("<nowiki>IEEE Std 1003.1 (``POSIX.1'')</nowiki>")
} else if(match(words[w+1], "^-p1003.1-96$")) {
w++
- add("ISO/IEC 9945-1:1996 (``POSIX.1'')")
+ add("<nowiki>ISO/IEC 9945-1:1996 (``POSIX.1'')</nowiki>")
} else if(match(words[w+1], "^-p1003.1-88$")) {
w++
- add("IEEE Std 1003.1-1988 (``POSIX.1'')")
+ add("<nowiki>IEEE Std 1003.1-1988 (``POSIX.1'')</nowiki>")
} else if(match(words[w+1], "^-p1003.1-2001$")) {
w++
- add("IEEE Std 1003.1-2001 (``POSIX.1'')")
+ add("<nowiki>IEEE Std 1003.1-2001 (``POSIX.1'')</nowiki>")
} else if(match(words[w+1], "^-susv2$")) {
w++
- add("Version 2 of the Single UNIX Specification (``SUSv2'')")
+ add("<nowiki>Version 2 of the Single UNIX Specification (``SUSv2'')</nowiki>")
}
} else if(match(words[w],"^Ex$")) {
if (match(words[w+1], "^-std$")) {
w++
- add("The *" name "* utility exits 0 on success, and >0 if an error occurs.")
+ add("The '''" name "''' utility exits 0 on success, and &gt;0 if an error occurs.")
}
} else if(match(words[w],"^Os$")) {
- add("#summary " id " manual page")
+ add(id " manual page")
} else if(match(words[w],"^Sh$")) {
section=wtail()
linecmd("== " section " ==")
} else if(match(words[w],"^Xr$")) {
- add("*" words[++w] "*(" words[++w] ")" words[++w])
+ add("'''" words[++w] "'''(" words[++w] ")" words[++w])
} else if(match(words[w],"^Nm$")) {
if(match(section,"SYNOPSIS"))
breakline()
@@ -249,7 +259,7 @@ function splitwords(l, dest, n, o, w) {
if(!length(n))
n=name
if (displaylines == 0)
- add("*" n "*")
+ add("'''" n "'''")
else
add(n)
} else if(match(words[w],"^Nd$")) {
@@ -258,24 +268,22 @@ function splitwords(l, dest, n, o, w) {
addopen("-")
} else if(match(words[w],"^Ar$")) {
if(w==nwords)
- add("_file ..._")
+ add("''file ...''")
else {
++w
- gsub("<", "`<`", words[w])
- add("_" words[w] "_")
+ gsub("<", "&lt;", words[w])
+ add("''" words[w] "''")
}
} else if(match(words[w],"^Cm$")) {
++w
if (displaylines == 0) {
- gsub("^_", "`_`", words[w])
- gsub("\\*$", "`*`", words[w])
- add("*" words[w] "*")
+ add("'''" words[w] "'''")
} else
add(words[w])
} else if(match(words[w],"^Op$")) {
- addopen("`[`")
+ addopen("<nowiki>[</nowiki>")
option=1
- trailer="`]`" trailer
+ trailer="<nowiki>]</nowiki>" trailer
} else if(match(words[w],"^Pp$")) {
++w
endline()
@@ -292,15 +300,13 @@ function splitwords(l, dest, n, o, w) {
breakline()
}
l = wtail()
- gsub("\\*", "`*`", l)
-
- add("*" l "*")
+ add("'''" l "'''")
if (match(section, "SYNOPSIS")) {
breakline()
}
} else if(match(words[w],"^Fn$")) {
++w
- F = "*" words[w] "*("
+ F = "'''" words[w] "'''("
Fsep = ""
while(w<nwords) {
++w
@@ -308,8 +314,7 @@ function splitwords(l, dest, n, o, w) {
--w
break
}
- gsub("\\*", "`*`", words[w])
- F = F Fsep "_" words[w] "_"
+ F = F Fsep "''" words[w] "''"
Fsep = ", "
}
add(F ")")
@@ -318,12 +323,11 @@ function splitwords(l, dest, n, o, w) {
}
} else if(match(words[w],"^Fo$")) {
w++
- F = "*" words[w] "*("
+ F = "'''" words[w] "'''("
Fsep = ""
} else if(match(words[w],"^Fa$")) {
w++
- gsub("\\*", "`*`", words[w])
- F = F Fsep "_" words[w] "_"
+ F = F Fsep "''" words[w] "''"
Fsep = ", "
} else if(match(words[w],"^Fc$")) {
add(F ")")
@@ -332,16 +336,16 @@ function splitwords(l, dest, n, o, w) {
}
} else if(match(words[w],"^Va$")) {
w++
- add("_" words[w] "_")
+ add("''" words[w] "''")
} else if(match(words[w],"^In$")) {
w++
- add("*#include <" words[w] ">*")
+ add("'''<nowiki>#include <" words[w] "></nowiki>'''")
} else if(match(words[w],"^Pa$")) {
w++
# if(match(words[w],"^\\."))
# add("\\&")
if (displaylines == 0)
- add("_" words[w] "_")
+ add("''" words[w] "''")
else
add(words[w])
} else if(match(words[w],"^Dv$")) {
@@ -352,20 +356,19 @@ function splitwords(l, dest, n, o, w) {
addopen("(")
trailer=")" trailer
} else if(match(words[w],"^Aq$")) {
- addopen(" <")
- trailer=">" trailer
+ addopen(" &lt;")
+ trailer="&gt;" trailer
} else if(match(words[w],"^Brq$")) {
- addopen("{")
- trailer="}" trailer
+ addopen("<nowiki>{</nowiki>")
+ trailer="<nowiki>}</nowiki>" trailer
} else if(match(words[w],"^S[xy]$")) {
add(".B " wtail())
} else if(match(words[w],"^Tn$")) {
n=wtail()
- gsub("\\*$", "`*`", n)
- add("*" n "*")
+ add("'''" n "'''")
} else if(match(words[w],"^Ic$")) {
- add("\\fB")
- trailer="\\fP" trailer
+ add("''")
+ trailer="''" trailer
} else if(match(words[w],"^Bl$")) {
++listdepth
listnext[listdepth]=""
@@ -408,9 +411,9 @@ function splitwords(l, dest, n, o, w) {
# Suppress trailer
w++
} else if(match(words[w+1],"^Pa$|^Ev$")) {
- addopen("*")
+ addopen("'''")
w++
- add(words[++w] "*")
+ add(words[++w] "'''")
} else {
trailer = listnext[listdepth] "<dd>" trailer
listnext[listdepth] = "</dd>"
@@ -421,7 +424,7 @@ function splitwords(l, dest, n, o, w) {
}
} else if(match(words[w], "^Vt$")) {
w++
- add("_" words[w] "_")
+ add("''" words[w] "''")
} else if(match(words[w],"^Xo$")) {
# TODO: Figure out how to handle this
} else if(match(words[w],"^Xc$")) {
diff --git a/doc/update.sh b/doc/update.sh
index ec915831..1994eb3a 100755
--- a/doc/update.sh
+++ b/doc/update.sh
@@ -5,27 +5,6 @@
# the mdoc man pages stored in each project.
#
-USAGE="\n\
-Simple script to repopulate the 'doc' tree from\n\
-the mdoc man pages stored in each project.\n\
-\n\
- -h, --help Display this help message\n\
- --mediawiki Use mediawiki markup for wiki pages.\n"
-
-# Loop that parses options passed to script
-while [ "$#" -gt "0" ]; do
- case "$1" in
- --mediawiki)
- USE_MEDIAWIKI=1
- shift
- ;;
- -h|--help|*)
- echo -e "${USAGE}"
- exit 1
- ;;
- esac
-done
-
# Collect list of man pages, relative to my subdirs
test -d man || mkdir man
cd man
@@ -119,13 +98,8 @@ all="all:"
for f in $MANPAGES; do
outname="`basename $f | awk '{ac=split($0,a,"[_.-]");o="ManPage";for(w=0;w<=ac;++w){o=o toupper(substr(a[w],1,1)) substr(a[w],2)};print o}'`.wiki"
echo >> Makefile
- if [ -z "$USE_MEDIAWIKI" ]; then
- echo $outname: ../mdoc2wiki.awk $f >> Makefile
- echo " awk -f ../mdoc2wiki.awk < $f > $outname" >> Makefile
- else
- echo $outname: ../mdoc2mediawiki.awk $f >> Makefile
- echo " awk -f ../mdoc2mediawiki.awk < $f > $outname" >> Makefile
- fi
+ echo $outname: ../mdoc2wiki.awk $f >> Makefile
+ echo " awk -f ../mdoc2wiki.awk < $f > $outname" >> Makefile
all="$all $outname"
done
echo $all >>Makefile