[Pkg-privacy-commits] [xul-ext-monkeysphere] 12/296: much more awesome help page

Ximin Luo infinity0 at moszumanska.debian.org
Mon Aug 24 07:39:20 UTC 2015


This is an automated email from the git hooks/post-receive script.

infinity0 pushed a commit to branch debian
in repository xul-ext-monkeysphere.

commit 8214378647a659f0b7fedde2fb1c0a810d1edd64
Author: mike castleman <m at mlcastle.net>
Date:   Sat Jan 9 14:20:09 2010 -0500

    much more awesome help page
---
 chrome/locale/en-US/help.html    |  74 +++++++--
 chrome/locale/en-US/local.css    | 134 ++++++++++++++++
 chrome/locale/en-US/logo.png     | Bin 0 -> 5536 bytes
 chrome/locale/en-US/logo_002.png | Bin 0 -> 4123 bytes
 chrome/locale/en-US/style.css    | 330 +++++++++++++++++++++++++++++++++++++++
 5 files changed, 526 insertions(+), 12 deletions(-)

diff --git a/chrome/locale/en-US/help.html b/chrome/locale/en-US/help.html
index 985624d..e4b1a36 100644
--- a/chrome/locale/en-US/help.html
+++ b/chrome/locale/en-US/help.html
@@ -1,18 +1,68 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
-"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml"><head>
 
-<head>
-<title>Monkeysphere Help</title>
-</head>
 
-<body>
-<h1>Monkeysphere Help</h1>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>The Monkeysphere Project</title>
 
-<h3> What is Monkeysphere?</h3> 
+<link rel="stylesheet" href="style.css" type="text/css">
+<link rel="stylesheet" href="local.css" type="text/css">
+</head><body>
 
-<p><a href="http://web.monkeysphere.info/">Monkeysphere!!!</a>
+<div class="header">
+<span>
 
-</body>
-</html>
+The Monkeysphere Project
+</span>
+
+</div>
+
+
+<div class="actions">
+<ul>
+
+</ul>
+</div>
+
+
+
+<div id="sidebar">
+<table class="sitenav" cellpadding="0" cellspacing="0">
+<colgroup span="1" width="120">
+</colgroup><tbody><tr>
+<td rowspan="2"><a href="http://web.monkeysphere.info/"><img class="logo" src="logo.png" alt="monkeysphere"></a></td>
+<td><a href="http://web.monkeysphere.info/"><img class="title" src="logo_002.png" alt="monkeysphere"></a></td>
+</tr><tr>
+<td>
+ 
+</td>
+</tr>
+</tbody></table>
+
+</div>
+
+<div id="content">
+<h1>The Monkeysphere Project</h1>
+
+<p>The Monkeysphere project's goal is to extend OpenPGP's web of trust to
+new areas of the Internet to help us securely identify each other
+while we work online.</p>
+
+<p>Specifically, monkeysphere currently offers a framework to leverage
+the OpenPGP web of trust for OpenSSH authentication.</p>
+
+<p>In other words, it allows you to use secure shell as you normally do,
+but to identify yourself and the servers you administer or connect to
+with your OpenPGP keys.  OpenPGP keys are tracked via GnuPG, and
+monkeysphere manages the <code>known_hosts</code> and <code>authorized_keys</code> files
+used by OpenSSH for authentication, checking them for cryptographic
+validity.</p>
+
+<h2>Further Information</h2>
+
+For further information, see <a href="http://monkeysphere.info/">monkeysphere.info</a>.
+
+</div>
+
+</body></html>
\ No newline at end of file
diff --git a/chrome/locale/en-US/local.css b/chrome/locale/en-US/local.css
new file mode 100644
index 0000000..b2d86c7
--- /dev/null
+++ b/chrome/locale/en-US/local.css
@@ -0,0 +1,134 @@
+/* CSS for web.monkeysphere.info
+
+Copyright: 2008,2009
+
+Authors: 
+Dan Scott, 
+Daniel Kahn Gillmor <dkg at fifthhorseman.net>,
+Jameson Graef Rollins <jrollins at finestructure.net>,
+Jamie McClelland <jm at mayfirst.org>
+
+License: This stylesheet is licensed under the GNU GPL, version 3 or
+later (your choice).
+
+The full text of the GPL can be found at:
+
+  http://www.gnu.org/licenses/gpl.html
+
+ */
+
+h1 {
+  -moz-border-radius: 4px;
+  background-color: #B67B4E;
+  color: black;
+  display: block;
+  font-weight: bold;
+  padding: 0 0 0 10px;
+  font-size: 1.4em;
+}
+
+h2 {
+  -moz-border-radius: 4px;
+  background-color: #B67B4E;
+  color: black;
+  display: block;
+  font-weight: bold;
+  padding: 0 0 0 10px;
+  font-size: 1.1em;
+}
+
+body {
+  color: #3F403F;
+  font-family: "Liberation Sans",sans-serif;
+  font-size: 0.95em;
+}
+
+*|*:visited {
+  color: #f6a464;
+}
+
+*|*:-moz-any-link {
+  text-decoration: none;
+}
+
+:-moz-any-link {
+  cursor: pointer;
+}
+
+a:link { 
+  color: #CC6600;
+  text-deoration: none;
+}
+
+a:visited { 
+  color: #c2772b;
+}
+
+a:hover { 
+  text-decoration: underline;
+}
+
+pre {
+  background: #ddd;
+  border: 1px solid #aaa;
+  padding: 3px 3px 3px 3px;
+  margin-left: 38px;
+  margin-right: 5em;
+  overflow: auto;
+}
+
+table.sitenav {
+  border-bottom: 2px solid black;
+  padding: 0px;
+  width: 100%;
+  font-size: larger;
+}
+
+table.sitenav img.logo {
+  margin: 0em;
+  padding: 0px;
+  vertical-align: bottom;
+}
+
+table.sitenav img.title {
+  margin: 0px;
+  padding: 0px;
+  vertical-align: top;
+}
+
+table.sitenav a { 
+  font-weight: bold;
+  margin-right: 1em;
+  font-size: smaller;
+}
+
+table.sitenav span.selflink { 
+  font-weight: bold;
+  text-decoration: underline;
+  margin-right: 1em;
+  font-variant: small-caps;
+}
+
+div.header { 
+  text-align: right;
+  display: none;
+}
+
+div.actions { 
+  text-align: right;
+  display: none;
+}
+
+#sidebar {
+  line-height: normal;
+  width: 100%;
+  float: none;
+  margin: 0;
+  padding: 0;
+}
+
+/* align main paragraphs to the right side of the monkey's finger */
+div#content > p { 
+  margin-left: 18px;
+  margin-right: 5em;
+}
diff --git a/chrome/locale/en-US/logo.png b/chrome/locale/en-US/logo.png
new file mode 100644
index 0000000..5cc69eb
Binary files /dev/null and b/chrome/locale/en-US/logo.png differ
diff --git a/chrome/locale/en-US/logo_002.png b/chrome/locale/en-US/logo_002.png
new file mode 100644
index 0000000..a203f8b
Binary files /dev/null and b/chrome/locale/en-US/logo_002.png differ
diff --git a/chrome/locale/en-US/style.css b/chrome/locale/en-US/style.css
new file mode 100644
index 0000000..b985079
--- /dev/null
+++ b/chrome/locale/en-US/style.css
@@ -0,0 +1,330 @@
+/* ikiwiki style sheet */
+
+/* Note that instead of modifying this style sheet, you can instead edit
+ * local.css and use it to override or change settings in this one.
+ */
+
+.header {
+	margin: 0;
+	font-size: 22px;
+	font-weight: bold;
+	line-height: 1em;
+	display: block;
+}
+
+.author {
+	margin: 0;
+	font-size: 18px;
+	font-weight: bold;
+	display: block;
+}
+
+.actions ul {
+	margin: 0;
+	padding: 6px;
+	list-style-type: none;
+	border-bottom: 1px solid #000;
+}
+
+.inlinepage .actions ul {
+	border-bottom: 0;
+}
+
+.actions li {
+	display: inline;
+	padding: .2em .4em;
+}
+
+.tags {
+	clear: both;
+}
+
+#pageinfo {
+	clear: both;
+	margin: 1em 0;
+	border-top: 1px solid #000;
+}
+
+div.tags {
+	margin-top: 1em;
+}
+
+.mapparent {
+	text-decoration: none;
+}
+
+.img caption {
+	font-size: 80%;
+	caption-side: bottom;
+	text-align: center;
+}
+
+#backlinks {
+	margin-top: 1em;
+}
+
+#searchform {
+	display: inline;
+	float: right;
+}
+
+#editcontent {
+	width: 100%;
+}
+
+img {
+	border-style: none;
+}
+
+div.recentchanges {
+	border-style: solid;
+	border-width: 1px;
+	overflow: auto;
+	width: 100%;
+	background: #eee;
+	color: black !important;
+}
+.recentchanges .metadata {
+	padding: 0px 0.5em;
+}
+.recentchanges .changelog {
+	font-style: italic;
+	clear: both;
+	display: block;
+	padding: 1px 2px;
+	background: white !important;
+	color: black !important;
+}
+.recentchanges .desc {
+	display: none;
+}
+.recentchanges .diff {
+	display: none;
+}
+.recentchanges .committer {
+	float: left;
+	margin: 0;
+	width: 40%;
+}
+.recentchanges .committype {
+	float: left;
+	margin: 0;
+	width: 5%;
+	font-size: small;
+}
+.recentchanges .changedate {
+	float: left;
+	margin: 0;
+	width: 35%;
+	font-size: small;
+}
+.recentchanges .pagelinks {
+	float: right;
+	margin: 0;
+	width: 60%;
+}
+
+/* Used for adding a blog page. */
+#blogform {
+	padding: 10px 10px;
+	border: 1px solid #aaa;
+	background: #eee;
+	color: black !important;
+}
+
+.inlinepage {
+	padding: 10px 10px;
+	border: 1px solid #aaa;
+}
+
+.pagedate,
+.pagelicense,
+.pagecopyright {
+	clear: both;
+	font-style: italic;
+	display: block;
+	margin-top: 1em;
+}
+
+/* Used for invalid form fields. */
+.fb_invalid {
+	color: red;
+	background: white !important;
+}
+
+/* Used for required form fields. */
+.fb_required {
+	font-weight: bold;
+}
+
+/* Orange feed button. */
+.feedbutton {
+	background: #ff6600;
+	color: white !important;
+	border-left: 1px solid #cc9966;
+	border-top: 1px solid #ccaa99;
+	border-right: 1px solid #993300;
+	border-bottom: 1px solid #331100;
+	padding: 0px 0.5em 0px 0.5em;
+	font-family: sans-serif;
+	font-weight: bold;
+	font-size: small;
+	text-decoration: none;
+	margin-top: 1em;
+}
+.feedbutton:hover {
+	color: white !important;
+	background: #ff9900;
+}
+
+/* Tag cloud. */
+.pagecloud {
+	float: right;
+	width: 30%;
+	text-align: center;
+	padding: 10px 10px;
+	border: 1px solid #aaa;
+	background: #eee;
+	color: black !important;
+}
+.smallestPC { font-size: 70%; }
+.smallPC { font-size: 85%; }
+.normalPC { font-size: 100%; }
+.bigPC { font-size: 115%; }
+.biggestPC { font-size: 130%; }
+
+#sidebar {
+	line-height: 3ex;
+	width: 20ex;
+	float: right;
+	margin-left: 40px;
+	margin-bottom: 40px;
+	padding: 2ex 2ex;
+}
+
+/* outlines */
+li.L1 {
+	list-style: upper-roman;
+}
+li.L2 {
+	list-style: decimal;
+}
+li.L3 {
+	list-style: lower-alpha;
+}
+li.L4 {
+	list-style: disc;
+}
+li.L5 {
+	list-style: square;
+}
+li.L6 {
+	list-style: circle;
+}
+li.L7 {
+	list-style: lower-roman;
+}
+li.L8 {
+	list-style: upper-alpha;
+}
+
+hr.poll {
+	height: 10pt;
+	color: white !important;
+	background: #eee;
+	border: 2px solid black;
+}
+div.poll {
+	margin-top: 1ex;
+	margin-bottom: 1ex;
+	padding: 1ex 1ex;
+	border: 1px solid #aaa;
+}
+
+input#openid_url {
+	background: url(wikiicons/openidlogin-bg.gif) no-repeat;
+	background-color: #fff;
+	background-position: 0 50%;
+	color: #000;
+	padding-left: 18px;
+}
+
+/* Things to hide in printouts. */
+ at media print {
+	.actions { display: none; }
+	.tags { display: none; }
+	.feedbutton { display: none; }
+	#searchform { display: none; }
+	#blogform { display: none; }
+	#backlinks { display: none; }
+}
+
+/* Provided for use by template plugin for floating info boxes. */
+.infobox {
+	float: right;
+	margin-left: 2ex;
+	margin-top: 1ex;
+	margin-bottom: 1ex;
+	padding: 1ex 1ex;
+	border: 1px solid #aaa;
+}
+
+/* Provided for use by template plugin for floating note boxes. */
+.notebox {
+	float: right;
+	margin-left: 2ex;
+	margin-top: 1ex;
+	margin-bottom: 1ex;
+	padding: 1ex 1ex;
+	border: 1px solid #aaa;
+	width: 25%
+}
+
+/* Used by the popup template and for backlinks hiding. */
+.popup {
+	border-bottom: 1px dotted #366;
+	color: #366;
+}
+.popup .balloon,
+.popup .paren,
+.popup .expand {
+	display: none;
+}
+.popup:hover .balloon,
+.popup:focus .balloon {
+	position: absolute;
+	display: inline;
+	margin: 1em 0 0 -2em;
+	padding: 0.625em;
+	border: 2px solid;
+	background-color: #dee;
+	color: black;
+	
+	/* Nonstandard, but very nice. */
+	opacity: 0.95;
+	-moz-opacity: 0.95;
+	filter: alpha(opacity=95);
+}
+
+/* Formbuilder styling */
+fieldset {
+	margin: 1ex 0;
+	border: 1px solid black;
+}
+legend {
+	padding: 0 1ex;
+}
+.fb_submit {
+	float: left;
+	margin: 2px 0;
+}
+#signin_openid_url_label {
+	float: left;
+	margin-right: 1ex;
+}
+#signin_openid {
+	padding: 10px 10px;
+	border: 1px solid #aaa;
+	background: #eee; 
+	color: black !important;
+}

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-privacy/packages/xul-ext-monkeysphere.git



More information about the Pkg-privacy-commits mailing list