<?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/"
	>

<channel>
	<title>Web Mahsulleri ! &#187; HTML</title>
	<atom:link href="http://www.webmahsulleri.com/tag/html/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.webmahsulleri.com</link>
	<description>İnsan Programı</description>
	<lastBuildDate>Thu, 02 Sep 2010 17:11:02 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>PHP Faces Programlanabilir Şablonlar</title>
		<link>http://www.webmahsulleri.com/php/php-faces/php-faces-programlanabilir-sablonlar/</link>
		<comments>http://www.webmahsulleri.com/php/php-faces/php-faces-programlanabilir-sablonlar/#comments</comments>
		<pubDate>Tue, 17 Nov 2009 10:18:25 +0000</pubDate>
		<dc:creator>Hüseyin Bora</dc:creator>
				<category><![CDATA[FDL]]></category>
		<category><![CDATA[PHP Faces]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Pattern]]></category>
		<category><![CDATA[Şablonlar]]></category>

		<guid isPermaLink="false">http://www.webmahsulleri.com/?p=506</guid>
		<description><![CDATA[Programlanabilir  şablonlar @htmlpattern lerdir yapısal geliştirme çalışmaları sürmektedir.
Örnek kullanıldığı her yerde1 ile 12 arasındaki sayıları gösteren pattern
Sablon.ptrn dosyası

&#60;faces&#62;
&#60;@htmlpattern name=&#34;yaz&#34; useprefix=&#34;my&#34;&#62;
&#60;c:for var=&#34;$i&#34; begin=&#34;1&#34; to=&#34;12&#34; step=&#34;1&#34;&#62;
&#60;div style=&#34;color:red;font-weight:bold;&#34; &#62; #{$i}  &#60;/div&#62;
&#60;/c:for&#62;
&#60;/@htmlpattern&#62;
&#60;/faces&#62;

View dosyası

&#60;faces&#62;
&#60;@face file=&#34;sablon.ptrn&#34;/&#62;
&#60;my:yaz/&#62;
&#60;/faces&#62;

Örneğin kullanıcı girişi için kullandığımız bir formumuz olsun formumuzu kullmak istediğimiz dosyaya include ederiz ve ismi ile etiketleriz
Sablon.ptrn dosyası

&#60;faces&#62;
&#60;@import taglib=&#34;phpf.ui.*&#34; prefix=&#34;f&#34;/&#62;
&#60;@import taglib=&#34;phpf.core&#34; prefix=&#34;c&#34; type=&#34;static&#34;/&#62;
&#60;@htmlpattern [...]]]></description>
		<wfw:commentRss>http://www.webmahsulleri.com/php/php-faces/php-faces-programlanabilir-sablonlar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bileşen Niteliklerine Controllerdan Erişim Örnek Style Kullanımı</title>
		<link>http://www.webmahsulleri.com/php/php-faces/bilesen-niteliklerine-controllerdan-erisim-ornek-style-kullanimi/</link>
		<comments>http://www.webmahsulleri.com/php/php-faces/bilesen-niteliklerine-controllerdan-erisim-ornek-style-kullanimi/#comments</comments>
		<pubDate>Fri, 11 Sep 2009 17:10:07 +0000</pubDate>
		<dc:creator>Hüseyin Bora</dc:creator>
				<category><![CDATA[PHP Faces]]></category>
		<category><![CDATA[AJAX]]></category>
		<category><![CDATA[Controller]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[DOJO]]></category>
		<category><![CDATA[Faces Controller]]></category>
		<category><![CDATA[Facete]]></category>
		<category><![CDATA[FDL]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Java Script]]></category>
		<category><![CDATA[MVC]]></category>
		<category><![CDATA[style]]></category>

		<guid isPermaLink="false">http://www.webmahsulleri.com/?p=248</guid>
		<description><![CDATA[Niteliklere erişiken nesne adı -&#62; nitelik adı şeklindendir. örneğim bir textbox birde button bileşenimiz olsun buttona tıklandığında textbox un rengini değiştirelim.  faces view tanımlaması aşağıdaki gibidir.

&#60;faces&#62;
&#60;@import taglib=&#34;phpf.ui.*&#34; prefix=&#34;face&#34;/&#62;
&#60;face:textbox name =&#34;yazi&#34;  text =&#34;Merhaba&#34;/&#62;
&#60;face:textbox name =&#34;button&#34;  text =&#34;Rengi Değiştir&#34;/&#62;
&#60;/faces&#62;


class Controller extends Facete{
function Controller(){
parent::FacesController();
$this-&#62;render("view.html");
}
function buttonClicked($evt){
$this-&#62;yazi-&#62;setProperty("style", "background:blue");
}
}

Örneğimizde textbox bileşenin style niteliğine background:blue değerini artardık ve rengini değiştirmiş olduk.
Bir niteliği [...]]]></description>
		<wfw:commentRss>http://www.webmahsulleri.com/php/php-faces/bilesen-niteliklerine-controllerdan-erisim-ornek-style-kullanimi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>İf etiketi</title>
		<link>http://www.webmahsulleri.com/php/php-faces/if-etiketi/</link>
		<comments>http://www.webmahsulleri.com/php/php-faces/if-etiketi/#comments</comments>
		<pubDate>Wed, 09 Sep 2009 02:01:29 +0000</pubDate>
		<dc:creator>Hüseyin Bora</dc:creator>
				<category><![CDATA[FDL]]></category>
		<category><![CDATA[FDL Core]]></category>
		<category><![CDATA[PHP Faces]]></category>
		<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://www.webmahsulleri.com/?p=135</guid>
		<description><![CDATA[if etiketi
Karşılaştırma yapmak için kullanılır test niteliğine karşılaştırma ifadesi yerleştirilir.
Örnek İf

&#60;faces&#62;
&#60;@import prefix=&#34;c&#34; taglib=&#34;phpf.core&#34; type=&#34;static&#34;/&#62;
&#60;c:if test=&#34;#{$name==&#039;bora&#039;}&#34;&#62;
&#60;c:out value=&#34;#{$name}&#34;/&#62;
&#60;/c:if&#62;
&#60;/faces&#62;
 
İf için başkabir örnek

&#60;faces&#62;
&#60;@import prefix=&#34;c&#34; taglib=&#34;phpf.core&#34; type=&#34;static&#34;/&#62;
&#60;c:if test=&#34;#{$i&#62;0  AND $i&#60;10}&#34;&#62;
&#60;c:out value=&#34;sayı  10 ile  1 arasinda&#34;/&#62;
&#60;/c:if&#62;
&#60;/faces&#62;
 
İf için başkabir örnek

&#60;faces&#62;
&#60;@import prefix=&#34;c&#34; taglib=&#34;phpf.core&#34; type=&#34;static&#34;/&#62;
&#60;c:if test=&#34;#{$name!=&#039;bora&#039;}&#34;&#62;
&#60;strong&#62;
&#60;c:out value=&#34;Bu benim adım değil !&#34;/&#62;
&#60;/strong&#62;
&#60;/c:if&#62;
&#60;/faces&#62;

]]></description>
		<wfw:commentRss>http://www.webmahsulleri.com/php/php-faces/if-etiketi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP Faces FDL Core kütüphanesi</title>
		<link>http://www.webmahsulleri.com/php/php-faces/php-faces-fdl-core-kutuphanesi/</link>
		<comments>http://www.webmahsulleri.com/php/php-faces/php-faces-fdl-core-kutuphanesi/#comments</comments>
		<pubDate>Wed, 09 Sep 2009 01:57:40 +0000</pubDate>
		<dc:creator>Hüseyin Bora</dc:creator>
				<category><![CDATA[FDL]]></category>
		<category><![CDATA[FDL Core]]></category>
		<category><![CDATA[PHP Faces]]></category>
		<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://www.webmahsulleri.com/?p=128</guid>
		<description><![CDATA[Core  statik bir etiket kütüphanesidir. içerisinde temel işlem etiketleri bulunur. bunlar

out
if
else
elseif
for
foreach

Core kütüphanesini aşağıdaki gibi view dosyasına dahil edilir

&#60;@import prefix=&#34;c&#34; taglib=&#34;phpf.core&#34; type=&#34;static&#34;/&#62;

Out etiketi
Çıktı için kullanılır. çıktıya gönderilecek veri  bu etiketin value niteliği ile belirtilir
Örnek Out

&#60;faces&#62;
&#60;@import prefix=&#34;c&#34; taglib=&#34;phpf.core&#34; type=&#34;static&#34;/&#62;
&#60;c:out value=&#34;Merhaba dünya&#34;/&#62;
&#60;c:out value=&#34;#{birdeğişken}&#34;/&#62;
&#60;/faces&#62;

]]></description>
		<wfw:commentRss>http://www.webmahsulleri.com/php/php-faces/php-faces-fdl-core-kutuphanesi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
