<?xml version="1.0" encoding="utf-8" ?>
<rdf:RDF
  xmlns="http://purl.org/rss/1.0/"
  xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  xmlns:content="http://purl.org/rss/1.0/modules/content/"
  xmlns:dc="http://purl.org/dc/elements/1.1/"
 >

  <channel rdf:about="http://sourceforge.jp/projects/gikonavi/wiki/!feeds/diff">
    <title>Updates of ギコナビ Wiki</title>
    <link>http://sourceforge.jp/projects/gikonavi/wiki/!feeds/diff</link>
    <description>
      SourceForge.jp Wiki page updates for ギコナビ project.    </description>
        <dc:date>2012-01-07T07:43:47+09:00</dc:date>
        <items>
      <rdf:Seq>
                <rdf:li rdf:resource="http://sourceforge.jp/projects/gikonavi/wiki/Tips" />
                <rdf:li rdf:resource="http://sourceforge.jp/projects/gikonavi/wiki/Tips" />
                <rdf:li rdf:resource="http://sourceforge.jp/projects/gikonavi/wiki/log" />
                <rdf:li rdf:resource="http://sourceforge.jp/projects/gikonavi/wiki/log" />
                <rdf:li rdf:resource="http://sourceforge.jp/projects/gikonavi/wiki/log" />
                <rdf:li rdf:resource="http://sourceforge.jp/projects/gikonavi/wiki/FAQ2" />
                <rdf:li rdf:resource="http://sourceforge.jp/projects/gikonavi/wiki/FAQ" />
                <rdf:li rdf:resource="http://sourceforge.jp/projects/gikonavi/wiki/log" />
                <rdf:li rdf:resource="http://sourceforge.jp/projects/gikonavi/wiki/Tips%2FSamba24" />
                <rdf:li rdf:resource="http://sourceforge.jp/projects/gikonavi/wiki/log" />
              </rdf:Seq>
    </items>
  </channel>

    <item rdf:about="http://sourceforge.jp/projects/gikonavi/wiki/Tips">
    <title>Tips</title>
    <link>http://sourceforge.jp/projects/gikonavi/wiki/Tips</link>
    <dc:identifier>Tips</dc:identifier>
    <dc:date>2012-01-07T07:43:47+09:00</dc:date>
          <description>
      <![CDATA[Tips17に補足 (by concertogrosso)
]]>
    </description>
    <content:encoded>
      <![CDATA[<p>Tips17に補足 (by concertogrosso)</p><pre>@@ -177,5 +177,8 @@
 ┗Google_for_gikoNavi.reg[[BR]]
 こういう配置の状態で、Google_for_gikoNavi.regを登録して、ギコナビ再起動。[[BR]]
 再起動後に、文字列を選択して右クリックをすると Googleで検索 という項目が出る。[[BR]]
 クリックすると既定のブラウザで開く。[[BR]]
-→[[LinkAttach(Google_for_gikoNavi.zip, caption=Google_for_gikoNavi.html+Google_for_gikoNavi.reg(zip圧縮))]]
+ * ギコナビのインストール先がC:\gikoNaviでなくても、C:\gikoNaviというフォルダを作ってGoogle_for_gikoNavi.htmlを置けば使えます。Google_for_gikoNavi.htmlを違う場所に置きたい場合はレジストリに登録するパスを変更してください。
+
+→[[LinkAttach(Google_for_gikoNavi.zip, caption=Google_for_gikoNavi.html+Google_for_gikoNavi.reg(zip圧縮))]][[BR]]
+ * Google_for_gikoNavi.regを編集する場合はUnicodeに対応したエディタを使ってください(Windows付属のメモ帳で可)
</pre>]]>
    </content:encoded>
      </item>
    <item rdf:about="http://sourceforge.jp/projects/gikonavi/wiki/Tips">
    <title>Tips</title>
    <link>http://sourceforge.jp/projects/gikonavi/wiki/Tips</link>
    <dc:identifier>Tips</dc:identifier>
    <dc:date>2012-01-07T02:30:25+09:00</dc:date>
          <description>
      <![CDATA[Tips17追加 (by concertogrosso)
]]>
    </description>
    <content:encoded>
      <![CDATA[<p>Tips17追加 (by concertogrosso)</p><pre>@@ -113,4 +113,69 @@
 
  * p2(rep2)はPHPで書かれた専用ブラウザで、Webサーバ上に設置して動作させます。インターネット接続環境とWebブラウザ機能を持つPC・PDA・携帯などがあれば、いつどこでも同じ環境(ログ、お気に入り、履歴など)を維持して2chを利用できます。
  * 公式p2は２ちゃんねる検索などを運営する(有)未来検索ブラジルのサーバに設置され、[http://find.2ch.net/moritapo/page.php?pn=use01 モリタポ]アカウントがあれば誰でも無料で利用できます。書き込みには別途モリタポが必要となりますが、プロバイダ規制などに巻き込まれた場合でも公式p2からは投稿できることがあります。
  * ２ちゃんねる検索にログインして「dat:」オプションを使うことでも50モリタポ消費して過去ログを見ることができますが、こちらは公式p2とはまったく別のサービスで、datファイルをダウンロードすることもできません。
+
+==== レス内の文字列を選択してGoogleで検索したい ==== #Tips_0017
+元ネタ[[BR]]
+http://hibari.2ch.net/test/read.cgi/software/1298969879/811-813[[BR]]
+改造版[[BR]]
+http://anago.2ch.net/test/read.cgi/software/1314447596/280-282[[BR]]
+
+文字列選択時に右クリックで出るメニューに項目を追加。[[BR]]
+（IEコンポーネント使用しているものには全て追加される。）[[BR]]
+
+■Google_for_gikoNavi.html[[BR]]
+{{{
+<!-- 検索＠Google -->
+
+<SCRIPT LANGUAGE="VBScript">
+Call Main
+
+Private Sub Main()
+ '選択文字列をGoogleで検索
+ Dim SearchText
+ Dim emd
+ Set emd = external.menuArguments.document
+
+ '選択部分の文字列を取得
+ SearchText = emd.selection.createRange().Text
+
+ '半角/全角スペースを置換
+ SearchText = Replace(SearchText, " ", "+")
+ SearchText = Replace(SearchText, "　", "+")
+
+ 'UTF-8でURLエンコード
+ Dim sc
+ Set sc = CreateObject("ScriptControl")
+ sc.Language = "JScript"
+ Dim js
+ Set js = sc.CodeObject
+ SearchText = js.encodeURI(SearchText)
+
+ '検索開始
+ If Len(SearchText) Then
+  Dim wsSh
+  Set wsSh = CreateObject("WScript.Shell")
+  Call wsSh.Run("http://www.google.co.jp/search?q=" & SearchText)
+ End If
+ Set emd = Nothing
+End Sub
+</SCRIPT>
+}}}
+
+■Google_for_gikoNavi.reg[[BR]]
+{{{
+Windows Registry Editor Version 5.00
+
+[HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\MenuExt\Googleで検索]
+"contexts"=dword:00000010
+@="C:\\gikoNavi\\Google_for_gikoNavi.html"
+}}}
+
+■C:\gikoNavi[[BR]]
+┣Google_for_gikoNavi.html[[BR]]
+┗Google_for_gikoNavi.reg[[BR]]
+こういう配置の状態で、Google_for_gikoNavi.regを登録して、ギコナビ再起動。[[BR]]
+再起動後に、文字列を選択して右クリックをすると Googleで検索 という項目が出る。[[BR]]
+クリックすると既定のブラウザで開く。[[BR]]
+→[[LinkAttach(Google_for_gikoNavi.zip, caption=Google_for_gikoNavi.html+Google_for_gikoNavi.reg(zip圧縮))]]
</pre>]]>
    </content:encoded>
      </item>
    <item rdf:about="http://sourceforge.jp/projects/gikonavi/wiki/log">
    <title>log</title>
    <link>http://sourceforge.jp/projects/gikonavi/wiki/log</link>
    <dc:identifier>log</dc:identifier>
    <dc:date>2012-01-07T01:23:50+09:00</dc:date>
          <description>
      <![CDATA[Part62追加 (by concertogrosso)
]]>
    </description>
    <content:encoded>
      <![CDATA[<p>Part62追加 (by concertogrosso)</p><pre>@@ -3,5 +3,6 @@
 == 過去ログ一覧
+Part62　http://anago.2ch.net/test/read.cgi/software/1314447596/l50 　[[LinkAttach(1314447596.zip,caption=dat(zip圧縮))]][[br]]
 Part61　http://hibari.2ch.net/test/read.cgi/software/1306648987/l50 　[[LinkAttach(1306648987.zip,caption=dat(zip圧縮))]][[br]]
 Part60　http://hibari.2ch.net/test/read.cgi/software/1298969879/l50 　[[LinkAttach(1298969879.zip,caption=dat(zip圧縮))]][[br]]
 Part59　http://hibari.2ch.net/test/read.cgi/software/1297444920/l50 　[[LinkAttach(1297444920.zip,caption=dat(zip圧縮))]][[br]]
 Part58　http://hibari.2ch.net/test/read.cgi/software/1282410791/l50 　[[LinkAttach(1282410791.zip,caption=dat(zip圧縮))]][[br]]
</pre>]]>
    </content:encoded>
      </item>
    <item rdf:about="http://sourceforge.jp/projects/gikonavi/wiki/log">
    <title>log</title>
    <link>http://sourceforge.jp/projects/gikonavi/wiki/log</link>
    <dc:identifier>log</dc:identifier>
    <dc:date>2011-08-30T19:17:52+09:00</dc:date>
          <description>
      <![CDATA[Part61追加でミスがあったため修正 (by concertogrosso)
]]>
    </description>
    <content:encoded>
      <![CDATA[<p>Part61追加でミスがあったため修正 (by concertogrosso)</p><pre>@@ -3,6 +3,6 @@
 == 過去ログ一覧
-Part61　http://hibari.2ch.net/test/read.cgi/software/1314447596/l50 　[[LinkAttach(1314447596.zip,caption=dat(zip圧縮))]][[br]]
+Part61　http://hibari.2ch.net/test/read.cgi/software/1306648987/l50 　[[LinkAttach(1306648987.zip,caption=dat(zip圧縮))]][[br]]
 Part60　http://hibari.2ch.net/test/read.cgi/software/1298969879/l50 　[[LinkAttach(1298969879.zip,caption=dat(zip圧縮))]][[br]]
 Part59　http://hibari.2ch.net/test/read.cgi/software/1297444920/l50 　[[LinkAttach(1297444920.zip,caption=dat(zip圧縮))]][[br]]
 Part58　http://hibari.2ch.net/test/read.cgi/software/1282410791/l50 　[[LinkAttach(1282410791.zip,caption=dat(zip圧縮))]][[br]]
 Part57　http://hibari.2ch.net/test/read.cgi/software/1266205274/l50 　[[LinkAttach(1266205274.zip,caption=dat(zip圧縮))]][[br]]
</pre>]]>
    </content:encoded>
      </item>
    <item rdf:about="http://sourceforge.jp/projects/gikonavi/wiki/log">
    <title>log</title>
    <link>http://sourceforge.jp/projects/gikonavi/wiki/log</link>
    <dc:identifier>log</dc:identifier>
    <dc:date>2011-08-30T19:15:36+09:00</dc:date>
          <description>
      <![CDATA[Part61追加 (by concertogrosso)
]]>
    </description>
    <content:encoded>
      <![CDATA[<p>Part61追加 (by concertogrosso)</p><pre>@@ -3,5 +3,6 @@
 == 過去ログ一覧
+Part61　http://hibari.2ch.net/test/read.cgi/software/1314447596/l50 　[[LinkAttach(1314447596.zip,caption=dat(zip圧縮))]][[br]]
 Part60　http://hibari.2ch.net/test/read.cgi/software/1298969879/l50 　[[LinkAttach(1298969879.zip,caption=dat(zip圧縮))]][[br]]
 Part59　http://hibari.2ch.net/test/read.cgi/software/1297444920/l50 　[[LinkAttach(1297444920.zip,caption=dat(zip圧縮))]][[br]]
 Part58　http://hibari.2ch.net/test/read.cgi/software/1282410791/l50 　[[LinkAttach(1282410791.zip,caption=dat(zip圧縮))]][[br]]
 Part57　http://hibari.2ch.net/test/read.cgi/software/1266205274/l50 　[[LinkAttach(1266205274.zip,caption=dat(zip圧縮))]][[br]]
</pre>]]>
    </content:encoded>
      </item>
    <item rdf:about="http://sourceforge.jp/projects/gikonavi/wiki/FAQ2">
    <title>FAQ2</title>
    <link>http://sourceforge.jp/projects/gikonavi/wiki/FAQ2</link>
    <dc:identifier>FAQ2</dc:identifier>
    <dc:date>2011-07-18T21:55:56+09:00</dc:date>
          <description>
      <![CDATA[FAQ87に追記 (by concertogrosso)
]]>
    </description>
    <content:encoded>
      <![CDATA[<p>FAQ87に追記 (by concertogrosso)</p><pre>@@ -116,8 +116,10 @@
 {{{
 【解説】
 　したらばは個人で簡単に板の開設ができるためか板の入れ替わりが激しく、2chのようにすべての板の一覧が集中的に管理されているわけではないので、ギコナビの「したらばJBBS板更新」機能も自動的に新設板を取得したりしてはくれません。少なくとも取得したい板の属するカテゴリと、板名(の一部)がわかっている必要があります。「取得する板名」に何も入力しなければすべての掲示板から検索するといった機能はありません。
 }}}
+　目的の板の所属が新設カテゴリ等でカテゴリのドロップダウンリストに見当たらない場合があります。[[BR]]
+　この場合は手動で追加してください。[[BR]]
 　手動での板追加は[FAQ#FAQ0059 したらばJBBSで見たい板が無い]を参照。
 
 ==== ログ削除したのに復活する。 ==== #FAQ0088
 Windows Vistaで、UAC(ユーザー アカウント制御)配下のフォルダ(C:\Program Files等)にインストールしている場合に、ログを削除しても再起動後に復活する、NGワード編集で保存できない等の問題が発生します。[[BR]]
</pre>]]>
    </content:encoded>
      </item>
    <item rdf:about="http://sourceforge.jp/projects/gikonavi/wiki/FAQ">
    <title>FAQ</title>
    <link>http://sourceforge.jp/projects/gikonavi/wiki/FAQ</link>
    <dc:identifier>FAQ</dc:identifier>
    <dc:date>2011-07-18T21:51:02+09:00</dc:date>
          <description>
      <![CDATA[FAQ59に追記 (by concertogrosso)
]]>
    </description>
    <content:encoded>
      <![CDATA[<p>FAQ59に追記 (by concertogrosso)</p><pre>@@ -576,9 +576,14 @@
 その中にある「したらばJBBS.txt」ファイルを開き、追加したい[カテゴリ]の下に[[BR]]
 {{{
  板名=URL
 }}}
-の形で追加してください。
+の形で追加してください。[[BR]]
+カテゴリ自体が見つからない場合、自分で追加してください。[[BR]]
+(例)[[BR]]
+{{{
+ [ネットゲーム/オンラインゲーム]
+}}}
 
 　'''Keyword''':板一覧更新
 
 ※「したらばJBBS.txt」を書き換えた場合、バージョンアップ時など、配布されるファイルで上書きされてしまいます。これを避けるには「したらばJBBS2.txt」のように別の名前でテキストドキュメントを新規作成し、そちらに追加していくのがいいかもしれません。[[BR]]
</pre>]]>
    </content:encoded>
      </item>
    <item rdf:about="http://sourceforge.jp/projects/gikonavi/wiki/log">
    <title>log</title>
    <link>http://sourceforge.jp/projects/gikonavi/wiki/log</link>
    <dc:identifier>log</dc:identifier>
    <dc:date>2011-05-30T01:38:48+09:00</dc:date>
          <description>
      <![CDATA[Part60追加 (by concertogrosso)
]]>
    </description>
    <content:encoded>
      <![CDATA[<p>Part60追加 (by concertogrosso)</p><pre>@@ -3,5 +3,6 @@
 == 過去ログ一覧
+Part60　http://hibari.2ch.net/test/read.cgi/software/1298969879/l50 　[[LinkAttach(1298969879.zip,caption=dat(zip圧縮))]][[br]]
 Part59　http://hibari.2ch.net/test/read.cgi/software/1297444920/l50 　[[LinkAttach(1297444920.zip,caption=dat(zip圧縮))]][[br]]
 Part58　http://hibari.2ch.net/test/read.cgi/software/1282410791/l50 　[[LinkAttach(1282410791.zip,caption=dat(zip圧縮))]][[br]]
 Part57　http://hibari.2ch.net/test/read.cgi/software/1266205274/l50 　[[LinkAttach(1266205274.zip,caption=dat(zip圧縮))]][[br]]
 Part56　http://pc12.2ch.net/test/read.cgi/software/1252186751/l50 　[[LinkAttach(1252186751.zip,caption=dat(zip圧縮))]][[br]]
</pre>]]>
    </content:encoded>
      </item>
    <item rdf:about="http://sourceforge.jp/projects/gikonavi/wiki/Tips%2FSamba24">
    <title>Tips/Samba24</title>
    <link>http://sourceforge.jp/projects/gikonavi/wiki/Tips%2FSamba24</link>
    <dc:identifier>Tips/Samba24</dc:identifier>
    <dc:date>2011-04-03T18:31:18+09:00</dc:date>
          <description>
      <![CDATA[AutoEdit: post comment by anonymous (by )
]]>
    </description>
    <content:encoded>
      <![CDATA[<p>AutoEdit: post comment by anonymous (by )</p><pre>@@ -71,6 +71,7 @@
 コメントを書き込むだけでも結構です。
 
 ----
 [[LineComment]]
+  * @news=5[[BR]]-- anonymous (2011-04-03 18:31:18 JST)
 
 
</pre>]]>
    </content:encoded>
      </item>
    <item rdf:about="http://sourceforge.jp/projects/gikonavi/wiki/log">
    <title>log</title>
    <link>http://sourceforge.jp/projects/gikonavi/wiki/log</link>
    <dc:identifier>log</dc:identifier>
    <dc:date>2011-03-05T18:45:47+09:00</dc:date>
          <description>
      <![CDATA[Part59追加 (by concertogrosso)
]]>
    </description>
    <content:encoded>
      <![CDATA[<p>Part59追加 (by concertogrosso)</p><pre>@@ -3,5 +3,6 @@
 == 過去ログ一覧
+Part59　http://hibari.2ch.net/test/read.cgi/software/1297444920/l50 　[[LinkAttach(1297444920.zip,caption=dat(zip圧縮))]][[br]]
 Part58　http://hibari.2ch.net/test/read.cgi/software/1282410791/l50 　[[LinkAttach(1282410791.zip,caption=dat(zip圧縮))]][[br]]
 Part57　http://hibari.2ch.net/test/read.cgi/software/1266205274/l50 　[[LinkAttach(1266205274.zip,caption=dat(zip圧縮))]][[br]]
 Part56　http://pc12.2ch.net/test/read.cgi/software/1252186751/l50 　[[LinkAttach(1252186751.zip,caption=dat(zip圧縮))]][[br]]
 Part55　http://pc12.2ch.net/test/read.cgi/software/1240493245/l50 　[[LinkAttach(1240493245.zip,caption=dat(zip圧縮))]][[br]]
</pre>]]>
    </content:encoded>
      </item>
  </rdf:RDF>

