Kouhei Sutou
null+****@clear*****
Tue Jan 27 15:34:30 JST 2015
Kouhei Sutou 2015-01-27 15:34:30 +0900 (Tue, 27 Jan 2015) New Revision: e5b881fffe10044fecaf8fc181a9c6d95707b5b8 https://github.com/groonga/groonga/commit/e5b881fffe10044fecaf8fc181a9c6d95707b5b8 Message: doc: suppress warnings for only translation has references Modified files: doc/locale/ja/LC_MESSAGES/news.po doc/source/news.rst doc/source/news/2.x.rst doc/source/news/3.x.rst Modified: doc/locale/ja/LC_MESSAGES/news.po (+17 -15) =================================================================== --- doc/locale/ja/LC_MESSAGES/news.po 2015-01-27 15:27:42 +0900 (54e8fd1) +++ doc/locale/ja/LC_MESSAGES/news.po 2015-01-27 15:34:30 +0900 (e020c1a) @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: 1.2.4\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2014-12-29 18:47+0900\n" +"PO-Revision-Date: 2015-01-27 15:34+0900\n" "Last-Translator: Kouhei Sutou <kou �� clear-code.com>\n" "Language-Team: Japanese\n" "Language: ja\n" @@ -337,8 +337,8 @@ msgstr "" msgid "" "[experimental] Supported multiple drilldowns for :doc:`/reference/commands/" -"select` command. The syntax is extended to support this feature. The new " -"one is ``--drilldown[LABEL1].keys COLUMN1,COLUMN2`` for keys, ``--" +"select` command. The syntax is extended to support this feature. The new one " +"is ``--drilldown[LABEL1].keys COLUMN1,COLUMN2`` for keys, ``--" "drilldown[LABEL1].output_columns _value.COLUMN1,_value.COLUMN2,_nsubrecs`` " "for output columns. In the previous versions, a client application must " "implement by oneself for drilldown by multiple keys. Use ``_key[N]`` for ``--" @@ -360,11 +360,11 @@ msgstr "" msgid "" "[experimental] Added :doc:`/reference/commands/range_filter` command. It is " -"faster than select command to fetch specific range of records in most cases, " -"because it doesn't returns the number of matched records. There are " -"limitations which doesn't support drilldown and so on. Thus, " -"``range_filter`` is suitable for extracting first ``N`` records in specific " -"range for ranking or something else." +"faster than :doc:`/reference/commands/select` command to fetch specific " +"range of records in most cases, because it doesn't returns the number of " +"matched records. There are limitations which doesn't support drilldown and " +"so on. Thus, ``range_filter`` is suitable for extracting first ``N`` " +"records in specific range for ranking or something else." msgstr "" "[実験的] :doc:`/reference/commands/range_filter` コマンドを追加しました。たい" "ていの場合、特定の範囲のレコードを取得するなら :doc:`/reference/commands/" @@ -422,9 +422,10 @@ msgstr "" "た。 [GitHub#240] [Kuriyamaさんがパッチ提供]" msgid "" -"Fixed a bug that select command reports invalid value type (table) as index " -"column value type. It was fixed to ``UInt32``. Note that it affects only the " -"value of response header. The search results is not changed at all." +"Fixed a bug that :doc:`/reference/commands/select` command reports invalid " +"value type (table) as index column value type. It was fixed to ``UInt32``. " +"Note that it affects only the value of response header. The search results " +"is not changed at all." msgstr "" ":doc:`/reference/commands/select` コマンドが 誤った値の型(table)をインデック" "スカラムの値の型として返す不具合を修正しました。 ``UInt32`` を返すように修正" @@ -3070,9 +3071,9 @@ msgstr "" msgid "" "Fixed a bug that ``--default-match-escalation-threshold`` doesn't accept " -"negative value to disable functionality. This fix enable you to disable " -"search escalation. see :option:`--default-match-escalation-threshold` about " -"details." +"negative value to disable functionality that is used on :doc:`/spec/" +"search`. This fix enable you to disable search escalation. see :option:`--" +"default-match-escalation-threshold` about details." msgstr "" "``--default-match-escalation-threshold`` が負数を受け付けないため、 :doc:`/" "spec/search` 時に行なわれる挙動の変更を無効化できない問題を修正しました。オプ" @@ -5045,7 +5046,8 @@ msgstr "" "Y``, ``X | Y``, ``X ^ Y``, ``X & Y`` や ``X >>> Y`` といった演算子をInt8, " "UInt8, Int16, UInt16 や UInt64に対してもサポートしました。" -msgid "Added english documentation for ``load`` command." +msgid "" +"Added English documentation for :doc:`/reference/commands/load` command." msgstr ":doc:`/reference/commands/load` コマンドのドキュメントを追加。" msgid "" Modified: doc/source/news.rst (+11 -9) =================================================================== --- doc/source/news.rst 2015-01-27 15:27:42 +0900 (4baf95b) +++ doc/source/news.rst 2015-01-27 15:34:30 +0900 (1f7881c) @@ -161,11 +161,13 @@ Improvements by multiple keys. Use ``_key[N]`` for ``--drilldown[LABEL1].output_columns`` to show original value of key in records. * Supported to search ``'reference_column @ "query"'`` without index. -* [experimental] Added :doc:`/reference/commands/range_filter` command. It is faster than select - command to fetch specific range of records in most cases, because it doesn't returns - the number of matched records. There are limitations which doesn't support drilldown and so on. - Thus, ``range_filter`` is suitable for extracting first ``N`` records in specific range for ranking - or something else. +* [experimental] Added :doc:`/reference/commands/range_filter` + command. It is faster than :doc:`/reference/commands/select` command + to fetch specific range of records in most cases, because it doesn't + returns the number of matched records. There are limitations which + doesn't support drilldown and so on. Thus, ``range_filter`` is + suitable for extracting first ``N`` records in specific range for + ranking or something else. * [httpd] Supported ``groonga-httpd`` on windows. * Supported vector column for drilldown. * [deb] Changed ``groonga-httpd`` as default HTTP server package. @@ -185,10 +187,10 @@ Fixes returns empty results. * Fixed flags parameter which is strict in BSD ``mkostemp(3)``. [GitHub#240] [Patch by Jun Kuriyama] -* Fixed a bug that select command reports invalid value type (table) - as index column value type. It was fixed to ``UInt32``. - Note that it affects only the value of response header. - The search results is not changed at all. +* Fixed a bug that :doc:`/reference/commands/select` command reports + invalid value type (table) as index column value type. It was fixed + to ``UInt32``. Note that it affects only the value of response + header. The search results is not changed at all. * Fixed a bug that compare operations such as ``<``, ``<=``, ``>``, ``>=``, ``!=`` with Time and String type returns invalid results. * Fixed a bug that prefix search can't be executed against single character such as Modified: doc/source/news/2.x.rst (+5 -4) =================================================================== --- doc/source/news/2.x.rst 2015-01-27 15:27:42 +0900 (54dc94a) +++ doc/source/news/2.x.rst 2015-01-27 15:34:30 +0900 (319f70d) @@ -115,10 +115,11 @@ Fixes * [windows] Added missing ``O_BINARY`` flag to open file correctly. This change fixes the infinite loop problem about groonga HTTP server. [GitHub#47] [Patch by Shimomura Tatsuya] -* Fixed a bug that ``--default-match-escalation-threshold`` doesn't accept - negative value to disable functionality. - This fix enable you to disable search escalation. - see :option:`--default-match-escalation-threshold` about details. +* Fixed a bug that ``--default-match-escalation-threshold`` doesn't + accept negative value to disable functionality that is used on + :doc:`/spec/search`. This fix enable you to disable search + escalation. see :option:`--default-match-escalation-threshold` + about details. * Fixed a bug that ``_score`` after "*" is ignored in ``--output_columns``. Thanks Modified: doc/source/news/3.x.rst (+1 -1) =================================================================== --- doc/source/news/3.x.rst 2015-01-27 15:27:42 +0900 (c7beba0) +++ doc/source/news/3.x.rst 2015-01-27 15:34:30 +0900 (8b187d1) @@ -437,7 +437,7 @@ Improvements * Supported binary operations such as ``X + Y``, ``X - Y``, ``X * Y``, ``X / Y``, ``X % Y``, ``X >> Y``, ``X << Y``, ``X | Y``, ``X ^ Y``, ``X & Y`` and ``X >>> Y`` for Int8, UInt8, Int16, UInt16 and UInt64. -* Added english documentation for ``load`` command. +* Added English documentation for :doc:`/reference/commands/load` command. * Supported binary assign operations such as ``X += Y``, ``X -= Y``, ``X *= Y``, ``X /= Y``, ``X %= Y``, ``X <<= Y``, ``X >>= Y``, ``X >>>= Y``, ``X &= Y``, ``X |= Y`` and ``X ^= Y`` for Int8, UInt8, Int16, UInt16 and UInt64. -------------- next part -------------- HTML����������������������������...Download