nextwebgen.com

The Next Generation Web Now

Microsoft SharePoint will "steamroll" Web 2.0 market, plus eight … – NetworkWorld.com

Filed under: Web 2.0 News — web 2.0 - Google News at 11:14 pm on Thursday, January 31, 2008



FastForward Blog
Microsoft SharePoint will "steamroll" Web 2.0 market, plus eight
NetworkWorld.com, MA - 1 hour ago
By Jon Brodkin, Network World, 01/30/08 Microsoft's SharePoint collaboration products will "continue to steamroll the [enterprise Web 2.0] market" in 2008,
Increased Investment, More Implementations Expected for Enterprise CIO
Forrester’s Most Recent Predictions for the Emerging Enterprise FastForward Blog
all 7 news articles

Favicon access via JavaScript

Filed under: Web 2.0 News — Dion Almaer at 11:01 pm on Thursday, January 31, 2008

Michael Mahemoff has released an update to his JavaScript library that gives you access to play with favicons from script.

The main point of this library is to update the favicon via Javascript, but at a higher level, its main objective is to provide some support for notifying the user of events in another tab. For example, if you start playing music in another tab, you can make a one-liner call to change the favicon to a sound. Or if you really need to alert the user, you can start animating it.

The new features include:

  • Scrolling title. The window/tab title scrolls. (Title blink is coming. No, really!)
  • Stop functions. unanimate() and unscroll() will stop animation and scrolling, respectively. Previously you had to do stop animation indirectly, by calling change().
  • Rails/Scriptaculous style options Changed config to be fn(mainarg, optionalHash). Read the library or demo source to see the details.

Usage code:

JAVASCRIPT:

  1.  
  2. favicon.change(“/icon/active.ico”, “new title”); // Cancels any animation/scrolling
  3. favicon.change(“/icon/active.ico”); // leaves title alone. Cancels any animation.
  4. favicon.change(null, “new title”); // leaves icon alone. Cancels any scrolling.
  5. favicon.animate([“icon1.ico”, “icon2.ico”, …]);
  6. favicon.animate([“icon1.ico”, “icon2.ico”, …], {delay: 500} );
  7.  
  8. // Tip: Use "" as the last element to make an empty icon between cycles.
  9. // Default delay is 2000ms
  10. // animate() cancels any previous animation
  11. favicon.scrollTitle(“new title”);
  12. favicon.scrollTitle(“new title”, { delay: 200, gap: “——”} )
  13.  
  14. // delay is delay between each scroll unit
  15. // gap is string appended to title (default: "    ")
  16. // scrollTitle() cancels any previous scrolling
  17. favicon.unscroll();
  18. favicon.unanimate();
  19.  

Check out a couple of demos:

This also caused Michael to talk about taking tabs seriously and how:

The browser is the new operating system, the tab is the new system process, the tab bar is the new taskbar.

He gives us a slew of ways in which he would like to see tabs improved upon: notifications, hunting sound, custom favicons, summary list, smart colour, javascript events, open forms, search, virtual desktop, and auto-remove.

Web 2.0 security risks being ignored – ZDNet Asia

Filed under: Web 2.0 News — web 2.0 - Google News at 9:01 pm on Thursday, January 31, 2008


Web 2.0 security risks being ignored
ZDNet Asia, Asia - 5 hours ago
By Julian Goldsmith, Special to ZDNet Asia Web 2.0 presents a barely understood risk to companies embracing social networking and instant messaging

Companies must listen to the Web 2.0 world – Computerworld

Filed under: Web 2.0 News — web 2.0 - Google News at 3:44 pm on Thursday, January 31, 2008


Companies must listen to the Web 2.0 world
Computerworld, MA - 4 hours ago
and Dow Jones on why companies should devote more resources to monitoring what is being said about them and their products in the Web 2.0 world.

Companies must listen to the Web 2.0 world – Computerworld

Filed under: Web 2.0 News — web 2.0 - Google News at 3:44 pm on Thursday, January 31, 2008


Companies must listen to the Web 2.0 world
Computerworld, MA - 2 hours ago
and Dow Jones on why companies should devote more resources to monitoring what is being said about them and their products in the Web 2.0 world.

Does Web 2.0 Need IT? – ZDNet Blogs

Filed under: Web 2.0 News — web 2.0 - Google News at 3:21 pm on Thursday, January 31, 2008


Does Web 2.0 Need IT?
ZDNet Blogs - 6 hours ago
One of the hot topics here at the Web 2.0 Conference and Expo was whether computing resources will remain in the enterprise or migrate into the network.

Secure String Interpolation in JavaScript

Filed under: Web 2.0 News — Dion Almaer at 9:46 am on Thursday, January 31, 2008

Mike Samuel of the Google Caja team (and much more) has a fantastically detailed document on the choices for secure String interpolation in JavaScript.

He spends a lot of time discussing:

There are a large number of examples a long the way:

JAVASCRIPT:

  1.  
  2. var ids = [1, 2, 3, 4];
  3. var column = ‘value’;
  4. var foo = ‘foo’;
  5.  
  6. open(Template(“SELECT $column FROM Table WHERE id IN $ids AND foo LIKE $foo”))
  7. // === "SELECT `value` FROM Table WHERE id IN (1, 2, 3, 4) AND foo LIKE ‘foo’"
  8.  

DomAPI 4.5: New, improved, and more free

Filed under: Web 2.0 News — Dion Almaer at 9:45 am on Thursday, January 31, 2008

DomAPI

DomAPI has been around for ever but the package has been updated:

DomAPI version 4.5 has a new lower price and a simplified licensing plan.

In a nutshell, there are now 2 license types, ‘Free’ and ‘Pro’. Both types can be used on commercial sites, in any capacity, with no restrictions. The benefits of the pro version include:

  • Access to unobfuscated source code
  • Access to hourly beta builds
  • Permission to alter the source code
  • Permission to remove branding and ’splash’ items
  • Permission to bundle the library with applications

If you purchased a DomAPI 4.0 license, you automatically are upgraded to 4.5. If you have a 3.x license, or purchased a 3.x to 4.x upgrade, you will need to obtain a new 4.5 license. DomAPI 4.5 Professional licences are currently priced at only $49 USD.

The latest public release of DomAPI contains all the fixes an additions that have been made to DomAPI v4.0 since its original build nearly 2 years ago. These features were previously only available within the hourly beta builds, but now everyone can benefit from them.

Upgrading from 4.0 to 4.5 should be completely painless — it is meant to be backwards compatible with your existing code.

Some of the major improvements include:

  • Complete support for IE7
  • Complete support for Firefox 2
  • Better memory leak protection in IE6/7
  • Plenty of little fixes and performance enhancements
Next Page »