Uncategorized

This is the archive for Uncategorized.

Dive into the archives.


  • working with GIT

    RETRIEVING COPY FROM SVN
    note: the url specified should be a level below the trunk directory
    git svn init <repository url> –stdlayout –no-minimize-url
    note: specify a revision number where all branches have committed
    git svn fetch -r<revision number>:HEAD
    example:
    branch1 latest commit is revision 2370
    branch2 latest commit is revision 2389
    trunk latest commit is 2390
    -to retrieve copies for all branches
    git svn fetch […]

  • Firebug for your browser.

    Here’s something Roy Natavio found.
    If you need firebug for your browser other than Firefox, add this in your code
    <script type=’text/javascript’ src=’http://getfirebug.com/releases/lite/1.2/firebug-lite-compressed.js’></script>

    You now have a firebug on that page.

  • mod_jk and jboss

    1. Assuming you have Apache2 installed,
    If not get the latest Apache2 package from Apache.org and install it. We require no special configuration, just use the default settings.
    In the following steps, APACHE_HOME will represent the Apache install directory.
    2. Assuming you have downloaded and installed mod_jk 1.2
    Download the latest package available from Tomcats’s ‘Download Tomcat connector […]