CAS Workflow Monitor Web Application

RAT (Release Audit Tool) results

The following document contains the results of RAT (Release Audit Tool).

*****************************************************
Summary
-------
Notes: 0
Binaries: 8
Archives: 0
Standards: 20

Apache Licensed: 18
Generated Documents: 0

JavaDocs are generated and so license header is optional
Generated files do not required license headers

2 Unknown Licenses

*******************************

Archives (+ indicates readable, $ unreadable): 

 
*****************************************************
  Files with AL headers will be marked L
  Binary files (which do not require AL headers) will be marked B
  Compressed archives will be marked A
  Notices, licenses etc will be marked N
  AL    /x1/home/mattmann/oodt-site/oodt/webapp/workflow/src/main/webapp/viewCondition.jsp
  B     /x1/home/mattmann/oodt-site/oodt/webapp/workflow/src/main/webapp/images/task_arrow.jpg
  B     /x1/home/mattmann/oodt-site/oodt/webapp/workflow/src/main/webapp/images/task_circle.jpg
  B     /x1/home/mattmann/oodt-site/oodt/webapp/workflow/src/main/webapp/images/percent/percentImage_back.png
  B     /x1/home/mattmann/oodt-site/oodt/webapp/workflow/src/main/webapp/images/percent/percentImage_back2.png
  B     /x1/home/mattmann/oodt-site/oodt/webapp/workflow/src/main/webapp/images/percent/percentImage_back4.png
  B     /x1/home/mattmann/oodt-site/oodt/webapp/workflow/src/main/webapp/images/percent/percentImage_back3.png
  B     /x1/home/mattmann/oodt-site/oodt/webapp/workflow/src/main/webapp/images/percent/percentImage.png
  B     /x1/home/mattmann/oodt-site/oodt/webapp/workflow/src/main/webapp/images/percent/percentImage_back1.png
  AL    /x1/home/mattmann/oodt-site/oodt/webapp/workflow/src/main/webapp/viewWorkflows.jsp
  AL    /x1/home/mattmann/oodt-site/oodt/webapp/workflow/src/main/webapp/css/main.css
  AL    /x1/home/mattmann/oodt-site/oodt/webapp/workflow/src/main/webapp/css/progress.css
  AL    /x1/home/mattmann/oodt-site/oodt/webapp/workflow/src/main/webapp/viewWorkflow.jsp
 !????? /x1/home/mattmann/oodt-site/oodt/webapp/workflow/src/main/webapp/js/prototype/prototype.js
 !????? /x1/home/mattmann/oodt-site/oodt/webapp/workflow/src/main/webapp/js/progress/progress.js
  AL    /x1/home/mattmann/oodt-site/oodt/webapp/workflow/src/main/webapp/js/workflow.js
  AL    /x1/home/mattmann/oodt-site/oodt/webapp/workflow/src/main/webapp/viewWorkflowInstances.jsp
  AL    /x1/home/mattmann/oodt-site/oodt/webapp/workflow/src/main/webapp/viewEventToWorkflowMap.jsp
  AL    /x1/home/mattmann/oodt-site/oodt/webapp/workflow/src/main/webapp/viewTask.jsp
  AL    /x1/home/mattmann/oodt-site/oodt/webapp/workflow/src/main/webapp/index.jsp
  AL    /x1/home/mattmann/oodt-site/oodt/webapp/workflow/src/main/webapp/inc/header.jsp
  AL    /x1/home/mattmann/oodt-site/oodt/webapp/workflow/src/main/webapp/inc/footer.jsp
  AL    /x1/home/mattmann/oodt-site/oodt/webapp/workflow/src/main/webapp/WEB-INF/web.xml
  AL    /x1/home/mattmann/oodt-site/oodt/webapp/workflow/src/main/webapp/WEB-INF/classes/logging.properties
  AL    /x1/home/mattmann/oodt-site/oodt/webapp/workflow/src/main/resources/workflow-webapp-tomcat-5.5.9.xml
  AL    /x1/home/mattmann/oodt-site/oodt/webapp/workflow/src/main/resources/workflow-instance-met.xml
  AL    /x1/home/mattmann/oodt-site/oodt/webapp/workflow/src/main/java/org/apache/oodt/cas/workflow/webapp/JspUtility.java
  AL    /x1/home/mattmann/oodt-site/oodt/webapp/workflow/pom.xml
 
 *****************************************************
 Printing headers for files without AL header...
 
 
 =======================================================================
 ==/x1/home/mattmann/oodt-site/oodt/webapp/workflow/src/main/webapp/js/prototype/prototype.js
 =======================================================================
 /*  Prototype JavaScript framework, version 1.5.0
 *  (c) 2005-2007 Sam Stephenson
 *
 *  Prototype is freely distributable under the terms of an MIT-style license.
 *  For details, see the Prototype web site: http://prototype.conio.net/
 *
/*--------------------------------------------------------------------------*/

var Prototype = {
  Version: '1.5.0',
  BrowserFeatures: {
    XPath: !!document.evaluate
  },

  ScriptFragment: '(?:<script.*?>)((\n|\r|.)*?)(?:<\/script>)',
  emptyFunction: function() {},
  K: function(x) { return x }
}

var Class = {
  create: function() {
    return function() {
      this.initialize.apply(this, arguments);
    }
  }
}

var Abstract = new Object();

Object.extend = function(destination, source) {
  for (var property in source) {
    destination[property] = source[property];
  }
  return destination;
}

Object.extend(Object, {
  inspect: function(object) {
    try {
      if (object === undefined) return 'undefined';
      if (object === null) return 'null';
      return object.inspect ? object.inspect() : object.toString();
    } catch (e) {
      if (e instanceof RangeError) return '...';
      throw e;
    }
  },

  keys: function(object) {
    var keys = [];

 =======================================================================
 ==/x1/home/mattmann/oodt-site/oodt/webapp/workflow/src/main/webapp/js/progress/progress.js
 =======================================================================
 /* WebAppers Progress Bar, version 0.2
* (c) 2007 Ray Cheung
*
* WebAppers Progress Bar is freely distributable under the terms of an Creative Commons license.
* For details, see the WebAppers web site: http://www.webappers.com/progressBar/
*
/*--------------------------------------------------------------------------*/

var initial = -120;
var imageWidth=240;
var eachPercent = (imageWidth/2)/100;
/************************************************************\
*
\************************************************************/
function setText (id, percent)
{
    $(id+'Text').innerHTML = percent+"%";
}
/************************************************************\
*
\************************************************************/
function display ( id, percentage,color )
{	
	if (typeof color == "undefined") {
    color = "1";
  	}
    var percentageWidth = eachPercent * percentage;
    var actualWidth = initial + percentageWidth ;
    document.write('<img id="'+id+'" src="images/percent/percentImage.png" alt="'+percentage+'%" class="percentImage'+color+'" style="background-position: '+actualWidth+'px 0pt;"/> <span id="'+id+'Text">'+percentage+'%</span>');
}
/************************************************************\
*
\************************************************************/
function emptyProgress(id)
{
    var newProgress = initial+'px';
    $(id).style.backgroundPosition=newProgress+' 0';
    setText(id,'0');
}
/************************************************************\
*
\************************************************************/
function getProgress(id)
{
    var nowWidth = $(id).style.backgroundPosition.split("px");
    return (Math.floor(100+(nowWidth[0]/eachPercent))+'%');
	
}
/************************************************************\
*