-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into release/1.0
- Loading branch information
Showing
34 changed files
with
802 additions
and
284 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,9 @@ | |
{ | ||
"name": "datadig", | ||
"author": "The Mailpile Team <[email protected]>", | ||
"description": "Poor-man's data-mining: extract tabular (spreadsheet) data from e-mail.", | ||
"description": "Poor-man's data-mining! This plugin adds a selection action for extracting data from e-mail. The extracted data can be downloaded as CSV and imported into standard spreadsheet applications.", | ||
"display": true, | ||
"public": true, | ||
|
||
"config": {}, | ||
"code": { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,9 @@ | |
{ | ||
"name": "hacks", | ||
"author": "The Mailpile Team <[email protected]>", | ||
"description": "Tools for hackers and developers. This plugin adds some low-level CLI commands for exploring Mailpile data structures and internals.", | ||
"display": true, | ||
"public": false, | ||
"code": { | ||
"python": ["hacks.py"], | ||
"javascript": [], | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
{% extends "layouts/" + render_mode + "-tall.html" %} | ||
{% block title %}{{_("Keyboard Shortcuts")}}{% endblock %} | ||
{% block content %} | ||
<div class="content-normal" style="max-width: 46em;"> | ||
|
||
<h1><span class="icon-lightbulb"></span> | ||
{{_("Keyboard Shortcuts")}} | ||
</h1> | ||
<p> | ||
{{_("Mailpile has keyboard shortcuts which let you perform common operations using only the keyboard.")}} | ||
{{_("These are disabled by default to prevent random key presses from causing accidents.")}} | ||
</p> | ||
<p> | ||
{{_("Once keyboard shortcuts have been enabled, you can press `?` at any time to get help.")}} | ||
</p> | ||
<p> | ||
{{_("To enable keyboard shortcuts, visit the preferences page.")}}<br> | ||
<a data-dismiss="modal" href="/settings/preferences.html"> | ||
<button class="button-secondary right"> | ||
<span class="icon icon-animals"></span> | ||
{{_("Preferences")}} | ||
</button> | ||
</a> | ||
</p> | ||
|
||
</div> | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,9 @@ | |
{ | ||
"name": "hints", | ||
"author": "The Mailpile Team <[email protected]>", | ||
"description": "Incremental learning! This plugin provides periodic tips and hints on how to make the most of your Mailpile.", | ||
"display": true, | ||
"public": true, | ||
"code": { | ||
"python": ["hints.py"], | ||
"javascript": ["hints.js"] | ||
|
@@ -14,6 +17,7 @@ | |
"/page/hints/gravatar.html": {"file": "hints/gravatar.html"}, | ||
"/page/hints/spam.html": {"file": "hints/spam.html"}, | ||
"/page/hints/spambayes.html": {"file": "hints/spambayes.html"}, | ||
"/page/hints/keyboard-shortcuts.html": {"file": "hints/keyboard-shortcuts.html"}, | ||
"/page/hints/autotagging.html": {"file": "hints/autotagging.html"} | ||
}, | ||
"user_interface": { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.