]> code.delx.au - gnu-emacs-elpa/commitdiff
* html/index.html, html/layout.css : Initial import.
authorTed Zlatanov <tzz@lifelogs.com>
Sat, 20 Nov 2010 17:32:45 +0000 (11:32 -0600)
committerTed Zlatanov <tzz@lifelogs.com>
Sat, 20 Nov 2010 17:32:45 +0000 (11:32 -0600)
ChangeLog
html/index.html [new file with mode: 0644]
html/layout.css [new file with mode: 0644]

index 5dcb526e04bd30942a7e3f7a0926a44c39fbde96..ac586c11a82b63333845fd41f1cef7bf780fcae2 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,15 @@
 2010-11-20  Teodor Zlatanov  <tzz@lifelogs.com>
 
+       * html/index.html, html/layout.css : Initial import.
+
+       * admin/org-synch.el (org-synch): Use just the current directory
+       and files.
+
+       * admin/package-update.sh: Export tarball after everything else is done.
+
+       * admin/org-synch.sh, admin/package-update.sh: Rewrite for
+       in-place exporting.
+
        * packages/archive-contents, packages/auctex-11.86,
        packages/auctex-readme.txt, packages/company-0.5/,
        packages/company-readme.txt, packages/elpa.rss,
diff --git a/html/index.html b/html/index.html
new file mode 100644 (file)
index 0000000..e39a1c5
--- /dev/null
@@ -0,0 +1,23 @@
+<!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN">
+<html>
+<head>
+  <title>GNU Emacs Lisp Package Archive</title>
+  <link rel="icon" type="image/png" href="gnu-head-mini.png">
+  <link rel="stylesheet" type="text/css" href="layout.css">
+</head>
+<body>
+
+<h1>GNU Emacs Lisp Package Archive</h1>
+
+<p>
+This is the default package repository for 
+<a href="http://www.gnu.org/software/emacs/">GNU Emacs</a>.
+
+<p>
+To use it, type <tt>M-x list-packages</tt> in Emacs.
+(This requires Emacs version 24.1 or higher.)
+
+<p>
+You can grab the <a href="emacs-packages-latest.tgz">latest package snapshot</a>.
+</body>
+</html>
diff --git a/html/layout.css b/html/layout.css
new file mode 100644 (file)
index 0000000..f6c1395
--- /dev/null
@@ -0,0 +1,87 @@
+/* This is heavily cut-down version of http://www.gnu.org/layout.css */
+
+
+/*
+layout.css -- css stylesheet used on www.gnu.org
+
+Copyright (C) 2006, 2007, 2008, 2009 Free Software Foundation
+
+Permission is hereby granted, free of charge, to any person
+obtaining a copy of this software and associated documentation
+files (the "Software"), to deal in the Software without
+restriction, including without limitation the rights to use,
+copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the
+Software is furnished to do so, subject to the following
+conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+*/
+
+html, body{
+        padding: 0;
+        color: #35382a;
+        max-width: 58em; margin: 0 auto 0; position: relative; min-width: 902px;
+        padding-left: 10px; padding-right: 10px;
+        background-color: #fff;  padding-bottom: 1.8em;  margin-top: 0.5em; 
+}
+
+body{
+    font-family: sans-serif;
+}
+
+a:hover{ color: red; }
+
+h1 {
+ background-color: #3465a4; color: white; font-size: 2em;
+ margin-bottom: 0.3em; font-weight:bold; text-align: center; line-height: 1.6em; }
+
+h2, h3, {line-height: 1.5em;}
+
+h2{ font-size: 1.6em; }
+
+h3{ font-size: 1.3em; }
+
+img{ border: 0; }
+
+.nocenter{ text-align: left; }
+
+ul { list-style: square; margin-left: 1.4em; list-style-image:url(bullet.gif);  }
+
+ol{ list-style: decimal; margin-left: 1.9em; }
+
+li, dd,  p{
+    padding-bottom: 1em; line-height: 1.5em; }
+
+dt{ font-weight: bold;  }
+
+pre {
+padding-left: 1.5em;
+padding-right: 1.5em;
+margin-top: 1em;
+margin-bottom: 1em;
+font-size: 0.9em;
+display: block;
+background-color: #eeeeee;
+color: #000000;
+font-family: monospace;
+}
+
+strong, b{ font-weight: bold; }
+
+em, i, var{ font-style: italic; }
+
+blockquote{ margin: 1em; font-style: italic; }
+
+code, kbd, samp, tt{ font-family: monospace; }
+
+.center{ text-align:center; }
+
+.big{ font-size: 130%; padding-top: 0.7em; }
+
+.inline-list li { display: inline }
+
+.highlight{background-color: #ff6;}
+
+h2 a{color: yellow !important;}