From: sakamocchi Date: Mon, 21 Mar 2011 02:24:34 +0000 (+0000) Subject: Modify some articles related to installing script. X-Git-Tag: release-3-64~20 X-Git-Url: http://git.sourceforge.jp/view?p=nucleus-jp%2Fnucleus-jp-ancient.git;a=commitdiff_plain;h=4124f12825854f2536e04a9456b1a267bd234e17 Modify some articles related to installing script. git-svn-id: https://svn.sourceforge.jp/svnroot/nucleus-jp/nucleus-jp/trunk@1175 1ca29b6e-896d-4ea0-84a5-967f57386b96 --- diff --git a/utf8/nucleus/documentation/devdocs/custominstall.html b/utf8/nucleus/documentation/devdocs/custominstall.html index 5a2d6c4..d2dc7fb 100755 --- a/utf8/nucleus/documentation/devdocs/custominstall.html +++ b/utf8/nucleus/documentation/devdocs/custominstall.html @@ -58,22 +58,29 @@

設定

-

install.phpをエディタで開き、次のコードを探してください:

- -
    // array with names of plugins to install. Plugin files must be present in the nucleus/plugin/
-    // directory.
-    //
-    // example:
-    //     array('NP_TrackBack', 'NP_MemberGoodies')
-    $aConfPlugsToInstall = array();
-
-
-    // array with skins to install. skins must be present under the skins/ directory with
-    // a subdirectory having the same name that contains a skinbackup.xml file
-    //
-    // example:
-    //     array('base','rsd')
-    $aConfSkinsToImport = array();
+

install/index.phpをエディタで開き、次のコードを探してください:

+ +
// array with names of plugins to install. Plugin files must be present in the nucleus/plugin/
+// directory.
+//
+// example:
+//	 array('NP_TrackBack', 'NP_MemberGoodies')
+$aConfPlugsToInstall = array(
+	'NP_SkinFiles',
+);
+
+
+// array with skins to install. skins must be present under the skins/ directory with
+// a subdirectory having the same name that contains a skinbackup.xml file
+//
+// example:
+//	 array('base','rsd')
+$aConfSkinsToImport = array(
+	'atom',
+	'rss2.0',
+	'rsd',
+	'default',
+);

やるべき事はこのコードを変更するだけです:自動インストールしたいプラグインとスキンの名前を、例のような配列リストにしてください。

diff --git a/utf8/nucleus/documentation/index.html b/utf8/nucleus/documentation/index.html index 453d0b2..6651ae3 100755 --- a/utf8/nucleus/documentation/index.html +++ b/utf8/nucleus/documentation/index.html @@ -242,7 +242,7 @@

- 注意: /install/ ディレクトリにアクセスした際、「If you see this text in your browser...」というテキストが表示されたり、 install.phpのダウンロードが促されたりした場合は、そのサーバではphpスクリプトは動作しません。当然、残念ながらphpスクリプトであるNucleusを運用することができません。 + 注意: /install/ ディレクトリにアクセスした際、「If you see this text in your browser...」というテキストが表示されたり、 index.phpのダウンロードが促されたりした場合は、そのサーバではphpスクリプトは動作しません。当然、残念ながらphpスクリプトであるNucleusを運用することができません。

4. 完了