[Groonga-commit] droonga/fluent-plugin-droonga at e0b7761 [master] Replace single-quotations to double-quotations

Back to archive index

Yoji Shidara null+****@clear*****
Fri Oct 11 16:56:08 JST 2013


Yoji Shidara	2013-10-11 16:56:08 +0900 (Fri, 11 Oct 2013)

  New Revision: e0b7761058732f2685d534a0acfc90812757200b
  https://github.com/droonga/fluent-plugin-droonga/commit/e0b7761058732f2685d534a0acfc90812757200b

  Message:
    Replace single-quotations to double-quotations

  Modified files:
    lib/droonga/plugin/handler_watch.rb

  Modified: lib/droonga/plugin/handler_watch.rb (+7 -7)
===================================================================
--- lib/droonga/plugin/handler_watch.rb    2013-10-11 16:55:33 +0900 (b9ebd7d)
+++ lib/droonga/plugin/handler_watch.rb    2013-10-11 16:56:08 +0900 (4e58c8a)
@@ -27,13 +27,13 @@ module Droonga
     command "watch"
     def watch(request)
       user, condition, query, route = parse_request(request)
-      query_table = @context['Query']
+      query_table = @context["Query"]
       query_record = query_table[query]
       unless query_record
         keywords = pick_keywords([], condition)
         query_record = query_table.add(query, :keywords => keywords)
       end
-      user_table = @context['User']
+      user_table = @context["User"]
       user_record = user_table[user]
       if user_record
         subscriptions = user_record.subscriptions.collect do |query|
@@ -53,10 +53,10 @@ module Droonga
     command "unwatch"
     def unwatch(request)
       user, condition, query, route = parse_request(request)
-      query_table = @context['Query']
+      query_table = @context["Query"]
       query_record = query_table[query]
       return unless query_record
-      user_table = @context['User']
+      user_table = @context["User"]
       user_record = user_table[user]
       return unless user_record
       subscriptions = user_record.subscriptions.select do |query|
@@ -105,8 +105,8 @@ module Droonga
     def scan_body(hits, body)
       trimmed = body.strip
       candidates = {}
-      @context['Keyword'].scan(trimmed).each do |keyword, word, start, length|
-        @context['Query'].select do |query|
+      @context["Keyword"].scan(trimmed).each do |keyword, word, start, length|
+        @context["Query"].select do |query|
           query.keywords =~ keyword
         end.each do |record|
           candidates[record.key] ||= []
@@ -165,7 +165,7 @@ module Droonga
     def publish(hits, request)
       routes = {}
       hits.each do |query|
-        @context['User'].select do |user|
+        @context["User"].select do |user|
           user.subscriptions =~ query
         end.each do |user|
           routes[user.route.key] ||= []
-------------- next part --------------
HTML����������������������������...
Download 



More information about the Groonga-commit mailing list
Back to archive index