[jbig2-cvs] rev 451 - website
giles at ghostscript.com
giles at ghostscript.com
Wed Jul 26 18:12:30 PDT 2006
Author: giles
Date: 2006-07-26 18:12:30 -0700 (Wed, 26 Jul 2006)
New Revision: 451
Added:
website/gslogo.png
website/style.css
Modified:
website/index.html
Log:
Borrow Tor's new ghostscript.com layout for the jbig2dec website.
Added: website/gslogo.png
===================================================================
(Binary files differ)
Property changes on: website/gslogo.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Modified: website/index.html
===================================================================
--- website/index.html 2006-07-27 01:00:37 UTC (rev 450)
+++ website/index.html 2006-07-27 01:12:30 UTC (rev 451)
@@ -1,13 +1,16 @@
<html>
<head>
-<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>jbig2dec</title>
+<link rel="stylesheet" href="style.css">
</head>
<body>
-
+<div class="head">
<h1>jbig2dec</h1>
+</div>
+<div class="page">
<p><em>jbig2dec</em> is a decoder implementation of the JBIG2 image compression format.
JBIG2 is designed for lossy or lossless encoding of 'bilevel' (1-bit monochrome) images at
moderately high resolution, and in particular scanned paper documents. In this domain it is very
@@ -73,13 +76,15 @@
<a href="http://www.ghostscript.com/mailman/listinfo/jbig2-cvs/">commit announcement list</a>
for the source repository.</p>
-<p>You can generally find the developers in #ghostscript on
+<p>You can generally find the developers in
+<a href="irc://irc.freenode.net/#ghostscript">#ghostscript</a> on
irc.<a href="http://freenode.net/">freenode.net</a>.</p>
+</div>
-<hr>
+<div class="foot">
<table width="100%" border="0">
<tr><td>
-<img src="http://www.cs.wisc.edu/~ghost/images/ghost64.gif" alt="[ghostscript]"
+<img src="gslogo.png" alt="[ghostscript]"
</td><td align="left">
$Date$
<br>
@@ -91,6 +96,7 @@
alt="[sourceforge]"></a>
</td></tr>
</table>
+</div>
</body>
</html>
Added: website/style.css
===================================================================
--- website/style.css 2006-07-27 01:00:37 UTC (rev 450)
+++ website/style.css 2006-07-27 01:12:30 UTC (rev 451)
@@ -0,0 +1,135 @@
+/* Ghostscript style sheet */
+
+/* find text outside <p> tags by making it green */
+body { color: green; }
+div { color: green; }
+div * { color: black; }
+
+/*
+ * Colors.
+ */
+
+h1, h1 * { color: #1c4eb9; }
+tt { color: #744; }
+a, a * { color: #1c4eb9; }
+a:link { color: #1c4eb9; }
+a:visited { color: #42b; }
+a:active { color: #800; }
+a.nowhere { color: #800; }
+
+h1 a, h2 a, a tt, a img { text-decoration: none; border: none; }
+
+/*
+ * Fonts.
+ */
+
+body, form, table, td, th
+{
+ font-family: "trebuchet ms", "helvetica neue", "helvetica", "verdana", sans-serif;
+ font-size: 10pt;
+}
+
+pre, tt { font-size: 9pt; }
+
+h1, h2, h3, h4, h5, h6 { font-style: normal; font-weight: bold; font-size: 10pt; }
+h1, h1 * { font-size: 18pt; }
+h2, h2 * { font-size: 12pt; }
+
+/*
+ * Margins, paddings and indentation
+ */
+
+/*
+ * Auto-numbering sections
+ */
+
+h2:before { content: counter(h2) ". "; }
+h3:before { content: counter(h2) "." counter(h3) ". "; }
+h4:before { content: counter(h2) "." counter(h3) "." counter(h4) ". "; }
+h5:before { content: counter(h2) "." counter(h3) "." counter(h4) "." counter(h5) ". "; }
+h6:before { content: counter(h2) "." counter(h3) "." counter(h4) "." counter(h5) "." counter(h6) ". "; }
+
+h1 { counter-increment: h1; counter-reset: h2; }
+h2 { counter-increment: h2; counter-reset: h3; }
+h3 { counter-increment: h3; counter-reset: h4; }
+h4 { counter-increment: h4; counter-reset: h5; }
+h5 { counter-increment: h5; counter-reset: h6; }
+h6 { counter-increment: h6; }
+
+/*
+ * The gray theme.
+ */
+
+h1
+{
+ text-align: center;
+ margin: 0;
+ padding: 5px 5px 5px 5px;
+}
+
+body
+{
+ margin: 0;
+ padding: 0;
+ background-color: #ddd ;
+}
+
+div.head
+{
+ background-color: #ddd ;
+ border-bottom: 1px solid black ;
+ padding: 4px 10px 6px 10px ;
+}
+
+div.page
+{
+ background-color: #fff ;
+ padding: 10px 30px 1px 30px ;
+}
+
+div.foot
+{
+ background-color: #ddd ;
+ border-top: 1px solid black ;
+ padding: 5px 10px 1px 10px ;
+}
+
+table.fancy
+{
+ background-color: #eee ;
+ padding: 0px ;
+}
+
+tr.fancy, th.fancy, td.fancy
+{
+ background-color: #ccc ;
+}
+
+table.history, table.recent
+{
+ width: 100%; border-collapse: collapse;
+}
+table.history td, table.history th
+{
+ text-align: left; padding-left: 6pt;
+ border-width: 1px; border-style: solid; border-color: #aaa;
+}
+
+table.foot
+{
+ margin: 0; padding: 0; border: 0;
+ width: 100%;
+}
+td.footleft { text-align: left; }
+td.footright { text-align: right; }
+
+hr
+{
+ border-style: none;
+ background-color: #666;
+ height: 1px;
+ padding: 0;
+}
+
+/* * { border: 1px solid orange } */
+
More information about the jbig2-cvs
mailing list