Questions tagged [web]

Do not use this tag. For questions related to an aspect of the world wide web, use a more specific tag for it, such as [uri], [html], [http] or [w3c].

The World Wide Web (abbreviated as WWW or W3, and commonly known as "the Web") is a technology that connects various kinds of systems with interlinked hypertext documents accessed using networking protocols.

The credit of inventing the World Wide Web goes to many researchers, but it was Tim Berners-Lee also known as TimBL who not only proposed the idea of WWW (at CERN in 1989) but also gave his full contribution in development of 3 very significant technologies:

  1. Invention of URL (Universal Resource Locator) and URI (Universal Resource Identifier).
  2. HyperText Markup Language (HTML)
  3. HTTP (HyperText Transfer Protocol), a protocol for transferring HTML

The World Wide Web is an interconnected network which works as a bridge not only between two terminal ends (Web browser & Web server) but also to connect client machines to database servers with controlled access.

With a Web browser (client), one can view web pages that may contain text, images, videos, and other multimedia, and navigate between them via hyperlinks. The default port for requests and responses via HTTP protocol is port 80.

A web server, on other hand, receives the client's requests and generates the proper response for it. This includes an HTTP status code (like 200 Ok or 404 Not Found), a list of HTTP headers (which control things like response format and cookies), and the response body (like HTML content).

47790 questions
5
votes
3 answers

Recommend please : static site generator without ruby

I very, very like octopress (read it docs) looks awesome! But unfortinatelly i know nothing about ruby, have no machines with installed ruby, and really confused about all this racks, gem, bundle etc. This ruby stuff looks like hell for me. May be…
Korjavin Ivan
  • 439
  • 1
  • 5
  • 15
5
votes
3 answers

Best Javascript framework for RESTful HTTP networking

I am more of a backend guy, but frontend development really intrigues me as I make my first steps in seeing the browser as the environment for rich and awesome applications. What is the most suitable Javascript framework for working with a RESTful…
5
votes
1 answer

Should I catch errors that would never occur with a regular user?

I have a line where I grab a database row with .get(field = ID). A normal user would always send an ID that exists in the database, but a hacker might not, and it would throw a DoesNotExist exception. Is it important to explicitly catch it or…
Ben G
  • 26,091
  • 34
  • 103
  • 170
5
votes
3 answers

How to run C++ programs on the web inside a browser?

Can one write a program in C++ and somehow make it run by someone else directly on the web, from a browser, without the other person having to download the .exe?
Robert H
  • 1,603
  • 2
  • 17
  • 19
5
votes
1 answer

Convert a WSDL to its respective HTTP Bindings

I'm simply trying to convert a WSDl into a number of different HTTP-requests from data supplied by the WSDL. I have read through a ton of similar questions, but none really provided an answer. Some say to use SOAPUI - I am familiar with this…
steve
  • 297
  • 1
  • 5
  • 17
5
votes
4 answers

Image button displaying 'Submit query' over the top of image in Firefox

My project is displaying correctly in both IE and chrome. However in FF for some reason the image button displays 'Submit query' over the top of it. I am setting the image location in CSS and it is definitely correct as it is working correctly in…
shicky
  • 2,076
  • 5
  • 30
  • 44
5
votes
1 answer

Django Formset vs Modelform

I am a bit confused. I know that by using Formset we could generate multiple form. Aside from that , when should I use Formset or Modelform?
Haikal Nashuha
  • 2,958
  • 7
  • 44
  • 67
5
votes
6 answers

In a perfect world, all the graphics and layout are defined in stylesheets - but not src? Shouldn't be?

The purpose of CSS is to help web developers to define and apply graphics and layout, separated from the actual content. However, it seems like CSS can tweak pretty much anything (graphics wise) on a website - apart from the source attribute of an…
corgrath
  • 11,673
  • 15
  • 68
  • 99
5
votes
3 answers

What is Logic-less template

As far as i know, Templates are used to seperate presentation from Logic and it can be reused since it doesnot depond on any logic... Many suggested me to go for Handlebars.js for templating.(This is the first time i'm hearing this name). I want to…
Jeevi
  • 2,962
  • 6
  • 39
  • 60
5
votes
1 answer

openerp web client 6.1: how to override base javascript functions

I'm looking for a way to override some openerp web js core functions such as "on_logout". The docs lack of instructions (as you can see in my post) and the helloworld module tells you that you can do it like openerp.web_hello = function(openerp)…
simahawk
  • 2,421
  • 1
  • 16
  • 22
5
votes
1 answer

Whats the best way to use multiple languages on a website?

I was wondering what would be the best way to achieve a multi-language template based website. So say I want to offer my website in Englisch and German there are some different methods. My interest is mainly about SEO, so which would be the best way…
Chris
  • 6,093
  • 11
  • 42
  • 55
5
votes
2 answers

Multiple Small DOM operation vs One large DOM operation

This is more a question about best practices. When trying to apply MVC-like design pattern in a web application, I often find myself wonder how I should go about updating the View. For example, if I am to update View_1 who has X number of elements.…
Viele
  • 2,244
  • 2
  • 19
  • 31
5
votes
4 answers

What's the easiest way to build an appointment booking website?

My wife is starting a new business and wants me to create a website for her that will allow clients to book appointments. I could obviously go ahead and start building something from scratch, but given that this is a fairly standard problem, I…
John Channing
  • 6,501
  • 7
  • 45
  • 56
5
votes
2 answers

Network traffic simulation test

I've got a PHP site up and running, and the db is mysql. before launching the site, I would like to test the traffic handling. Now am assuming that there are soe softwares that would simulate the traffic and log the processes running on my site. Any…
sys_debug
  • 3,883
  • 17
  • 67
  • 98
5
votes
1 answer

ASP.NET website authentication with facebook

I've seen a lot of documentation about integration between ASP .NET web sites and Facebook, but I haven't found a simple working example, even using Facebook C# SDK. All I want is a "login with Facebook" example, and to get basic user information…
Leandro Faria
  • 445
  • 2
  • 11
  • 25