From null+ranguba at clear-code.com Mon Feb 7 23:49:28 2011
From: null+ranguba at clear-code.com (null+ranguba at clear-code.com)
Date: Tue, 08 Feb 2011 04:49:28 +0000
Subject: [groonga-commit:3126] ranguba/rroonga [master] create received
string Ruby object as soon as possible.
Message-ID: <20110208045519.A51592C41DD@taiyaki.ru>
Kouhei Sutou 2011-02-08 04:49:28 +0000 (Tue, 08 Feb 2011)
New Revision: bc283dda1347fb6ef3d3e1dea6a8c28fabd7c80f
Log:
create received string Ruby object as soon as possible.
Modified files:
ext/groonga/rb-grn-context.c
Modified: ext/groonga/rb-grn-context.c (+10 -4)
===================================================================
--- ext/groonga/rb-grn-context.c 2011-01-28 07:18:35 +0000 (026636f)
+++ ext/groonga/rb-grn-context.c 2011-02-08 04:49:28 +0000 (6c9d3cf)
@@ -569,16 +569,22 @@ static VALUE
rb_grn_context_receive (VALUE self)
{
grn_ctx *context;
- char *string;
- unsigned string_size;
+ char *result = NULL;
+ unsigned result_size;
+ VALUE rb_result;
int flags = 0;
unsigned int query_id;
context = SELF(self);
- query_id = grn_ctx_recv(context, &string, &string_size, &flags);
+ query_id = grn_ctx_recv(context, &result, &result_size, &flags);
+ if (result) {
+ rb_result = rb_str_new(result, result_size);
+ } else {
+ rb_result = Qnil;
+ }
rb_grn_context_check(context, self);
- return rb_ary_new3(2, UINT2NUM(query_id), rb_str_new(string, string_size));
+ return rb_ary_new3(2, UINT2NUM(query_id), rb_result);
}
static const char *
From null+ranguba at clear-code.com Tue Feb 8 00:49:28 2011
From: null+ranguba at clear-code.com (null+ranguba at clear-code.com)
Date: Tue, 08 Feb 2011 05:49:28 +0000
Subject: [groonga-commit:3127] ranguba/rroonga [master] add
Groonga::Plugin.register.
Message-ID: <20110208055203.800E42C416A@taiyaki.ru>
Kouhei Sutou 2011-02-08 05:49:28 +0000 (Tue, 08 Feb 2011)
New Revision: 4df95c295792d0f4e6c664d3b5937c54f6b253ed
Log:
add Groonga::Plugin.register.
Added files:
ext/groonga/rb-grn-plugin.c
test/test-plugin.rb
Modified files:
ext/groonga/rb-grn.h
ext/groonga/rb-groonga.c
lib/groonga/context.rb
Added: ext/groonga/rb-grn-plugin.c (+134 -0) 100644
===================================================================
--- /dev/null
+++ ext/groonga/rb-grn-plugin.c 2011-02-08 05:49:28 +0000 (d76b18a)
@@ -0,0 +1,134 @@
+/* -*- c-file-style: "ruby" -*- */
+/*
+ Copyright (C) 2011 Kouhei Sutou
- 2011-01-29????????1.0.9??????
+ 2011-02-09????????1.1.0??????
rroonga???????
rroonga???????
From null+ranguba at clear-code.com Tue Feb 8 04:19:22 2011
From: null+ranguba at clear-code.com (null+ranguba at clear-code.com)
Date: Tue, 08 Feb 2011 09:19:22 +0000
Subject: [groonga-commit:3131] ranguba/rroonga [master] use GitHub logo.
Message-ID: <20110208092157.AF0992C41DD@taiyaki.ru>
Kouhei Sutou 2011-02-08 09:19:22 +0000 (Tue, 08 Feb 2011)
New Revision: f12c75c16478cdebed4d8d48ddae8a67e9775e5c
Log:
use GitHub logo.
Added files:
html/github-logo.png
Modified files:
html/index.html
html/ranguba.css
Added: html/github-logo.png (+0 -0) 100644
===================================================================
(Binary files differ)
Modified: html/index.html (+1 -1)
===================================================================
--- html/index.html 2011-02-08 09:12:43 +0000 (bc01f2a)
+++ html/index.html 2011-02-08 09:19:22 +0000 (40a4e65)
@@ -216,7 +216,7 @@
- ???????????GitHub?????????????????
+
Modified: html/ranguba.css (+8 -1)
===================================================================
--- html/ranguba.css 2011-02-08 09:12:43 +0000 (ae7a34d)
+++ html/ranguba.css 2011-02-08 09:19:22 +0000 (703e343)
@@ -248,13 +248,20 @@ div.sponsors p#sponsor-rubyforge
right: 50px;
}
-div.sponsors p#sponsor-tango
+div.sponsors p#sponsor-github
{
position: absolute;
top: 50px;
right: 50px;
}
+div.sponsors p#sponsor-tango
+{
+ position: absolute;
+ top: 105px;
+ right: 50px;
+}
+
dt
{
margin-bottom: 0.25em;
From null+ranguba at clear-code.com Tue Feb 8 04:12:43 2011
From: null+ranguba at clear-code.com (null+ranguba at clear-code.com)
Date: Tue, 08 Feb 2011 09:12:43 +0000
Subject: [groonga-commit:3132] ranguba/rroonga [master] 1.1.0 -> 1.1.1.
Message-ID: <20110208092157.A2C2A2C416A@taiyaki.ru>
Kouhei Sutou 2011-02-08 09:12:43 +0000 (Tue, 08 Feb 2011)
New Revision: 3ac477bd15c2e34c4630f14912c653cae86e237c
Log:
1.1.0 -> 1.1.1.
Modified files:
ext/groonga/rb-grn.h
Modified: ext/groonga/rb-grn.h (+1 -1)
===================================================================
--- ext/groonga/rb-grn.h 2011-02-08 07:51:35 +0000 (bcbfda1)
+++ ext/groonga/rb-grn.h 2011-02-08 09:12:43 +0000 (b22169b)
@@ -69,7 +69,7 @@ RB_GRN_BEGIN_DECLS
#define RB_GRN_MAJOR_VERSION 1
#define RB_GRN_MINOR_VERSION 1
-#define RB_GRN_MICRO_VERSION 0
+#define RB_GRN_MICRO_VERSION 1
#define RB_GRN_QUERY_DEFAULT_MAX_EXPRESSIONS 32
From null+ranguba at clear-code.com Tue Feb 8 04:32:17 2011
From: null+ranguba at clear-code.com (null+ranguba at clear-code.com)
Date: Tue, 08 Feb 2011 09:32:17 +0000
Subject: [groonga-commit:3133] ranguba/chupatext [master] add 0.9.0 entry.
Message-ID: <20110208093457.DD5D22C416A@taiyaki.ru>
Kouhei Sutou 2011-02-08 09:32:17 +0000 (Tue, 08 Feb 2011)
New Revision: ab89f49b655a9258e3b8fe55a333268b9a17141f
Log:
add 0.9.0 entry.
Modified files:
NEWS
NEWS.ja
Modified: NEWS (+6 -0)
===================================================================
--- NEWS 2010-12-28 06:22:20 +0000 (7c8c642)
+++ NEWS 2011-02-08 09:32:17 +0000 (b88804f)
@@ -2,6 +2,12 @@
= NEWS --- The history of ChupaText
+== [release-0-9-0] 0.9.0: 2011-02-09
+
+=== Improvements
+
+ * Supported HTML that has x-sjis charset.
+
== [release-0-8-0] 0.8.0: 2010-12-26
=== Improvements
Modified: NEWS.ja (+6 -0)
===================================================================
--- NEWS.ja 2010-12-28 06:22:20 +0000 (ecf550b)
+++ NEWS.ja 2011-02-08 09:32:17 +0000 (ef53f16)
@@ -2,6 +2,12 @@
= ???? --- ChupaText???
+== [release-0-9-0] 0.9.0: 2011-02-09
+
+=== ??
+
+ * charset?x-sjis??????HTML????
+
== [release-0-8-0] 0.8.0: 2010-12-26
=== ??
From null+ranguba at clear-code.com Tue Feb 8 04:37:19 2011
From: null+ranguba at clear-code.com (null+ranguba at clear-code.com)
Date: Tue, 08 Feb 2011 09:37:19 +0000
Subject: [groonga-commit:3134] ranguba/chupatext [master] add 0.9.0 entry.
Message-ID: <20110208093954.0B6062C416A@taiyaki.ru>
Kouhei Sutou 2011-02-08 09:37:19 +0000 (Tue, 08 Feb 2011)
New Revision: 4f18f6885fcc147c085d54c34dd2532cd5721d0a
Log:
add 0.9.0 entry.
Modified files:
debian/changelog
Modified: debian/changelog (+6 -0)
===================================================================
--- debian/changelog 2011-02-08 09:32:17 +0000 (a9b30ce)
+++ debian/changelog 2011-02-08 09:37:19 +0000 (d922714)
@@ -1,3 +1,9 @@
+chupatext (0.9.0-1) unstable; urgency=low
+
+ * New upstream release.
+
+ -- Kouhei Sutou
- 2010-12-26????????0.8.0??????
+ 2011-02-09????????0.9.0??????
- [??????]
- [???]
+ [??????]
+ [???]
ChupaText???????
ChupaText???????
From null+ranguba at clear-code.com Tue Feb 8 05:03:20 2011
From: null+ranguba at clear-code.com (null+ranguba at clear-code.com)
Date: Tue, 08 Feb 2011 10:03:20 +0000
Subject: [groonga-commit:3136] ranguba/chupatext [master] 0.9.0 -> 1.0.0.
Message-ID: <20110208100556.EA0762C416A@taiyaki.ru>
Kouhei Sutou 2011-02-08 10:03:20 +0000 (Tue, 08 Feb 2011)
New Revision: 443b38fcccc4592532930c67118ee8cf1eab93b6
Log:
0.9.0 -> 1.0.0.
Modified files:
configure.ac
Modified: configure.ac (+2 -2)
===================================================================
--- configure.ac 2011-02-08 09:37:19 +0000 (3a13a21)
+++ configure.ac 2011-02-08 10:03:20 +0000 (76b2e45)
@@ -1,7 +1,7 @@
AC_PREREQ(2.59)
-m4_define([chupa_version_major], [0])
-m4_define([chupa_version_minor], [9])
+m4_define([chupa_version_major], [1])
+m4_define([chupa_version_minor], [0])
m4_define([chupa_version_micro], [0])
m4_define([chupa_version_full],
[chupa_version_major.chupa_version_minor.chupa_version_micro])
From null+ranguba at clear-code.com Wed Feb 9 00:38:40 2011
From: null+ranguba at clear-code.com (null+ranguba at clear-code.com)
Date: Wed, 09 Feb 2011 05:38:40 +0000
Subject: [groonga-commit:3137] ranguba/chupatext [master] use GitHub logo.
Message-ID: <20110209054122.0DDD22C4010@taiyaki.ru>
Kouhei Sutou 2011-02-09 05:38:40 +0000 (Wed, 09 Feb 2011)
New Revision: 3f1d834ecde34edfdd55688e27d9772930665c78
Log:
use GitHub logo.
Modified files:
doc/reference/footer-ja.html
doc/reference/footer.html
Modified: doc/reference/footer-ja.html (+1 -1)
===================================================================
--- doc/reference/footer-ja.html 2011-02-08 10:03:20 +0000 (ea0b7e6)
+++ doc/reference/footer-ja.html 2011-02-09 05:38:40 +0000 (6c39987)
@@ -8,7 +8,7 @@
- ???????????GitHub?????????????????
+
Modified: doc/reference/footer.html (+1 -1) =================================================================== --- doc/reference/footer.html 2011-02-08 10:03:20 +0000 (cc8c923) +++ doc/reference/footer.html 2011-02-09 05:38:40 +0000 (b98e23e) @@ -8,7 +8,7 @@
- Ranguba project hosted on GitHub.
+
From null+ranguba at clear-code.com Wed Feb 23 23:43:55 2011
From: null+ranguba at clear-code.com (null+ranguba at clear-code.com)
Date: Thu, 24 Feb 2011 04:43:55 +0000
Subject: [groonga-commit:3138] ranguba/hroonga [master] add skelton.
Message-ID: <20110224044801.6F2B22C4293@taiyaki.ru>
Kouhei Sutou 2011-02-24 04:43:55 +0000 (Thu, 24 Feb 2011)
New Revision: 4076c75bc9163904b1b763503dc65422886c9a88
Log:
add skelton.
Added files:
.gitignore
Gemfile
config.ru
etc/hroonga.conf
lib/hroonga.rb
lib/hroonga/command/selector.rb
lib/hroonga/configuration.rb
Added: .gitignore (+3 -0) 100644
===================================================================
--- /dev/null
+++ .gitignore 2011-02-24 04:43:55 +0000 (9270aa0)
@@ -0,0 +1,3 @@
+/Gemfile.lock
+/log/*.log
+/tmp/pids/
Added: Gemfile (+26 -0) 100644
===================================================================
--- /dev/null
+++ Gemfile 2011-02-24 04:43:55 +0000 (5d39288)
@@ -0,0 +1,26 @@
+# -*- mode: ruby; coding: utf-8 -*-
+#
+# Copyright (C) 2011 Kouhei Sutou