summaryrefslogtreecommitdiffstats
path: root/git-imap-send.html
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2014-01-17 14:46:49 -0800
committerJunio C Hamano <gitster@pobox.com>2014-01-17 14:46:49 -0800
commit61525f915b47e953b4288a9afcee45e47b352214 (patch)
treef0649f89cc7a77c0296305f4673fc2bc7e0a6d54 /git-imap-send.html
parentbc8d4783cac3c942fc9e8cf2f3eae4aea8cab5cb (diff)
downloadgit-htmldocs-61525f915b47e953b4288a9afcee45e47b352214.tar.gz
Autogenerated HTML docs for v1.9-rc0
Diffstat (limited to 'git-imap-send.html')
-rw-r--r--git-imap-send.html58
1 files changed, 31 insertions, 27 deletions
diff --git a/git-imap-send.html b/git-imap-send.html
index 1ae7b959c..0e671fcc8 100644
--- a/git-imap-send.html
+++ b/git-imap-send.html
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
-<meta name="generator" content="AsciiDoc 8.6.8" />
+<meta name="generator" content="AsciiDoc 8.6.6" />
<title>git-imap-send(1)</title>
<style type="text/css">
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
@@ -87,15 +87,11 @@ ul, ol, li > p {
ul > li { color: #aaa; }
ul > li > * { color: black; }
-.monospaced, code, pre {
- font-family: "Courier New", Courier, monospace;
- font-size: inherit;
- color: navy;
+pre {
padding: 0;
margin: 0;
}
-
#author {
color: #527bbd;
font-weight: bold;
@@ -353,7 +349,7 @@ div.colist td img {
margin-bottom: 0.1em;
}
-div.toclevel0, div.toclevel1, div.toclevel2, div.toclevel3, div.toclevel4 {
+div.toclevel1, div.toclevel2, div.toclevel3, div.toclevel4 {
margin-top: 0;
margin-bottom: 0;
}
@@ -411,14 +407,18 @@ span.underline { text-decoration: underline; }
span.overline { text-decoration: overline; }
span.line-through { text-decoration: line-through; }
-div.unbreakable { page-break-inside: avoid; }
-
/*
* xhtml11 specific
*
* */
+tt {
+ font-family: monospace;
+ font-size: inherit;
+ color: navy;
+}
+
div.tableblock {
margin-top: 1.0em;
margin-bottom: 1.5em;
@@ -452,6 +452,12 @@ div.tableblock > table[frame="vsides"] {
*
* */
+.monospaced {
+ font-family: monospace;
+ font-size: inherit;
+ color: navy;
+}
+
table.tableblock {
margin-top: 1.0em;
margin-bottom: 1.5em;
@@ -531,8 +537,6 @@ body.manpage div.sectionbody {
@media print {
body.manpage div#toc { display: none; }
}
-
-
</style>
<script type="text/javascript">
/*<![CDATA[*/
@@ -577,7 +581,7 @@ toc: function (toclevels) {
function tocEntries(el, toclevels) {
var result = new Array;
- var re = new RegExp('[hH]([1-'+(toclevels+1)+'])');
+ var re = new RegExp('[hH]([2-'+(toclevels+1)+'])');
// Function that scans the DOM tree for header elements (the DOM2
// nodeIterator API would be a better technique but not supported by all
// browsers).
@@ -606,7 +610,7 @@ toc: function (toclevels) {
var i;
for (i = 0; i < toc.childNodes.length; i++) {
var entry = toc.childNodes[i];
- if (entry.nodeName.toLowerCase() == 'div'
+ if (entry.nodeName == 'div'
&& entry.getAttribute("class")
&& entry.getAttribute("class").match(/^toclevel/))
tocEntriesToRemove.push(entry);
@@ -652,7 +656,7 @@ footnotes: function () {
var entriesToRemove = [];
for (i = 0; i < noteholder.childNodes.length; i++) {
var entry = noteholder.childNodes[i];
- if (entry.nodeName.toLowerCase() == 'div' && entry.getAttribute("class") == "footnote")
+ if (entry.nodeName == 'div' && entry.getAttribute("class") == "footnote")
entriesToRemove.push(entry);
}
for (i = 0; i < entriesToRemove.length; i++) {
@@ -797,8 +801,8 @@ imap.host
</dt>
<dd>
<p>
- A URL identifying the server. Use a <code>imap://</code> prefix for non-secure
- connections and a <code>imaps://</code> prefix for secure connections.
+ A URL identifying the server. Use a <tt>imap://</tt> prefix for non-secure
+ connections and a <tt>imaps://</tt> prefix for secure connections.
Ignored when imap.tunnel is set, but required to use imap-send
otherwise.
</p>
@@ -835,7 +839,7 @@ imap.sslverify
<dd>
<p>
A boolean to enable/disable verification of the server certificate
- used by the SSL/TLS connection. Default is <code>true</code>. Ignored when
+ used by the SSL/TLS connection. Default is <tt>true</tt>. Ignored when
imap.tunnel is set.
</p>
</dd>
@@ -848,7 +852,7 @@ imap.preformattedHTML
a patch. An html encoded patch will be bracketed with &lt;pre&gt;
and have a content type of text/html. Ironically, enabling this
option causes Thunderbird to send the patch as a plain/text,
- format=fixed email. Default is <code>false</code>.
+ format=fixed email. Default is <tt>false</tt>.
</p>
</dd>
<dt class="hdlist1">
@@ -867,29 +871,29 @@ imap.authMethod
<div class="paragraph"><p>Using tunnel mode:</p></div>
<div class="literalblock">
<div class="content">
-<pre><code>[imap]
+<pre><tt>[imap]
folder = "INBOX.Drafts"
- tunnel = "ssh -q -C user@example.com /usr/bin/imapd ./Maildir 2&gt; /dev/null"</code></pre>
+ tunnel = "ssh -q -C user@example.com /usr/bin/imapd ./Maildir 2&gt; /dev/null"</tt></pre>
</div></div>
<div class="paragraph"><p>Using direct mode:</p></div>
<div class="literalblock">
<div class="content">
-<pre><code>[imap]
+<pre><tt>[imap]
folder = "INBOX.Drafts"
host = imap://imap.example.com
user = bob
- pass = p4ssw0rd</code></pre>
+ pass = p4ssw0rd</tt></pre>
</div></div>
<div class="paragraph"><p>Using direct mode with SSL:</p></div>
<div class="literalblock">
<div class="content">
-<pre><code>[imap]
+<pre><tt>[imap]
folder = "INBOX.Drafts"
host = imaps://imap.example.com
user = bob
pass = p4ssw0rd
port = 123
- sslverify = false</code></pre>
+ sslverify = false</tt></pre>
</div></div>
</div>
</div>
@@ -901,19 +905,19 @@ imap.authMethod
to specify your account settings:</p></div>
<div class="listingblock">
<div class="content">
-<pre><code>[imap]
+<pre><tt>[imap]
folder = "[Gmail]/Drafts"
host = imaps://imap.gmail.com
user = user@gmail.com
port = 993
- sslverify = false</code></pre>
+ sslverify = false</tt></pre>
</div></div>
<div class="paragraph"><p>You might need to instead use: folder = "[Google Mail]/Drafts" if you get an error
that the "Folder doesn&#8217;t exist".</p></div>
<div class="paragraph"><p>Once the commits are ready to be sent, run the following command:</p></div>
<div class="literalblock">
<div class="content">
-<pre><code>$ git format-patch --cover-letter -M --stdout origin/master | git imap-send</code></pre>
+<pre><tt>$ git format-patch --cover-letter -M --stdout origin/master | git imap-send</tt></pre>
</div></div>
<div class="paragraph"><p>Just make sure to disable line wrapping in the email client (GMail&#8217;s web
interface will wrap lines no matter what, so you need to use a real