<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" version="2.0">

<channel>
	<title>cssgallery.info</title>
	
	<link>http://cssgallery.info</link>
	<description>Resources for web developers</description>
	<pubDate>Tue, 30 Jun 2009 18:13:06 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/Cssgalleryinfo" type="application/rss+xml" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
		<title>LAB.js  - a nifty little javascript loader</title>
		<link>http://cssgallery.info/labjs-a-nifty-little-javascript-loader/</link>
		<comments>http://cssgallery.info/labjs-a-nifty-little-javascript-loader/#comments</comments>
		<pubDate>Tue, 30 Jun 2009 18:06:03 +0000</pubDate>
		<dc:creator>dan_tamas</dc:creator>
		
		<category><![CDATA[Javascript]]></category>

		<category><![CDATA[mobile web]]></category>

		<category><![CDATA[photoshop]]></category>

		<guid isPermaLink="false">http://cssgallery.info/?p=407</guid>
		<description><![CDATA[LAB.js (Loading And Blocking JavaScript) allows you load in parallel your js scripts , speeding up the process ( sometimes a lot). But also it can force that scripts are loaded in a certain order, so this way no dependencies are broken.
The developer declares a 2x speed improvement on his site.
On an ondevelopment project , [...]]]></description>
			<content:encoded><![CDATA[<p><a title="lab.js" href="http://labjs.com/" target="_blank">LAB.js</a> (Loading And Blocking JavaScript) allows you load in parallel your js scripts , speeding up the process ( sometimes a lot). But also it can force that scripts are loaded in a certain order, so this way no dependencies are broken.</p>
<p>The developer declares a 2x speed improvement on his site.</p>
<p>On an ondevelopment project , with 9 js scripts and 282k without labjs the page loaded in 8 seconds and with labjs in 2.5. So we have a &gt;3x improvement.</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fcssgallery.info%2Flabjs-a-nifty-little-javascript-loader%2F';
  addthis_title  = 'LAB.js++-+a+nifty+little+javascript+loader';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
<img src="http://feeds.feedburner.com/~r/Cssgalleryinfo/~4/UcgPexRjBkQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://cssgallery.info/labjs-a-nifty-little-javascript-loader/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Common sense accessibility 2.0</title>
		<link>http://cssgallery.info/common-sense-accessibility-20/</link>
		<comments>http://cssgallery.info/common-sense-accessibility-20/#comments</comments>
		<pubDate>Mon, 22 Jun 2009 21:50:20 +0000</pubDate>
		<dc:creator>Lush</dc:creator>
		
		<category><![CDATA[Accessibility]]></category>

		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://cssgallery.info/?p=389</guid>
		<description><![CDATA[When it comes to accessibility, every coder is a small guru. On the websites where I bid for projects everybody is an accessibility and usability expert (including myself, I admit).
Altough these rules exist for quite a while there are coders who find it difficult to implement them - so I am trying to find here [...]]]></description>
			<content:encoded><![CDATA[<p>When it comes to accessibility, every coder is a small guru. On the websites where I bid for projects everybody is an accessibility and usability expert (including myself, I admit).</p>
<p>Altough these rules exist for quite a while there are coders who find it difficult to implement them - so I am trying to find here what are the tricks that you use in writing your code to make it accessible.  For example, altough writing semantic code helps (a lot !) it is not always enough.  Some try to view their pages with CSS and images disabled, some don&#8217;t.  Some of us have tricks that we do not want to share to other coders.  Some of us share. We&#8217;re not all gurus, right? Someone has to start from somewhere.</p>
<p>So if you have something interesting to say, add your own rules here.</p>
<p>Let&#8217;s start with basic common sense:</p>
<ol>
<li> write semantic and valid code - use correct tags while trying to satisfy Google&#8217;s needs - adapt the tags to the context</li>
<li>use lists for navigation and for consecutive link blocks</li>
<li>write accessible forms : use labels, server-side validation, even fieldset where necessary. Should I use <strong>type=&#8221;image&#8221; with alt text </strong>instead of submit? I don&#8217;t know&#8230;.I like submit. Camino does not :((</li>
<li>use the <strong>skip to content</strong> or <strong>skip navigation</strong> links. Everybody say you should&#8230;.</li>
<li>using a <strong>.wai class</strong> to hide text that might help screen readers - some people use display:none (not so good), some use negative indent.</li>
<li>provide transcriptions for video files (does Google do that for YouTube?), alt tags, longdesc tags, explanation for graphics (the coders who built Forex sites did that?), audio CAPCHA (do you do that???)</li>
<li>other common-sense ideas - use <strong>em</strong> or <strong>percent</strong> instead of px (altough Mozilla is a very good fellow and knows how to increase em, px, % and also images), use big text on buttons, appropriate contrast colours,  no animated gifs/blinking/flickering elements, align text on the left side,  don&#8217;t use &#8220;<strong>click here</strong>&#8221; links cause they ALL are click here&#8230;</li>
<li>write <strong>accessible tables</strong> : use th scope=&#8221;row&#8221; and &#8220;column&#8221;, id and header atributes to associate data cells with header cells,  use summary and caption to give extra clues about the content of the table (altough usually tables are preceded by headings and short paragraphs of text). Use tables to display data only.</li>
<li>provide a search function  - altough I build small brochure sites and I don&#8217;t embed search in them.  Do you? For small sites?</li>
<li>provide buttons to increase font size.  Sometimes  I do, sometimes I don&#8217;t, depending on what clients ask. I believe that people who have special needs know the CTRL + combination and use it, the A-, A+ buttons seem to me like a bit redundant.  Maybe I&#8217;m wrong&#8230; Also I do not provide a button to increase the line-height and other white spaces, I set the line-height in CSS to be bigger that the default. Is it good, is it bad? You tell me, I&#8217;m keen to know.</li>
</ol>
<p>Beside these rules there are lots more, some that make sense and are used, some that I don&#8217;t remember here. I&#8217;m having a short list of elements that I don&#8217;t use mainly because I do not have contact with them and I forget (or want to forget that)  they exist.  I&#8217;m still learning about more sensible elements for the  people in need so maybe I&#8217;m ignoring some details.</p>
<p>So, the next rules are not my favourites:</p>
<ol>
<li>use altkeys for navigation - a lot of people still argue about it, I&#8217;m waiting to see who wins</li>
<li>use title for frames - it shoud say &#8220;avoid frames&#8221;, but for who&#8217;s using them&#8230;.use titles</li>
<li>target=&#8221;_blank&#8221; issue - there is still a lot of arguing about forcing the user to an action that he/she does not want. It&#8217;s common-sense too, but for the coders not respecting the above rules this is too &#8230;. in-depth. For me, it&#8217;s like somebody adding sugar in my coffee when I mentioned that I like it black. What if I have diabetes?</li>
<li>use the focus indicator - I recognize I don&#8217;t bother too much to style it, altough I do tab sometimes through navigation links or form elements. <img src='http://cssgallery.info/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </li>
</ol>
<p>That&#8217;s it for now, these are some basic rules I have in mind when I code.  I do try to visualize the site with the CSS/images disabled but I am aware that this is not enough. The simple fact that I&#8217;m trying to improve my knowledge is my excuse. But I know it&#8217;s not enough and if you have similar sets of rules that guide you please share them here - to guide everyone who is trying to learn something useful.</p>
<p>Ohhh, I forgot: use image replacement techniques, it&#8217;s a great invention <img src='http://cssgallery.info/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fcssgallery.info%2Fcommon-sense-accessibility-20%2F';
  addthis_title  = 'Common+sense+accessibility+2.0';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
<img src="http://feeds.feedburner.com/~r/Cssgalleryinfo/~4/w6BcB-B18vo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://cssgallery.info/common-sense-accessibility-20/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Mootools with touch events</title>
		<link>http://cssgallery.info/mootools-with-touch-events/</link>
		<comments>http://cssgallery.info/mootools-with-touch-events/#comments</comments>
		<pubDate>Tue, 05 May 2009 11:55:48 +0000</pubDate>
		<dc:creator>dan_tamas</dc:creator>
		
		<category><![CDATA[MooTools]]></category>

		<category><![CDATA[iphone]]></category>

		<category><![CDATA[mobile web]]></category>

		<category><![CDATA[mootools iphone events]]></category>

		<guid isPermaLink="false">http://cssgallery.info/?p=379</guid>
		<description><![CDATA[I am so used with MooTools as I started to forgot the basic javascript, and more, I started to dislike a lot to write code in pure js. But MooTools lacks the touch events ipod and iphone has. So I wrote a small code that adds the touchevents -  well, touch, gesture, animation and transform [...]]]></description>
			<content:encoded><![CDATA[<p>I am so used with MooTools as I started to forgot the basic javascript, and more, I started to dislike a lot to write code in pure js. But MooTools lacks the touch events ipod and iphone has. So I wrote a small code that adds the touchevents -  well, touch, gesture, animation and transform -  to the Element class.</p>
<p>This will only  help you to add and remove the touch events the MooTools way, you still need to use e.preventDefault() as e.stop() is not working, and to detect touches by yourself. But at least you can use addEvent and removeEvent.</p>
<p>I am sure it can be improved, so If you have any ideas, just let me know.</p>
<p>Oh, yes, the code is here: <a href="http://cssgallery.info/wp-content/mootouch.js" target="_blank">mootouch.js</a></p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fcssgallery.info%2Fmootools-with-touch-events%2F';
  addthis_title  = 'Mootools+with+touch+events';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
<img src="http://feeds.feedburner.com/~r/Cssgalleryinfo/~4/_QXhswoVcVI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://cssgallery.info/mootools-with-touch-events/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Change Phonegap project  to reflect your app name</title>
		<link>http://cssgallery.info/change-phonegap-project-to-reflect-your-app-name/</link>
		<comments>http://cssgallery.info/change-phonegap-project-to-reflect-your-app-name/#comments</comments>
		<pubDate>Fri, 10 Apr 2009 00:09:31 +0000</pubDate>
		<dc:creator>dan_tamas</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://cssgallery.info/?p=374</guid>
		<description><![CDATA[Phonegap is a nice framework for webdevelopers. It helps to build a native iPhone( and other devices) app using what you already know.
But the submission to Appstore  can be a pain due to some app reviewers that consider PhoneGap as &#8220;private api&#8221;.
The single way to avoid this is to change any reference to PhoneGap inside [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://phonegap.com/" target="_blank">Phonegap</a> is a nice framework for webdevelopers. It helps to build a native iPhone( and other devices) app using what you already know.</p>
<p>But the submission to Appstore  can be a pain due to some app reviewers that consider PhoneGap as &#8220;private api&#8221;.</p>
<p>The single way to avoid this is to change any reference to PhoneGap inside the code. Is not simple but can save you few weeks of waiting.</p>
<p><strong>Steps</strong>: ( considering our app named &#8220;<strong>Myapp</strong>&#8220;)</p>
<p>1. copy the phonegap project to another folder - Myapp.</p>
<p>2. change <strong>PhoneGap_Prefix.pch</strong> file name to <strong>Myapp_Prefix.pch</strong></p>
<p>3. Change <strong>PhoneGap.xcodeproj</strong> file name to <strong>Myapp.xcodeproj</strong></p>
<p>4. Delete the <strong>build</strong> folder</p>
<p>5. <strong>Rightclick</strong> on <strong>Myapp.xcodeproj -&gt;Show Package Contents</strong></p>
<p>6. Open <strong>your_user.pbxuser</strong> with a texteditor(textmate ?) and do a search replace for all  <strong>PhoneGap</strong> to <strong>Myapp </strong>( no matter if is alone or inside a string).</p>
<p>7. Open <strong>project.pbxproj</strong> with a texteditor and do a search replace for all <strong>PhoneGap</strong> to <strong>Myapp </strong>( no matter if is alone or inside a string).</p>
<p>8. Open <strong>MainWindow.xib</strong> with a texteditor and do a search replace for all <strong>PhoneGap</strong> to <strong>Myapp<span style="font-weight: normal;"> ( no matter if is alone or inside a string).</span></strong></p>
<p>9. Open <strong>Myapp.xcodeproj</strong> in <strong>Xcode</strong>.</p>
<p>10. Rename here, in <strong>Xcode</strong> using <strong>rightclick-&gt; rename</strong> all the files in <strong>Classes </strong>folder that contains <strong>PhoneGap</strong> in name with <strong>Myapp</strong> ( for example PhoneGapDelegate.h to MyappDelegate.h )</p>
<p>11. File by file, in folder <strong>Classes</strong>, replace inside any <strong>PhoneGap</strong> string with <strong>Myapp</strong></p>
<p>12. Do a <strong>Clean all</strong>.</p>
<p>13. Do a <strong>Build and Go</strong> ( and pray <img src='http://cssgallery.info/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> )</p>
<p> </p>
<p>This should be all.</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fcssgallery.info%2Fchange-phonegap-project-to-reflect-your-app-name%2F';
  addthis_title  = 'Change+Phonegap+project++to+reflect+your+app+name';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
<img src="http://feeds.feedburner.com/~r/Cssgalleryinfo/~4/D9eu4VOurCM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://cssgallery.info/change-phonegap-project-to-reflect-your-app-name/feed/</wfw:commentRss>
		</item>
		<item>
		<title>iPhone for the rest of us</title>
		<link>http://cssgallery.info/iphone-for-the-rest-of-us/</link>
		<comments>http://cssgallery.info/iphone-for-the-rest-of-us/#comments</comments>
		<pubDate>Mon, 06 Apr 2009 12:03:41 +0000</pubDate>
		<dc:creator>dan_tamas</dc:creator>
		
		<category><![CDATA[iphone]]></category>

		<category><![CDATA[mac os x]]></category>

		<category><![CDATA[mobile web]]></category>

		<category><![CDATA[iphone dvelopment]]></category>

		<guid isPermaLink="false">http://cssgallery.info/?p=365</guid>
		<description><![CDATA[iPhone is a nice platform to develop for. The appstore made possible to transform a hobby or a simple idea into a good income source, due to the popularity of iPhone and the low prices of the apps found here .
Bu what about the rest of coders that come from the pure web side of [...]]]></description>
			<content:encoded><![CDATA[<p>iPhone is a nice platform to develop for. The appstore made possible to transform a hobby or a simple idea into a good income source, due to the popularity of iPhone and the low prices of the apps found here .<br />
Bu what about the rest of coders that come from the pure web side of the programming ( like me ) -  php, javascript, ror, etc ?<br />
Below I&#8217;ll try to make a list with components you can use to develop for iPhone using only what you know, or learn only few things more.<br />
Apps for iPhone are separated into 2 groups -  native apps and webapps.</p>
<p>Native apps use their SDK and runs native on  and from the phone, while webapps run inside safari, and are fetched from an external sever.</p>
<p><strong>Frameworks</strong></p>
<p>Here comes one type of projects , that managed to make a bridge between the 2 types of applications, using a native instance of webkit to render and use html/css/js files  -  from local space of the device and/or a remote server.</p>
<p>Usually the frameworks expose some native device functions -  camera, accelerometer, contacts,geolocation to javascript methods, so you can use it on your apps.</p>
<p><a href="http://www.big5apps.com/" target="_blank">Big5apps</a> -  it lets you access some features of the device using javascript -  like image, camera,sound,geolocation</p>
<p><a href="http://www.phonegap.com/" target="_blank">Phonegap</a> - is intended to be a cross-device platform, covering iphone,blackberry,android.</p>
<p><a href="http://liquidgear.net/index.php" target="_blank">Liquidgear</a> - seems to be a fork of phonegap, but oriented on the iphone only, so the development of this framework get another course, more specific for the iPhone device.</p>
<p><a href="http://quickconnect.sourceforge.net/browser/index.html" target="_blank">Quickconnect</a> - allows you to use a template for dashcode or for xcode to develop for iphone using web technologies.</p>
<p>The above frameworks needs only the effort to learn a little of xcode usage.</p>
<p><strong>JavaScript/CSS/HTML  Llibraries</strong></p>
<p>WebKit for iPhone or other mobile devices is a little different -  for example touch events, or hardware accelerated css transforms. For this you need to develop your own functions/methods, or to adapt other scripts to to use this.</p>
<p>Or, you can use one of the below js scripts/frameworks.</p>
<p><a href="http://xuijs.com/" target="_blank">XUI</a></p>
<p>A simple javascript framework for building mobile web applications.XUI strives to be a framework for first class mobile device browsers such as WebKit, Fennec and Opera with future support under consideration for IE Mobile and BlackBerry.</p>
<p><a href="http://www.jeffmcfadden.com/projects/Magic%20Framework/" target="_blank">MagicFramework</a></p>
<p>Magic Framework is a native iPhone UI imitator and HTML5 db interface built in html/css/javascript. It&#8217;s useful for online websites or on-device Webkit-based applications looking to imitate the native iPhone UI and/or use native storage without having to write native code.</p>
<p>Dashcode</p>
<p> Apple&#8217;s web toolkit</p>
<p><a href="http://www.jqtouch.com/" target="_blank">jQTouch</a></p>
<p>A jQuery plugin with native animations, auto list navigation, and default application styles for Mobile WebKit browsers like iPhone, G1, and Pre.</p>
<p><a href="http://www.clientcide.com/cnet-js-standards/ciui-cnet-iphone-ui/" target="_blank">CiUI</a></p>
<p>CNET iPhone UI</p>
<p><a href="http://code.google.com/p/safire/" target="_blank">Safire</a></p>
<p>Safire is an open source framework written in HTML/CSS/JS</p>
<p>It make&#8217;s building/porting applications to the iPhone ridiculously easy.</p>
<p><a href="http://iwebkit.net/" target="_blank">iWebKit</a></p>
<p>iWebKit is a file package designed to help you create your own iPhone and iPod Touch compatible website or webapp. The kit is accessible to anyone even people without any html knowledge and is simple to understand thanks to the included tutorials. In a couple of minutes you will have created a full and profes</p>
<p><a href="http://code.google.com/p/iphone-universal/" target="_blank">iphone-universal</a></p>
<p>The framework is based on 1 stylesheet and several HTML examples, also, it contains original artwork so you can edit them in Adobe Photoshop CS and adapt it to your projects.</p>
<p><a href="http://code.google.com/p/iui/" target="_blank">iUi </a></p>
<p>Based on <a rel="nofollow" href="http://joehewitt.com/">Joe Hewitt</a>&#8217;s iPhone navigation work, <strong>iUI</strong> has the following features:</p>
<ul>
<li>Create Navigational Menus and iPhone interfaces from standard HTML</li>
<li>Use or knowledge of JavaScript is not required to create basic iPhone pages</li>
<li>Ability to handle phone orientation changes</li>
<li>Provide a more &#8220;iPhone-like&#8221; experience to Web apps (on or off the iPhone)</li>
</ul>
<p><strong>Tools</strong></p>
<p>Iphone Simulator</p>
<p>It comes with Apple&#8217;s SDK</p>
<p><a href="http://blogs.nitobi.com/yohei/?p=38" target="_blank">Phonegap iphone emulator</a></p>
<p>To test apps built with phonegap</p>
<p><a href="http://marketcircle.com/iphoney/" target="_blank">iPhoney</a> </p>
<p>iPhoney gives you a pixel-accurate web browsing environment—powered by Safari—that you can use when developing web sites for iPhone. It&#8217;s the perfect 320 by 480-pixel canvas for your iPhone development.</p>
<p><a href="http://www.testiphone.com/" target="_blank">TestiPhone.com</a></p>
<p>This is a web browser based simulator for quickly testing your iPhone Applications. This tool has been so far tested and working using Internet Explorer 7, FireFox 2 and Safari 3 in Windows, but you ned Safari to get the real experience.</p>
<p><a href="http://www.apple.com/safari/download/" target="_blank">Safari 4</a></p>
<p>Well&#8230;no comment here <img src='http://cssgallery.info/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p> </p>
<p>Ok, almost all the above tools needs a mac to be able to use. But  to develop for iPhone, you will need a mac anyway.</p>
<p>Have I missed something ? Let me know.</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fcssgallery.info%2Fiphone-for-the-rest-of-us%2F';
  addthis_title  = 'iPhone+for+the+rest+of+us';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
<img src="http://feeds.feedburner.com/~r/Cssgalleryinfo/~4/1Ti1VbUJhj4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://cssgallery.info/iphone-for-the-rest-of-us/feed/</wfw:commentRss>
		</item>
		<item>
		<title>PhoneGap  iphone emulator</title>
		<link>http://cssgallery.info/phonegap-iphone-emulator/</link>
		<comments>http://cssgallery.info/phonegap-iphone-emulator/#comments</comments>
		<pubDate>Sat, 04 Apr 2009 13:56:07 +0000</pubDate>
		<dc:creator>dan_tamas</dc:creator>
		
		<category><![CDATA[iphone]]></category>

		<category><![CDATA[mobile web]]></category>

		<category><![CDATA[iphone development]]></category>

		<category><![CDATA[phonegap]]></category>

		<guid isPermaLink="false">http://cssgallery.info/?p=355</guid>
		<description><![CDATA[I  just want to signal a great developing tool, from Nitobi, the guys that created Phonegap.
Is an mobile phone simulator ( emulator ) build in AdobeAir, that alows you to test and debug your apps developed for iphone,android,palm pre or blackberry using the Phonegap framework.
Is jut a beta version but offers a preview of the final [...]]]></description>
			<content:encoded><![CDATA[<p>I  just want to signal a great developing tool, from <a href="http://www.nitobi.com/" target="_blank">Nitobi</a>, the guys that created <a href="http://www.phonegap.com/" target="_blank">Phonegap</a>.</p>
<p>Is an <a href="http://blogs.nitobi.com/yohei/?p=38">mobile phone simulator ( emulator )</a> build in AdobeAir, that alows you to test and debug your apps developed for iphone,android,palm pre or blackberry using the Phonegap framework.</p>
<p>Is jut a beta version but offers a preview of the final tool that for sure will represent a great developing tool for this framework.</p>
<p>Right now it allows you to test the accelerator response of the device  -  a thing not possible on iPhone Simulator form Apple, and also respond to some events -  like sound or vibrate.</p>

<a href='http://cssgallery.info/phonegap-iphone-emulator/capture-4-2/' title='capture-4'><img src="http://cssgallery.info/wp-content/uploads/2009/04/capture-4-150x150.png" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://cssgallery.info/phonegap-iphone-emulator/capture-6/' title='capture-6'><img src="http://cssgallery.info/wp-content/uploads/2009/04/capture-6-150x150.png" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://cssgallery.info/phonegap-iphone-emulator/capture-7/' title='capture-7'><img src="http://cssgallery.info/wp-content/uploads/2009/04/capture-7-150x150.png" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://cssgallery.info/phonegap-iphone-emulator/capture-8/' title='capture-8'><img src="http://cssgallery.info/wp-content/uploads/2009/04/capture-8-150x150.png" width="150" height="150" class="attachment-thumbnail" alt="" /></a>

<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fcssgallery.info%2Fphonegap-iphone-emulator%2F';
  addthis_title  = 'PhoneGap++iphone+emulator';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
<img src="http://feeds.feedburner.com/~r/Cssgalleryinfo/~4/DcrEUbna8Hc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://cssgallery.info/phonegap-iphone-emulator/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Wallpapers  contest :)</title>
		<link>http://cssgallery.info/wallpapers-contest/</link>
		<comments>http://cssgallery.info/wallpapers-contest/#comments</comments>
		<pubDate>Wed, 18 Mar 2009 12:41:29 +0000</pubDate>
		<dc:creator>dan_tamas</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[gallery]]></category>

		<category><![CDATA[wallpapers]]></category>

		<guid isPermaLink="false">http://cssgallery.info/?p=347</guid>
		<description><![CDATA[Nicewallpapers.info is organizing a wallpaper contest with the easter subject.
All you have to do is to upload as many   wallpapers as you have ( please don&#8217;t steal other people work  ), and win 100$.
 

  addthis_url    = 'http%3A%2F%2Fcssgallery.info%2Fwallpapers-contest%2F';
  addthis_title  = 'Wallpapers++contest+%3A%29';
  addthis_pub    = '';

]]></description>
			<content:encoded><![CDATA[<p>Nicewallpapers.info is organizing a <a href="http://www.nicewallpapers.info/wallpapers-contest.html" target="_blank">wallpaper contest</a> with the easter subject.</p>
<p>All you have to do is to upload as many   wallpapers as you have ( please don&#8217;t steal other people work <img src='http://cssgallery.info/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> ), and win 100$.</p>
<p> </p>
<div id="attachment_348" class="wp-caption alignnone" style="width: 412px"><img class="size-full wp-image-348" title="nicewallpapers.info" src="http://cssgallery.info/wp-content/uploads/2009/03/capture-2.png" alt="nicewallpapers.info" width="402" height="290" /><p class="wp-caption-text">nicewallpapers.info</p></div>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fcssgallery.info%2Fwallpapers-contest%2F';
  addthis_title  = 'Wallpapers++contest+%3A%29';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
<img src="http://feeds.feedburner.com/~r/Cssgalleryinfo/~4/O3aeu4SM6Kw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://cssgallery.info/wallpapers-contest/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Mootools - browser sniffing</title>
		<link>http://cssgallery.info/mootools-browser-sniffing/</link>
		<comments>http://cssgallery.info/mootools-browser-sniffing/#comments</comments>
		<pubDate>Tue, 17 Mar 2009 17:12:54 +0000</pubDate>
		<dc:creator>dan_tamas</dc:creator>
		
		<category><![CDATA[Javascript]]></category>

		<category><![CDATA[MooTools]]></category>

		<category><![CDATA[browser sniff]]></category>

		<guid isPermaLink="false">http://cssgallery.info/?p=344</guid>
		<description><![CDATA[I know, I know, browser sniffing is a bad habit and it should not be used, but still, there are cases when you will want to display a message to the user (ordinary users, that don&#8217;t hack their&#8217;s browser navigator.userAgent), or you really need to know what browser is.
For example Chrome. Is ok, is webkit, [...]]]></description>
			<content:encoded><![CDATA[<p>I know, I know, browser sniffing is a bad habit and it should not be used, but still, there are cases when you will want to display a message to the user (ordinary users, that don&#8217;t hack their&#8217;s browser navigator.userAgent), or you really need to know what browser is.</p>
<p>For example Chrome. Is ok, is webkit, but is not webkit&#8230; transparent png, with opacity set lower then 1 will look just awful in  Chrome.</p>
<p>So I wrote a simple function, &#8220;stealing&#8221; some code from <a href="http://www.quirksmode.org/js/detect.html" target="_blank">PPK.</a></p>
<p>Include <a href="http://cssgallery.info/wp-content/browser_sniff.js" target="_blank">the script</a> in your pages, and it will give you 2 more variables in Browser.Engine:</p>
<p>Browser.Engine.browserName</p>
<p>Browser.Engine.browserVersion</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fcssgallery.info%2Fmootools-browser-sniffing%2F';
  addthis_title  = 'Mootools+-+browser+sniffing';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
<img src="http://feeds.feedburner.com/~r/Cssgalleryinfo/~4/vd1vtFOx2dU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://cssgallery.info/mootools-browser-sniffing/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Two web icons sets from semlabs</title>
		<link>http://cssgallery.info/two-web-icons-sets-from-semlabs/</link>
		<comments>http://cssgallery.info/two-web-icons-sets-from-semlabs/#comments</comments>
		<pubDate>Sat, 14 Mar 2009 00:38:13 +0000</pubDate>
		<dc:creator>dan_tamas</dc:creator>
		
		<category><![CDATA[Design]]></category>

		<category><![CDATA[Icons]]></category>

		<category><![CDATA[Submitted news]]></category>

		<category><![CDATA[free icons]]></category>

		<guid isPermaLink="false">http://cssgallery.info/?p=340</guid>
		<description><![CDATA[SemLabs just released two free iconsets:

Free Web Design Icon Set

The Free Web Design Icon Set is a collection of 310 icons in PNG format.
They are 16&#215;16 pixels in diameter. The set is designed to be used on web projects, but may also be useful for systems icons and for print. This icon pack is free [...]]]></description>
			<content:encoded><![CDATA[<p>SemLabs just released two free iconsets:</p>
<div class="header">
<p class="post_title"><a href="http://semlabs.co.uk/journal/free-web-design-icon-set" target="_blank">Free Web Design Icon Set</a></p>
</div>
<p>The Free Web Design Icon Set is a collection of 310 icons in PNG format.<br />
They are 16&#215;16 pixels in diameter. The set is designed to be used on web projects, but may also be useful for systems icons and for print. This icon pack is free to use in commercial and non-commercial projects,modify and distribute.</p>
<p>and</p>
<p class="post_title"><a href="http://semlabs.co.uk/journal/sem-labs-web-blog-icon-pack" target="_blank">SEM Labs Web Blog Icon Pack</a></p>
<p>The SEM Labs Icon Set is a pack of 52 icons in PNG format.</p>
<p>They are 48&#215;48 pixels in diameter. The set is specifically designed for blogs and have an SEO theme. However over the coming months more icons will be<br />
added to it to give them a broader scope.</p>
<p>They are released under the Creative Commons (by) Licence.</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fcssgallery.info%2Ftwo-web-icons-sets-from-semlabs%2F';
  addthis_title  = 'Two+web+icons+sets+from+semlabs';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
<img src="http://feeds.feedburner.com/~r/Cssgalleryinfo/~4/RFDlF4C-C5U" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://cssgallery.info/two-web-icons-sets-from-semlabs/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Unobtrusive PHP ?</title>
		<link>http://cssgallery.info/unobtrusive-php/</link>
		<comments>http://cssgallery.info/unobtrusive-php/#comments</comments>
		<pubDate>Wed, 04 Feb 2009 03:53:04 +0000</pubDate>
		<dc:creator>dan_tamas</dc:creator>
		
		<category><![CDATA[Javascript]]></category>

		<category><![CDATA[Php]]></category>

		<category><![CDATA[form]]></category>

		<category><![CDATA[validator]]></category>

		<guid isPermaLink="false">http://cssgallery.info/?p=326</guid>
		<description><![CDATA[Strange? 
What do you say, if we use this term for a form validation, server side? I say &#8220;Unobrusive PHP&#8221; because is what I know, but it can be any other language.
Let me explain:
We already do this in javascript. We attach a class to a field we want to validate, then, when the user try to [...]]]></description>
			<content:encoded><![CDATA[<p>Strange? </p>
<p>What do you say, if we use this term for a form validation, server side? I say &#8220;Unobrusive PHP&#8221; because is what I know, but it can be any other language.</p>
<p>Let me explain:</p>
<p>We already do this in javascript. We attach a class to a field we want to validate, then, when the user try to submit, we try to validate the input by a rule associated to the class. All is fine, only that we need to make this server-side too, we cannot trust the users, don&#8217;t we.</p>
<p>So what if to the input name, we attach a specific segment, that will be validated once it reach the server, removes the attachment, and pass further the data like never happened?</p>
<p>something like:</p>
<blockquote><p>&lt;input type=&#8221;text&#8221; name=&#8221;email&#8221; /&gt;</p></blockquote>
<p>for js validation would be </p>
<blockquote><p>&lt;input type=&#8221;text&#8221; name=&#8221;email&#8221; class=&#8221;email&#8221;/&gt;</p></blockquote>
<p>for php would be</p>
<blockquote><p>&lt;input type=&#8221;text&#8221; name=&#8221;email___email&#8221; /&gt;</p></blockquote>
<p>and the validation class would take the<strong> $_POST</strong> array, search for a value  that contains <strong>___email</strong>, validates it, then simple remove the segment for further processing.</p>
<blockquote><p>$_POST["emai"] = $_POST["email___email"];</p></blockquote>
<p>This idea is the preamble of a next post regarding a more  universal validator for forms.<br />
Is only a concept. Let me now your thoughts.</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fcssgallery.info%2Funobtrusive-php%2F';
  addthis_title  = 'Unobtrusive+PHP+%3F';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
<img src="http://feeds.feedburner.com/~r/Cssgalleryinfo/~4/pQLblo2Jv3E" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://cssgallery.info/unobtrusive-php/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
