web

Will web ever have localized domain-names ?

Will internet ever have localized unicoded domain-names other than english ? Is that really possible ? what are the obstacles that will come across in achieving this ? what problems will arise and what are the possible solutions of those problems ? ...

how to get auth_user in python web request

I'm new to python . I want to make a basic auth in a web project , is there any way get HTTP authentication variables like the '$_SERVER['php_auth_user']' in php ? I'm using the FF's torando server. ...

Django for a simple web application

I'm developing an app (an API) in python and I would like to offer some of its functionality through a web interface (like web services do). I've been looking at django, but I don't know if really fits well in my idea. I only want to create a web page that invokes to my API methods in order to acomplish the functionality that offers th...

Protecting client side logic & data

I am coding a data intense web app. So that means I cant be possibly doing any computations on sever- computation after every event involves huge data too large to be sent to sever again & again. So I have to do all execution & keep all data on clint side only. Currently I am using JS to do so. Is there a way by which I can protect my ...

Add a dynamic form to specific pages using Greasemonkey and JQuery

In a particular forum, clicking the reply button spawns a new window with a text form to type a reply. I want to implement a script to create that specific text form within the main page (instead of spawning a new window). How would I go about doing this? Here is the source code for the pages I want to implement the script on: http...

Web content filtering list of keywords

Hi, I need to filter webpages on a keyword base and need some often used list with forbidden keywords like xxx, porn, etc. If you have one, please post it here. I would appreciate it. ...

REST: post vs posts & new vs create

When you design URL schema for your application, which rules you use? example.com/post/ or example.com/posts/ for list of posts example.com/post/new/ or example.com/post/create/ for new post example.com/posts/ + example.com/post/23/ or example.com/post/ + example.com/post/23/ for list and detail of post? example.com/post/23 or example....

Can I use JavaScript to do the same what Adobe Flash does?

Is JavaScript capable of doing the same what Flash does? And if it is the case, can it be a good idea to switch from Adobe Flash to JavaScript? ...

Best way to apply code updates to a runing website ?

How can I apply code changes to my running website, if I have bug fixes or updates? The simplest way I can think of is to set up the same site in a different directory for testing the updates, and then put my website offline for a period of time to update files. Is there a better way? ...

News sources for python django

Hi All, I find myself continually sifting through the net to keep up with Python/Django/web development trends and news. Does anyone recommend any good news sites that focus on web development or they Python community? For example, what new Django modules are popular or interesting new jQuery plugins, etc. Just curious to know how ...

How web request executed via internet?

I want to know how web request executed while requesting any information from other server. I want to know internal of this message processing means when we click any button on web page then how it converted to GET/POST request in proper message format inclucing SOAP etc. Is there any link or book from where i can get these info. Please ...

CSS selectors: (menu ul li) or (menu li)

which is better for use .menu{ float:left; width:600px; height:25px; background:url(bg.png) repeat-x; } .menu ul{ float:left; } .menu ul li{ float:left; width:150px; height:25px; background:#F00; } or .menu{ float:left; width:600px; height:25px; background:url(bg.png) repeat-x; ...

Coldfusion web service error, "Unable to parse WSDL as an XML document."

I'm trying to get a web service running CF9 IIS7 testpage.cfm <cfinvoke webservice ="https://nww.eastwickpark.nhs.uk/cfcs/test.cfc?wsdl" method ="echoString" input = "hello" returnVariable="foo"> <cfoutput>#foo#</cfoutput> test.cfc <cfcomponent output="false" access="public" returntype="string"> <cffunction name = ...

How realtime web applications are developed ?

I always wanted to get in to realtime & collaborative web application development. But couldn't find any good resource that would guide my existing knowledge of PHP/MySQL/jQuery/AJAX/XML/JSON to the realtime web applications development. I want some reading resources, that would allow me to practice my existing knowledge in terms of real...

Retrieving authentication info for a JBoss webservice

I have a webservice with basic HTTP authentication on a JBoss server. Is there a way to retrieve the authentication credentials (username, pw) supplied by the caller from within the webservice? ...

How to design an ontology?

On a project we describe the meta data by RDF by using SIOC, FOAF, SKOS namespaces. After this step what we need to do to design an ontology for collaborate these informations? ...

Perl script to dynamically monitor web pages

I'm tweaking a perl script that I use to monitor sites (response times etc.) and I'm running into issues using Nagios::WebTransact. I want to be able to post to a page on one of my sites, get a response, and use the values in that response to post to the next page. It doesn't look like Nagios::WebTransact supports this. I read it has "l...

Very large HTTP request vs many small requests

I need a 2D array(as Json) to be sent from server to client. It would be around 400X400 in size with each entry around 4 characters of text. So that makes it around 640KB of data. Which of the following extreme approaches is better ? 1) I make a large HTTP request of all the data at one go. 2) I make 400 requests - each asking for a si...

Which canonical name is better? www or non-www?

I am having a confusion which domain to go with. domain or www.domain I dont care about the redirections between each other. I would like to know which one is better in any ways. Update: Greg's links below have very useful info. Must visit. ...

Importance of graceful degradation to non-javascript ui

How important is it to gracefully degrade or inversely Progressively Enhance the UI experiance? I mean am I going to lose a LOT of business if I don't? Do you practice this concept? Are there any web 1.0 users still left out there? Please could you also include if you practice this personally and how much time you've spent relative to t...