public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/ag:master commit in: /
@ 2015-02-21 18:57 Alex Legler
  0 siblings, 0 replies; 33+ messages in thread
From: Alex Legler @ 2015-02-21 18:57 UTC (permalink / raw
  To: gentoo-commits

commit:     a1b4b01141a6990c03007b69cb62e3c9ca93f245
Author:     Alex Legler <alex <AT> a3li <DOT> li>
AuthorDate: Sat Feb 21 18:57:21 2015 +0000
Commit:     Alex Legler <a3li <AT> gentoo <DOT> org>
CommitDate: Sat Feb 21 18:57:21 2015 +0000
URL:        http://sources.gentoo.org/gitweb/?p=proj/ag.git;a=commit;h=a1b4b011

Allow 0-9 in list names

---
 ag | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/ag b/ag
index c8371db..20fce8f 100755
--- a/ag
+++ b/ag
@@ -53,10 +53,10 @@ op = OptionParser.new do |opts|
   end
 
   opts.on('--list NAME', 'Name of the mailing list to work with') do |name|
-    if name =~ /^[a-zA-Z-]+$/
+    if name =~ /^[0-9a-zA-Z-]+$/
       $options.name = name
     else
-      abort 'List name can only consist of letters and hyphens.'
+      abort 'List name can only consist of letters, numbers and hyphens.'
     end
   end
 


^ permalink raw reply related	[flat|nested] 33+ messages in thread
* [gentoo-commits] proj/ag:master commit in: /
@ 2015-02-21 21:45 Robin H. Johnson
  0 siblings, 0 replies; 33+ messages in thread
From: Robin H. Johnson @ 2015-02-21 21:45 UTC (permalink / raw
  To: gentoo-commits

commit:     38fb0db5e223db54ab2ed68e304a7f00a5940e77
Author:     Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 21 21:44:51 2015 +0000
Commit:     Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Sat Feb 21 21:44:51 2015 +0000
URL:        http://sources.gentoo.org/gitweb/?p=proj/ag.git;a=commit;h=38fb0db5

Remove do_fix/--fix for now, it should be done externally to this.

Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>

---
 ag | 17 +----------------
 1 file changed, 1 insertion(+), 16 deletions(-)

diff --git a/ag b/ag
index 742abee..37c9079 100755
--- a/ag
+++ b/ag
@@ -21,7 +21,7 @@ $options.no_threading = false
 $options.debug = false
 
 op = OptionParser.new do |opts|
-  opts.banner = "Usage: ag <<--index-full|--index-new|--delete|--reindex|--info> <--list listname>|<--fix>> <maildir/file/hash/messageid> [options]"
+  opts.banner = "Usage: ag <<--index-full|--index-new|--delete|--reindex|--info> <--list listname>> <maildir/file/hash/messageid> [options]"
 
   opts.on('--index-full', 'Read the full past archive from the .cur Maildir') do
     abort 'Can only select one action' if $options.action != nil
@@ -35,12 +35,6 @@ op = OptionParser.new do |opts|
     $options.action = :do_incremental
   end
 
-  opts.on('--fix', 'Fix up weird info sections') do
-    abort 'Can only select one action' if $options.action != nil
-
-    $options.action = :do_fix
-  end
-
   opts.on('--delete', 'Delete message. Needs --file, --msgid, or --hash') do
     abort 'Can only select one action' if $options.action != nil
 
@@ -103,15 +97,6 @@ $es.transport.reload_connections!
 
 ###############################################################################
 
-def do_fix
-  Dir.chdir($options.dir) do
-    Dir.glob('*:2,:2,S').each do |f|
-      puts "Fixing #{f}"
-      File.rename(f, f.gsub(':2,:2,S', ':2,S'))
-    end
-  end
-end
-
 def do_full
   Ag::Storage.create_index($options.name)
 


^ permalink raw reply related	[flat|nested] 33+ messages in thread
* [gentoo-commits] proj/ag:master commit in: /
@ 2015-02-21 21:52 Robin H. Johnson
  0 siblings, 0 replies; 33+ messages in thread
From: Robin H. Johnson @ 2015-02-21 21:52 UTC (permalink / raw
  To: gentoo-commits

commit:     4697bf847a527800d7d26b124dbcb53cb22bfff7
Author:     Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 21 21:51:50 2015 +0000
Commit:     Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Sat Feb 21 21:51:50 2015 +0000
URL:        http://sources.gentoo.org/gitweb/?p=proj/ag.git;a=commit;h=4697bf84

cleanup usage.

Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>

---
 ag | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ag b/ag
index b9f3f75..cf48c4b 100755
--- a/ag
+++ b/ag
@@ -22,7 +22,7 @@ $options.debug = false
 $options.readonly = false
 
 op = OptionParser.new do |opts|
-  opts.banner = "Usage: ag <<--index-full|--index-new|--delete|--reindex|--info> <--list listname>> <maildir/file/hash/messageid> [options]"
+  opts.banner = "Usage: ag <<--index-full|--index-new|--delete|--reindex|--info> <--list listname>> <[--file|--msgid|--hash] <maildir/file/hash/messageid>> [options]"
 
   opts.on('--index-full', 'Read the full past archive from the .cur Maildir') do
     abort 'Can only select one action' if $options.action != nil


^ permalink raw reply related	[flat|nested] 33+ messages in thread
* [gentoo-commits] proj/ag:master commit in: /
@ 2015-02-21 21:52 Robin H. Johnson
  0 siblings, 0 replies; 33+ messages in thread
From: Robin H. Johnson @ 2015-02-21 21:52 UTC (permalink / raw
  To: gentoo-commits

commit:     e17ac193d80d8d470feaadbaffc9604592bb6753
Author:     Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 21 21:51:55 2015 +0000
Commit:     Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Sat Feb 21 21:51:55 2015 +0000
URL:        http://sources.gentoo.org/gitweb/?p=proj/ag.git;a=commit;h=e17ac193

Whitespace.

---
 ag | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ag b/ag
index cf48c4b..7b6d662 100755
--- a/ag
+++ b/ag
@@ -153,4 +153,4 @@ begin
   send $options.action
 rescue NoMethodError
   abort 'Internal Error: Unknown action'
-end
\ No newline at end of file
+end


^ permalink raw reply related	[flat|nested] 33+ messages in thread
* [gentoo-commits] proj/ag:master commit in: /
@ 2015-02-21 21:52 Robin H. Johnson
  0 siblings, 0 replies; 33+ messages in thread
From: Robin H. Johnson @ 2015-02-21 21:52 UTC (permalink / raw
  To: gentoo-commits

commit:     bd4eb9bd65045c50b475b8f475e780c182c5b857
Author:     Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 21 21:51:41 2015 +0000
Commit:     Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Sat Feb 21 21:51:41 2015 +0000
URL:        http://sources.gentoo.org/gitweb/?p=proj/ag.git;a=commit;h=bd4eb9bd

readonly mode for processing new as well.

Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>

---
 ag | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/ag b/ag
index 37c9079..b9f3f75 100755
--- a/ag
+++ b/ag
@@ -19,6 +19,7 @@ $options.name = nil
 $options.index_only = false
 $options.no_threading = false
 $options.debug = false
+$options.readonly = false
 
 op = OptionParser.new do |opts|
   opts.banner = "Usage: ag <<--index-full|--index-new|--delete|--reindex|--info> <--list listname>> <maildir/file/hash/messageid> [options]"
@@ -78,6 +79,10 @@ op = OptionParser.new do |opts|
   opts.on('--debug', 'Print debug messages') do
     $options.debug = true
   end
+
+  opts.on('--readonly', 'Do not alter the maildir in any way') do
+    $options.readonly = true
+  end
 end
 op.parse!
 
@@ -120,7 +125,7 @@ def do_incremental
 
     begin
       Ag::Storage.store($options.name, mail)
-      maildir_message.process
+      maildir_message.process unless $options.readonly
     rescue => e
       $stderr.puts "Cannot save message #{mail.message_id}: #{e.message}"
       next


^ permalink raw reply related	[flat|nested] 33+ messages in thread
* [gentoo-commits] proj/ag:master commit in: /
@ 2015-02-21 21:59 Alex Legler
  0 siblings, 0 replies; 33+ messages in thread
From: Alex Legler @ 2015-02-21 21:59 UTC (permalink / raw
  To: gentoo-commits

commit:     3dba5ecae440817434b182e5f0148016db826634
Author:     Alex Legler <alex <AT> a3li <DOT> li>
AuthorDate: Sat Feb 21 21:57:39 2015 +0000
Commit:     Alex Legler <a3li <AT> gentoo <DOT> org>
CommitDate: Sat Feb 21 21:57:58 2015 +0000
URL:        http://sources.gentoo.org/gitweb/?p=proj/ag.git;a=commit;h=3dba5eca

Print filename for failed files

---
 ag | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ag b/ag
index 7b6d662..4b857e3 100755
--- a/ag
+++ b/ag
@@ -127,7 +127,7 @@ def do_incremental
       Ag::Storage.store($options.name, mail)
       maildir_message.process unless $options.readonly
     rescue => e
-      $stderr.puts "Cannot save message #{mail.message_id}: #{e.message}"
+      $stderr.puts "Cannot save message #{mail.message_id} (file #{maildir_message.filename}): #{e.message}"
       next
     end
   end


^ permalink raw reply related	[flat|nested] 33+ messages in thread
* [gentoo-commits] proj/ag:master commit in: /
@ 2015-02-23 20:59 Alex Legler
  0 siblings, 0 replies; 33+ messages in thread
From: Alex Legler @ 2015-02-23 20:59 UTC (permalink / raw
  To: gentoo-commits

commit:     c85644c7e9931d0b872bd1c8768aeb08cb237961
Author:     Alex Legler <alex <AT> a3li <DOT> li>
AuthorDate: Mon Feb 23 15:08:08 2015 +0000
Commit:     Alex Legler <a3li <AT> gentoo <DOT> org>
CommitDate: Mon Feb 23 15:08:08 2015 +0000
URL:        http://sources.gentoo.org/gitweb/?p=proj/ag.git;a=commit;h=c85644c7

Don't store the flags in raw_filename.

---
 ag | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/ag b/ag
index ca81b22..083b9ee 100755
--- a/ag
+++ b/ag
@@ -119,7 +119,7 @@ def do_full
     mail = maildir_message.data
 
     begin
-      Ag::Storage.store($options.name, mail, maildir_message.filename)
+      Ag::Storage.store($options.name, mail, maildir_message.unique_name)
     rescue => e
       $stderr.puts "Cannot save message #{mail.message_id}: #{e.message}"
       next
@@ -136,7 +136,7 @@ def do_incremental
     mail = maildir_message.data
 
     begin
-      Ag::Storage.store($options.name, mail, maildir_message.filename)
+      Ag::Storage.store($options.name, mail, maildir_message.unique_name)
       maildir_message.process unless $options.readonly
     rescue => e
       $stderr.puts "Cannot save message #{mail.message_id} (file #{maildir_message.filename}): #{e.message}" if $options.debug


^ permalink raw reply related	[flat|nested] 33+ messages in thread
* [gentoo-commits] proj/ag:master commit in: /
@ 2015-02-23 20:59 Alex Legler
  0 siblings, 0 replies; 33+ messages in thread
From: Alex Legler @ 2015-02-23 20:59 UTC (permalink / raw
  To: gentoo-commits

commit:     273cd900db7c24be76a0f1cee96a522b145c7908
Author:     Alex Legler <alex <AT> a3li <DOT> li>
AuthorDate: Mon Feb 23 20:57:45 2015 +0000
Commit:     Alex Legler <a3li <AT> gentoo <DOT> org>
CommitDate: Mon Feb 23 20:57:45 2015 +0000
URL:        http://sources.gentoo.org/gitweb/?p=proj/ag.git;a=commit;h=273cd900

Silence encoding warnings

---
 ag | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ag b/ag
index 083b9ee..73c189b 100755
--- a/ag
+++ b/ag
@@ -1,4 +1,4 @@
-#!/usr/bin/env ruby
+#!/usr/bin/env ruby -W0
 # Ag -- archiving all the 'golden' flamewars on -dev
 # Alex Legler <a3li@gentoo.org>
 


^ permalink raw reply related	[flat|nested] 33+ messages in thread
* [gentoo-commits] proj/ag:master commit in: /
@ 2015-02-23 21:05 Alex Legler
  0 siblings, 0 replies; 33+ messages in thread
From: Alex Legler @ 2015-02-23 21:05 UTC (permalink / raw
  To: gentoo-commits

commit:     06f782971261539ee316ad59ac4937b19a4ec22a
Author:     Alex Legler <alex <AT> a3li <DOT> li>
AuthorDate: Mon Feb 23 21:05:08 2015 +0000
Commit:     Alex Legler <a3li <AT> gentoo <DOT> org>
CommitDate: Mon Feb 23 21:05:08 2015 +0000
URL:        http://sources.gentoo.org/gitweb/?p=proj/ag.git;a=commit;h=06f78297

hello linux

---
 ag | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/ag b/ag
index bcb1ac6..d36acc4 100755
--- a/ag
+++ b/ag
@@ -1,7 +1,9 @@
-#!/usr/bin/env ruby -W0
+#!/usr/bin/env ruby
 # Ag -- archiving all the 'golden' flamewars on -dev
 # Alex Legler <a3li@gentoo.org>
 
+VERBOSE=nil
+
 require 'bundler/setup'
 require 'mail'
 require 'maildir'


^ permalink raw reply related	[flat|nested] 33+ messages in thread
* [gentoo-commits] proj/ag:master commit in: /
@ 2015-02-23 22:45 Robin H. Johnson
  0 siblings, 0 replies; 33+ messages in thread
From: Robin H. Johnson @ 2015-02-23 22:45 UTC (permalink / raw
  To: gentoo-commits

commit:     efe2057022a5f1185b3ab431a4425d651a3f2efe
Author:     Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 23 22:45:06 2015 +0000
Commit:     Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Mon Feb 23 22:45:06 2015 +0000
URL:        http://sources.gentoo.org/gitweb/?p=proj/ag.git;a=commit;h=efe20570

Include key.

Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>

---
 ag | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ag b/ag
index 97c223f..027ca23 100755
--- a/ag
+++ b/ag
@@ -95,7 +95,7 @@ op = OptionParser.new do |opts|
     $options.readonly = true
   end
 
-  opts.on('--jobs', 'Number of parallel jobs to run (defaults to 75% of core count)') do |jobs|
+  opts.on('--jobs JOBS', 'Number of parallel jobs to run (defaults to 75% of core count)') do |jobs|
     $options.jobs = jobs
   end
 end


^ permalink raw reply related	[flat|nested] 33+ messages in thread
* [gentoo-commits] proj/ag:master commit in: /
@ 2015-02-23 22:48 Robin H. Johnson
  0 siblings, 0 replies; 33+ messages in thread
From: Robin H. Johnson @ 2015-02-23 22:48 UTC (permalink / raw
  To: gentoo-commits

commit:     ac9ef0ae25fb4c814c4a2016ba48173ca67e947d
Author:     Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 23 22:47:55 2015 +0000
Commit:     Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Mon Feb 23 22:47:55 2015 +0000
URL:        http://sources.gentoo.org/gitweb/?p=proj/ag.git;a=commit;h=ac9ef0ae

Ensure job count is an integer.

Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>

---
 ag | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ag b/ag
index 027ca23..6574dca 100755
--- a/ag
+++ b/ag
@@ -96,7 +96,7 @@ op = OptionParser.new do |opts|
   end
 
   opts.on('--jobs JOBS', 'Number of parallel jobs to run (defaults to 75% of core count)') do |jobs|
-    $options.jobs = jobs
+    $options.jobs = jobs.to_i
   end
 end
 op.parse!


^ permalink raw reply related	[flat|nested] 33+ messages in thread
* [gentoo-commits] proj/ag:master commit in: /
@ 2015-02-23 23:55 Alex Legler
  0 siblings, 0 replies; 33+ messages in thread
From: Alex Legler @ 2015-02-23 23:55 UTC (permalink / raw
  To: gentoo-commits

commit:     0420c776374c7b7bcc44533792de0ca977787819
Author:     Alex Legler <alex <AT> a3li <DOT> li>
AuthorDate: Mon Feb 23 23:54:13 2015 +0000
Commit:     Alex Legler <a3li <AT> gentoo <DOT> org>
CommitDate: Mon Feb 23 23:55:20 2015 +0000
URL:        http://sources.gentoo.org/gitweb/?p=proj/ag.git;a=commit;h=0420c776

Properly shut up encoding errors

---
 ag | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ag b/ag
index 6574dca..c5056ff 100755
--- a/ag
+++ b/ag
@@ -2,7 +2,7 @@
 # Ag -- archiving all the 'golden' flamewars on -dev
 # Alex Legler <a3li@gentoo.org>
 
-VERBOSE=nil
+$VERBOSE=nil
 
 require 'bundler/setup'
 require 'mail'


^ permalink raw reply related	[flat|nested] 33+ messages in thread
* [gentoo-commits] proj/ag:master commit in: /
@ 2015-02-24  2:02 Robin H. Johnson
  0 siblings, 0 replies; 33+ messages in thread
From: Robin H. Johnson @ 2015-02-24  2:02 UTC (permalink / raw
  To: gentoo-commits

commit:     141a6a0ac540063ff2207f13472aec10141a3a95
Author:     Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
AuthorDate: Tue Feb 24 02:02:04 2015 +0000
Commit:     Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Tue Feb 24 02:02:04 2015 +0000
URL:        http://sources.gentoo.org/gitweb/?p=proj/ag.git;a=commit;h=141a6a0a

My ruby is rusty.

Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>

---
 ag | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/ag b/ag
index fa3d181..ea1e91b 100755
--- a/ag
+++ b/ag
@@ -139,7 +139,7 @@ def do_full
   messages = $maildir.list(:cur)
 
   opts = {
-	  :in_processes: Ag::Utils.proc_count,
+	  :in_processes => Ag::Utils.proc_count,
   }
   opts[:progress] = "Importing #{$options.name}" if $options.progress
   Parallel.each(messages, opts) do |maildir_message|
@@ -160,7 +160,7 @@ def do_incremental
   messages = $maildir.list(:cur)
 
   opts = {
-	  :in_processes: Ag::Utils.proc_count,
+	  :in_processes => Ag::Utils.proc_count,
   }
   opts[:progress] = "Importing #{$options.name}" if $options.progress
   Parallel.each(messages, opts) do |maildir_message|


^ permalink raw reply related	[flat|nested] 33+ messages in thread
* [gentoo-commits] proj/ag:master commit in: /
@ 2015-02-24  2:17 Robin H. Johnson
  0 siblings, 0 replies; 33+ messages in thread
From: Robin H. Johnson @ 2015-02-24  2:17 UTC (permalink / raw
  To: gentoo-commits

commit:     1fd50f1d698156b2405d1fec0fd536638605d7a1
Author:     Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
AuthorDate: Tue Feb 24 02:04:01 2015 +0000
Commit:     Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Tue Feb 24 02:04:01 2015 +0000
URL:        http://sources.gentoo.org/gitweb/?p=proj/ag.git;a=commit;h=1fd50f1d

Remove dead code.

Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>

---
 ag | 2 --
 1 file changed, 2 deletions(-)

diff --git a/ag b/ag
index ea1e91b..57dc0a4 100755
--- a/ag
+++ b/ag
@@ -119,8 +119,6 @@ abort op.help unless $options.action
 abort 'List name required' unless $options.name
 $options.dir = ARGV[0] or abort 'Need a Maildir/File/Hash/Message-Id to work with'
 
-$listname = ARGV[0] or abort 'List name required'
-
 # Open maildir and set serializer
 $maildir = Maildir.new(File.join($options.dir), false)
 $maildir.serializer = Maildir::Serializer::Mail.new


^ permalink raw reply related	[flat|nested] 33+ messages in thread
* [gentoo-commits] proj/ag:master commit in: /
@ 2015-02-24  2:18 Robin H. Johnson
  0 siblings, 0 replies; 33+ messages in thread
From: Robin H. Johnson @ 2015-02-24  2:18 UTC (permalink / raw
  To: gentoo-commits

commit:     0cd3f2a7abd8d21806cf96fd5d71e5a711a81b92
Author:     Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
AuthorDate: Tue Feb 24 02:18:03 2015 +0000
Commit:     Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Tue Feb 24 02:18:03 2015 +0000
URL:        http://sources.gentoo.org/gitweb/?p=proj/ag.git;a=commit;h=0cd3f2a7

Correct action.

Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>

---
 ag | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ag b/ag
index ffe714b..6c5dde1 100755
--- a/ag
+++ b/ag
@@ -55,7 +55,7 @@ op = OptionParser.new do |opts|
   opts.on('--delete-index', 'Delete index. Needs --list') do
     abort 'Can only select one action' if $options.action != nil
 
-    $options.action = :do_index
+    $options.action = :do_delete_index
     $options.need_argument = false
   end
 


^ permalink raw reply related	[flat|nested] 33+ messages in thread
* [gentoo-commits] proj/ag:master commit in: /
@ 2015-02-24  2:46 Robin H. Johnson
  0 siblings, 0 replies; 33+ messages in thread
From: Robin H. Johnson @ 2015-02-24  2:46 UTC (permalink / raw
  To: gentoo-commits

commit:     b83134255c9633a3fa3213c30c018a7e56dea2b0
Author:     Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
AuthorDate: Tue Feb 24 02:25:34 2015 +0000
Commit:     Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Tue Feb 24 02:25:34 2015 +0000
URL:        http://sources.gentoo.org/gitweb/?p=proj/ag.git;a=commit;h=b8313425

Leave a note about reindex.

Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>

---
 ag | 1 +
 1 file changed, 1 insertion(+)

diff --git a/ag b/ag
index 6c5dde1..96e3195 100755
--- a/ag
+++ b/ag
@@ -205,6 +205,7 @@ def do_delete_index
 end
 
 def do_reindex
+  # http://babinho.net/2014/07/refresh-your-elasticsearch-index-with-zero-downtime/
   abort 'Come back later.'
 end
 


^ permalink raw reply related	[flat|nested] 33+ messages in thread
* [gentoo-commits] proj/ag:master commit in: /
@ 2015-02-24  2:47 Robin H. Johnson
  0 siblings, 0 replies; 33+ messages in thread
From: Robin H. Johnson @ 2015-02-24  2:47 UTC (permalink / raw
  To: gentoo-commits

commit:     7aa342d050e746b0944ac17a81bf7ac3a7793b11
Author:     Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
AuthorDate: Tue Feb 24 02:47:40 2015 +0000
Commit:     Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Tue Feb 24 02:47:40 2015 +0000
URL:        http://sources.gentoo.org/gitweb/?p=proj/ag.git;a=commit;h=7aa342d0

Fix arg.

Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>

---
 ag | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ag b/ag
index 52e8848..57e178d 100755
--- a/ag
+++ b/ag
@@ -148,7 +148,7 @@ Ag::Utils.proc_count = $options.jobs
 def do_full
   abort "Wrong argument type: #{$options.argmode.to_s}" unless $options.argmode == :dir
   begin
-    Ag::Storage.delete_index(list)
+    Ag::Storage.delete_index($options.name)
   rescue Elasticsearch::Transport::Transport::Errors::NotFound => e
     $stderr.puts "Index did not exist yet. Creating." if $options.debug
   end


^ permalink raw reply related	[flat|nested] 33+ messages in thread
* [gentoo-commits] proj/ag:master commit in: /
@ 2015-02-24  2:57 Robin H. Johnson
  0 siblings, 0 replies; 33+ messages in thread
From: Robin H. Johnson @ 2015-02-24  2:57 UTC (permalink / raw
  To: gentoo-commits

commit:     8f08a4dabed62017bbd60b6298623b3e55c8d84b
Author:     Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
AuthorDate: Tue Feb 24 02:56:56 2015 +0000
Commit:     Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Tue Feb 24 02:56:56 2015 +0000
URL:        http://sources.gentoo.org/gitweb/?p=proj/ag.git;a=commit;h=8f08a4da

Debugging.

Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>

---
 ag | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ag b/ag
index 57e178d..64ae6db 100755
--- a/ag
+++ b/ag
@@ -250,5 +250,5 @@ end
 begin
   send $options.action
 rescue NoMethodError
-  abort 'Internal Error: Unknown action'
+  abort "Internal Error: Unknown action: #{$options.action}"
 end


^ permalink raw reply related	[flat|nested] 33+ messages in thread
* [gentoo-commits] proj/ag:master commit in: /
@ 2015-02-24  3:05 Robin H. Johnson
  0 siblings, 0 replies; 33+ messages in thread
From: Robin H. Johnson @ 2015-02-24  3:05 UTC (permalink / raw
  To: gentoo-commits

commit:     e9549cb1f04b005a112a223f49db1dbfe29b8f8b
Author:     Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
AuthorDate: Tue Feb 24 03:05:34 2015 +0000
Commit:     Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Tue Feb 24 03:05:34 2015 +0000
URL:        http://sources.gentoo.org/gitweb/?p=proj/ag.git;a=commit;h=e9549cb1

We do not want to catch NoMethodError from deeper in the stack.

Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>

---
 ag | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/ag b/ag
index 644cb4b..00ce189 100755
--- a/ag
+++ b/ag
@@ -247,9 +247,9 @@ end
 
 ###############################################################################
 
-begin
+if self.private_methods.include? $options.action
   send $options.action
-rescue NoMethodError
+else
   abort "Internal Error: Unknown action: #{$options.action}"
 end
 # vim: ts=2 sts=2 et ft=ruby:


^ permalink raw reply related	[flat|nested] 33+ messages in thread
* [gentoo-commits] proj/ag:master commit in: /
@ 2015-02-24  4:21 Robin H. Johnson
  0 siblings, 0 replies; 33+ messages in thread
From: Robin H. Johnson @ 2015-02-24  4:21 UTC (permalink / raw
  To: gentoo-commits

commit:     193f7811ee0156c8b0d52b0c21bfaef528d8f173
Author:     Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
AuthorDate: Tue Feb 24 04:20:45 2015 +0000
Commit:     Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Tue Feb 24 04:20:45 2015 +0000
URL:        http://sources.gentoo.org/gitweb/?p=proj/ag.git;a=commit;h=193f7811

Make a rethread command.

Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>

---
 ag | 15 +++++++++++++--
 1 file changed, 13 insertions(+), 2 deletions(-)

diff --git a/ag b/ag
index 00ce189..8b08cc2 100755
--- a/ag
+++ b/ag
@@ -30,7 +30,7 @@ $options.need_argument = true
 $options.argmode = nil
 
 op = OptionParser.new do |opts|
-  opts.banner = "Usage: ag <<--index-full|--index-new|--delete-msg|--delete-index|--reindex|--info> <--list listname>> <[--file|--msgid|--hash] <maildir/file/hash/messageid>> [options]"
+  opts.banner = "Usage: ag <<--index-full|--index-new|--delete-msg|--delete-index|--reindex|--rethread|--info> <--list listname>> <[--file|--msgid|--hash] <maildir/file/hash/messageid>> [options]"
 
   opts.on('--index-full', 'Read the full past archive from Maildir/cur. Needs --list and a Maildir') do
     abort 'Can only select one action' if $options.action != nil
@@ -58,6 +58,13 @@ op = OptionParser.new do |opts|
     $options.action = :do_create_index
     $options.need_argument = false
   end
+  
+  opts.on('--rethread', 'Rethread messages. Needs --list') do
+    abort 'Can only select one action' if $options.action != nil
+
+    $options.action = :do_rethread
+    $options.need_argument = false
+  end
 
   opts.on('--delete-index', 'Delete index. Needs --list') do
     abort 'Can only select one action' if $options.action != nil
@@ -171,7 +178,7 @@ def do_full
     end
   end
 
-  Ag::Threading.calc($options.name) unless $options.no_threading
+  do_rethread
 end
 
 def do_incremental
@@ -194,6 +201,10 @@ def do_incremental
     end
   end
 
+  do_rethread
+end
+
+def do_rethread
   Ag::Threading.calc($options.name) unless $options.no_threading
 end
 


^ permalink raw reply related	[flat|nested] 33+ messages in thread
* [gentoo-commits] proj/ag:master commit in: /
@ 2015-02-24  4:21 Robin H. Johnson
  0 siblings, 0 replies; 33+ messages in thread
From: Robin H. Johnson @ 2015-02-24  4:21 UTC (permalink / raw
  To: gentoo-commits

commit:     29f0891c1f7305bd0f96d6287f582b01aab8a93e
Author:     Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
AuthorDate: Tue Feb 24 04:21:28 2015 +0000
Commit:     Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Tue Feb 24 04:21:28 2015 +0000
URL:        http://sources.gentoo.org/gitweb/?p=proj/ag.git;a=commit;h=29f0891c

Incremental was not doing new messages!.

Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>

---
 ag | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ag b/ag
index 8b08cc2..5375461 100755
--- a/ag
+++ b/ag
@@ -183,7 +183,7 @@ end
 
 def do_incremental
   abort "Wrong argument type: #{$options.argmode.to_s}" unless $options.argmode == :dir
-  messages = $maildir.list(:cur)
+  messages = $maildir.list(:new)
 
   opts = {
     :in_processes => Ag::Utils.proc_count,


^ permalink raw reply related	[flat|nested] 33+ messages in thread
* [gentoo-commits] proj/ag:master commit in: /
@ 2015-02-25 23:40 Robin H. Johnson
  0 siblings, 0 replies; 33+ messages in thread
From: Robin H. Johnson @ 2015-02-25 23:40 UTC (permalink / raw
  To: gentoo-commits

commit:     c1c800555edb927292922b6e26dc3ed964523a8b
Author:     Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 25 23:38:00 2015 +0000
Commit:     Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Wed Feb 25 23:38:00 2015 +0000
URL:        http://sources.gentoo.org/gitweb/?p=proj/ag.git;a=commit;h=c1c80055

Add a README.

---
 README | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/README b/README
new file mode 100644
index 0000000..b091a5d
--- /dev/null
+++ b/README
@@ -0,0 +1,9 @@
+Archives-Ag: Gentoo Archives, backend tool.
+
+Setup instructions:
+- Set up Elasticsearch
+- bundle install
+- bundle exec ag --help
+- bundle exec ag --index-full $MAILDIR
+- bundle exec ag --index-new $MAILDIR
+


^ permalink raw reply related	[flat|nested] 33+ messages in thread
* [gentoo-commits] proj/ag:master commit in: /
@ 2015-02-25 23:40 Robin H. Johnson
  0 siblings, 0 replies; 33+ messages in thread
From: Robin H. Johnson @ 2015-02-25 23:40 UTC (permalink / raw
  To: gentoo-commits

commit:     5d0ec26faceeefe3ce97393cc28dd23c7b67243b
Author:     Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 25 23:39:54 2015 +0000
Commit:     Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Wed Feb 25 23:39:54 2015 +0000
URL:        http://sources.gentoo.org/gitweb/?p=proj/ag.git;a=commit;h=5d0ec26f

Document that this deletes the index normally.

Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>

---
 ag | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/ag b/ag
index 5375461..b031363 100755
--- a/ag
+++ b/ag
@@ -32,7 +32,7 @@ $options.argmode = nil
 op = OptionParser.new do |opts|
   opts.banner = "Usage: ag <<--index-full|--index-new|--delete-msg|--delete-index|--reindex|--rethread|--info> <--list listname>> <[--file|--msgid|--hash] <maildir/file/hash/messageid>> [options]"
 
-  opts.on('--index-full', 'Read the full past archive from Maildir/cur. Needs --list and a Maildir') do
+  opts.on('--index-full', 'Read the full past archive from Maildir/cur. Does --delete-index by default. Needs --list and a Maildir') do
     abort 'Can only select one action' if $options.action != nil
 
     $options.action = :do_full
@@ -155,7 +155,7 @@ Ag::Utils.proc_count = $options.jobs
 def do_full
   abort "Wrong argument type: #{$options.argmode.to_s}" unless $options.argmode == :dir
   begin
-    Ag::Storage.delete_index($options.name)
+    Ag::Storage.delete_index($options.name) unless $options.readonly
   rescue Elasticsearch::Transport::Transport::Errors::NotFound => e
     $stderr.puts "Index did not exist yet. Creating." if $options.debug
   end


^ permalink raw reply related	[flat|nested] 33+ messages in thread
* [gentoo-commits] proj/ag:master commit in: /
@ 2015-02-25 23:40 Robin H. Johnson
  0 siblings, 0 replies; 33+ messages in thread
From: Robin H. Johnson @ 2015-02-25 23:40 UTC (permalink / raw
  To: gentoo-commits

commit:     7b581ee27d83d26667b514d04de2d120f7fdc477
Author:     Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 25 23:40:19 2015 +0000
Commit:     Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Wed Feb 25 23:40:19 2015 +0000
URL:        http://sources.gentoo.org/gitweb/?p=proj/ag.git;a=commit;h=7b581ee2

Fix function name.

Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>

---
 ag | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ag b/ag
index b031363..b3fdb18 100755
--- a/ag
+++ b/ag
@@ -229,7 +229,7 @@ def do_delete_index
 end
 
 def do_create_index
-  Ag::Storage.create($options.name)
+  Ag::Storage.create_index($options.name)
 end
 
 def do_reindex


^ permalink raw reply related	[flat|nested] 33+ messages in thread
* [gentoo-commits] proj/ag:master commit in: /
@ 2015-02-25 23:48 Robin H. Johnson
  0 siblings, 0 replies; 33+ messages in thread
From: Robin H. Johnson @ 2015-02-25 23:48 UTC (permalink / raw
  To: gentoo-commits

commit:     d706b559da30d046df7200c17293ece6d4af6ea2
Author:     Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 25 23:47:54 2015 +0000
Commit:     Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Wed Feb 25 23:47:54 2015 +0000
URL:        http://sources.gentoo.org/gitweb/?p=proj/ag.git;a=commit;h=d706b559

Refactor to simplify for a quick bug I hit.

Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>

---
 ag | 23 +++++++++++++----------
 1 file changed, 13 insertions(+), 10 deletions(-)

diff --git a/ag b/ag
index b3fdb18..f3c106e 100755
--- a/ag
+++ b/ag
@@ -154,12 +154,8 @@ Ag::Utils.proc_count = $options.jobs
 
 def do_full
   abort "Wrong argument type: #{$options.argmode.to_s}" unless $options.argmode == :dir
-  begin
-    Ag::Storage.delete_index($options.name) unless $options.readonly
-  rescue Elasticsearch::Transport::Transport::Errors::NotFound => e
-    $stderr.puts "Index did not exist yet. Creating." if $options.debug
-  end
-  Ag::Storage.create_index($options.name)
+  do_delete_index(ignore_missing: true) unless $options.readonly
+  do_create_index(ignore_exists: true)
 
   messages = $maildir.list(:cur)
 
@@ -184,6 +180,7 @@ end
 def do_incremental
   abort "Wrong argument type: #{$options.argmode.to_s}" unless $options.argmode == :dir
   messages = $maildir.list(:new)
+  do_create_index(ignore_exists: true)
 
   opts = {
     :in_processes => Ag::Utils.proc_count,
@@ -218,18 +215,24 @@ def do_delete_msg
   end
 end
 
-def do_delete_index
+def do_delete_index(ignore_missing: false)
   begin
     Ag::Storage.delete_index($options.name)
   rescue Elasticsearch::Transport::Transport::Errors::NotFound => e
-    $stderr.puts "Index does not exist: #{e}"
+    $stderr.puts "Index does not exist: #{e}" unless ignore_missing
   rescue => e
     $stderr.puts "Cannot delete index: #{e}"
   end
 end
 
-def do_create_index
-  Ag::Storage.create_index($options.name)
+def do_create_index(ignore_exists: false)
+  begin
+    Ag::Storage.create_index($options.name)
+  rescue Elasticsearch::Transport::Transport::Errors::BadRequest => e
+    if ignore_exists and e !~ /IndexAlreadyExistsException/
+        raise e
+    end
+  end
 end
 
 def do_reindex


^ permalink raw reply related	[flat|nested] 33+ messages in thread
* [gentoo-commits] proj/ag:master commit in: /
@ 2015-02-25 23:54 Robin H. Johnson
  0 siblings, 0 replies; 33+ messages in thread
From: Robin H. Johnson @ 2015-02-25 23:54 UTC (permalink / raw
  To: gentoo-commits

commit:     face39b1a3a32f3a9a49747059dac1484025458d
Author:     Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 25 23:54:36 2015 +0000
Commit:     Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Wed Feb 25 23:54:36 2015 +0000
URL:        http://sources.gentoo.org/gitweb/?p=proj/ag.git;a=commit;h=face39b1

Improve error handling.

Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>

---
 ag | 19 ++++++++++++-------
 1 file changed, 12 insertions(+), 7 deletions(-)

diff --git a/ag b/ag
index f3c106e..5602df5 100755
--- a/ag
+++ b/ag
@@ -51,14 +51,14 @@ op = OptionParser.new do |opts|
 
     $options.action = :do_delete_msg
   end
-  
+
   opts.on('--create-index', 'Create index but do not populate. Needs --list') do
     abort 'Can only select one action' if $options.action != nil
 
     $options.action = :do_create_index
     $options.need_argument = false
   end
-  
+ 
   opts.on('--rethread', 'Rethread messages. Needs --list') do
     abort 'Can only select one action' if $options.action != nil
 
@@ -215,22 +215,27 @@ def do_delete_msg
   end
 end
 
-def do_delete_index(ignore_missing: false)
+def do_delete_index(ignore_missing: false, _raise: false)
   begin
     Ag::Storage.delete_index($options.name)
   rescue Elasticsearch::Transport::Transport::Errors::NotFound => e
-    $stderr.puts "Index does not exist: #{e}" unless ignore_missing
+    unless ignore_missing
+        raise e if _raise
+        $stderr.puts "Index does not exist: #{e}"
+    end
   rescue => e
+    raise e if _raise
     $stderr.puts "Cannot delete index: #{e}"
   end
 end
 
-def do_create_index(ignore_exists: false)
+def do_create_index(ignore_exists: false, _raise: false)
   begin
     Ag::Storage.create_index($options.name)
   rescue Elasticsearch::Transport::Transport::Errors::BadRequest => e
-    if ignore_exists and e !~ /IndexAlreadyExistsException/
-        raise e
+    unless (ignore_exists and e.message =~ /IndexAlreadyExistsException/)
+        raise e  if _raise
+        $stderr.puts "Cannot create index #{e}"
     end
   end
 end


^ permalink raw reply related	[flat|nested] 33+ messages in thread
* [gentoo-commits] proj/ag:master commit in: /
@ 2015-02-25 23:57 Robin H. Johnson
  0 siblings, 0 replies; 33+ messages in thread
From: Robin H. Johnson @ 2015-02-25 23:57 UTC (permalink / raw
  To: gentoo-commits

commit:     226a11deea595aed4c4bbfd4aeec285923867e0f
Author:     Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 25 23:57:18 2015 +0000
Commit:     Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Wed Feb 25 23:57:18 2015 +0000
URL:        http://sources.gentoo.org/gitweb/?p=proj/ag.git;a=commit;h=226a11de

Always raise problems from create/delete if calling from maildir indexing calls.

Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>

---
 ag | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/ag b/ag
index 5602df5..c220b9d 100755
--- a/ag
+++ b/ag
@@ -154,8 +154,8 @@ Ag::Utils.proc_count = $options.jobs
 
 def do_full
   abort "Wrong argument type: #{$options.argmode.to_s}" unless $options.argmode == :dir
-  do_delete_index(ignore_missing: true) unless $options.readonly
-  do_create_index(ignore_exists: true)
+  do_delete_index(ignore_missing: true, _raise: true) unless $options.readonly
+  do_create_index(ignore_exists: true, _raise: true)
 
   messages = $maildir.list(:cur)
 
@@ -180,7 +180,7 @@ end
 def do_incremental
   abort "Wrong argument type: #{$options.argmode.to_s}" unless $options.argmode == :dir
   messages = $maildir.list(:new)
-  do_create_index(ignore_exists: true)
+  do_create_index(ignore_exists: true, _raise: true)
 
   opts = {
     :in_processes => Ag::Utils.proc_count,


^ permalink raw reply related	[flat|nested] 33+ messages in thread
* [gentoo-commits] proj/ag:master commit in: /
@ 2015-02-26  0:00 Robin H. Johnson
  0 siblings, 0 replies; 33+ messages in thread
From: Robin H. Johnson @ 2015-02-26  0:00 UTC (permalink / raw
  To: gentoo-commits

commit:     aae810085fadd62008a0c75eacf6534bb9c27ae3
Author:     Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
AuthorDate: Thu Feb 26 00:00:27 2015 +0000
Commit:     Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Thu Feb 26 00:00:27 2015 +0000
URL:        http://sources.gentoo.org/gitweb/?p=proj/ag.git;a=commit;h=aae81008

Add TODO.

Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>

---
 TODO | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/TODO b/TODO
new file mode 100644
index 0000000..3346d25
--- /dev/null
+++ b/TODO
@@ -0,0 +1,6 @@
+- Use index aliases
+  - for clean reindexing
+  - for index versioning
+- Index more headers
+- Use different analyzers for text in non-english lists
+


^ permalink raw reply related	[flat|nested] 33+ messages in thread
* [gentoo-commits] proj/ag:master commit in: /
@ 2015-03-04 14:38 Alex Legler
  0 siblings, 0 replies; 33+ messages in thread
From: Alex Legler @ 2015-03-04 14:38 UTC (permalink / raw
  To: gentoo-commits

commit:     81e6445a5f9d47a4b29cf045fcfbc9a4ac8284c4
Author:     Alex Legler <alex <AT> a3li <DOT> li>
AuthorDate: Wed Mar  4 14:37:50 2015 +0000
Commit:     Alex Legler <a3li <AT> gentoo <DOT> org>
CommitDate: Wed Mar  4 14:37:50 2015 +0000
URL:        http://sources.gentoo.org/gitweb/?p=proj/ag.git;a=commit;h=81e6445a

test mirroring

 README | 1 -
 1 file changed, 1 deletion(-)

diff --git a/README b/README
index b091a5d..5b8d358 100644
--- a/README
+++ b/README
@@ -6,4 +6,3 @@ Setup instructions:
 - bundle exec ag --help
 - bundle exec ag --index-full $MAILDIR
 - bundle exec ag --index-new $MAILDIR
-


^ permalink raw reply related	[flat|nested] 33+ messages in thread
* [gentoo-commits] proj/ag:master commit in: /
@ 2015-03-04 14:38 git@oystercatcher mirror+tproxy
  0 siblings, 0 replies; 33+ messages in thread
From: git@oystercatcher mirror+tproxy @ 2015-03-04 14:38 UTC (permalink / raw
  To: gentoo-commits

commit:     81e6445a5f9d47a4b29cf045fcfbc9a4ac8284c4
Author:     Alex Legler <alex <AT> a3li <DOT> li>
AuthorDate: Wed Mar  4 14:37:50 2015 +0000
Commit:     git@oystercatcher mirror+tproxy <git <AT> oystercatcher <DOT> gentoo <DOT> org>
CommitDate: Wed Mar  4 14:37:50 2015 +0000
URL:        http://sources.gentoo.org/gitweb/?p=proj/ag.git;a=commit;h=81e6445a

test mirroring

 README | 1 -
 1 file changed, 1 deletion(-)

diff --git a/README b/README
index b091a5d..5b8d358 100644
--- a/README
+++ b/README
@@ -6,4 +6,3 @@ Setup instructions:
 - bundle exec ag --help
 - bundle exec ag --index-full $MAILDIR
 - bundle exec ag --index-new $MAILDIR
-


^ permalink raw reply related	[flat|nested] 33+ messages in thread
* [gentoo-commits] proj/ag:master commit in: /
@ 2015-03-04 15:12 Alex Legler
  0 siblings, 0 replies; 33+ messages in thread
From: Alex Legler @ 2015-03-04 15:12 UTC (permalink / raw
  To: gentoo-commits

commit:     6487b8bbff308278eb8a43c58993e09ec38771b1
Author:     Alex Legler <alex <AT> a3li <DOT> li>
AuthorDate: Wed Mar  4 15:12:03 2015 +0000
Commit:     Alex Legler <a3li <AT> gentoo <DOT> org>
CommitDate: Wed Mar  4 15:12:03 2015 +0000
URL:        http://sources.gentoo.org/gitweb/?p=proj/ag.git;a=commit;h=6487b8bb

Revert "test mirroring"

This reverts commit 81e6445a5f9d47a4b29cf045fcfbc9a4ac8284c4.

 README | 1 +
 1 file changed, 1 insertion(+)

diff --git a/README b/README
index 5b8d358..b091a5d 100644
--- a/README
+++ b/README
@@ -6,3 +6,4 @@ Setup instructions:
 - bundle exec ag --help
 - bundle exec ag --index-full $MAILDIR
 - bundle exec ag --index-new $MAILDIR
+


^ permalink raw reply related	[flat|nested] 33+ messages in thread
* [gentoo-commits] proj/ag:master commit in: /
@ 2015-03-07 20:55 Alex Legler
  0 siblings, 0 replies; 33+ messages in thread
From: Alex Legler @ 2015-03-07 20:55 UTC (permalink / raw
  To: gentoo-commits

commit:     2a9bce09b8ee60da240b4d5e22e057cf3457b39a
Author:     Alex Legler <alex <AT> a3li <DOT> li>
AuthorDate: Sat Mar  7 20:54:59 2015 +0000
Commit:     Alex Legler <a3li <AT> gentoo <DOT> org>
CommitDate: Sat Mar  7 20:54:59 2015 +0000
URL:        https://gitweb.gentoo.org/proj/ag.git/commit/?id=2a9bce09

Revert "Revert "Revert "Revert "TODO!""""

This reverts commit d012813f2150138fc80bee530ca0874ef5e68ef3.

 TODO | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/TODO b/TODO
index 3346d25..bbc7c4c 100644
--- a/TODO
+++ b/TODO
@@ -3,4 +3,4 @@
   - for index versioning
 - Index more headers
 - Use different analyzers for text in non-english lists
-
+- Fix addresses without < and >


^ permalink raw reply related	[flat|nested] 33+ messages in thread
* [gentoo-commits] proj/ag:master commit in: /
@ 2015-03-07 21:06 Alex Legler
  0 siblings, 0 replies; 33+ messages in thread
From: Alex Legler @ 2015-03-07 21:06 UTC (permalink / raw
  To: gentoo-commits

commit:     af35510ab65b2baa006324fed7a8ebd5c8d79350
Author:     Alex Legler <alex <AT> a3li <DOT> li>
AuthorDate: Sat Mar  7 21:05:13 2015 +0000
Commit:     Alex Legler <a3li <AT> gentoo <DOT> org>
CommitDate: Sat Mar  7 21:05:13 2015 +0000
URL:        https://gitweb.gentoo.org/proj/ag.git/commit/?id=af35510a

Title is not a sentence, hence remove the period

hopefully the last useless test commit

 README | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/README b/README
index b091a5d..960bc8d 100644
--- a/README
+++ b/README
@@ -1,4 +1,4 @@
-Archives-Ag: Gentoo Archives, backend tool.
+Archives-Ag: Gentoo Archives, backend tool
 
 Setup instructions:
 - Set up Elasticsearch


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

end of thread, other threads:[~2015-03-07 21:06 UTC | newest]

Thread overview: 33+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-02-21 18:57 [gentoo-commits] proj/ag:master commit in: / Alex Legler
  -- strict thread matches above, loose matches on Subject: below --
2015-02-21 21:45 Robin H. Johnson
2015-02-21 21:52 Robin H. Johnson
2015-02-21 21:52 Robin H. Johnson
2015-02-21 21:52 Robin H. Johnson
2015-02-21 21:59 Alex Legler
2015-02-23 20:59 Alex Legler
2015-02-23 20:59 Alex Legler
2015-02-23 21:05 Alex Legler
2015-02-23 22:45 Robin H. Johnson
2015-02-23 22:48 Robin H. Johnson
2015-02-23 23:55 Alex Legler
2015-02-24  2:02 Robin H. Johnson
2015-02-24  2:17 Robin H. Johnson
2015-02-24  2:18 Robin H. Johnson
2015-02-24  2:46 Robin H. Johnson
2015-02-24  2:47 Robin H. Johnson
2015-02-24  2:57 Robin H. Johnson
2015-02-24  3:05 Robin H. Johnson
2015-02-24  4:21 Robin H. Johnson
2015-02-24  4:21 Robin H. Johnson
2015-02-25 23:40 Robin H. Johnson
2015-02-25 23:40 Robin H. Johnson
2015-02-25 23:40 Robin H. Johnson
2015-02-25 23:48 Robin H. Johnson
2015-02-25 23:54 Robin H. Johnson
2015-02-25 23:57 Robin H. Johnson
2015-02-26  0:00 Robin H. Johnson
2015-03-04 14:38 Alex Legler
2015-03-04 14:38 git@oystercatcher mirror+tproxy
2015-03-04 15:12 Alex Legler
2015-03-07 20:55 Alex Legler
2015-03-07 21:06 Alex Legler

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