vmail 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -93,6 +93,9 @@ You can full-screen the list window by pressing SPACE while the cursor is in it.
93
93
  In the split view, you can jump between the two panes by just pressing ENTER
94
94
  from either window.
95
95
 
96
+ You can also use `<C-p>` and `<C-n>` from either window to show the previous or
97
+ next message.
98
+
96
99
  vmail loads a certain number messages at a time, starting with the most recent.
97
100
  If there are more messages that vmail hasn't loaded, you'll see a line at the
98
101
  top of the list that looks something like this:
@@ -238,12 +241,12 @@ composition window:
238
241
  from: Daniel Choi <dhchoi@gmail.com>
239
242
  to: barackobama@whitehouse.gov
240
243
  subject: look at this!
241
-
244
+
242
245
  attach:
243
246
  - images/middle-east-map.png
244
247
  - images/policypaper.pdf
245
248
  - docs/
246
-
249
+
247
250
  I think you'll find this stuff interesting.
248
251
 
249
252
 
@@ -312,13 +315,13 @@ perfectly. In particular, there seems to be a bug in MacVim that prevents
312
315
  vmail's status line activity messages from appearing properly. Nonetheless,
313
316
  most of vmail is functional in MacVim.
314
317
 
315
- To use MacVim as your vmail Vim engine, `export VMAIL_VIM=mvim` before startin
318
+ To use MacVim as your vmail Vim engine, `export VMAIL_VIM=mvim` before starting
316
319
  vmail.
317
320
 
318
321
  Note that when vmail uses MacVim, the terminal window in which you invoke vmail
319
322
  will show vmail's logging output while MacVim is running. To quit vmail in
320
323
  MacVim mode, you will have to press CTRL-c in this window to stop the vmail
321
- process.
324
+ process in after quitting the MacVim app.
322
325
 
323
326
  ## vmail file byproducts
324
327
 
@@ -341,11 +344,11 @@ network.
341
344
 
342
345
  [1]:http://en.wikipedia.org/wiki/Transport_Layer_Security
343
346
 
344
- You can also be sure that the vmail code doesn't do anything nefarious with your
345
- Gmail password because vmail is open source. Anyone can inspect the source code
346
- of the copy fo vmail that runs on your computer and inspect the code at the
347
- [github repository][1] and at [rubygems.org][2] (where the vmail gem is
348
- downloaded from).
347
+ You can also be sure that the vmail code doesn't do anything nefarious with
348
+ your Gmail password because vmail is open source. Anyone can inspect the source
349
+ code of the copy of vmail that runs on your computer and inspect the latest
350
+ vmail code at the [github repository][1] and at [rubygems.org][2] (where the
351
+ vmail gem is downloaded from).
349
352
 
350
353
  [1]:https://github.com/danchoi/vmail
351
354
  [2]:https://rubygems.org/gems/vmail
@@ -1,3 +1,3 @@
1
1
  module Vmail
2
- VERSION = "0.1.1"
2
+ VERSION = "0.1.2"
3
3
  end
@@ -12,6 +12,9 @@ middle_markdown = File.read(readme).split(/^\s*$/)
12
12
  middle_markdown = middle_markdown[2..-1].join("\n\n")
13
13
 
14
14
  middle = RDiscount.new(middle_markdown).to_html
15
+ # for some reason markdown inserts extra blank lines
16
+ middle = middle.gsub(/\n\n{3,}/, "\n\n")
17
+
15
18
 
16
19
  bottom = RDiscount.new(File.read("bottom.markdown")).to_html
17
20
 
@@ -3,10 +3,10 @@
3
3
  <head>
4
4
  <meta http-equiv="content-type" content="text/html; charset=utf-8" />
5
5
  <title>Vmail</title>
6
- <link href="stylesheets-vmail/reset.css?1292353326" media="screen" rel="stylesheet" type="text/css" />
7
- <link href="stylesheets-vmail/960.css?1292353326" media="screen" rel="stylesheet" type="text/css" />
8
- <link href="stylesheets-vmail/text.css?1292353326" media="screen" rel="stylesheet" type="text/css" />
9
- <link href="stylesheets-vmail/site.css?1292353326" media="screen" rel="stylesheet" type="text/css" />
6
+ <link href="stylesheets-vmail/reset.css?1292355679" media="screen" rel="stylesheet" type="text/css" />
7
+ <link href="stylesheets-vmail/960.css?1292355679" media="screen" rel="stylesheet" type="text/css" />
8
+ <link href="stylesheets-vmail/text.css?1292355679" media="screen" rel="stylesheet" type="text/css" />
9
+ <link href="stylesheets-vmail/site.css?1292355679" media="screen" rel="stylesheet" type="text/css" />
10
10
  <script type="text/javascript" src="http://w.sharethis.com/button/buttons.js"></script><script type="text/javascript">stLight.options({publisher:'8579b5f8-0860-4ea6-9ef1-6f0f58359a99'});</script>
11
11
  <script type="text/javascript" src="lightbox2/js/prototype.js"></script>
12
12
  <script type="text/javascript" src="lightbox2/js/scriptaculous.js?load=effects,builder"></script>
@@ -124,6 +124,9 @@ To go back to the split view, press ENTER.</p>
124
124
  <p>In the split view, you can jump between the two panes by just pressing ENTER
125
125
  from either window.</p>
126
126
 
127
+ <p>You can also use <code>&lt;C-p&gt;</code> and <code>&lt;C-n&gt;</code> from either window to show the previous or
128
+ next message.</p>
129
+
127
130
  <p>vmail loads a certain number messages at a time, starting with the most recent.
128
131
  If there are more messages that vmail hasn't loaded, you'll see a line at the
129
132
  top of the list that looks something like this:</p>
@@ -262,8 +265,6 @@ date: Sun, Dec 12 08:39 AM -05:00 2010
262
265
  to: Daniel Choi &lt;dhchoi@gmail.com&gt;
263
266
  subject: attachment test
264
267
 
265
-
266
-
267
268
  see attached
268
269
  </code></pre>
269
270
 
@@ -278,15 +279,11 @@ composition window:</p>
278
279
  to: barackobama@whitehouse.gov
279
280
  subject: look at this!
280
281
 
281
-
282
-
283
282
  attach:
284
283
  - images/middle-east-map.png
285
284
  - images/policypaper.pdf
286
285
  - docs/
287
286
 
288
-
289
-
290
287
  I think you'll find this stuff interesting.
291
288
  </code></pre>
292
289
 
@@ -331,23 +328,15 @@ followed by a valid IMAP search query.</p>
331
328
  <pre><code># the default
332
329
  100 all
333
330
 
334
-
335
-
336
331
  # all messages from thematrix.com domain
337
332
  from thematrix.com
338
333
 
339
-
340
-
341
334
  # all messages from this person
342
335
  from barackobama@whitehouse.gov
343
336
 
344
-
345
-
346
337
  # subject field search; use double quotes to enclose multiple words
347
338
  subject "unix philosophy"
348
339
 
349
-
350
-
351
340
  # example of date range and multiple conditions
352
341
  before 30-Nov-2010 since 1-Nov-2010 from prx.org
353
342
  </code></pre>
@@ -365,13 +354,13 @@ perfectly. In particular, there seems to be a bug in MacVim that prevents
365
354
  vmail's status line activity messages from appearing properly. Nonetheless,
366
355
  most of vmail is functional in MacVim.</p>
367
356
 
368
- <p>To use MacVim as your vmail Vim engine, <code>export VMAIL_VIM=mvim</code> before startin
357
+ <p>To use MacVim as your vmail Vim engine, <code>export VMAIL_VIM=mvim</code> before starting
369
358
  vmail.</p>
370
359
 
371
360
  <p>Note that when vmail uses MacVim, the terminal window in which you invoke vmail
372
361
  will show vmail's logging output while MacVim is running. To quit vmail in
373
362
  MacVim mode, you will have to press CTRL-c in this window to stop the vmail
374
- process.</p>
363
+ process in after quitting the MacVim app.</p>
375
364
 
376
365
  <h2>vmail file byproducts</h2>
377
366
 
@@ -392,11 +381,11 @@ what's going on behind the scenes as you use vmail.</p>
392
381
  and SMTP authentication. So vmail transmits your password securely over the
393
382
  network.</p>
394
383
 
395
- <p>You can also be sure that the vmail code doesn't do anything nefarious with your
396
- Gmail password because vmail is open source. Anyone can inspect the source code
397
- of the copy fo vmail that runs on your computer and inspect the code at the
398
- <a href="https://github.com/danchoi/vmail">github repository</a> and at <a href="https://rubygems.org/gems/vmail">rubygems.org</a> (where the vmail gem is
399
- downloaded from).</p>
384
+ <p>You can also be sure that the vmail code doesn't do anything nefarious with
385
+ your Gmail password because vmail is open source. Anyone can inspect the source
386
+ code of the copy of vmail that runs on your computer and inspect the latest
387
+ vmail code at the <a href="https://github.com/danchoi/vmail">github repository</a> and at <a href="https://rubygems.org/gems/vmail">rubygems.org</a> (where the
388
+ vmail gem is downloaded from).</p>
400
389
 
401
390
  <h2>Bug reports, feature requests</h2>
402
391
 
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 1
8
- - 1
9
- version: 0.1.1
8
+ - 2
9
+ version: 0.1.2
10
10
  platform: ruby
11
11
  authors:
12
12
  - Daniel Choi