Archive of RubyForge sup-talk mailing list
 help / color / mirror / Atom feed
* [sup-talk] [PATCH 1/2] Use a valid version ('999') for gems built from git
@ 2009-03-25 13:56 Ingmar Vanhassel
  2009-03-25 13:56 ` [sup-talk] [PATCH 2/2] Initial zsh completion Ingmar Vanhassel
  2009-03-25 14:37 ` [sup-talk] [PATCH 1/2] Use a valid version ('999') for gems built from git William Morgan
  0 siblings, 2 replies; 4+ messages in thread
From: Ingmar Vanhassel @ 2009-03-25 13:56 UTC (permalink / raw)


See ed12112f, where the same was done in the Rakefile
---
 sup.gemspec |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/sup.gemspec b/sup.gemspec
index 71b79ed..4341448 100644
--- a/sup.gemspec
+++ b/sup.gemspec
@@ -9,7 +9,7 @@ FILES = EXTRA_FILES + EXECUTABLES.map { |f| "bin/#{f}" } + LIB_DIRS.map { |d| Di
 
 Gem::Specification.new do |s|
   s.name = %q{sup}
-  s.version = Redwood::VERSION
+  s.version = Redwood::VERSION == "git" ? "999" : Redwood::VERSION
   s.date = Time.now.to_s
   s.authors = ["William Morgan"]
   s.email = %q{wmorgan-sup at masanjin.net}
-- 
1.6.2.1



^ permalink raw reply	[flat|nested] 4+ messages in thread

* [sup-talk] [PATCH 2/2] Initial zsh completion.
  2009-03-25 13:56 [sup-talk] [PATCH 1/2] Use a valid version ('999') for gems built from git Ingmar Vanhassel
@ 2009-03-25 13:56 ` Ingmar Vanhassel
  2009-03-25 14:38   ` William Morgan
  2009-03-25 14:37 ` [sup-talk] [PATCH 1/2] Use a valid version ('999') for gems built from git William Morgan
  1 sibling, 1 reply; 4+ messages in thread
From: Ingmar Vanhassel @ 2009-03-25 13:56 UTC (permalink / raw)


---
 contrib/completion/_sup.zsh |  114 +++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 114 insertions(+), 0 deletions(-)
 create mode 100644 contrib/completion/_sup.zsh

diff --git a/contrib/completion/_sup.zsh b/contrib/completion/_sup.zsh
new file mode 100644
index 0000000..76870ca
--- /dev/null
+++ b/contrib/completion/_sup.zsh
@@ -0,0 +1,114 @@
+#compdef sup sup-add sup-config sup-dump sup-sync sup-sync-back sup-tweak-labels sup-recover-sources
+# vim: set et sw=2 sts=2 ts=2 ft=zsh :
+
+# TODO: sources completion: maildir://some/dir, mbox://some/file, ...
+#       for sup-add, sup-sync, sup-sync-back, sup-tweak-labels
+
+(( ${+functions[_sup_cmd]} )) ||
+_sup_cmd()
+{
+  _arguments -s : \
+    "(--list-hooks -l)"{--list-hooks,-l}"[list all hooks and descriptions, and quit]" \
+    "(--no-threads -n)"{--no-threads,-n}"[turn off threading]" \
+    "(--no-initial-poll -o)"{--no-initial-poll,-o}"[Don't poll for new messages when starting]" \
+    "(--search -s)"{--search,-s}"[search for this query upon startup]:Query: " \
+    "(--compose -c)"{--compose,-c}"[compose message to this recipient upon startup]:Email: " \
+    "--version[show version information]" \
+    "(--help -h)"{--help,-h}"[show help]"
+}
+
+(( ${+functions[_sup_add_cmd]} )) ||
+_sup_add_cmd()
+{
+  _arguments -s : \
+    "(--archive -a)"{--archive,-a}"[automatically archive all new messages from this source]" \
+    "(--unusual -u)"{--unusual,-u}"[do not automatically poll for new messages from this source]" \
+    "(--labels -l)"{--labels,-l}"[set of labels to apply to all messages from this source]:Labels: " \
+    "(--force-new -f)"{--force-new,-f}"[create a new account for this source, even if one already exists]" \
+    "--version[show version information]" \
+    "(--help -h)"{--help,-h}"[show help]"
+}
+
+(( ${+functions[_sup_config_cmd]} )) ||
+_sup_config_cmd()
+{
+  _arguments -s : \
+    "--version[show version information]" \
+    "(--help -h)"{--help,-h}"[show help]"
+}
+
+(( ${+functions[_sup_dump_cmd]} )) ||
+_sup_dump_cmd()
+{
+  _arguments -s : \
+    "--version[show version information]" \
+    "(--help -h)"{--help,-h}"[show help]"
+}
+
+(( ${+functions[_sup_recover_sources_cmd]} )) ||
+_sup_recover_sources_cmd()
+{
+  _arguments -s : \
+    "--archive[automatically archive all new messages from this source]" \
+    "--scan-num[number of messages to scan per source]:" \
+    "--unusual[do not automatically poll for new messages from this source]" \
+    "(--help -h)"{--help,-h}"[show help]"
+}
+
+(( ${+functions[_sup_sync_cmd]} )) ||
+_sup_sync_cmd()
+{
+  # XXX Add only when --restore is given: (--restored -r)
+  #     Add only when --changed or--all are given: (--start-at -s)
+  _arguments -s : \
+    "--new[operate on new messages only]" \
+    "(--changed -c)"{--changed,-c}"[scan over the entire source for messages that have been deleted, altered, or moved from another source]" \
+    "(--restored -r)"{--restored,-r}"[operate only on those messages included in a dump file as specified by --restore which have changed state]" \
+    "(--all -a)"{--all,-a}"[operate on all messages in the source, regardless of newness or changedness]" \
+    "(--start-at -s)"{--start-at,-s}"[start at a particular offset]:Offset: " \
+    "--asis[if the message is already in the index, preserve its state, otherwise, use default source state]" \
+    "--restore[restore message state from a dump file created with sup-dump]:File:_file" \
+    "--discard[discard any message state in the index and use the default source state]" \
+    "(--archive -x)"{--archive,-x}"[mark messages as archived when using the default source state]" \
+    "(--read -e)"{--read,-e}"[mark messages as read when using the default source state]" \
+    "--extra-labels[apply these labels when using the default source state]:Labels: " \
+    "(--verbose -v)"{--verbose,-v}"[print message ids as they're processed]" \
+    "(--optimize -o)"{--optimize,-o}"[as the final operation, optimize the index]" \
+    "--all-sources[scan over all sources]" \
+    "(--dry-run -n)"{--dry-run,-n}"[don't actually modify the index]" \
+    "--version[show version information]" \
+    "(--help -h)"{--help,-h}"[show help]"
+}
+
+(( ${+functions[_sup_sync_back_cmd]} )) ||
+_sup_sync_back_cmd()
+{
+  _arguments -s : \
+    "(--drop-deleted -d)"{--drop-deleted,-d}"[drop deleted messages]" \
+    "--move-deleted[move deleted messages to a local mbox file]:File:_file" \
+    "(--drop-spam -s)"{--drop-spam,-s}"[drop spam messages]" \
+    "--move-spam[move spam messages to a local mbox file]:File:_file" \
+    "--with-dotlockfile[specific dotlockfile location (mbox files only)]:File:_file" \
+    "--dont-use-dotlockfile[don't use dotlockfile to lock mbox files]" \
+    "(--verbose -v)"{--verbose,-v}"[print message ids as they're processed]" \
+    "(--dry-run -n)"{--dry-run,-n}"[don't actually modify the index]" \
+    "--version[show version information]" \
+    "(--help -h)"{--help,-h}"[show help]"
+}
+
+(( ${+functions[_sup_tweak_labels_cmd]} )) ||
+_sup_tweak_labels_cmd()
+{
+  _arguments -s : \
+    "(--add -a)"{--add,-a}"[which labels to add to every message from the specified sources]:Labels: " \
+    "(--remove -r)"{--remove,-r}"[which labels to remove from every message from the specified sources]:Labels: " \
+    "--all-sources[scan over all sources]" \
+    "(--verbose -v)"{--verbose,-v}"[print message ids as they're processed]" \
+    "(--dry-run -n)"{--dry-run,-n}"[don't actually modify the index]" \
+    "--version[show version information]" \
+    "(--help -h)"{--help,-h}"[show help]"
+}
+
+_call_function ret _${words[1]//-/_}_cmd
+return ret
+
-- 
1.6.2.1



^ permalink raw reply	[flat|nested] 4+ messages in thread

* [sup-talk] [PATCH 1/2] Use a valid version ('999') for gems built from git
  2009-03-25 13:56 [sup-talk] [PATCH 1/2] Use a valid version ('999') for gems built from git Ingmar Vanhassel
  2009-03-25 13:56 ` [sup-talk] [PATCH 2/2] Initial zsh completion Ingmar Vanhassel
@ 2009-03-25 14:37 ` William Morgan
  1 sibling, 0 replies; 4+ messages in thread
From: William Morgan @ 2009-03-25 14:37 UTC (permalink / raw)


Funny, I just fixed this issue. LMK if it doesn't work for you.
-- 
William <wmorgan-sup at masanjin.net>


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [sup-talk] [PATCH 2/2] Initial zsh completion.
  2009-03-25 13:56 ` [sup-talk] [PATCH 2/2] Initial zsh completion Ingmar Vanhassel
@ 2009-03-25 14:38   ` William Morgan
  0 siblings, 0 replies; 4+ messages in thread
From: William Morgan @ 2009-03-25 14:38 UTC (permalink / raw)


Thanks! Branch zsh-completion, merged into next.
-- 
William <wmorgan-sup at masanjin.net>


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2009-03-25 14:38 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-03-25 13:56 [sup-talk] [PATCH 1/2] Use a valid version ('999') for gems built from git Ingmar Vanhassel
2009-03-25 13:56 ` [sup-talk] [PATCH 2/2] Initial zsh completion Ingmar Vanhassel
2009-03-25 14:38   ` William Morgan
2009-03-25 14:37 ` [sup-talk] [PATCH 1/2] Use a valid version ('999') for gems built from git William Morgan

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox