Home > Domino Tips > Developer > Domino > Dynamic relative references for JavaScript & CSS files
Domino Tips:
EMAIL THIS
 TIPS & NEWSLETTERS TOPICS 

DOMINO

Dynamic relative references for JavaScript & CSS files


Andrew Zeswitz
02.25.2002
Rating: -2.40- (out of 5)


Digg This!    StumbleUpon Toolbar StumbleUpon    Bookmark with Delicious Del.icio.us   


Well-formed HTML is a worthy goal (some of us even try to render it to be well-formatted...), however it becomes tedious when working with some of the Notes/Domino features that don't allow computation, like the JS Header attribute of the form.

One way to get around this, and include all computed content in the HTML Head tags is to utilize formula language in the HTML Head Content attribute.

By doing this, we can preload images without having to parse the ".nsf" from the window.location.href, and reference all other types of modular files like JS, CSS, etc. The ability to resolve the database name without relying on the ".nsf" becomes mandatory when the homepage of your domino application is using a DNS. Using a virtual server with its own DNS may not include the path information to the database.

By using the following formula, all computed references may be handled dynamically to create a well formed HTML Head while having access to the computed database path. The JS Header may subsequently be used for any subsequent client-side scripting.

The following example assumes the following:
1) The page is not intended to be cached by the Web browser
2) There is a form field name "MetaKW" that contains valid meta data keywords
3) There is a form field name "MetaDesc" that contains a valid meta data description
4) There is a design element (in this case a Page) named "validation.js" used for embedded JavaScript
5) There is a design element (in this case a Page) named "DefaultCSS" used for Cascading Style Sheets
6) We have need of referencing the database name through use of the JavaScript variable (in this case "homeDb")



Code

REM "Begin HTMLHead Formula";
curDB := @ReplaceSubstring(@Subset(@DbName; -1) ; "" ; "/");

noCache := "<meta http-equiv="PRAGMA" content="NO-CACHE">";
strMeta :=  "<META NAME="keywords" CONTENT="" + MetaKW + "">";
strMetaDesc := "<META NAME="description" CONTENT="" + MetaDesc + 
"">";

scriptSRC := "<SCRIPT LANGUAGE="JavaScript" src="/" + curDB + 
"/validation.js"></script>";

homeScriptVar := "<SCRIPT LANGUAGE="JavaScript">" + @NewLine + 
"var homeDb = '" + curDB+ "'" + @NewLine + "</script>";

cssSRC := "<LINK REL=stylesheet TYPE="text/css" HREF="/" + curDB + 
"/DefaultCSS" TITLE="style">";

REM "Draw out the concatenated string elements";
@NewLine + @NewLine + noCache + @NewLine + @NewLine + strMetaDesc + 
@NewLine + strMeta + @NewLine + @NewLine + scriptSRC +@NewLine + @NewLine 
+ cssSRC + @NewLine + @NewLine + homeScriptVar + @NewLine + @NewLine

Rate this Tip
To rate tips, you must be a member of SearchDomino.com.
Register now to start rating these tips. Log in if you are already a member.


Submit a Tip




Digg This!    StumbleUpon Toolbar StumbleUpon    Bookmark with Delicious Del.icio.us   



RELATED CONTENT
Domino
Mimic Lotus Notes Domino application functionality on the Web
A single form to view and edit any Lotus Notes document
DECS and DCR external data access considerations
How to create non-scrolling Lotus Domino view headers on the Web
Disabling the 'Submit' button on a form
An easier way to update a rich text field
Results from Default Notes Search have # of responses in brackets
Lotus Notes/Domino veteran offers comprehensive list of app dev tools
Notes to XML. . .and back again
Creating thumbnail images using LS2J in LotusScript

RELATED RESOURCES
2020software.com, trial software downloads for accounting software, ERP software, CRM software and business software systems
Search Bitpipe.com for the latest white papers and business webcasts
Whatis.com, the online computer dictionary

DISCLAIMER: Our Tips Exchange is a forum for you to share technical advice and expertise with your peers and to learn from other enterprise IT professionals. TechTarget provides the infrastructure to facilitate this sharing of information. However, we cannot guarantee the accuracy or validity of the material submitted. You agree that your use of the Ask The Expert services and your reliance on any questions, answers, information or other materials received through this Web site is at your own risk.



Domino & Lotus Notes Security Solutions: Authentication, Antispam, Encryption and Antivirus
HomeTopicsITKnowledge ExchangeTipsAsk the ExpertsMultimediaWhite PapersDomino IT Downloads
About Us  |  Contact Us  |  For Advertisers  |  For Business Partners  |  Site Index  |  RSS
SEARCH 
TechTarget provides technology professionals with the information they need to perform their jobs - from developing strategy, to making cost-effective purchase decisions and managing their organizations' technology projects - with its network of technology-specific websites, events and online magazines.

TechTarget Corporate Web Site  |  Media Kits  |  Site Map




All Rights Reserved, Copyright 1999 - 2009, TechTarget | Read our Privacy Policy
  TechTarget - The IT Media ROI Experts