SlideShare a Scribd company logo
Web Application Development

CONF@JMILUG
2011
Saleem Ansari
Outline
●

History of Web

●

Approaches to Web Application Development

●

An example application – using Django

●

Q/A
History of Web
●

1991 - First HTML page created by Tim
Berners Lee ( using WorldWideWeb the first
web browser, and hosted on CERN httpd the
first web server)
–

because physicists wanted to share
information
●

Mid 1990s - Start of Web Development
–
–

●

Evolution of Web Browsers and Web Servers
1991-1995 HTML Only

Late mid-1990s
–

Commercialization of the WWW

–

1995 Java Applets, JavaScript

–

1996 Flash
●

1999 – 2001
–
–

dot com boom and bust
1999-2004
●
●
●

XMLHTTP - Microsoft's ActiveX component
Evolution of AJAX ( wasn't yet coined )
Gmail
●

2005 - AJAX
–

Google Map uses AJAX

–

Ajax term coined on February 18, 2005 by
Jesse James Garrett in an article entitled
Ajax: A New Approach to Web Applications.

–

AJAX: Comprises of HTML, XHTML, CSS,
DOM, XML, XMLHttpRequest, JavaScript
HTML5 – buzz word of today
●

Currently in development since 2009

●

"Thoughts on Flash" – Steve Jobs

●

●

Video, audio, canvas, local storage, web SQL,
etc.
Approaches to Web Development
●

Scripting

●

Templates

●

Hybrid

●

Frameworks
A sample Django application
●

Requirements:
–

Python, Django

–

MySQL ( or a database server )

●

django-admin startproject myproject

●

./manage.py startapp myapp

●

./manage.py runserver
Thank you

More Related Content

PDF
UCSY CS Club Week7
PDF
Mojo+presentation+1
DOC
Linx Asia 2006 Experience
PPTX
Web conferencing.....
PPT
Grouputer: Going Beyond Web Conferencing
PDF
Web Conferencing - 16 Success Tips
PPT
Using Web Conferencing Technology to Connect and Collaborate at a Distance
PPTX
An Introduction To Web Conferencing
UCSY CS Club Week7
Mojo+presentation+1
Linx Asia 2006 Experience
Web conferencing.....
Grouputer: Going Beyond Web Conferencing
Web Conferencing - 16 Success Tips
Using Web Conferencing Technology to Connect and Collaborate at a Distance
An Introduction To Web Conferencing

Similar to Web Application Development (20)

PPT
Ajaxworld March 2008 - Jeff Haynie Keynote - Appcelerator
PPT
Ajax World 2008
PDF
Web 2.0 & Ajax Basics
PDF
AJAX the Great: The Origin and Development of the Dynamic Web (2007)
PPT
POLITEKNIK MALAYSIA
PPT
PPTX
Evolution of the web
PPTX
Evolution Of The Web
PPTX
Evolution of the web
PDF
Beyond HTML: Tools for Building Web 2.0 Apps
PPS
Web 2.0 Mimbar Ilmiah
PDF
Ajax basics
PPTX
Ajax:From Desktop Applications towards Ajax Web Applications
PPT
Experience Ajax - Workshop For Designers
PDF
Cmsc 100 (web programming in a nutshell)
PPTX
Evolution of Applications & Web
PDF
Web application development - The past, the present, the future
PPT
Web2.0 Ajax and REST in WebSphere Portal
PPT
Web 2.0
PPS
Web Design World Flickr
Ajaxworld March 2008 - Jeff Haynie Keynote - Appcelerator
Ajax World 2008
Web 2.0 & Ajax Basics
AJAX the Great: The Origin and Development of the Dynamic Web (2007)
POLITEKNIK MALAYSIA
Evolution of the web
Evolution Of The Web
Evolution of the web
Beyond HTML: Tools for Building Web 2.0 Apps
Web 2.0 Mimbar Ilmiah
Ajax basics
Ajax:From Desktop Applications towards Ajax Web Applications
Experience Ajax - Workshop For Designers
Cmsc 100 (web programming in a nutshell)
Evolution of Applications & Web
Web application development - The past, the present, the future
Web2.0 Ajax and REST in WebSphere Portal
Web 2.0
Web Design World Flickr
Ad

More from Saleem Ansari (9)

PDF
Introduction to Scala
PDF
Lessons I learnt from Linux Asia 2006
DOC
Introduction to Qt Designer
PPT
Linux Asia 2006
PDF
GNU Compiler Collection - August 2005
PDF
Introduction to Free and Open Source Software - August 2005
PDF
JMILUG Introduction - 2007
PDF
TorqueBox at GNUnify 2012
PDF
Fedora Embedded at foss.in 2010
Introduction to Scala
Lessons I learnt from Linux Asia 2006
Introduction to Qt Designer
Linux Asia 2006
GNU Compiler Collection - August 2005
Introduction to Free and Open Source Software - August 2005
JMILUG Introduction - 2007
TorqueBox at GNUnify 2012
Fedora Embedded at foss.in 2010
Ad

Recently uploaded (20)

PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PPTX
Big Data Technologies - Introduction.pptx
PPT
“AI and Expert System Decision Support & Business Intelligence Systems”
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
PDF
Review of recent advances in non-invasive hemoglobin estimation
PDF
Diabetes mellitus diagnosis method based random forest with bat algorithm
PDF
KodekX | Application Modernization Development
PPT
Teaching material agriculture food technology
PPTX
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
PDF
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
PPTX
Digital-Transformation-Roadmap-for-Companies.pptx
PPTX
ACSFv1EN-58255 AWS Academy Cloud Security Foundations.pptx
DOCX
The AUB Centre for AI in Media Proposal.docx
PDF
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
PDF
Mobile App Security Testing_ A Comprehensive Guide.pdf
PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
PDF
Building Integrated photovoltaic BIPV_UPV.pdf
PDF
Network Security Unit 5.pdf for BCA BBA.
PDF
NewMind AI Weekly Chronicles - August'25 Week I
PDF
Advanced methodologies resolving dimensionality complications for autism neur...
Reach Out and Touch Someone: Haptics and Empathic Computing
Big Data Technologies - Introduction.pptx
“AI and Expert System Decision Support & Business Intelligence Systems”
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
Review of recent advances in non-invasive hemoglobin estimation
Diabetes mellitus diagnosis method based random forest with bat algorithm
KodekX | Application Modernization Development
Teaching material agriculture food technology
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
Digital-Transformation-Roadmap-for-Companies.pptx
ACSFv1EN-58255 AWS Academy Cloud Security Foundations.pptx
The AUB Centre for AI in Media Proposal.docx
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
Mobile App Security Testing_ A Comprehensive Guide.pdf
Agricultural_Statistics_at_a_Glance_2022_0.pdf
Building Integrated photovoltaic BIPV_UPV.pdf
Network Security Unit 5.pdf for BCA BBA.
NewMind AI Weekly Chronicles - August'25 Week I
Advanced methodologies resolving dimensionality complications for autism neur...

Web Application Development

  • 2. Outline ● History of Web ● Approaches to Web Application Development ● An example application – using Django ● Q/A
  • 3. History of Web ● 1991 - First HTML page created by Tim Berners Lee ( using WorldWideWeb the first web browser, and hosted on CERN httpd the first web server) – because physicists wanted to share information
  • 4. ● Mid 1990s - Start of Web Development – – ● Evolution of Web Browsers and Web Servers 1991-1995 HTML Only Late mid-1990s – Commercialization of the WWW – 1995 Java Applets, JavaScript – 1996 Flash
  • 5. ● 1999 – 2001 – – dot com boom and bust 1999-2004 ● ● ● XMLHTTP - Microsoft's ActiveX component Evolution of AJAX ( wasn't yet coined ) Gmail
  • 6. ● 2005 - AJAX – Google Map uses AJAX – Ajax term coined on February 18, 2005 by Jesse James Garrett in an article entitled Ajax: A New Approach to Web Applications. – AJAX: Comprises of HTML, XHTML, CSS, DOM, XML, XMLHttpRequest, JavaScript
  • 7. HTML5 – buzz word of today ● Currently in development since 2009 ● "Thoughts on Flash" – Steve Jobs ● ● Video, audio, canvas, local storage, web SQL, etc.
  • 8. Approaches to Web Development ● Scripting ● Templates ● Hybrid ● Frameworks
  • 9. A sample Django application ● Requirements: – Python, Django – MySQL ( or a database server ) ● django-admin startproject myproject ● ./manage.py startapp myapp ● ./manage.py runserver