<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	
	xmlns:georss="http://www.georss.org/georss"
	xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#"
	>

<channel>
	<title>Java | Web活メモ帳</title>
	<atom:link href="https://blog.verygoodtown.com/category/java/feed/" rel="self" type="application/rss+xml" />
	<link>https://blog.verygoodtown.com</link>
	<description>WEB開発者が使える世界の情報を発信します</description>
	<lastBuildDate>Mon, 08 Mar 2010 11:38:03 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.9.10</generator>
<site xmlns="com-wordpress:feed-additions:1">122803348</site>	<item>
		<title>オープンソースのJAVAで作られたCMS「Apache Lenya」</title>
		<link>https://blog.verygoodtown.com/2010/03/open-source-java-cms-apache-lenya/</link>
					<comments>https://blog.verygoodtown.com/2010/03/open-source-java-cms-apache-lenya/#respond</comments>
		
		<dc:creator><![CDATA[linja]]></dc:creator>
		<pubDate>Tue, 09 Mar 2010 00:10:33 +0000</pubDate>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[CMS]]></category>
		<guid isPermaLink="false">http://blog.verygoodtown.com/?p=3094</guid>

					<description><![CDATA[<p>Apache LenyaはJava/XMLベースのコンテンツ管理システムです。 バージョン管理、サイト管理、スケジュール管理、検索機能、WYSIWYGエディタなどの機能を備えています。 詳しくは以下 以下のようなXMLを [&#8230;]</p>
The post <a href="https://blog.verygoodtown.com/2010/03/open-source-java-cms-apache-lenya/">オープンソースのJAVAで作られたCMS「Apache Lenya」</a> first appeared on <a href="https://blog.verygoodtown.com">Web活メモ帳</a>.]]></description>
										<content:encoded><![CDATA[<p><img loading="lazy" src="https://blog.verygoodtown.com/wordpress/wp-content/uploads/2010/03/20100308-02.jpg" alt="20100308-02" title="20100308-02" width="600" height="114" class="alignnone size-full wp-image-3097" srcset="https://blog.verygoodtown.com/wordpress/wp-content/uploads/2010/03/20100308-02.jpg 600w, https://blog.verygoodtown.com/wordpress/wp-content/uploads/2010/03/20100308-02-300x57.jpg 300w" sizes="(max-width: 600px) 100vw, 600px" /><br />
<a href="http://lenya.apache.org/" target="_blank">Apache Lenya</a>はJava/XMLベースのコンテンツ管理システムです。</p>
<p>バージョン管理、サイト管理、スケジュール管理、検索機能、WYSIWYGエディタなどの機能を備えています。</p>
<p>詳しくは以下<br />
<span id="more-3094"></span></p>
<p><img loading="lazy" src="https://blog.verygoodtown.com/wordpress/wp-content/uploads/2010/03/20100308-01.jpg" alt="20100308-01" title="20100308-01" width="600" height="370" class="alignnone size-full wp-image-3102" srcset="https://blog.verygoodtown.com/wordpress/wp-content/uploads/2010/03/20100308-01.jpg 600w, https://blog.verygoodtown.com/wordpress/wp-content/uploads/2010/03/20100308-01-300x185.jpg 300w" sizes="(max-width: 600px) 100vw, 600px" /></p>
<p>以下のようなXMLを記述していく事で、CMSを構築していくようです。</p>
<pre class="brush:xml;">
&lt;?xml&nbsp;version=&quot;1.0&quot;&nbsp;encoding=&quot;UTF-8&quot;?&gt;
&lt;publication&nbsp;xmlns=&quot;http://apache.org/cocoon/lenya/publication/1.1&quot;&gt;
&nbsp;&nbsp;
&nbsp;&nbsp;&lt;name&gt;My&nbsp;First&nbsp;Publication&lt;/name&gt;
&nbsp;&nbsp;&lt;version&gt;2.0-dev&lt;/version&gt;
&nbsp;&nbsp;&lt;lenya-version&gt;2.0-dev&lt;/lenya-version&gt;
&nbsp;&nbsp;&lt;cocoon-version&gt;2.1.10&lt;/cocoon-version&gt;
&nbsp;&nbsp;
&nbsp;&nbsp;&lt;languages&gt;
&nbsp;&nbsp;&nbsp;&nbsp;&lt;language&nbsp;default=&quot;true&quot;&gt;en&lt;/language&gt;
&nbsp;&nbsp;&nbsp;&nbsp;&lt;language&gt;de&lt;/language&gt;
&nbsp;&nbsp;&lt;/languages&gt;
&nbsp;&nbsp;
&nbsp;&nbsp;&lt;template-instantiator&nbsp;name=&quot;default&quot;/&gt;
&nbsp;&nbsp;&lt;path-mapper&gt;org.apache.lenya.cms.publication.DefaultDocumentIdToPathMapper&lt;/path-mapper&gt;
&nbsp;&nbsp;&lt;document-builder&nbsp;name=&quot;default&quot;/&gt;
&nbsp;&nbsp;&lt;site-manager&nbsp;name=&quot;tree&quot;/&gt;
&nbsp;&nbsp;
&nbsp;&nbsp;&lt;template&nbsp;id=&quot;default&quot;/&gt;
&nbsp;&nbsp;
&nbsp;&nbsp;&lt;content-dir&nbsp;src=&quot;/home/john/src/lenya/data/content&quot;/&gt;
&nbsp;&nbsp;
&nbsp;&nbsp;&lt;resource-types/&gt;
&nbsp;&nbsp;&lt;modules/&gt;
&nbsp;&nbsp;&lt;proxies/&gt;
&nbsp;
&lt;/publication&gt;
</pre>
<p>デフォルトで他言語対応がされており、スペイン語、イタリア語、フランス語、ドイツ語、英語、日本語が表示可能なようです。</p>
<p>オンラインデモもあるのですが、本日アクセスすると閲覧できませんでした、、、<br />
JAVAのCMSに興味のある方はダウンロードしてみてください。</p>The post <a href="https://blog.verygoodtown.com/2010/03/open-source-java-cms-apache-lenya/">オープンソースのJAVAで作られたCMS「Apache Lenya」</a> first appeared on <a href="https://blog.verygoodtown.com">Web活メモ帳</a>.]]></content:encoded>
					
					<wfw:commentRss>https://blog.verygoodtown.com/2010/03/open-source-java-cms-apache-lenya/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">3094</post-id>	</item>
		<item>
		<title>Twitterが参加しているオープンソースプロジェクト</title>
		<link>https://blog.verygoodtown.com/2010/02/twitter-commit-open-source-project/</link>
					<comments>https://blog.verygoodtown.com/2010/02/twitter-commit-open-source-project/#respond</comments>
		
		<dc:creator><![CDATA[linja]]></dc:creator>
		<pubDate>Mon, 22 Feb 2010 06:04:10 +0000</pubDate>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Twitter]]></category>
		<guid isPermaLink="false">http://blog.verygoodtown.com/?p=2656</guid>

					<description><![CDATA[<p>Twitterは様々なオープンソース技術で作成されているそうですが、中の人が貢献しているオープンソースプロジェクトが紹介されていました。 Twitter / OpenSource Ruby、Java、Scala、C/C+ [&#8230;]</p>
The post <a href="https://blog.verygoodtown.com/2010/02/twitter-commit-open-source-project/">Twitterが参加しているオープンソースプロジェクト</a> first appeared on <a href="https://blog.verygoodtown.com">Web活メモ帳</a>.]]></description>
										<content:encoded><![CDATA[<p><img loading="lazy" src="https://blog.verygoodtown.com/wordpress/wp-content/uploads/2010/02/20100221-02.png" alt="20100221-02" title="20100221-02" width="588" height="122" class="alignnone size-full wp-image-2657" srcset="https://blog.verygoodtown.com/wordpress/wp-content/uploads/2010/02/20100221-02.png 588w, https://blog.verygoodtown.com/wordpress/wp-content/uploads/2010/02/20100221-02-300x62.png 300w" sizes="(max-width: 588px) 100vw, 588px" /><br />
Twitterは様々なオープンソース技術で作成されているそうですが、中の人が貢献しているオープンソースプロジェクトが紹介されていました。</p>
<p><span id="more-2656"></span></p>
<ul>
<li><a href="http://twitter.com/about/opensource" target="_blank">Twitter / OpenSource</a></li>
</ul>
<p>Ruby、Java、Scala、C/C++で書かれており、<br />
負荷分散や、つぶやきをテキスト処理するためのルーチンなどが公開されています。</p>
<p>他の人の書いたプログラムは読むだけで勉強になりますよね。同じ言語を使用している方はダウンロードされてみてはいかがでしょうか。</p>The post <a href="https://blog.verygoodtown.com/2010/02/twitter-commit-open-source-project/">Twitterが参加しているオープンソースプロジェクト</a> first appeared on <a href="https://blog.verygoodtown.com">Web活メモ帳</a>.]]></content:encoded>
					
					<wfw:commentRss>https://blog.verygoodtown.com/2010/02/twitter-commit-open-source-project/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">2656</post-id>	</item>
		<item>
		<title>オープンソースのJSF用ライブラリ「OpenFaces」</title>
		<link>https://blog.verygoodtown.com/2010/01/%e3%82%aa%e3%83%bc%e3%83%97%e3%83%b3%e3%82%bd%e3%83%bc%e3%82%b9%e3%81%aejsf%e7%94%a8%e3%83%a9%e3%82%a4%e3%83%96%e3%83%a9%e3%83%aa%e3%80%8copenfaces%e3%80%8d/</link>
					<comments>https://blog.verygoodtown.com/2010/01/%e3%82%aa%e3%83%bc%e3%83%97%e3%83%b3%e3%82%bd%e3%83%bc%e3%82%b9%e3%81%aejsf%e7%94%a8%e3%83%a9%e3%82%a4%e3%83%96%e3%83%a9%e3%83%aa%e3%80%8copenfaces%e3%80%8d/#respond</comments>
		
		<dc:creator><![CDATA[linja]]></dc:creator>
		<pubDate>Wed, 20 Jan 2010 04:11:23 +0000</pubDate>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[JSF]]></category>
		<category><![CDATA[LGPL License]]></category>
		<guid isPermaLink="false">http://blog.verygoodtown.com/?p=719</guid>

					<description><![CDATA[<p>OpenFacesはJSFでできたオープンソースのコンポーネントです。 図、カレンダー、データテーブル、ポップアップ層、タブ用の枠、その他の20以上のコンポーネントを使用することができます。 デモを見て頂くと動作がわかる [&#8230;]</p>
The post <a href="https://blog.verygoodtown.com/2010/01/%e3%82%aa%e3%83%bc%e3%83%97%e3%83%b3%e3%82%bd%e3%83%bc%e3%82%b9%e3%81%aejsf%e7%94%a8%e3%83%a9%e3%82%a4%e3%83%96%e3%83%a9%e3%83%aa%e3%80%8copenfaces%e3%80%8d/">オープンソースのJSF用ライブラリ「OpenFaces」</a> first appeared on <a href="https://blog.verygoodtown.com">Web活メモ帳</a>.]]></description>
										<content:encoded><![CDATA[<p><img loading="lazy" src="https://blog.verygoodtown.com/wordpress/wp-content/uploads/jsf.jpg" alt="jsf" title="jsf" width="600" height="227" class="alignnone size-full wp-image-720" srcset="https://blog.verygoodtown.com/wordpress/wp-content/uploads/jsf.jpg 600w, https://blog.verygoodtown.com/wordpress/wp-content/uploads/jsf-300x113.jpg 300w" sizes="(max-width: 600px) 100vw, 600px" /><br />
<a href="http://www.openfaces.org/">OpenFaces</a>はJSFでできたオープンソースのコンポーネントです。</p>
<p>図、カレンダー、データテーブル、ポップアップ層、タブ用の枠、その他の20以上のコンポーネントを使用することができます。</p>
<p><span id="more-719"></span></p>
<p><a href="http://www.openfaces.org/demo/overview/homepage.jsf">デモ</a>を見て頂くと動作がわかると思いますが,UI部分の生成をしてくれるようです。<br />
JSFを使用されている方は検討してみてはいかがでしょうか。</p>The post <a href="https://blog.verygoodtown.com/2010/01/%e3%82%aa%e3%83%bc%e3%83%97%e3%83%b3%e3%82%bd%e3%83%bc%e3%82%b9%e3%81%aejsf%e7%94%a8%e3%83%a9%e3%82%a4%e3%83%96%e3%83%a9%e3%83%aa%e3%80%8copenfaces%e3%80%8d/">オープンソースのJSF用ライブラリ「OpenFaces」</a> first appeared on <a href="https://blog.verygoodtown.com">Web活メモ帳</a>.]]></content:encoded>
					
					<wfw:commentRss>https://blog.verygoodtown.com/2010/01/%e3%82%aa%e3%83%bc%e3%83%97%e3%83%b3%e3%82%bd%e3%83%bc%e3%82%b9%e3%81%aejsf%e7%94%a8%e3%83%a9%e3%82%a4%e3%83%96%e3%83%a9%e3%83%aa%e3%80%8copenfaces%e3%80%8d/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">719</post-id>	</item>
	</channel>
</rss>
