My favorites | Sign in
Project Home Downloads Wiki Issues Source
Search
for
Installation  

Featured, Phase-Deploy
Updated Jul 23, 2009 by hal...@gmail.com

Installing devbarjs

The installation of devbarjs requires nothing more than adding the provided JavaScript and CSS files to any page you want the bar to show up on. devbarjs will do the rest for you.

  • devbarjs standalone
    • This download will include everything you need to properly install devbarjs with each dependency separated into its own file. Included will be each of the YUI Logger components and styling along with the jQuery component.
    •         <link rel="stylesheet" href="devbar-full.css" type="text/css" media="all" />
              <script type="text/javascript" src="devbar-full.js"></script>
  • devbarjs minimized
    • This is the same thing as the standalone but will include only two files: the JavaScript and CSS. Both will include each of the necessary components found in the standalone package but will be concatenated into a single file (separated only by type) and minimized. This is not a recommended install if you already use jQuery or some YUI components as this may load some packages twice.
    •         <link rel="stylesheet" href="logger.css" type="text/css" media="all" />
              <link rel="stylesheet" href="devbar.css" type="text/css" media="all" />
      
              <script type="text/javascript" src="yahoo-dom-event.js"></script>
              <script type="text/javascript" src="dragdrop-min.js"></script>
              <script type="text/javascript" src="logger-min.js"></script>
              <script type="text/javascript" src="yahoo-min.js"></script>
              <script type="text/javascript" src="cookie-min.js"></script>
              <script type="text/javascript" src="jquery-1.3.2.js"></script>
              <script type="text/javascript" src="devbar.js"></script>
    • It is recommended if you go this route to review some recommended best practices and merging some of the files using a tool like this Apache plugin.

Sign in to add a comment
Powered by Google Project Hosting