[Groonga-commit] droonga/droonga.org at a5baea5 [gh-pages] Reduce duplicated layouts

Back to archive index

Kouhei Sutou null+****@clear*****
Mon Dec 30 17:50:42 JST 2013


Kouhei Sutou	2013-12-30 17:50:42 +0900 (Mon, 30 Dec 2013)

  New Revision: a5baea5f5d8ca4a0c93086ecaa1a4c335b235705
  https://github.com/droonga/droonga.org/commit/a5baea5f5d8ca4a0c93086ecaa1a4c335b235705

  Message:
    Reduce duplicated layouts

  Removed files:
    _layouts/documents.html
    _layouts/documents_ja.html
    _layouts/page.html
  Modified files:
    _layouts/base.html
    _layouts/news.html
    _layouts/news_item.html
    _po/ja/community/contribution/development/engine/architecture/index.po
    _po/ja/community/contribution/development/index.po
    _po/ja/community/contribution/i18n/index.po
    _po/ja/community/contribution/index.po
    _po/ja/community/index.po
    _po/ja/index.po
    _po/ja/install/index.po
    _po/ja/overview/index.po
    _po/ja/reference/catalog/index.po
    _po/ja/reference/commands/add/index.po
    _po/ja/reference/commands/column-create/index.po
    _po/ja/reference/commands/index.po
    _po/ja/reference/commands/search/index.po
    _po/ja/reference/commands/select/index.po
    _po/ja/reference/commands/table-create/index.po
    _po/ja/reference/index.po
    _po/ja/reference/message/index.po
    _po/ja/related-projects/index.po
    _po/ja/roadmap/index.po
    _po/ja/tutorial/index.po
    community/contribution/development/engine/architecture/index.md
    community/contribution/development/index.md
    community/contribution/i18n/index.md
    community/contribution/index.md
    community/index.md
    index.md
    install/index.md
    ja/community/contribution/development/engine/architecture/index.md
    ja/community/contribution/development/index.md
    ja/community/contribution/i18n/index.md
    ja/community/contribution/index.md
    ja/community/index.md
    ja/index.md
    ja/install/index.md
    ja/news/index.md
    ja/overview/index.md
    ja/reference/catalog/index.md
    ja/reference/commands/add/index.md
    ja/reference/commands/column-create/index.md
    ja/reference/commands/index.md
    ja/reference/commands/search/index.md
    ja/reference/commands/select/index.md
    ja/reference/commands/table-create/index.md
    ja/reference/index.md
    ja/reference/message/index.md
    ja/related-projects/index.md
    ja/roadmap/index.md
    ja/tutorial/index.md
    news/index.md
    overview/index.md
    reference/catalog/index.md
    reference/commands/add/index.md
    reference/commands/column-create/index.md
    reference/commands/index.md
    reference/commands/search/index.md
    reference/commands/select/index.md
    reference/commands/table-create/index.md
    reference/index.md
    reference/message/index.md
    related-projects/index.md
    roadmap/index.md
    tutorial/index.md
  Renamed files:
    _layouts/en.html
      (from _layouts/default_ja.html)
    _layouts/ja.html
      (from _layouts/default.html)

  Modified: _layouts/base.html (+6 -0)
===================================================================
--- _layouts/base.html    2013-12-30 17:33:14 +0900 (8713c39)
+++ _layouts/base.html    2013-12-30 17:50:42 +0900 (75f7430)
@@ -1,3 +1,6 @@
+---
+show_title: true
+---
 <!DOCTYPE html>
 <html>
   <head>
@@ -42,6 +45,9 @@
     </nav>
 
     <div class="container">
+      {% if page.title and page.show_title == "true" %}
+      <h1>{{ page.title }}</h1>
+      {% endif %}
       {{ content }}
     </div>
 

  Deleted: _layouts/documents.html (+0 -5) 100644
===================================================================
--- _layouts/documents.html    2013-12-30 17:33:14 +0900 (73e505b)
+++ /dev/null
@@ -1,5 +0,0 @@
----
-layout: default
----
-{% if page.title %}<h1>{{ page.title }}</h1>{% endif %}
-{{ content }}

  Deleted: _layouts/documents_ja.html (+0 -5) 100644
===================================================================
--- _layouts/documents_ja.html    2013-12-30 17:33:14 +0900 (bcb8445)
+++ /dev/null
@@ -1,5 +0,0 @@
----
-layout: default_ja
----
-{% if page.title %}<h1>{{ page.title }}</h1>{% endif %}
-{{ content }}

  Renamed: _layouts/en.html (+1 -1) 79%
===================================================================
--- _layouts/default_ja.html    2013-12-30 17:33:14 +0900 (58311cf)
+++ _layouts/en.html    2013-12-30 17:50:42 +0900 (06162b3)
@@ -1,5 +1,5 @@
 ---
 layout: base
-lang: ja
+lang: en
 ---
 {{ content }}

  Renamed: _layouts/ja.html (+0 -0) 100%
===================================================================

  Modified: _layouts/news.html (+1 -2)
===================================================================
--- _layouts/news.html    2013-12-30 17:33:14 +0900 (5e25886)
+++ _layouts/news.html    2013-12-30 17:50:42 +0900 (7060d55)
@@ -1,7 +1,6 @@
 ---
-layout: default
+layout: en
 use_social_widgets: true
-language: en
 ---
 
 <section class="news">

  Modified: _layouts/news_item.html (+2 -1)
===================================================================
--- _layouts/news_item.html    2013-12-30 17:33:14 +0900 (af38a5f)
+++ _layouts/news_item.html    2013-12-30 17:50:42 +0900 (8020c7a)
@@ -1,10 +1,11 @@
 ---
 layout: news
+show_title: false
 ---
 
 <article>
   <div class="well">
-    <h2>{{ page.title }}</h2>
+    <h1>{{ page.title }}</h1>
     <i class="fa fa-calendar-o"></i>
     {{ page.date | date: '%Y-%m-%d' }}
   </div>

  Deleted: _layouts/page.html (+0 -5) 100644
===================================================================
--- _layouts/page.html    2013-12-30 17:33:14 +0900 (73e505b)
+++ /dev/null
@@ -1,5 +0,0 @@
----
-layout: default
----
-{% if page.title %}<h1>{{ page.title }}</h1>{% endif %}
-{{ content }}

  Modified: _po/ja/community/contribution/development/engine/architecture/index.po (+1 -1)
===================================================================
--- _po/ja/community/contribution/development/engine/architecture/index.po    2013-12-30 17:33:14 +0900 (742ff00)
+++ _po/ja/community/contribution/development/engine/architecture/index.po    2013-12-30 17:50:42 +0900 (11e256f)
@@ -20,7 +20,7 @@ msgstr ""
 msgid ""
 "---\n"
 "title: Architecture\n"
-"layout: documents\n"
+"layout: en\n"
 "---"
 msgstr ""
 

  Modified: _po/ja/community/contribution/development/index.po (+1 -1)
===================================================================
--- _po/ja/community/contribution/development/index.po    2013-12-30 17:33:14 +0900 (47c03f5)
+++ _po/ja/community/contribution/development/index.po    2013-12-30 17:50:42 +0900 (32562e4)
@@ -20,7 +20,7 @@ msgstr ""
 msgid ""
 "---\n"
 "title: Development\n"
-"layout: documents\n"
+"layout: en\n"
 "---"
 msgstr ""
 

  Modified: _po/ja/community/contribution/i18n/index.po (+1 -1)
===================================================================
--- _po/ja/community/contribution/i18n/index.po    2013-12-30 17:33:14 +0900 (5a758db)
+++ _po/ja/community/contribution/i18n/index.po    2013-12-30 17:50:42 +0900 (1bd6234)
@@ -20,7 +20,7 @@ msgstr ""
 msgid ""
 "---\n"
 "title: Internationalization\n"
-"layout: documents\n"
+"layout: en\n"
 "---"
 msgstr ""
 

  Modified: _po/ja/community/contribution/index.po (+1 -1)
===================================================================
--- _po/ja/community/contribution/index.po    2013-12-30 17:33:14 +0900 (4b6bc52)
+++ _po/ja/community/contribution/index.po    2013-12-30 17:50:42 +0900 (b5f4e25)
@@ -20,7 +20,7 @@ msgstr ""
 msgid ""
 "---\n"
 "title: Contribution\n"
-"layout: documents\n"
+"layout: en\n"
 "---"
 msgstr ""
 

  Modified: _po/ja/community/index.po (+2 -2)
===================================================================
--- _po/ja/community/index.po    2013-12-30 17:33:14 +0900 (9281aad)
+++ _po/ja/community/index.po    2013-12-30 17:50:42 +0900 (124fe27)
@@ -20,12 +20,12 @@ msgstr ""
 msgid ""
 "---\n"
 "title: Community\n"
-"layout: documents\n"
+"layout: en\n"
 "---"
 msgstr ""
 "---\n"
 "title: コミュニティー\n"
-"layout: documents_ja\n"
+"layout: ja\n"
 "---"
 
 msgid ""

  Modified: _po/ja/index.po (+2 -2)
===================================================================
--- _po/ja/index.po    2013-12-30 17:33:14 +0900 (6e23e31)
+++ _po/ja/index.po    2013-12-30 17:50:42 +0900 (f9be3ce)
@@ -19,11 +19,11 @@ msgstr ""
 
 msgid ""
 "---\n"
-"layout: default\n"
+"layout: en\n"
 "---"
 msgstr ""
 "---\n"
-"layout: default_ja\n"
+"layout: ja\n"
 "---"
 
 msgid ""

  Modified: _po/ja/install/index.po (+1 -1)
===================================================================
--- _po/ja/install/index.po    2013-12-30 17:33:14 +0900 (286547d)
+++ _po/ja/install/index.po    2013-12-30 17:50:42 +0900 (a3fbe7f)
@@ -20,7 +20,7 @@ msgstr ""
 msgid ""
 "---\n"
 "title: Install\n"
-"layout: documents\n"
+"layout: en\n"
 "---"
 msgstr ""
 

  Modified: _po/ja/overview/index.po (+1 -1)
===================================================================
--- _po/ja/overview/index.po    2013-12-30 17:33:14 +0900 (16b4ac3)
+++ _po/ja/overview/index.po    2013-12-30 17:50:42 +0900 (4c48a86)
@@ -20,7 +20,7 @@ msgstr ""
 msgid ""
 "---\n"
 "title: Overview\n"
-"layout: documents\n"
+"layout: en\n"
 "---"
 msgstr ""
 

  Modified: _po/ja/reference/catalog/index.po (+1 -1)
===================================================================
--- _po/ja/reference/catalog/index.po    2013-12-30 17:33:14 +0900 (5e664a6)
+++ _po/ja/reference/catalog/index.po    2013-12-30 17:50:42 +0900 (4c8c9e7)
@@ -20,7 +20,7 @@ msgstr ""
 msgid ""
 "---\n"
 "title: Catalog\n"
-"layout: documents\n"
+"layout: en\n"
 "---"
 msgstr ""
 

  Modified: _po/ja/reference/commands/add/index.po (+2 -2)
===================================================================
--- _po/ja/reference/commands/add/index.po    2013-12-30 17:33:14 +0900 (8a9af19)
+++ _po/ja/reference/commands/add/index.po    2013-12-30 17:50:42 +0900 (11daab8)
@@ -20,12 +20,12 @@ msgstr ""
 msgid ""
 "---\n"
 "title: add\n"
-"layout: documents\n"
+"layout: en\n"
 "---"
 msgstr ""
 "---\n"
 "title: add\n"
-"layout: documents_ja\n"
+"layout: ja\n"
 "---"
 
 msgid ""

  Modified: _po/ja/reference/commands/column-create/index.po (+2 -2)
===================================================================
--- _po/ja/reference/commands/column-create/index.po    2013-12-30 17:33:14 +0900 (744e35a)
+++ _po/ja/reference/commands/column-create/index.po    2013-12-30 17:50:42 +0900 (9cadb80)
@@ -20,12 +20,12 @@ msgstr ""
 msgid ""
 "---\n"
 "title: column_create\n"
-"layout: documents\n"
+"layout: en\n"
 "---"
 msgstr ""
 "---\n"
 "title: column_create\n"
-"layout: documents_ja\n"
+"layout: ja\n"
 "---"
 
 msgid ""

  Modified: _po/ja/reference/commands/index.po (+2 -2)
===================================================================
--- _po/ja/reference/commands/index.po    2013-12-30 17:33:14 +0900 (cf4f405)
+++ _po/ja/reference/commands/index.po    2013-12-30 17:50:42 +0900 (a88919f)
@@ -20,12 +20,12 @@ msgstr ""
 msgid ""
 "---\n"
 "title: Commands\n"
-"layout: documents\n"
+"layout: en\n"
 "---"
 msgstr ""
 "---\n"
 "title: コマンドリファレンス\n"
-"layout: documents_ja\n"
+"layout: ja\n"
 "---"
 
 msgid "Here are available commands"

  Modified: _po/ja/reference/commands/search/index.po (+2 -2)
===================================================================
--- _po/ja/reference/commands/search/index.po    2013-12-30 17:33:14 +0900 (f44fed4)
+++ _po/ja/reference/commands/search/index.po    2013-12-30 17:50:42 +0900 (2f49221)
@@ -20,12 +20,12 @@ msgstr ""
 msgid ""
 "---\n"
 "title: search\n"
-"layout: documents\n"
+"layout: en\n"
 "---"
 msgstr ""
 "---\n"
 "title: search\n"
-"layout: documents_ja\n"
+"layout: ja\n"
 "---"
 
 msgid ""

  Modified: _po/ja/reference/commands/select/index.po (+2 -2)
===================================================================
--- _po/ja/reference/commands/select/index.po    2013-12-30 17:33:14 +0900 (0c6a921)
+++ _po/ja/reference/commands/select/index.po    2013-12-30 17:50:42 +0900 (d324ef4)
@@ -20,12 +20,12 @@ msgstr ""
 msgid ""
 "---\n"
 "title: select\n"
-"layout: documents\n"
+"layout: en\n"
 "---"
 msgstr ""
 "---\n"
 "title: select\n"
-"layout: documents_ja\n"
+"layout: ja\n"
 "---"
 
 msgid ""

  Modified: _po/ja/reference/commands/table-create/index.po (+2 -2)
===================================================================
--- _po/ja/reference/commands/table-create/index.po    2013-12-30 17:33:14 +0900 (460cdcf)
+++ _po/ja/reference/commands/table-create/index.po    2013-12-30 17:50:42 +0900 (80ae57f)
@@ -20,12 +20,12 @@ msgstr ""
 msgid ""
 "---\n"
 "title: table_create\n"
-"layout: documents\n"
+"layout: en\n"
 "---"
 msgstr ""
 "---\n"
 "title: table_create\n"
-"layout: documents_ja\n"
+"layout: ja\n"
 "---"
 
 msgid ""

  Modified: _po/ja/reference/index.po (+2 -2)
===================================================================
--- _po/ja/reference/index.po    2013-12-30 17:33:14 +0900 (4545c45)
+++ _po/ja/reference/index.po    2013-12-30 17:50:42 +0900 (ff99811)
@@ -20,12 +20,12 @@ msgstr ""
 msgid ""
 "---\n"
 "title: Reference manuals\n"
-"layout: documents\n"
+"layout: en\n"
 "---"
 msgstr ""
 "---\n"
 "title: リファレンス\n"
-"layout: documents_ja\n"
+"layout: ja\n"
 "---"
 
 msgid ""

  Modified: _po/ja/reference/message/index.po (+2 -2)
===================================================================
--- _po/ja/reference/message/index.po    2013-12-30 17:33:14 +0900 (0f1c9a8)
+++ _po/ja/reference/message/index.po    2013-12-30 17:50:42 +0900 (77a6780)
@@ -20,12 +20,12 @@ msgstr ""
 msgid ""
 "---\n"
 "title: Message format\n"
-"layout: documents\n"
+"layout: en\n"
 "---"
 msgstr ""
 "---\n"
 "title: メッセージ形式\n"
-"layout: documents_ja\n"
+"layout: ja\n"
 "---"
 
 msgid ""

  Modified: _po/ja/related-projects/index.po (+1 -1)
===================================================================
--- _po/ja/related-projects/index.po    2013-12-30 17:33:14 +0900 (6fbd1da)
+++ _po/ja/related-projects/index.po    2013-12-30 17:50:42 +0900 (bcc9dd4)
@@ -20,7 +20,7 @@ msgstr ""
 msgid ""
 "---\n"
 "title: Related projects\n"
-"layout: documents\n"
+"layout: en\n"
 "---"
 msgstr ""
 

  Modified: _po/ja/roadmap/index.po (+1 -1)
===================================================================
--- _po/ja/roadmap/index.po    2013-12-30 17:33:14 +0900 (4b87578)
+++ _po/ja/roadmap/index.po    2013-12-30 17:50:42 +0900 (f534002)
@@ -20,7 +20,7 @@ msgstr ""
 msgid ""
 "---\n"
 "title: Roadmap\n"
-"layout: documents\n"
+"layout: en\n"
 "---"
 msgstr ""
 

  Modified: _po/ja/tutorial/index.po (+2 -2)
===================================================================
--- _po/ja/tutorial/index.po    2013-12-30 17:33:14 +0900 (2950435)
+++ _po/ja/tutorial/index.po    2013-12-30 17:50:42 +0900 (705089a)
@@ -20,12 +20,12 @@ msgstr ""
 msgid ""
 "---\n"
 "title: Droonga tutorial\n"
-"layout: documents\n"
+"layout: en\n"
 "---"
 msgstr ""
 "---\n"
 "title: Droonga チュートリアル\n"
-"layout: documents_ja\n"
+"layout: ja\n"
 "---"
 
 msgid ""

  Modified: community/contribution/development/engine/architecture/index.md (+1 -1)
===================================================================
--- community/contribution/development/engine/architecture/index.md    2013-12-30 17:33:14 +0900 (67981c9)
+++ community/contribution/development/engine/architecture/index.md    2013-12-30 17:50:42 +0900 (abb6d0d)
@@ -1,6 +1,6 @@
 ---
 title: Architecture
-layout: documents
+layout: en
 ---
 
 TODO: write me.

  Modified: community/contribution/development/index.md (+1 -1)
===================================================================
--- community/contribution/development/index.md    2013-12-30 17:33:14 +0900 (c026a55)
+++ community/contribution/development/index.md    2013-12-30 17:50:42 +0900 (e4bfe5f)
@@ -1,6 +1,6 @@
 ---
 title: Development
-layout: documents
+layout: en
 ---
 
 This documentation shows useful documentations for developing Droonga

  Modified: community/contribution/i18n/index.md (+1 -1)
===================================================================
--- community/contribution/i18n/index.md    2013-12-30 17:33:14 +0900 (fa42ba5)
+++ community/contribution/i18n/index.md    2013-12-30 17:50:42 +0900 (4b96884)
@@ -1,6 +1,6 @@
 ---
 title: Internationalization
-layout: documents
+layout: en
 ---
 
 This documentation describes how to translate the original documentations in English to other languages.

  Modified: community/contribution/index.md (+1 -1)
===================================================================
--- community/contribution/index.md    2013-12-30 17:33:14 +0900 (08da3f5)
+++ community/contribution/index.md    2013-12-30 17:50:42 +0900 (741e0dd)
@@ -1,6 +1,6 @@
 ---
 title: Contribution
-layout: documents
+layout: en
 ---
 
 Droonga project welcomes to your contributions!

  Modified: community/index.md (+1 -1)
===================================================================
--- community/index.md    2013-12-30 17:33:14 +0900 (aef4171)
+++ community/index.md    2013-12-30 17:50:42 +0900 (083d005)
@@ -1,6 +1,6 @@
 ---
 title: Community
-layout: documents
+layout: en
 ---
 
 This documentation describes how to communicate with the Droonga developers and other users.

  Modified: index.md (+1 -1)
===================================================================
--- index.md    2013-12-30 17:33:14 +0900 (db89704)
+++ index.md    2013-12-30 17:50:42 +0900 (8fcf15b)
@@ -1,5 +1,5 @@
 ---
-layout: default
+layout: en
 ---
 
 <div class="jumbotron">

  Modified: install/index.md (+1 -1)
===================================================================
--- install/index.md    2013-12-30 17:33:14 +0900 (160ddc2)
+++ install/index.md    2013-12-30 17:50:42 +0900 (eaab889)
@@ -1,6 +1,6 @@
 ---
 title: Install
-layout: documents
+layout: en
 ---
 
 # Overview

  Modified: ja/community/contribution/development/engine/architecture/index.md (+1 -1)
===================================================================
--- ja/community/contribution/development/engine/architecture/index.md    2013-12-30 17:33:14 +0900 (67981c9)
+++ ja/community/contribution/development/engine/architecture/index.md    2013-12-30 17:50:42 +0900 (abb6d0d)
@@ -1,6 +1,6 @@
 ---
 title: Architecture
-layout: documents
+layout: en
 ---
 
 TODO: write me.

  Modified: ja/community/contribution/development/index.md (+1 -1)
===================================================================
--- ja/community/contribution/development/index.md    2013-12-30 17:33:14 +0900 (c026a55)
+++ ja/community/contribution/development/index.md    2013-12-30 17:50:42 +0900 (e4bfe5f)
@@ -1,6 +1,6 @@
 ---
 title: Development
-layout: documents
+layout: en
 ---
 
 This documentation shows useful documentations for developing Droonga

  Modified: ja/community/contribution/i18n/index.md (+1 -1)
===================================================================
--- ja/community/contribution/i18n/index.md    2013-12-30 17:33:14 +0900 (fa42ba5)
+++ ja/community/contribution/i18n/index.md    2013-12-30 17:50:42 +0900 (4b96884)
@@ -1,6 +1,6 @@
 ---
 title: Internationalization
-layout: documents
+layout: en
 ---
 
 This documentation describes how to translate the original documentations in English to other languages.

  Modified: ja/community/contribution/index.md (+1 -1)
===================================================================
--- ja/community/contribution/index.md    2013-12-30 17:33:14 +0900 (b4ed96a)
+++ ja/community/contribution/index.md    2013-12-30 17:50:42 +0900 (e7d2bb7)
@@ -1,6 +1,6 @@
 ---
 title: Contribution
-layout: documents
+layout: en
 ---
 
 Droongaプロジェクトはあなたのコントリビュートを待っています!

  Modified: ja/community/index.md (+1 -1)
===================================================================
--- ja/community/index.md    2013-12-30 17:33:14 +0900 (db30653)
+++ ja/community/index.md    2013-12-30 17:50:42 +0900 (aa05cea)
@@ -1,6 +1,6 @@
 ---
 title: コミュニティー
-layout: documents_ja
+layout: ja
 ---
 
 このドキュメントはDroonga開発者や他のユーザーとやりとりする方法について説明します。

  Modified: ja/index.md (+1 -1)
===================================================================
--- ja/index.md    2013-12-30 17:33:14 +0900 (755d7f2)
+++ ja/index.md    2013-12-30 17:50:42 +0900 (7ef53b5)
@@ -1,5 +1,5 @@
 ---
-layout: default_ja
+layout: ja
 ---
 
 <div class="jumbotron">

  Modified: ja/install/index.md (+1 -1)
===================================================================
--- ja/install/index.md    2013-12-30 17:33:14 +0900 (e72c1a6)
+++ ja/install/index.md    2013-12-30 17:50:42 +0900 (472ffee)
@@ -1,6 +1,6 @@
 ---
 title: インストール手順
-layout: documents_ja
+layout: ja
 ---
 
 # 概要

  Modified: ja/news/index.md (+1 -1)
===================================================================
--- ja/news/index.md    2013-12-30 17:33:14 +0900 (68cd0a7)
+++ ja/news/index.md    2013-12-30 17:50:42 +0900 (cc62ea6)
@@ -1,6 +1,6 @@
 ---
 title: 最新情報
-layout: documents_ja
+layout: ja
 ---
 
 日本語版はまだありません。[英語版](/news/)を参照して下さい。

  Modified: ja/overview/index.md (+1 -1)
===================================================================
--- ja/overview/index.md    2013-12-30 17:33:14 +0900 (9a19e55)
+++ ja/overview/index.md    2013-12-30 17:50:42 +0900 (4c92ec8)
@@ -1,6 +1,6 @@
 ---
 title: Droonga 概要
-layout: documents_ja
+layout: ja
 ---
 
 * TOC

  Modified: ja/reference/catalog/index.md (+1 -1)
===================================================================
--- ja/reference/catalog/index.md    2013-12-30 17:33:14 +0900 (ebc1074)
+++ ja/reference/catalog/index.md    2013-12-30 17:50:42 +0900 (fa11c1b)
@@ -1,6 +1,6 @@
 ---
 title: catalog.json
-layout: documents_ja
+layout: ja
 ---
 
 日本語版はまだありません。[英語版](/reference/catalog/)を参照して下さい。

  Modified: ja/reference/commands/add/index.md (+1 -1)
===================================================================
--- ja/reference/commands/add/index.md    2013-12-30 17:33:14 +0900 (ccfcf1a)
+++ ja/reference/commands/add/index.md    2013-12-30 17:50:42 +0900 (598be56)
@@ -1,6 +1,6 @@
 ---
 title: add
-layout: documents_ja
+layout: ja
 ---
 
 * TOC

  Modified: ja/reference/commands/column-create/index.md (+1 -1)
===================================================================
--- ja/reference/commands/column-create/index.md    2013-12-30 17:33:14 +0900 (3fd2d6e)
+++ ja/reference/commands/column-create/index.md    2013-12-30 17:50:42 +0900 (61da9d5)
@@ -1,6 +1,6 @@
 ---
 title: column_create
-layout: documents_ja
+layout: ja
 ---
 
 * TOC

  Modified: ja/reference/commands/index.md (+1 -1)
===================================================================
--- ja/reference/commands/index.md    2013-12-30 17:33:14 +0900 (06f083c)
+++ ja/reference/commands/index.md    2013-12-30 17:50:42 +0900 (aecbbab)
@@ -1,6 +1,6 @@
 ---
 title: コマンドリファレンス
-layout: documents_ja
+layout: ja
 ---
 
 以下のコマンドを利用できます。

  Modified: ja/reference/commands/search/index.md (+1 -1)
===================================================================
--- ja/reference/commands/search/index.md    2013-12-30 17:33:14 +0900 (f5b7886)
+++ ja/reference/commands/search/index.md    2013-12-30 17:50:42 +0900 (d503550)
@@ -1,6 +1,6 @@
 ---
 title: search
-layout: documents_ja
+layout: ja
 ---
 
 * TOC

  Modified: ja/reference/commands/select/index.md (+1 -1)
===================================================================
--- ja/reference/commands/select/index.md    2013-12-30 17:33:14 +0900 (0180213)
+++ ja/reference/commands/select/index.md    2013-12-30 17:50:42 +0900 (fac2a45)
@@ -1,6 +1,6 @@
 ---
 title: select
-layout: documents_ja
+layout: ja
 ---
 
 * TOC

  Modified: ja/reference/commands/table-create/index.md (+1 -1)
===================================================================
--- ja/reference/commands/table-create/index.md    2013-12-30 17:33:14 +0900 (c9e87bf)
+++ ja/reference/commands/table-create/index.md    2013-12-30 17:50:42 +0900 (630a9ae)
@@ -1,6 +1,6 @@
 ---
 title: table_create
-layout: documents_ja
+layout: ja
 ---
 
 * TOC

  Modified: ja/reference/index.md (+1 -1)
===================================================================
--- ja/reference/index.md    2013-12-30 17:33:14 +0900 (3b1f66d)
+++ ja/reference/index.md    2013-12-30 17:50:42 +0900 (374ee8f)
@@ -1,6 +1,6 @@
 ---
 title: リファレンス
-layout: documents_ja
+layout: ja
 ---
 
  * [カタログの仕様](catalog/)

  Modified: ja/reference/message/index.md (+1 -1)
===================================================================
--- ja/reference/message/index.md    2013-12-30 17:33:14 +0900 (95866f1)
+++ ja/reference/message/index.md    2013-12-30 17:50:42 +0900 (c0f312f)
@@ -1,6 +1,6 @@
 ---
 title: メッセージ形式
-layout: documents_ja
+layout: ja
 ---
 
 * TOC

  Modified: ja/related-projects/index.md (+1 -1)
===================================================================
--- ja/related-projects/index.md    2013-12-30 17:33:14 +0900 (952aa86)
+++ ja/related-projects/index.md    2013-12-30 17:50:42 +0900 (f82b11a)
@@ -1,6 +1,6 @@
 ---
 title: 関連プロジェクト
-layout: documents_ja
+layout: ja
 ---
 
 日本語版はまだありません。[英語版](/related-projects/)を参照して下さい。

  Modified: ja/roadmap/index.md (+1 -1)
===================================================================
--- ja/roadmap/index.md    2013-12-30 17:33:14 +0900 (f827056)
+++ ja/roadmap/index.md    2013-12-30 17:50:42 +0900 (f880a49)
@@ -1,6 +1,6 @@
 ---
 title: Droonga ロードマップ
-layout: documents_ja
+layout: ja
 ---
 
 * TOC

  Modified: ja/tutorial/index.md (+1 -1)
===================================================================
--- ja/tutorial/index.md    2013-12-30 17:33:14 +0900 (8d1ec56)
+++ ja/tutorial/index.md    2013-12-30 17:50:42 +0900 (be8d4e9)
@@ -1,6 +1,6 @@
 ---
 title: Droonga チュートリアル
-layout: documents_ja
+layout: ja
 ---
 
 * TOC

  Modified: news/index.md (+1 -1)
===================================================================
--- news/index.md    2013-12-30 17:33:14 +0900 (28ee720)
+++ news/index.md    2013-12-30 17:50:42 +0900 (c879700)
@@ -1,6 +1,6 @@
 ---
 title: News
-layout: default
+layout: en
 use_social_widgets: true
 ---
 

  Modified: overview/index.md (+1 -1)
===================================================================
--- overview/index.md    2013-12-30 17:33:14 +0900 (1c74a22)
+++ overview/index.md    2013-12-30 17:50:42 +0900 (c951967)
@@ -1,6 +1,6 @@
 ---
 title: Overview
-layout: documents
+layout: en
 ---
 
 Not yet available in English. See [Japanese version](/ja/overview/) for now.

  Modified: reference/catalog/index.md (+1 -1)
===================================================================
--- reference/catalog/index.md    2013-12-30 17:33:14 +0900 (55c0767)
+++ reference/catalog/index.md    2013-12-30 17:50:42 +0900 (03bf659)
@@ -1,6 +1,6 @@
 ---
 title: Catalog
-layout: documents
+layout: en
 ---
 
 A Droonga network consists of several resources. You need to describe

  Modified: reference/commands/add/index.md (+1 -1)
===================================================================
--- reference/commands/add/index.md    2013-12-30 17:33:14 +0900 (d0ac1c4)
+++ reference/commands/add/index.md    2013-12-30 17:50:42 +0900 (92b32a1)
@@ -1,6 +1,6 @@
 ---
 title: add
-layout: documents
+layout: en
 ---
 
 * TOC

  Modified: reference/commands/column-create/index.md (+1 -1)
===================================================================
--- reference/commands/column-create/index.md    2013-12-30 17:33:14 +0900 (420c617)
+++ reference/commands/column-create/index.md    2013-12-30 17:50:42 +0900 (471424c)
@@ -1,6 +1,6 @@
 ---
 title: column_create
-layout: documents
+layout: en
 ---
 
 * TOC

  Modified: reference/commands/index.md (+1 -1)
===================================================================
--- reference/commands/index.md    2013-12-30 17:33:14 +0900 (9db7cf1)
+++ reference/commands/index.md    2013-12-30 17:50:42 +0900 (313b3f8)
@@ -1,6 +1,6 @@
 ---
 title: Commands
-layout: documents
+layout: en
 ---
 
 Here are available commands

  Modified: reference/commands/search/index.md (+1 -1)
===================================================================
--- reference/commands/search/index.md    2013-12-30 17:33:14 +0900 (5aea8da)
+++ reference/commands/search/index.md    2013-12-30 17:50:42 +0900 (cd93924)
@@ -1,6 +1,6 @@
 ---
 title: search
-layout: documents
+layout: en
 ---
 
 * TOC

  Modified: reference/commands/select/index.md (+1 -1)
===================================================================
--- reference/commands/select/index.md    2013-12-30 17:33:14 +0900 (02334bf)
+++ reference/commands/select/index.md    2013-12-30 17:50:42 +0900 (3494341)
@@ -1,6 +1,6 @@
 ---
 title: select
-layout: documents
+layout: en
 ---
 
 * TOC

  Modified: reference/commands/table-create/index.md (+1 -1)
===================================================================
--- reference/commands/table-create/index.md    2013-12-30 17:33:14 +0900 (645e59a)
+++ reference/commands/table-create/index.md    2013-12-30 17:50:42 +0900 (07a74cc)
@@ -1,6 +1,6 @@
 ---
 title: table_create
-layout: documents
+layout: en
 ---
 
 * TOC

  Modified: reference/index.md (+1 -1)
===================================================================
--- reference/index.md    2013-12-30 17:33:14 +0900 (d6cf3c0)
+++ reference/index.md    2013-12-30 17:50:42 +0900 (e4b1aa5)
@@ -1,6 +1,6 @@
 ---
 title: Reference manuals
-layout: documents
+layout: en
 ---
 
  * [Catalog](catalog/)

  Modified: reference/message/index.md (+1 -1)
===================================================================
--- reference/message/index.md    2013-12-30 17:33:14 +0900 (ce35d59)
+++ reference/message/index.md    2013-12-30 17:50:42 +0900 (af332c4)
@@ -1,6 +1,6 @@
 ---
 title: Message format
-layout: documents
+layout: en
 ---
 
 * TOC

  Modified: related-projects/index.md (+1 -1)
===================================================================
--- related-projects/index.md    2013-12-30 17:33:14 +0900 (438d166)
+++ related-projects/index.md    2013-12-30 17:50:42 +0900 (21bf112)
@@ -1,6 +1,6 @@
 ---
 title: Related projects
-layout: documents
+layout: en
 ---
 
 This section introduces Droonga related projects by category.

  Modified: roadmap/index.md (+1 -1)
===================================================================
--- roadmap/index.md    2013-12-30 17:33:14 +0900 (e8e5f4d)
+++ roadmap/index.md    2013-12-30 17:50:42 +0900 (b668c8d)
@@ -1,6 +1,6 @@
 ---
 title: Roadmap
-layout: documents
+layout: en
 ---
 
 * TOC

  Modified: tutorial/index.md (+1 -1)
===================================================================
--- tutorial/index.md    2013-12-30 17:33:14 +0900 (a8cedd3)
+++ tutorial/index.md    2013-12-30 17:50:42 +0900 (0c94c92)
@@ -1,6 +1,6 @@
 ---
 title: Droonga tutorial
-layout: documents
+layout: en
 ---
 
 * TOC
-------------- next part --------------
HTML����������������������������...
Download 



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