moved docs to new manual
This commit is contained in:
parent
f1ea4891cd
commit
b0615dc857
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,16 @@
|
|||
#!/bin/bash
|
||||
# $Id$
|
||||
#
|
||||
# Copyright (C) 2009 Roland Gruber
|
||||
# This code is part of LDAP Account Manager (http://www.ldap-account-manager.org/)
|
||||
|
||||
# This script is run to create the LAM manual.
|
||||
|
||||
|
||||
rm -rf ../manual
|
||||
mkdir ../manual
|
||||
xsltproc -o ../manual/ --stringparam html.stylesheet.type text/css --stringparam html.stylesheet style.css /usr/share/xml/docbook/stylesheet/nwalsh/html/chunk.xsl howto.xml
|
||||
mkdir ../manual/images
|
||||
# cp images/*.jpg ../manual/images
|
||||
cp images/*.png ../manual/images
|
||||
cp style.css ../manual
|
|
@ -0,0 +1,102 @@
|
|||
/*
|
||||
$Id$
|
||||
|
||||
This code is part of LDAP Account Manager (http://www.ldap-account-manager.org/)
|
||||
Copyright (C) 2009 Roland Gruber
|
||||
|
||||
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 detaexils.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program; if not, write to the Free Software
|
||||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
|
||||
*/
|
||||
|
||||
/* CSS layout for LAM manual */
|
||||
|
||||
|
||||
body {
|
||||
font-family:sans-serif;
|
||||
}
|
||||
|
||||
a {
|
||||
color:#000080;
|
||||
text-decoration:none;
|
||||
}
|
||||
|
||||
a:visited {
|
||||
color:#000080;
|
||||
text-decoration:none;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color:red;
|
||||
text-decoration:none;
|
||||
}
|
||||
|
||||
a:active {
|
||||
color:red;
|
||||
text-decoration:none;
|
||||
}
|
||||
|
||||
div.navheader table {
|
||||
background-image: url(images/logo32.png);
|
||||
background-repeat: no-repeat;
|
||||
background-position: 10px center;
|
||||
}
|
||||
|
||||
div.navheader td {
|
||||
font-weight:bold;
|
||||
padding-left: 50px;
|
||||
padding-right: 10px;
|
||||
}
|
||||
|
||||
div.navfooter td {
|
||||
font-weight:bold;
|
||||
padding-left: 10px;
|
||||
padding-right: 10px;
|
||||
}
|
||||
|
||||
div.table table {
|
||||
border-collapse:collapse;
|
||||
border-width:2px;
|
||||
}
|
||||
|
||||
div.navheader hr {
|
||||
margin-bottom:30px;
|
||||
}
|
||||
|
||||
div.navfooter hr {
|
||||
margin-top:30px;
|
||||
}
|
||||
|
||||
div.mediaobject img {
|
||||
margin-top:20px;
|
||||
margin-bottom:20px;
|
||||
}
|
||||
|
||||
h1 { color:#253aa3; }
|
||||
h2 { color:#000080; font-size:13pt; }
|
||||
|
||||
div.nogrid table {
|
||||
border-width:2px;
|
||||
border-collapse:collapse;
|
||||
}
|
||||
|
||||
table { border-color:#253aa3; border-style:solid; }
|
||||
|
||||
div.noborder table {
|
||||
border-width:0px;
|
||||
border-collapse:collapse;
|
||||
border-style:none;
|
||||
border-color:transparent;
|
||||
}
|
||||
|
Loading…
Reference in New Issue