Skip to content

Commit

Permalink
本家変更分をmerge
Browse files Browse the repository at this point in the history
  • Loading branch information
NEKOGET committed Oct 6, 2014
2 parents aab98ed + 9d20e4f commit b3549dd
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 5 deletions.
13 changes: 11 additions & 2 deletions classes/mongo/introduction.html
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ <h3 id="config">設定</h3>
<th>hostname</th>
<td>string</td>
<td>はい</td>
<td>ホスト名</td>
<td>the TCP hostname, OR a UNIX socket filepath</td>
</tr>
<tr>
<th>database</th>
Expand All @@ -88,7 +88,7 @@ <h3 id="config">設定</h3>
<th>port</th>
<td>number</td>
<td>いいえ</td>
<td>接続するポート番号</td>
<td>the port to use in the connection, OR <em>0</em> if the <strong>hostname</strong> is a UNIX socket</td>
</tr>
<tr>
<th>replicaset</th>
Expand Down Expand Up @@ -122,6 +122,7 @@ <h3 id="config">設定</h3>
'database' => 'mongo_fuel',
),


// 自分のグループを下にリストアップします。
'my_mongo_connection' => array(
'hostname' => 'localhost',
Expand All @@ -130,6 +131,14 @@ <h3 id="config">設定</h3>
'username' => 'user',
'password' => 'p@s$w0rD',
),

// An alternative group example using a UNIX socket connection, instead of the TCP localhost
'my_mongo_sock' => array(
'hostname' => '/tmp/mongodb-27017.sock',
'port' => 0,
'database' => 'mongo_fuel',
),

),
</code></pre>

Expand Down
7 changes: 4 additions & 3 deletions installation/download.html
Original file line number Diff line number Diff line change
Expand Up @@ -46,16 +46,17 @@ <h1>

<h2>Fuel をダウンロードする</h2>

<p>Fuel は現在 v1.7.1 です。以下のリンクから Fuel をダウンロードできます:</p>
<p>Fuel は現在 v1.7.2 です。以下のリンクから Fuel をダウンロードできます:</p>

<ul>
<li id="releases">現在のリリース
<li id="current">現在のリリース
<ul>
<li><a href="http://fuelphp.com/files/download/26">Download 1.7.1</a></li>
<li><a href="http://fuelphp.com/files/download/28">Download 1.7.2</a></li>
</ul>
</li>
<li id="releases">過去のリリース
<ul>
<li><a href="http://fuelphp.com/files/download/26">Download 1.7.1</a></li>
<li><a href="http://fuelphp.com/files/download/25">Download 1.7</a></li>
<li><a href="http://fuelphp.com/files/download/24">Download 1.6.1</a></li>
<li><a href="http://fuelphp.com/files/download/23">Download 1.6</a></li>
Expand Down

0 comments on commit b3549dd

Please sign in to comment.