as you're at the developing cms level, go down the same path as tamiq did.

use css either for the handheld media version or use http protocols to
detect the device or the browser.

the handheld css that get included in your templates looks something like
this:
<link rel="stylesheet" type="text/css" href="mystyle.css" media="handheld"
/>
OR
@media screen
  {
  p.test {font-family:verdana,sans-serif;font-size:14px;}
  }
@media print
  {
  p.test {font-family:times,serif;font-size:10px;}
  }
@media screen,print
  {
  p.test {font-weight:bold;}
  }

check out
http://www.w3schools.com/css/css_mediatypes.asp

The option that tamiq didn't have (correct me if I'm wrong) is b eing able
to inject new lots of javascript.

the W3C have a OneWeb education program to highlight the limitations for web
browsers on any device and their limitations.
Flip Cards (quick and useful):
http://www.w3.org/2007/02/mwbp_flip_cards.html


As I just discovered while tracking some of the above links, I found a blog
post relating to iPhone development guidelines:
http://www.w3.org/QA/2007/08/iphone_developer_guidelines_pr.html

have fun

William Donovan



On 3 March 2010 00:04, rim negra <[email protected]> wrote:

> Hi
>
> please, I need to Know how to comunicate the CMS ant devlopping iphone
>
> I  have the same problem
>
> For me, I have the CMS created but I should add some content and comunicate
> via requsts to  the iphone
>
> plzzzzzzz help me
>
>
> 2010/2/28 tamiq <[email protected]>
>
> Hi, I have a very complex website. I would like to show on iPhone only
>> some parts of each subpage using iUI. The whole website is made via
>> Content Management System. The problem is that I don't have any
>> opportunity to write the unique Content Management System to iPhone
>> version of that webpage, I have to use the existing one and all the
>> content (including news) has to be every day up to date. Is there any
>> way to show only part of divs of each page? How to do that?
>> Thank you!
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "iPhoneWebDev" group.
>> To post to this group, send email to [email protected].
>> To unsubscribe from this group, send email to
>> [email protected]<iphonewebdev%[email protected]>
>> .
>> For more options, visit this group at
>> http://groups.google.com/group/iphonewebdev?hl=en.
>>
>>
>  --
> You received this message because you are subscribed to the Google Groups
> "iPhoneWebDev" group.
> To post to this group, send email to [email protected].
> To unsubscribe from this group, send email to
> [email protected]<iphonewebdev%[email protected]>
> .
> For more options, visit this group at
> http://groups.google.com/group/iphonewebdev?hl=en.
>

-- 
You received this message because you are subscribed to the Google Groups 
"iPhoneWebDev" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/iphonewebdev?hl=en.

Reply via email to