You are using IPv4 :(

Habariにもリビジョン機能

Revision in Habari

Masayanさんの記事「MMRT daily life - WordPress 2.6 はすごいらしい」でWordPress 2.6にリビジョン管理機能が追加されることを知り、思わずこれ欲しいー
しかし、わたしはHabariにスイッチした身の上 :P

そこでHabariにもプラグインとしてリビジョン機能を追加してみました。:D
まだリリース段階ではありませんが、試してみたい方はHabari-extrasに開発中のバージョンがあります。

Rate It! (Average 4.00, 1 votes)

Amazon/Socialink/FCKeditor/Rate It! Habari Plugins released!

4 new Habari plugins are being released and published!
you can download from below, or habari-extras repository

  • Amazon - easily/quickly insert Amazon Products into your posts.
  • Socialink - adding Social Bookmark Links to your posts.
  • FCKeditor - FCKeditor for Habari
  • Rate It! - adding Star Rating to your posts.
Rate It! (Average 5.00, 2 votes)

Habariをサブディレクトリにインストールする方法

Habariはルートディレクトリのファイル数が比較的少ない方ではあるのですがやっぱりルートディレクトリはなるべくファイルを減らしてすっきり整理したいものです。そこで以下のようにインストールすることでHabari本体をサブディレクトリに置いたままルートURLでアクセス出来るようになります。

  1. 初めにHabariを通常通りサブディレクトリ(例: /habari/)にインストールします。
  2. /index.php に以下の内容でファイルを作成します。
    <?php
    include('habari/index.php');
    ?>
  3. /.htaccess に以下の内容でファイルを作成します。
    RewriteEngine on
    RewriteRule ^(system|3rdparty|scripts)/(.*)$ /habari/$1/$2 [L]
    RewriteRule ^user/(themes|plugins|files)/(.*)$ /habari/user/$1/$2 [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . index.php [L]
Rate It! (Average 0.00, 0 votes)

How-to: install Habari in a sub-directory

I do not want for many files to be put on root directory. therefore, I installed Habari by the following methods.

  1. first, install Habari in the subdirectory (e.g. /habari/).
  2. create /index.php file in your text editor and save the following line:
    <?php
    include('habari/index.php');
    ?>
  3. create /.htaccess file in your text editor and save the following line:
    RewriteEngine on
    RewriteRule ^(system|3rdparty|scripts)/(.*)$ /habari/$1/$2 [L]
    RewriteRule ^user/(themes|plugins|files)/(.*)$ /habari/user/$1/$2 [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . index.php [L]
Rate It! (Average 0.00, 0 votes)

Hello Habari!

Habari Admin

BlogのシステムをWordPressから少し前から気になっていた最近話題のHabariに変えてみました。

外見は変わっていませんが中はこんな感じでかなりシンプルになっています:D

既にLaunchpadにて数多くの言語へ翻訳が進められており、Subversion Head版では一部ではありますが管理画面の言語も日本語に切り替えることが出来ます。

追記 (2008/05/23)

日本語化の方法はLaunchPadのHabariプロジェクトページまたはhttp://ayu.commun.jp/files/habari/habari.moからmoファイルをダウンロード後、/system/locale/ja-jp/LC_MESSAGES/habari.moに配置します。

SVN rev.1800以降の場合は管理ページのオプションからLocaleを「ja-jp」にセットすることで日本語になります。

SVN rev.1693以降の場合はconfig.phpに

$locale= 'ja-jp';
を追加します。

0.4.1の場合はMasayanさんが解説してくださっていますのでそちらをご覧ください。

Rate It! (Average 0.00, 0 votes)