翻訳についてblosxomユーザ向けドキュメント開発者向けドキュメントダウンロード*公式サイトで未執筆 |
環境設定設定Blosxomの全ての設定は簡単のためスクリプト自身に書かれています。恐れる事はありません。全てに面白い文字が付いていますし、本当に単純です。標準では以下のようになっています: # --- Configurable variables ----- # What's this blog's title? $blog_title = "My Weblog"; # What's this blog's description (for outgoing RSS feed)? $blog_description = "Yet another Blosxom blog."; # # What's this blog's primary language (for outgoing RSS feed)? $blog_language = "en"; # Where are this blog's entries kept? $datadir = "/Library/WebServer/Documents/blosxom"; # # What's my preferred base URL for this blog (leave blank for automatic)? $url = ""; # Should I stick only to the datadir for items or travel down the # directory hierarchy looking for items? If so, to what depth? # 0 = infinite depth (aka grab everything), 1 = datadir only, n = n levels down $depth = 0; # How many entries should I show on the home page? $num_entries = 40; # What file extension signifies a blosxom entry? $file_extension = "txt"; # What is the default flavour? $default_flavour = "html"; # # Should I show entries from the future (i.e. dated after now)? $show_future_entries = 0; ... # -------------------------------- 各設定ディレクティブは設定名で構成されています(例 $static_dir、 =記号、設定値(例 "/Library/WebServer/Documents/blog" 文字の場合は"で囲みます。数字の場合は"で囲みません)。設定値を変える場合には望む値で単純に置き換えれば良いです。"があった場合には残して置いて下さい。 例えば、ウェブログのタイトルを標準から変更するには(My WeblogからSam's Insightsに)次のようになります:$blog_title = "Sam's Insights"; 分かりましたか? 良いでしょう。次に進みましょう。
残りの設定はプラグインと静的表示に関するもので、その時が来たら読めば良いでしょう(このページの上で既に説明しています)。 |