Content deleted Content added
ChrisLoosley (talk | contribs) m Removed from "do not edit" category |
fix |
||
(15 intermediate revisions by 5 users not shown) | |||
Line 17:
==Web development activities==
Web development is a special form of [[Software development process|Software development]], a broad topic that is covered in [[:Category:Software development process|many Wikipedia articles]]. The principal activities of any software development process are [[software requirements analysis|requirements analysis]], [[software architecture|architecture and design]], [[software programming|programming]], [[software testing|testing]], and [[software deployment|deployment]]. Although a Web development process incorporates corresponding activities, the
#'''Requirements Analysis'''
Line 32:
''To begin the process of creating the following sections, I have included sample descriptions of each activity or phase, which I will edit. They are taken from Diamond Bullet Design, Inc. [http://www.diamondbullet.com/process.txl]. Their process parallels the Web development process presented in the book "Usability For The Web", by [http://simplytom.com/index.html Tom Brinck], Darren Gergle, and Scott D. Wood. ([http://books.elsevier.com/us/mk/us/subindex.asp?isbn=1558606580&country=United+States&community=mk&ref=&mscssid=Q7FR0KR3T0JF8HWVGWR5MA88QKSC5MNE Publisher's page]), which contains the most complete and well structured description of a Web development process I am familiar with.'' [[User:ChrisLoosley|Chris Loosley]] 21:06, 29 December 2006 (UTC)
This [http://en.wikipedia.org/w/index.php?title=Software_design&oldid=96803152 older version] of the [[Software design]] article also contained material on process steps. [[User:ChrisLoosley|Chris Loosley]] 22:32, 15 January 2007 (UTC)
===Requirements Analysis===
Line 58 ⟶ 60:
'''Production''': We create the finished product;from final text and graphic content to software development and implementation. Guided by comprehensive processes of quality assurance and usability evaluation, we develop a product that delights users and meets or exceeds our established benchmarks. ''[http://www.diamondbullet.com/process.txl (C) Copyright 2002. Diamond Bullet Design, Inc.]''
====CSS versus HTML tables for page layout====
''I moved this section here from the current article on Web design, made some edits for readability, deleted the last half (see below for text) as POV and containing too much detail.'' [[User:ChrisLoosley|Chris Loosley]] 04:03, 2 January 2007 (UTC)
{{details|Web design (Tableless)}}
When [[Netscape Navigator]] 4 dominated the [[Web browser]] market, the popular (but now [[deprecated]]) way to lay out a Web page was to use [[HTML table]]s. Often even simple designs for a page would require dozens of tables nested inside one another. Many [[web templates]] in [[Dreamweaver]] and other [[WYSIWYG]] editors still use this technique today. Navigator 4 didn't support [[Cascading Style Sheets]] (CSS) well, so it simply wasn't used. But after the [[browser wars]] were over, and [[Internet Explorer]] dominated the market, the practice of using of CSS to lay out pages grew steadily.
CSS proponents argue that tables should be used to present tabular data, but not to control page layout. Using CSS instead of tables also returns HTML to a [[semantic markup]], which helps [[bots]] and search engines understand what's going on in a web page.
Today, all modern browsers incorporate some degree of [[Comparison of layout engines (CSS)|support for CSS]]. However, because the various browsers support different subsets of CSS rules, a given CSS specification can be displayed in slightly different ways. This gives rise to the criticism that relying exclusively on CSS for layout means to relinquish control of page appearance. Consequently, detractors argue that -- for someone with experience using table-based layouts -- developing using CSS amounts to trying to replicate what can already be done with tables. As a result, some developers still find CSS rather cumbersome.
''I moved this section here from the current article on Web design. It is currently unchanged. I need to research whether any other articles cover this subject matter.'' [[User:ChrisLoosley|Chris Loosley]] 04:08, 2 January 2007 (UTC)
[[Adobe Flash]] (formerly [[Macromedia]] Flash) is a proprietary, robust graphics animation/application development program used to create and deliver dynamic content, media (such as sound and video), and interactive applications over the web via the browser.
Flash is not a standard produced by a vendor-neutral standards organization like most of the core protocols and formats on the Internet. Flash is much more restrictive than the [[Open format|open]] HTML format, though, requiring a [[Proprietary software|proprietary]] plugin to be seen, and it does not integrate with most [[web browser]] UI features like the "Back" button. However, those restrictions may be useful depending on the goals of the web site design.
Flash as a format has become very widespread on the desktop market. According to [http://www.npd.com/ NPD] [http://www.macromedia.com/software/player_census/npd/ study], 98% of US Web users have the Flash Player installed [http://www.macromedia.com/software/player_census/flashplayer/], with 45%-56%[http://www.macromedia.com/software/player_census/flashplayer/version_penetration.html] (depending on region) having the latest version. Numbers vary depending on the detection scheme and research demographics.
Many graphic artists use Flash because it gives them exact control over every part of the design, and anything can be animated and generally "jazzed up". Some application designers enjoy flash because it lets them create applications that don't have to be refreshed or go to a new web page every time an action occurs. Flash can use embedded fonts instead of the standard fonts installed on most computers. There are many sites which forego HTML entirely for Flash. Other sites may use flash content combined with html as conservatively as gifs or jpegs would be used, but with smaller vector file sizes and the option of faster loading animations. Flash may also be used to protect content from unauthorized duplication or searching.
Flash detractors claim that Flash websites tend to be poorly designed, and often use confusing and non-standard user-interfaces. Up until recently, search engines have been unable to index Flash objects, which has prevented sites from having their contents easily found. It is possible to specify alternate content to be displayed for browsers that do not support Flash. Using alternate content also helps [[search engine]]s to understand the page, and can result in much better visibility for the page. This, however, does not enable search engines to read images used in the place of text for styling purposes, nor are the vast majority of Flash websites disability accessible (for screen readers, for example) or [[Section 508]] compliant.
The most recent incarnation of Flash's scripting language (called "actionscript", which is an [[ECMA]] language similar to [[JavaScript]]) incorporates long-awaited usability features, such as respecting the browser's font size and allowing blind users to use [[screen readers]]. Actionscript 2.0 is an [[Object-oriented programming|Object-Oriented]] language, allowing the use of CSS, [[XML]], and the design of class-based web applications.
====Static and dynamic page generation====
Line 64 ⟶ 92:
The traditional method of laying out web pages, HTML, is static. There are two ways of delivering content dynamically:
=====Server-side=====
A web server, running special software, constructs an HTML page '[[on the fly]]', according to the user's request and possibly other variables, such as time or stock levels.
Line 81 ⟶ 109:
[[XSLT]] can be used to translate data from XML format into HTML.
[[Database]]s are often used in conjunction with [[server-side]] [[scripting languages]] for persistent storage of [[Web content|content]]. [[Database management system]] like [[mySQL]] and [[postgreSQL]] offers convenient methods for accessing data stored within the databasen, to [[Update (SQL)|update]], [[Delete (SQL)|delete]], [[Insert (SQL)|insert into]] or [[Select (SQL)|search from]] the database. Most [[website]]s / [[web application]]s of non-trivial complexity uses some form of database to manage their content.
▲====Client-side====
=====Client-side=====
''The next paragraph reflects a particular POV, not common practice -- see [[Ajax (programming)|Ajax]]''. [[User:ChrisLoosley|Chris Loosley]] 06:58, 1 January 2007 (UTC)
Line 136 ⟶ 165:
===Accessibility===
''I moved this material here from Web design. Otherwise it is currently unchanged from the present article. However, I intend to merge the last two bullets into the concluding paragraph.'' [[User:ChrisLoosley|Chris Loosley]] 02:58, 2 January 2007 (UTC)
''For more ideas, see Van Duyne et al, The Design of Sites, Section B9, pp218-226.'' [[User:ChrisLoosley|Chris Loosley]] 03:40, 2 January 2007 (UTC)
{{main|Web accessibility}}
Accessible Web design is the art of creating webpages that are accessible to everyone, using any device. It is especially important so that people with [[disabilities]] - whether due to accident, disease or old age - can access the information in Web pages and be able to navigate through the website.
To be accessible, web pages and sites must conform to certain accessibility principles. These can be grouped into the following main areas:
* use [[semantic markup]] that provides a meaningful structure to the document (i.e. Web page)
* use a valid [[markup language]] that conforms to a published [[Document Type Definition|DTD]] or [[XML schema|Schema]]
* provide text equivalents for any non-text components (e.g. images, multimedia)
* use [[hyperlinks]] that makes sense when read out of context. (e.g. avoid "Click Here.")
* don't use [[Framing (World Wide Web)|frames]]
''merge the following material:'' [[User:ChrisLoosley|Chris Loosley]] 02:58, 2 January 2007 (UTC)
* use [[Cascading Style Sheets|CSS]] [[Web design (Tableless)|rather than HTML Tables]] for layout.
* author the page so that when the source code is read line-by-line by [[user agents]] (such as a [[screen reader]]s) it remains intelligible. (Using tables for design will often result in information that is not.)
However, W3C permits an exception where tables for layout either make sense when linearized or an alternate version (perhaps linearized) is made available.
===Standards===
Line 155 ⟶ 206:
''I favor moving this section towards the end of the article -- comments?'' [[User:ChrisLoosley|Chris Loosley]] 16:53, 28 December 2006 (UTC)
Since the mid-1990's, Web development has been one of the fastest growing industries in the [[United States]]. In 1995 there were fewer than 1,000 Web development companies and in 2005 there are over 30,000 such companies.{{
In addition, cost of Web site development and hosting has dropped dramatically during this time. Instead of costing tens of thousands of dollars, as was the case for early websites, one can now develop a simple web site for less than a thousand dollars, depending on the complexity and amount of content. {{
==See also==
{{
{|
Line 190 ⟶ 241:
Examples of dramatic transformation in communication and commerce led by Web development include e-commerce. Online auction sites such as [[eBay]] have changed the way consumers consume and purchase goods and services. Online resellers such as [[Amazon.com]] and [[Buy.com]] (among many, many others) have transformed the shopping and bargain hunting experience for many consumers.
''This material about CSS (which came from the current Web Design article) is more detailed than required here, and arguably POV in parts. But it could be merged into the article on [[Tableless web design]].'' [[User:ChrisLoosley|Chris Loosley]] 07:50, 2 January 2007 (UTC)
For example, at one time it was rather difficult to produce certain design elements, such as vertical positioning, and full-length footers in a design using absolute positions. With the abundance of CSS resources available online today, though, designing with reasonable adherence to standards involves little more than applying CSS 2.1 or CSS 3 to properly structured markup.
These days most modern browsers have solved most of these quirks in CSS rendering and this has made many different CSS layouts possible. However, some people continue to use old browsers, and designers need to keep this in mind, and allow for graceful degrading of pages in older browsers. Most notable among these old browsers are Internet Explorer 5 and 5.5, which, according to some web designers, are becoming the new Netscape Navigator 4 — a block that holds the World Wide Web back from converting to CSS design.
|