TalkPHP
 
 
Account Login
Latest Articles
» The basic usage of PHPTAL, a XML/XHTML template library for PHP
» Vulnerable methods and the areas they are commonly trusted in.
» Simple way to protect a form from bot
» The Basics On: How Session Stealing Works
» How to keep your forms from double posting data
IRC Channel
IRC Speech Bubble Join the friendly bunch on IRC...
(#TalkPHP on Freenode)

...Also available via a web interface.

See this thread for information on the TalkPHP Free Hugs Initiative™. Subject to availability.
Associates
Associates
CSS Tutorials
Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old 07-03-2009, 05:22 AM   #1 (permalink)
The Acquainted
 
Randy's Avatar
 
Join Date: May 2007
Location: Your G/F's Closet
Posts: 114
Thanks: 7
Randy is on a distinguished road
Default Html 5

Quote:
Originally Posted by Bruce Lawson, SitePoint.com
To some, it’s an outrageous attempt by browser manufacturers to foist what they want onto developers. In SitePoint’s HTML 5: Now or Never? article, Tommy Olsson described it as “an abomination ... it mocks everything I consider important on the Web.” Others see it as the way forward for developing powerful multimedia web apps on an open architecture, without Flash or Silverlight or similar proprietary technologies. Doug Schepers, the W3C’s Team Contact for the SVG and Web Apps Working Groups says, “HTML 5 is not a technical achievement, it’s a social movement.”

The reason that opinion is so divided is that HTML 5 is more than just a markup syntax for documents, like HTML 4 is. One clue is in the working group’s original name, before it was brought into the W3C camp: Web Hypertext Application Technology Working Group. The original goal for HTML 5 was to make it easier to develop Web applications. There’s evidence of this in the rash of new JavaScript APIs and support for offline development, some of which are already available in a browser near you.
Read More On Sitepoint.com

Find HTML 5 References on w3schools.com

-----------------------

I am curious what are your thoughts on this new concept for HTML 5?

Note: I take no claims for these articles and can not be help responsibly if they are inaccurate, I am simply posting for you to see and to get your opinion.
__________________
Real Programmers always confuse Christmas and Halloween because Oct31 == Dec25 - Andrew Rutherford
Send a message via AIM to Randy Send a message via MSN to Randy
Randy is offline  
Reply With Quote
Old 07-03-2009, 05:33 AM   #2 (permalink)
The Addict
 
adamdecaf's Avatar
 
Join Date: May 2009
Posts: 287
Thanks: 5
adamdecaf is on a distinguished road
Default

Well, aside from the lack of group cooperation (mostly on the <video> supported codec) it's going quite well. (I'm active on the WHATWG mailing list(s).)

The support is rolling in quite nicely (From Mozilla, Opera, Apple, and Google), IE is still failing to implement numerous features which will stall HTML5 to no end.

The goals of HTML5 are great and I'm really excited for the final release of the spec.
__________________
My Site
adamdecaf is offline  
Reply With Quote
Old 10-06-2009, 05:42 PM   #3 (permalink)
The Acquainted
 
buildakicker's Avatar
 
Join Date: Jan 2008
Posts: 119
Thanks: 21
buildakicker is on a distinguished road
Default HTML 5 Standards Mode

Hi all,

I have been thinking a lot about current web development and HTML 5. If I am starting a new site from the ground up, would it be adventageous to use DocType HTML 5 in my new page templates?

Is it true that I can use all of the same mark up from:
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
with the html 5 doctype?

Code:
<!DOCTYPE html>
And is it true that HTML5 doctype will force browsers to standards mode? If so, we should then begin developing with it right?
__________________
SkiLeases.com
buildakicker is offline  
Reply With Quote
Old 10-06-2009, 06:54 PM   #4 (permalink)
The Contributor
 
Join Date: Nov 2008
Location: Sweden
Posts: 36
Thanks: 1
hjalmar is on a distinguished road
Default

Quote:
Originally Posted by buildakicker View Post
Hi all,

I have been thinking a lot about current web development and HTML 5. If I am starting a new site from the ground up, would it be adventageous to use DocType HTML 5 in my new page templates?

Is it true that I can use all of the same mark up from:
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
with the html 5 doctype?

Code:
<!DOCTYPE html>
And is it true that HTML5 doctype will force browsers to standards mode? If so, we should then begin developing with it right?
Yes, with the html5 doctype you can use both the "loose" and the more strict syntax.

html5 will set any current IE browser to render in standards mode so nothing is stopping you from using it right now. Any advantages? yeah the much nicer doctype declaration :)

It's a long way there and is a process so to stay crossbrowser pretty much nothing has changed.
hjalmar is offline  
Reply With Quote
Old 10-06-2009, 07:29 PM   #5 (permalink)
how quixotic are you?
 
ETbyrne's Avatar
 
Join Date: Dec 2007
Location: Lapeer, MI
Posts: 445
Thanks: 37
ETbyrne is on a distinguished road
Default

While all the browsers I know of support the HTML Doctype, only a couple support the actual HTML5 tags (like <section> or <article>), so just be aware of that.
__________________
Dingo Web Systems > http://www.dingocode.com
My Website > http://www.evanbot.com
ETbyrne is offline  
Reply With Quote
Old 10-06-2009, 08:25 PM   #6 (permalink)
The Prestige
Advanced Programmer Top Contributor Good Samaritan 
 
sketchMedia's Avatar
 
Join Date: Oct 2007
Location: Manchester, UK
Posts: 854
Thanks: 32
sketchMedia is on a distinguished road
Default

I love the stuff you can do with javascript and canvas element, the web is gonna get much more interactive, very exciting time to be a web dev! However I fear these new technologies will only remain a small part of the web for years to come, thanks to Redmond dragging there feet as per usual.

Just look at some of this stuff:
http://www.chromeexperiments.com/

very impressive when you think its all html5 + js!
__________________
mysql> SELECT * FROM `users` WHERE `users`.`clue` > 0;
Empty set (0.00 sec)
sketchMedia is offline  
Reply With Quote
Old 10-07-2009, 12:37 AM   #7 (permalink)
The Addict
 
adamdecaf's Avatar
 
Join Date: May 2009
Posts: 287
Thanks: 5
adamdecaf is on a distinguished road
Default

Quote:
Originally Posted by ETbyrne View Post
While all the browsers I know of support the HTML Doctype, only a couple support the actual HTML5 tags (like <section> or <article>), so just be aware of that.
Most browsers, (barring Internet Explorer x.x+), treat any unknown elements as "xml"-ish. This means that they treat those elements as display:block, ect... They still have the normal properties, attributes, and abilities of previous elements <p>,<a>... but they are just not supported by HTML 4.

The IE team and browser is different because back in the way-hay-days of the web there were no real standards (there still are not, HTML5 is just a "forced" suggestion), just suggestions on what to do and how to do it. With IE having a monopoly on the web they decided to create algorithms to adapt and converge all the web documents into one method/design. This involved many contradicting terms, ideas, values, ect.. but created a magically compromised and similar page across many different systems.

With these adaptive algorithms came the need for those to stay similar to comply with business applications/processes. Thus when other bodies (standards groups, browser vendors) came into the view they all wanted to do their own way for everything. This has lead to almost two separate standards, IE and the w3c. Microsoft is stuck with the fact that they have to remain as consistent as possible for businesses and the w3c wants to push all of these radical ideas into the mix [Open Source [en,de]coding, universal error handling, exactly compliant fonts (size, shape, amount, quality), ect...].

With each new draft of HTML5 (no space) Microsoft is pushed farther and farther away from the new spec. They simply cannot change, and it's a very sad fact that I don't think the "open"/html5 web will come for 4-7+ years. IE will need to slowly integrate the new changes into the browser to allow businesses to cope and code for them.

(There may be errors, I wrote it in one shot.)

*EDIT* IE has actually implemented a few features that no other browser has. .onhashchange(); is a HTML5 proposed JS/DOM addition.

Quote:
Originally Posted by sketchMedia View Post
I love the stuff you can do with javascript and canvas element, the web is gonna get much more interactive, very exciting time to be a web dev! However I fear these new technologies will only remain a small part of the web for years to come, thanks to Redmond dragging there feet as per usual.

Just look at some of this stuff:
http://www.chromeexperiments.com/

very impressive when you think its all html5 + js!
All of the ideas have been around from the early computer days, but seeing as browsers have been text-only for a long time and are not compliant with images, being able to run full "touchscreen" applications and dynamic adaptations is really a miracle in design.

I love the new spec and it's very impressive.
__________________
My Site
adamdecaf is offline  
Reply With Quote
Reply



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Send function result to html page ? Peuplarchie General 1 05-04-2009 05:58 PM
HTML & Wordpress Integration Wildhoney General 2 01-10-2009 07:11 PM
problem getting data on the html table.... jetnet1 General 2 11-24-2008 05:55 PM
Exciting Stuff in HTML 5! Wildhoney XHTML, HTML, CSS 16 12-07-2007 12:25 PM
Make html pages work like php sam Tips & Tricks 2 02-09-2007 12:00 PM


All times are GMT. The time now is 08:29 AM.

 
     

Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.1.0
Inactive Reminders By Icora Web Design