010531.html | WebReference

010531.html

((((((((((((((((( WEBREFERENCE UPDATE NEWSLETTER ))))))))))))))))) May 31, 2001

_____________________________SPONSORS_____________________________

This newsletter is sponsored by: Informative Graphics Designing to Sell Conference Corporate Portal Evaluation & Selection Seminar

__________________________________________________________________

/-------------------------------------------------------------------\ Share documentation with everyone in your organization easily with Net-Itô Central. Empower everyone in your organization to contribute documents on the intranet using the applications they already know. … No HTML conversion or clean-up … No plug-ins, you use the resources you already have … Take shared drives and company emails one step further Free 30 day evaluation! https://www.infograph.com/wr.htm

\--------------------------------------------------------------adv.-/

https://www.webreference.com *- link to us today https://www.webreference.com/new/ *- newsletter home https://www.webreference.com/new/submit.html *- submit article

This week we interview Pascal Bestebroer, author of DOMLib, a tiny cross-browser DHTML API for DOM compatible browsers. In other news, don't miss Digital Web Magazine's interview of Lance Arthur.

New this week on WebReference.com and the Web:

1. INTERVIEW: DOMLib's Pascal Bestebroer 2. OTHER VOICES: * Interview: Lance Arthur * Nielsen on Usability: Ins and Outs of Begging for Money * The High Price of Search Technology 3. NET NEWS: * Macromedia Fights Round Two * ICANN's I Can't Attitude Alienating Internet Community * Russia arrests 'grandfather of cybercrime'

Like what you see? Get our front page e-mailed to you every business day with our HTML newsletter. Just send an e-mail to:

mailto:[email protected]

or for this text newsletter:

mailto:[email protected]

Spread the word! Feel free to send a copy of this newsletter to your friends and colleagues, and while you're at it, snap a link to WebReference.com.

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 1. INTERVIEW: DOMLib's Pascal Bestebroer

First reported in the JavaScript.com newsletter this week we expand our interview with DOMLib's author, Pascal Bestebroer.

DOMLib is a new cross-browser DHTML library written for DOM compatible browsers (including IE5+, NS6+, etc.). DOMLib was developed by Pascal Bestebroer, who previously helped develop DynAPI2. DOMLib is a very compact API containing roughly the same functionality as found in the DynaCore/DynAPI2 libraries. The core library weighs in at a mere 3Kb.

DOMLib is part of a trend we're seeing towards sleeker, more standards-compliant pages designed for newer browsers like IE5 and NS6. Combined with CSS, DOMLib can help you create compelling layouts with interactivity, using less code. We caught up with Pascal and asked him about his new DHTML API.

>WR: Tell us about DOMLib?

PB: DOMLib is my attempt at a lightweight slick DHTML API supporting only the W3C DOM standards (and some of Microsoft's :) It will be different from DynAPI2 in a few ways, especially widgets (buttons, toolbars, etc.) will be done differently because DOM is much more flexible, and you have the power of CSS. They will be smaller, and should provide roughly the same functionality and ease of use.

>WR: Why did you decide to develop DOMLib?

PB: I started working on new DynAPI code for DOM compatibility... but while trying things I figured that I could do a DOM library using only a few lines of code, but providing almost the same functionality as the DynAPI2 (using much more code and memory). So I started from scratch and DOMLib is the result (but don't get me wrong, if you need full cross-browser compatibility and power for older generation browsers as well... DynAPI2 is still the best thing out there so use it... DOMLib will only support DOM and IE5+ compatible browsers).

>WR: What can you do with DOMLib?

PB: Basically you can do Dynamic HTML with more ease for DOM compatible browsers. I'm just not a Flash addict and hate the idea of Flash plugins for animation and stuff. For me DHTML is more "real" and so DOMLib should be providing Web designers with the power to do great animations without Flash.

Scripting for DOM browsers isn't really hard to do, and could probably be done without a library such as DOMLib, but DOMLib makes it easier to do certain things on the fly, and for developers it's usually easier to use a library that fixes small bugs and incompatibilities automatically.

>WR: More specifically?

PB: Basically any widgets you can think of are possible, and they are very easy to create. A button could be done using style sheets on a single layer (as shown in one of the exmples), but also people should keep in mind that the components to create forms are already available... you can change the look of a form component (inputbox, listboxes, etc) using style sheets. You can specify borders, colors, size, position of every form component, so no need to create widgets for them.

Hierarchical menus are also possible, but to be honest these "simple" things can be done even without the DOMLib. On my website I use a toolbar that is created using a document.write statement. The toolbar is created using a single string where I add the menu structures to. I use some div's, tables and a lot of style sheets to make the menu work. The menu could be (and will eventually be) extended to have submenus, but the idea of submenus is the same as normal menus: create the string, add it to the main string, and document write the menu with a single document.write() call.

I think that you'll only need the DOMLib if you want to do more advanced stuff, like games, weird animations and bigger widgets. My best example would be the realtime 3D example on my website. It shows that things like 3D rotations can be done, it uses dynamc- realtime scaling of images (images are 64x64 pixels in size, and are scaled according to their distance) and realtime 3D calculations. Developers should start using their imagination to create things that others haven't done yet, and use my DOMLib in the process :)

>WR: What specific browsers/platforms does it support?

It should support all 100% DOM compatible browsers. But sadly I can only test code on IE5/IE5.5, Mozilla (always latest release) and Opera on Windows machines. Luckily if things work under Mozilla under Windows, it should work under Linux and all other platforms Mozilla runs on. Of course help for fixing bugs on other platforms is always appreciated (hint, hint :) [Ed: His front page menus work on IE5/NS6 Mac.]

/-------------------------------------------------------------------\ Designing to Sell Online * June 18th* Boston, MA Attend this dynamic learning experience and learn the most current techniques, tools & tips you can instantly use to increase the usability and effectiveness of your site. Speakers include companies such as Adobe, Grantastic Designs and Outrider North America. Sign up today: https://seminars.internet.com/design/boston01/index.html

\--------------------------------------------------------------adv.-/

>WR: How well do each of the v5+ browsers support the DOM?

PB: I think the best one is Mozilla, even though I think the browser is bloated (as the previous Netscape versions were) it's shaping up to be a very impressive browser, handling most of the stuff the W3C DOM needs. Internet Explorer 5+ is a great browser as well, but not 100% compliant with standards. Not sure if this is a bad thing though, Microsoft has put a lot of nice extras into the browser (I think the transparency filter was copied by Mozilla because of the coolness of it :). You can clearly see that Microsoft's browser is getting to the DOM standard, but contains extra features that are very useful for Web applications.

And finally Opera, this browser could be the best: it's fast, small, renders almost perfect, works on many different platforms... but doesn't do dynamic stuff (yet). You can't create HTML elements on the fly or change style sheets of HTML elements. This is just a very big problem when you want to do DHTML. I truly hope that Opera makes those things a priority, because that could make Opera one of Microsoft's biggest nightmares (I'm dreaming, I know :)

>WR: Even with newer browsers supporting the DOM to varying degrees, how do you resolve the differences between them? (box models, etc.)

PB: Sadly the only browser I have problems with is Opera, I just can't work around the limitations. The other browsers I tried haven't thrown any problems. Usually I just try the code in a browser, and try to track down the few lines that make things go wrong (using many alerts and browser-reloads to check variables and values). Then if, for example, the browser doesn't handle a certain stylesheet property, I use a small piece of code to display all the properties available in the element.

For example:

tmp='' for (var i in window.document) tmp+=i+' | ' alert(tmp)

That will show all available properties in the window.document object, and that way you can check if a certain property might have another name, or is placed under another child [object]... and then it's just a lot of testing and trying... damn I love developing :)

>WR: What are your future plans for DOMLib?

PB: I think the most important thing for a DHTML library is animation, and that's probably what I will be focusing on. This means having some sort of timeline editor to do smooth animations of multiple layers at key-frame intervals. There's already some basic code in the current release, but I'm working on some ideas to make it more powerful and still easy to use. Thinking about things like timing and triggering of animations... not sure yet how to do it all, but I'm pretty sure it's possible.

https://www.dynamic-core.net/

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2. OTHER VOICES: Interview: Lance Arthur, Nielsen on Usability: Ins and Outs of Begging for Money, The High Price of Search Technology

>Lance Arthur and his Best Friend, Glassdog.com

An extensive interview with Lance Arthur, author of GlassDog.com. https://www.digital-web.com/interviews/interview_2001-5.shtml Digital Web Magazine, May 14, 2001

>Nielsen on Usability: Ins and Outs of Begging for Money

In its quest to develop sustainable business models for the Web, Amazon.com recently introduced one of the more unusual ideas: Simply ask users of a site to donate money. https://www.internetworld.com/news/archive/05292001c.jsp Internet World, May 28, 2001

>The High Price of Search Technology

Getting your site's search engine to give relevant results can be difficult and expensive. In a perfect world, customers could just type their questions into the search box and get coherent answers back. Too bad that ideal is so hard to achieve. https://www.ecompany.com/articles/web/0,1653,12179,00.html ECompany Now, May 31, 2001

/-------------------------------------------------------------------\ Get it right the first time with the right tools - attend the Corporate Portal Evaluation & Selection Seminar. This seminar addresses in detail the roles and categories of corporate portals, selection and evaluation mechanisms, and an in-depth examination of leading portal products and platforms. Come learn the framework for making informed purchasing decisions and anticipating implementation issues. Register today: www.imgevents.com/portal_seminar2 6/19 -VA; 7/18- GA; 7/26-NY

\--------------------------------------------------------------adv.-/

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 3. NET NEWS: Macromedia Fights Round Two, ICANN's I Can't Attitude Alienating Internet Community, Russia arrests 'grandfather of cybercrime'

>Macromedia Fights Round Two

Flash was no flash in the pan, but if Macromedia wants to keep growing, it must reinvent and expand its product line. If Adobe can do it, so can Macromedia, analysts say. https://www.business2.com/news/2001/05/macromedia.htm Business2.com, May 31, 2001

>ICANN's I Can't Attitude Alienating Internet Community

The domain name governing authority is losing the support of its constituents with the increasingly hard-line stance against alternate root servers and its top-down government-style management. https://www.internetnews.com/wd-news/article/0,,10_775751,00.html InternetNews.com, May 30, 2001

>Russia arrests 'grandfather of cybercrime'

Russian police have dealt a severe blow to the image of computer hacking - by arresting a gang of computer hackers led by a 63-year- old pensioner. https://news.bbc.co.uk/hi/english/world/europe/newsid_1353000/1353092.stm BBC.com, May 29, 2001

That's it for this week, see you next time.

Scott Clark Managing Editor, WebReference.com [email protected]

Dan Ragle Assistant Editor, WebReference.com [email protected]

Andrew King Newsletter Editor, WebReference.com [email protected]

webreference-update-text Is Powered By https://By.SparkLIST.com/ SparkLIST delivers high volume fast and reliable email newsletter outsourcing which allows you to focus on your core business. Contact us: mailto:[email protected]

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Advertising: If you are interested in advertising in our newsletters, call Frank Fazio on 1-203-662-2997 or send email to mailto:[email protected] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ For contact information on sales offices worldwide visit https://www.internet.com/mediakit/salescontacts.html ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ For details on becoming a Commerce Partner, contact David Arganbright on 1-203-662-2858 or mailto:[email protected] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ To learn about other free newsletters offered by internet.com or to change your subscription visit https://e-newsletters.internet.com ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ internet.com's network of more than 150 Web sites are organized into 16 channels: Internet Technology https://internet.com/it E-Commerce/Marketing https://internet.com/marketing Web Developer https://internet.com/webdev Windows Internet Technology https://internet.com/win Linux/Open Source https://internet.com/linux Internet Resources https://internet.com/resources ISP Resources https://internet.com/isp Internet Lists https://internet.com/lists Download https://internet.com/downloads International https://internet.com/international Internet News https://internet.com/news Internet Investing https://internet.com/stocks ASP Resources https://internet.com/asp Wireless Internet https://internet.com/wireless Career Resources https://internet.com/careers EarthWeb https://www.earthweb.com ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ To find an answer - https://search.internet.com ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Looking for a job? Filling an opening? - https://jobs.internet.com ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ This newsletter is published by Jupitermedia Corp. https://internet.com - The Internet & IT Network Copyright (c) 2001 Jupitermedia Corp. All rights reserved. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ For information on reprinting or linking to internet.com content: https://internet.com/corporate/permissions.html ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~