|
-
Web 2.0
Date: 01/01/70
(Webmaster View) Keywords: programming, xml, web
Web 2.0 for Designers
Enter Web 2.0, a vision of the Web in which information is broken up into "microcontent" units that can be distributed over dozens of domains. The Web of documents has morphed into a Web of data. We are no longer just looking to the same old sources for information. Now we're looking to a new set of tools to aggregate and remix microcontent in new and useful ways.
...
There are six trends that characterize Web 2.0 for designers.
...
- Writing semantic markup (transition to everything XML)
- Providing Web services (moving away from place)
- Remixing content (about when and what, not who or why)
- Emergent navigation and relevance (users are in control)
- Adding metadata over time (communities building social information)
- Shift to programming (separation of structure and style)
(Via bokardo) Comments
Source: http://www.webmasterview.com/design/web_20
-
5 Simple Steps to Integrate Tomcat 5.5 with Apache 2.0
Date: 05/04/05
(Java Web) Keywords: web, linux, apache
The simplest configuration is described. It assumes you already have Tomcat 5.5 and Apache 2.0 (instructions for Apache 1.3 is also provided) installed and running.
The instructions are applicable (have been tested) for Windows as well as Linux platform.
Assume you want to map test directory of Apache to the mytest web application of Tomcat. Change [...]
Source: http://blog.taragana.com/index.php/archive/5-steps-to-integrate-tomcat-55-with-apache-20/
-
Coldfusion
Date: 05/05/05
(Web Development) Keywords: web
hi, I've never posted here before but I hope you guys can help me with something. What do you guys think about Coldfusion? Is it easy/hard/good/bad? I hear that most webdevelopers prefer not to use it. However, for some reason I have to use it for a project. Does anyone any good sites that can help me learn it? thanks
Source: http://www.livejournal.com/community/webdev/195555.html
-
Date Functions?
Date: 05/05/05
(Web Development) Keywords: css, html, web
I need help with creating a calendar in css, can someone help me out.
This is what I have to do:
1. I have to create a new blank file and save it as caldendar.js
2. Then within the file, I am supposed to insert a function named calendar() that has a single parameter named "caldate". The caldate parameter stores the date the user wants hightlighted in the calendar.
3. Within the command block of the calendar() function, I am to create an array named "MonthName" that stores the names of the twelve months. Th first element in the array, MonthName[0] should have a value of "January" and completes the rest of the array similarly.
4. Then I am to create an array, "DayName", that stores the three letter abbreviations of the seven weekday names, starting with DayName[0] ="Sun".
5. After the DayName array, I am to create a date object variable named Calendar_Day. If the value of the caldate parameter is equal to "today", set Calendar_Day equal to the current date and time; otherwise, set Calendar_Day equal to the date specified by the caldate parameter. (Hint: use the command: Calendar_Day = new Date(caldate)).
6. Use the getDate(), getMonth(), and getFullYear() methods to extract the day of the month, month number, and four-digit year from the Calendar_Day variable. Store these values in variables named ThisDay, ThisMonth, and ThisYear, respectively.
7. Then I am to use the doucment.write() method to write the following tags to the Web page:
|