<?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:atom="http://www.w3.org/2005/Atom"
  xmlns:dc="http://purl.org/dc/elements/1.1/"
  xml:lang="ja">
  <channel rdf:about="http://w.atwiki.jp/bobobo_bo/">
    <title>bobobo_bo @Wiki</title>
    <link>http://w.atwiki.jp/bobobo_bo/</link>
    <atom:link href="https://w.atwiki.jp/bobobo_bo/rss10.xml" rel="self" type="application/rss+xml" />
    <atom:link rel="hub" href="https://pubsubhubbub.appspot.com" />
    <description>bobobo_bo @Wiki</description>

    <dc:language>ja</dc:language>
    <dc:date>2006-07-17T16:47:13+09:00</dc:date>
    <utime>1153122433</utime>

    <items>
      <rdf:Seq>
                <rdf:li rdf:resource="https://w.atwiki.jp/bobobo_bo/pages/5.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/bobobo_bo/pages/9.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/bobobo_bo/pages/1.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/bobobo_bo/pages/6.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/bobobo_bo/pages/8.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/bobobo_bo/pages/4.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/bobobo_bo/pages/2.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/bobobo_bo/pages/3.html" />
              </rdf:Seq>
    </items>
	
		
    
  </channel>
    <item rdf:about="https://w.atwiki.jp/bobobo_bo/pages/5.html">
    <title>LAMP</title>
    <link>https://w.atwiki.jp/bobobo_bo/pages/5.html</link>
    <description>
      *Apache+PHP+MySQL+Postgres

**構築環境
CentOS (4.3)
Apache (1.3.36)
PHP (4.4.2)
MySQL (4.1.20)
Postgres (8.1.4)

**OpenSSL (0.9.8b)
 $ tar -zxvf openssl-0.9.8b.tar.gz
 $ cd openssl-0.9.8b/
 $ ./config \
 --prefix=/usr/local \
 --openssldir=/usr/local/openssl \
 -fPIC
 $ make
 $ make test
 $ su
 # make install

**Apache(1.3.36) + mod_ssl(1.3.36)
 $ tar -zxvf apache_1.3.36.tar.gz
 $ tar -zxvf mod_ssl-2.8.27-1.3.36.tar.gz
 $ cd mod_ssl-2.8.27-1.3.36/
 $ ./configure \
 --with-apache=../apache_1.3.36 \
 --with-ssl=../openssl-0.9.8b \
 --prefix=/usr/local/apache \
 --enable-shared=ssl \
 --enable-module=so

**Apache (1.3.36)
 $ cd apache_1.3.36/
 $ make
 $ make certificate
 $ su
 # make install
SSL Key の作成  Signature Algorithm ((R)SA or (D)SA) [R]:R
　→ 認証方式は： RSA

1. Country Name (2 letter code) [XY]:JP
　→ 国名は： JAPAN

2. State or Province Name (full name) [Snake Desert]:Tokyo
　→ 都道府県は：Tokyo

3. Locality Name (eg, city) [Snake Town]:Minato
　→ 市区町村は：Minato

4. Organization Name (eg, company) [Snake Oil, Ltd]:XXXX
　→ 団体名、企業名は：XXXX

5. Organizational Unit Name (eg, section) [Webserver Team]:XXXX
　→ 所属部署は：XXXX

6. Common Name (eg, FQDN) [www.snakeoil.dom]:XXXX
　→ 組織名は：XXXX

7. Email Address (eg, name@FQDN) [www@snakeoil.dom]:hoge@hogehoge.com
　→ メールアドレスは：hoge@hogehoge.com

8. Certificate Validity (days) [365]:90
　→ 証明書の有効期限は：90

Certificate Version (1 or 3) [3]:3
　→ 証明書のバージョンは：3

Encrypt the private key now? [Y/n]:Y
　→ 証明書の暗号化を行うか：Y

Enter PEM pass phrase: ????
　→ パスワード入力：????

Verifying password - Enter PEM pass phrase:????
　→ パスワード再入力：????

-httpd.confを編集
ServerName www.xxx.com

**Postgres
 $ su -
 # useradd postgres
 # mkdir /usr/local/pgsql
 # chown postgres:postgres /usr/local/pgsql/
 # su postgres
 $ tar -zxvf postgresql-8.1.4.tar.gz
 $ cd postgresql-8.1.4/
 $ ./configure --enable-multibyte=EUC_JP
 $ make all
 $ make install

**PostgreSQL の実行まで
postgres ユーザーの .bash_profile へ操作設定の記述をします。
 PATH=$PATH:$HOME/bin:/usr/local/pgsql/bin
 export POSTGRES_HOME=/usr/local/pgsql
 export PGDATA=/home/postgres/data
 export PGLIB=/usr/local/pgsql/lib
 export LD_LIBRARY_PATH=/usr/local/pgsql/lib
その後にプロファイルをロードし、Postgres 環境の初期化と Postmaster の起動を行います。
 $ . .bash_profile ($ source .bash_profile)
 $ initdb
 $ pg_ctl start -l [LogFileName] -s -D  /home/postgres/data/ -o -i

これで環境は整いました。
createuser createdb を行い、psql で操作を行います。

**MySQL
 $ su -
 # useradd mysql
 # su mysql
 $ tar xvzf   ./mysql-4.1.20.tar.gz
 $ cd mysql-4.1.20
 $ ./configure \
 --prefix=/usr/local/mysql \
 --with-charset=ujis \
 --with-extra-charsets=all \
 --with-mysqld-user=mysql \
 --without-bench \
 --localstatedir=/home/mysql/data
 $ make
 $ su
 # make install

MySQL の実行まで  mysql ユーザーの .bash_profile へ操作設定の記述をします。

　　PATH=$PATH:/usr/local/mysql/bin
　　export MANPATH=$MANPATH:/usr/local/mysql/man

その後にプロファイルをロードし、MySQL 環境の初期化と MySQL の起動を行います。

　　$ . .bash_profile ($ source .bash_profile)
　　$ /usr/local/mysql/bin/mysql_install_db --user=mysql
　　$ /usr/local/mysql/bin/mysqld_safe --user=mysql &amp;

自動起動させるために /etc/rc.d/rc.local へ以下の記述を行います。

　　/usr/local/mysql/bin/safe_mysqld --user=mysql &amp;

これで環境は整いました。


**PHP4
 $ tar -zxvf php-4.2.2.tar.gz
 $ cd php-4.2.2/
 $ ./configure \
 --with-apxs=/usr/local/apache/bin/apxs \
 --with-pgsql=/usr/local/pgsql \
 --with-mysql=/usr/local/mysql \
 --enable-mbstring \
 --enable-mbstr-enc-trans \
 --enable-gd-native-ttf \
 --with-gd \
 --with-freetype-dir=/usr \
 --with-jpeg-dir=/usr \
 --with-zlib=/usr \
 --with-png-dir=/usr
 $ make
 $ su
 # make install

PHPの設定ファイルをコピーします。

#cp php.ini-dist /usr/local/lib/php.ini 

次にApacheでPHPを使用する設定をします。/use/local/apache/conf/httpd.confを開き編集します。

#vi /use/local/apache/conf/httpd.conf

----------------省略----------------

#
# Example:
# LoadModule foo_module libexec/mod_foo.so
LoadModule php4_module        libexec/libphp4.so　　←LoadModuleの最後に追記する。

#  Reconstruction of the complete module list from all available modules
#  (static and shared ones) to achieve correct module execution order.
#  [WHENEVER YOU CHANGE THE LOADMODULE SECTION ABOVE UPDATE THIS, TOO]
AddModule mod_php4.c　　←AddModuleの最後に追記する。

----------------省略----------------

#
# DirectoryIndex: Name of the file or files to use as a pre-written HTML
# directory index.  Separate multiple entries with spaces.
#
&lt;IfModule mod_dir.c&gt;
    DirectoryIndex index.html index.php　　←index.phpを追記する。
&lt;/IfModule&gt;

----------------省略----------------

#
# PHP
#
AddType application/x-httpd-php        .php  .php4
AddType application/x-httpd-php-source .phps .php4s

httpd.confの編集が終了したらhttpd.confの構文チェックを行います。

#/usr/local/apache/bin/apachectl configtest
Syntax OK

Apacheを再起動して完了です。

#/usr/local/apache/bin/apachectl restart



**参考サイト
http://www15.tok2.com/home/masato/    </description>
    <dc:date>2006-07-17T16:47:13+09:00</dc:date>
    <utime>1153122433</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/bobobo_bo/pages/9.html">
    <title>GDライブラリ</title>
    <link>https://w.atwiki.jp/bobobo_bo/pages/9.html</link>
    <description>
      **libjpeg
-http://www.ijg.org/
 $ tar -zxvf jpegsrc.v6b.tar.gz
 $ cd jpeg-6b/
 $ ./configure --enable-shared
 $ make
 $ su
 # mkdir /usr/local/include
 # make install

-上記の通りにやったら以下のエラーがでた
 [root@localhost jpeg-6b]# make install
 /usr/bin/install -c -m 644 jconfig.h /usr/local/include/jconfig.h
 /usr/bin/install -c -m 644 ./jpeglib.h /usr/local/include/jpeglib.h
 /usr/bin/install -c -m 644 ./jmorecfg.h /usr/local/include/jmorecfg.h
 /usr/bin/install -c -m 644 ./jerror.h /usr/local/include/jerror.h
 ./libtool --mode=install /usr/bin/install -c libjpeg.la /usr/local/lib/libjpeg.la
 /usr/bin/install -c .libs/libjpeg.so.62.0.0 /usr/local/lib/libjpeg.so.62.0.0
 rm -f /usr/local/lib/libjpeg.so.62 /usr/local/lib/libjpeg.so
 (cd /usr/local/lib &amp;&amp; ln -s libjpeg.so.62.0.0 libjpeg.so.62)
 (cd /usr/local/lib &amp;&amp; ln -s libjpeg.so.62.0.0 libjpeg.so)
 /usr/bin/install -c libjpeg.la /usr/local/lib/libjpeg.la
 PATH=&quot;/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/bin:/bin:/usr/bin:/usr/X11R6/bin:/home/boo/bin:/sbin&quot; ldconfig -n /usr/local/lib
 ------------------------------------------------------------------------------
 Libraries have been installed in:
    /usr/local/lib

 To link against installed libraries in a given directory, LIBDIR,
 you must use the `-LLIBDIR&#039; flag during linking.

  You will also need to do one of the following:
    - add LIBDIR to the `LD_LIBRARY_PATH&#039; environment variable
      during execution
    - add LIBDIR to the `LD_RUN_PATH&#039; environment variable
      during linking
    - use the `-Wl,--rpath -Wl,LIBDIR&#039; linker flag
    - have your system administrator add LIBDIR to `/etc/ld.so.conf&#039;

 See any operating system documentation about shared libraries for
 more information, such as the ld(1) and ld.so(8) manual pages.
 ------------------------------------------------------------------------------
 ./libtool --mode=install /usr/bin/install -c cjpeg /usr/local/bin/cjpeg
 /usr/bin/install -c .libs/cjpeg /usr/local/bin/cjpeg
 ./libtool --mode=install /usr/bin/install -c djpeg /usr/local/bin/djpeg
 /usr/bin/install -c .libs/djpeg /usr/local/bin/djpeg
 ./libtool --mode=install /usr/bin/install -c jpegtran /usr/local/bin/jpegtran
 /usr/bin/install -c .libs/jpegtran /usr/local/bin/jpegtran
 ./libtool --mode=install /usr/bin/install -c rdjpgcom /usr/local/bin/rdjpgcom
 /usr/bin/install -c rdjpgcom /usr/local/bin/rdjpgcom
 ./libtool --mode=install /usr/bin/install -c wrjpgcom /usr/local/bin/wrjpgcom
 /usr/bin/install -c wrjpgcom /usr/local/bin/wrjpgcom
 /usr/bin/install -c -m 644 ./cjpeg.1 /usr/local/man/man1/cjpeg.1
 /usr/bin/install: cannot create regular file `/usr/local/man/man1/cjpeg.1&#039;: そのようなファイルやディレクトリはありません
 make: *** [install] エラー 1

-「/usr/local/man/man1」というディレクトリを作成して「make install」を行ったらうまくいった。何か事前にやることが不足してる？



**zlib
-http://www.gzip.org/zlib/
 $ tar -zxvf zlib-1.1.4.tar.gz
 $ cd zlib-1.1.4/
 $ ./configure
 $ make
 $ su
 # make install

**libpng
-http://www.libpng.org/pub/png/
 $ tar -zxvf libpng-1.2.5.tar.gz
 $ cd libpng-1.2.5/
 $ cp scripts/makefile.linux makefile
 $ vi makefile
 ------------------------------------
 #ZLIBLIB=/usr/local/lib
 #ZLIBINC=/usr/local/include
 ZLIBLIB=../zlib
 ZLIBINC=../zlib
 
 ↓書き換えます↓
 
 ZLIBLIB=/usr/local/lib   (または /usr/lib)
 ZLIBINC=/usr/local/include   (または /usr/include)
 #ZLIBLIB=../zlib
 #ZLIBINC=../zlib
 ------------------------------------
 $ make
 $ su
 # make install

libpng パッケージがインストールされている場合はコンパイル不要です。
MAKE ファイルを scripts/makefile.linux よりコピーして、書き換えてください。

**FreeType
- http://www.freetype.org/
 $ tar -zxvf freetype-2.1.2.tar.gz
 $ cd freetype-2.1.2/
 $ ./configure
 $ make
 $ su
 # make install

freetype パッケージがインストールされている場合はコンパイル不要です。

**GD
-http://www.boutell.com/gd/
 $ tar -zxvf gd-2.0.1.tar.gz
 $ cd gd-2.0.1/
 $ vi Makefile
 ------------------------------------
 CFLAGS=-g \
 　　-DHAVE_LIBPNG \
 　　-DHAVE_LIBJPEG \
 　　-DHAVE_LIBFREETYPE \
 　　-DJISX0208 ←追加
 
 INCLUDEDIRS=-I. \
 　　-I/usr/include/freetype2 \ ←freetype パッケージイン ストール時
 　　-I/usr/local/include/freetype2 \ ←freetype 自己インストール時
 　　-I/usr/include/X11 \
 　　-I/usr/X11R6/include/X11 \
 　　-I/usr/local/include
 
 INSTALL_LIB=/usr/local/lib ←インストールパス変更
 
 INSTALL_INCLUDE=/usr/local/include ←インストールパス変更
 ------------------------------------
 $ su
 # make install
 
 gd パッケージがインストールされている場合はコンパイル不要です。
 環境によってはコンパイルエラーになるようなので
 MAKE ファイルを書き換えてください。
 続いて PHP のインストールを行いましょう。

**GD + PHP による日本語出力

-GD + PHP サンプルソース
 &lt;?
 Header (&quot;Content-type: image/jpeg&quot;);
 
 $im = imagecreate (150, 150);
 $black = ImageColorAllocate ($im, 0, 0, 0);
 $white = ImageColorAllocate ($im, 255, 255, 255);
 
 // フォントパスは環境に合わせてください。
 $font1 = &quot;/usr/share/fonts/ja/kochi/kochi-gothic.ttf&quot;;
 $font2 = &quot;/usr/share/fonts/ja/kochi/kochi-mincho.ttf&quot;;
 
 $str = &quot;インストール&quot;;
 
 ImageTTFText ($im, 20, 45, 10, 20, $white, $font1, $str);
 
 ImageJpeg ($im);
 ImageDestroy ($im);
 ?&gt;

上記コードでエラーが出なければ、インストール完了です。
フリーな東風フォントは こちら から取得してください。
出力は以下のようになります。    </description>
    <dc:date>2006-07-17T13:40:35+09:00</dc:date>
    <utime>1153111235</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/bobobo_bo/pages/1.html">
    <title>トップページ</title>
    <link>https://w.atwiki.jp/bobobo_bo/pages/1.html</link>
    <description>
      *[[環境構築]]
-[[LAMP]]
-[[Apache + PHP + MySQL + Postgres]]
-[[GDライブラリ]]
-[[【調査】テンプレートエンジン]]    </description>
    <dc:date>2006-07-17T12:53:05+09:00</dc:date>
    <utime>1153108385</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/bobobo_bo/pages/6.html">
    <title>Apache + PHP + MySQL + Postgres</title>
    <link>https://w.atwiki.jp/bobobo_bo/pages/6.html</link>
    <description>
      
&lt;h1&gt;Apache+PHP+MySQL+Postgres&lt;/h1&gt;
&lt;br&gt;
&lt;h3&gt;構築環境&lt;/h3&gt;
CentOS (4.3)&lt;br&gt;
Apache (1.3.36)&lt;br&gt;
PHP (4.4.2)&lt;br&gt;
MySQL (4.1.20)&lt;br&gt;
Postgres (8.1.4)&lt;br&gt;
&lt;br&gt;
&lt;h3&gt;OpenSSL (0.9.8b)&lt;/h3&gt;
&lt;br&gt;
$ tar -zxvf openssl-0.9.8b.tar.gz&lt;br&gt;
$ cd openssl-0.9.8b/&lt;br&gt;
$ ./config&lt;br&gt;
--prefix=/usr/local&lt;br&gt;
--openssldir=/usr/local/openssl&lt;br&gt;
-fPIC&lt;br&gt;
$ make&lt;br&gt;
$ make test&lt;br&gt;
$ su&lt;br&gt;
# make install&lt;br&gt;
&lt;br&gt;
&lt;h3&gt;**Apache(1.3.36) + mod_ssl(1.3.36)&lt;/h3&gt;
&lt;br&gt;
$ tar -zxvf apache_1.3.36.tar.gz&lt;br&gt;
$ tar -zxvf mod_ssl-2.8.27-1.3.36.tar.gz&lt;br&gt;
$ cd mod_ssl-2.8.27-1.3.36/&lt;br&gt;
$ ./configure&lt;br&gt;
--with-apache=../apache_1.3.36&lt;br&gt;
--with-ssl=../openssl-0.9.8b&lt;br&gt;
--prefix=/usr/local/apache&lt;br&gt;
--enable-shared=ssl&lt;br&gt;
--enable-module=so&lt;br&gt;
&lt;br&gt;
&lt;h3&gt;**Apache (1.3.36)&lt;/h3&gt;
&lt;br&gt;
$ cd apache_1.3.36/&lt;br&gt;
$ make&lt;br&gt;
$ make certificate&lt;br&gt;
$ su&lt;br&gt;
# make install&lt;br&gt;
&lt;br&gt;
&lt;h3&gt;**Postgres&lt;/h3&gt;
&lt;br&gt;
$ su -&lt;br&gt;
# useradd postgres&lt;br&gt;
# mkdir /usr/local/pgsql&lt;br&gt;
# chown postgres:postgres /usr/local/pgsql/&lt;br&gt;
# su postgres&lt;br&gt;
$ tar -zxvf postgresql-8.1.4.tar.gz&lt;br&gt;
$ cd postgresql-8.1.4/&lt;br&gt;
$ ./configure --enable-multibyte=EUC_JP&lt;br&gt;
$ make all&lt;br&gt;
$ make install&lt;br&gt;
&lt;br&gt;
&lt;h3&gt;***PostgreSQL の実行まで&lt;/h3&gt;
&lt;br&gt;
postgresユーザーの.bash_profileへ操作設定の記述をします。&lt;br&gt;
&lt;br&gt;
PATH=$PATH:$HOME/bin:/usr/local/pgsql/bin&lt;br&gt;
export POSTGRES_HOME=/usr/local/pgsql&lt;br&gt;
export PGDATA=/home/postgres/data&lt;br&gt;
export PGLIB=/usr/local/pgsql/lib&lt;br&gt;
export LD_LIBRARY_PATH=/usr/local/pgsql/lib&lt;br&gt;
&lt;br&gt;
その後にプロファイルをロードし、Postgres環境の初期化とPostmasterの起動を行います。&lt;br&gt;

&lt;br&gt;
$ . .bash_profile ($ source .bash_profile)&lt;br&gt;
$ initdb&lt;br&gt;
$ pg_ctl start -l [LogFileName] -s -D /home/postgres/data/ -o -i&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;h3&gt;**MySQL&lt;/h3&gt;
&lt;br&gt;
$ su -&lt;br&gt;
# useradd mysql&lt;br&gt;
# su mysql&lt;br&gt;
$ tar xvzf ./mysql-standard-4.1.20-pc-linux-gnu-i686.tar.gz&lt;br&gt;
$ cd mysql-standard-4.1.20-pc-linux-gnu-i686&lt;br&gt;
$ ./configure&lt;br&gt;
--prefix=/usr/local/mysql&lt;br&gt;
--with-charset=ujis&lt;br&gt;
--with-extra-charsets=all&lt;br&gt;
--with-mysqld-user=mysql&lt;br&gt;
--without-bench&lt;br&gt;
--localstatedir=/home/mysql/data&lt;br&gt;
$ make&lt;br&gt;
$ su&lt;br&gt;
# make install&lt;br&gt;
&lt;br&gt;    </description>
    <dc:date>2006-07-17T11:44:28+09:00</dc:date>
    <utime>1153104268</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/bobobo_bo/pages/8.html">
    <title>【調査】テンプレートエンジン</title>
    <link>https://w.atwiki.jp/bobobo_bo/pages/8.html</link>
    <description>
      **Simpley
・php
・http://simpley.87op.com/

**be10
・php
・http://www.sound-uz.jp/php/script/be10/
・開始・終了タグの置換のみのシンプルなテンプレートエンジン

**Perl
PerlのようにHTMLに埋め込めない言語の場合、何らかのテンプレートエンジンが必ず必要になってくる

テンプレートエンジンを採用しても、凝ったデザインであったり複雑な処理を込みこまなくてはならない場合には、デザインとロジックの完全なる分離は難しいと考えられます。
SmartyやTemplate Toolkitは高機能な反面、その機能を使いきろうとすると、簡易な言語と変わらないくらい複雑な構文になってしまう。

**ZenGarden
http://www.csszengarden.com/
適切なHTML構造と、それに適切に付加されたCSSによって、実に多彩なデザインが披露されている。
こういうふうにデザインできると、テンプレートレベルでHTMLをいじる必要がなくなってくる。

**FreeMarker
?

**サニタイジング（sanitizing）
入力データからHTMLタグやJavaScript、SQLなどの文字を検出し、置き換えを行うことで無害化する処理のこと。sanitizeとは、「無害にする」という意味。

特に入力フィールドを持つWebページは、HTMLタグやスクリプトのサニタイジングは必須
サニタイジングを行うことで、HTML生成時に不正な処理（主にクロスサイト・スクリプティングの攻撃）が行われないようにする。

**クロスサイトスクリプト
Webサイトに動的な言語のソースを生成する仕組みを設けている場合（検索エンジン, 掲示板などのWebアプリケーション）にセキュリティ上の問題となるもので、ページの(HTML)自動生成過程において悪意ある者がそのページを構成する部分を記述できてしまう状態などのこと。
そのWebサーバの脆弱性によりCookieデータが操作され他のサーバへ送信されたり、Webサイトの訪問者に他のサイトの悪質なプログラムをダウンロードさせるなどの他所のスクリプトを実行させる(＝クロスサイトスクリプティング)ことが可能になる。

基本的な対策方法としては、サニタイジングがある。

**Struts
JSP 2.0 でカスタムタグの導入により ロジック部を分離することができ、Struts というフレームワークまで生まれました。

**patTemplate




**遠藤さんの誕生日に近いひと（※敬称略）
・ナカジマ（）
・モトイ（ポルノグラフティ　ヴォーカル）
・キムラ
・マツマル（7/14）
・エンドウ（8/8 :40才）    </description>
    <dc:date>2006-07-17T11:33:33+09:00</dc:date>
    <utime>1153103613</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/bobobo_bo/pages/4.html">
    <title>環境構築</title>
    <link>https://w.atwiki.jp/bobobo_bo/pages/4.html</link>
    <description>
      -[[LAMP]]    </description>
    <dc:date>2006-07-17T11:10:57+09:00</dc:date>
    <utime>1153102257</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/bobobo_bo/pages/2.html">
    <title>メニュー</title>
    <link>https://w.atwiki.jp/bobobo_bo/pages/2.html</link>
    <description>
      メニュー
-[[トップページ]]
-[[メニュー]]
-[[メニュー2]]

    </description>
    <dc:date>2006-07-17T11:08:55+09:00</dc:date>
    <utime>1153102135</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/bobobo_bo/pages/3.html">
    <title>メニュー2</title>
    <link>https://w.atwiki.jp/bobobo_bo/pages/3.html</link>
    <description>
      **更新履歴
#recent(20)
    </description>
    <dc:date>2006-07-17T11:08:55+09:00</dc:date>
    <utime>1153102135</utime>
  </item>
  </rdf:RDF>
