- *
- * The names of methods in this class follow the conventions established
- * by java.lang.Number, java.math.BigInteger,
- * and java.math.BigDecimal in Java 1.1 and Java 1.2.
- *
- * @see MathContext
- * @author Mike Cowlishaw
- * @stable ICU 2.0
- */
-
-//--public class BigDecimal extends java.lang.Number implements java.io.Serializable,java.lang.Comparable{
-//-- private static final java.lang.String $0="BigDecimal.nrx";
-
- /* ---------------------------------------------------------------- */
- /* Constructors */
- /* ---------------------------------------------------------------- */
-
- /**
- * Constructs a BigDecimal object from a
- * java.math.BigDecimal.
- *
- * Constructs a BigDecimal as though the parameter had
- * been represented as a String (using its
- * toString method) and the
- * {@link #BigDecimal(java.lang.String)} constructor had then been
- * used.
- * The parameter must not be null.
- *
- * (Note: this constructor is provided only in the
- * com.ibm.icu.math version of the BigDecimal class.
- * It would not be present in a java.math version.)
- *
- * @param bd The BigDecimal to be translated.
- * @stable ICU 2.0
- */
-
- //--public BigDecimal(java.math.BigDecimal bd){
- //-- this(bd.toString());
- //-- return;}
-
- /**
- * Constructs a BigDecimal object from a
- * BigInteger, with scale 0.
- *
- * Constructs a BigDecimal which is the exact decimal
- * representation of the BigInteger, with a scale of
- * zero.
- * The value of the BigDecimal is identical to the value
- * of the BigInteger.
- * The parameter must not be null.
- *
- * The BigDecimal will contain only decimal digits,
- * prefixed with a leading minus sign (hyphen) if the
- * BigInteger is negative. A leading zero will be
- * present only if the BigInteger is zero.
- *
- * @param bi The BigInteger to be converted.
- * @stable ICU 2.0
- */
-
- //--public BigDecimal(java.math.BigInteger bi){
- //-- this(bi.toString(10));
- //-- return;}
- // exp remains 0
-
- /**
- * Constructs a BigDecimal object from a
- * BigInteger and a scale.
- *
- * Constructs a BigDecimal which is the exact decimal
- * representation of the BigInteger, scaled by the
- * second parameter, which may not be negative.
- * The value of the BigDecimal is the
- * BigInteger divided by ten to the power of the scale.
- * The BigInteger parameter must not be
- * null.
- *
- * The BigDecimal will contain only decimal digits, (with
- * an embedded decimal point followed by scale decimal
- * digits if the scale is positive), prefixed with a leading minus
- * sign (hyphen) if the BigInteger is negative. A
- * leading zero will be present only if the BigInteger is
- * zero.
- *
- * @param bi The BigInteger to be converted.
- * @param scale The int specifying the scale.
- * @throws NumberFormatException if the scale is negative.
- * @stable ICU 2.0
- */
-
- //--public BigDecimal(java.math.BigInteger bi,int scale){
- //-- this(bi.toString(10));
- //-- if (scale<0)
- //-- throw new java.lang.NumberFormatException("Negative scale:"+" "+scale);
- //-- exp=(int)-scale; // exponent is -scale
- //-- return;}
-
- /**
- * Constructs a BigDecimal object from an array of characters.
- *
- * Constructs a BigDecimal as though a
- * String had been constructed from the character array
- * and the {@link #BigDecimal(java.lang.String)} constructor had then
- * been used. The parameter must not be null.
- *
- * Using this constructor is faster than using the
- * BigDecimal(String) constructor if the string is
- * already available in character array form.
- *
- * @param inchars The char[] array containing the number
- * to be converted.
- * @throws NumberFormatException if the parameter is not a valid
- * number.
- * @stable ICU 2.0
- */
-
- //--public BigDecimal(char inchars[]){
- //-- this(inchars,0,inchars.length);
- //-- return;}
-
- /**
- * Constructs a BigDecimal object from an array of characters.
- *
- * Constructs a BigDecimal as though a
- * String had been constructed from the character array
- * (or a subarray of that array) and the
- * {@link #BigDecimal(java.lang.String)} constructor had then been
- * used. The first parameter must not be null, and the
- * subarray must be wholly contained within it.
- *
- * Using this constructor is faster than using the
- * BigDecimal(String) constructor if the string is
- * already available within a character array.
- *
- * @param inchars The char[] array containing the number
- * to be converted.
- * @param offset The int offset into the array of the
- * start of the number to be converted.
- * @param length The int length of the number.
- * @throws NumberFormatException if the parameter is not a valid
- * number for any reason.
- * @stable ICU 2.0
- */
-
- //--public BigDecimal(char inchars[],int offset,int length){super();
- function BigDecimal() {
- //-- members
- this.ind = 0;
- this.form = MathContext.prototype.PLAIN;
- this.mant = null;
- this.exp = 0;
-
- //-- overloaded ctor
- if (BigDecimal.arguments.length == 0)
- return;
- var inchars;
- var offset;
- var length;
- if (BigDecimal.arguments.length == 1)
- {
- inchars = BigDecimal.arguments[0];
- offset = 0;
- length = inchars.length;
- }
- else
- {
- inchars = BigDecimal.arguments[0];
- offset = BigDecimal.arguments[1];
- length = BigDecimal.arguments[2];
- }
- if (typeof inchars == "string")
- {
- inchars = inchars.split("");
- }
-
- //--boolean exotic;
- var exotic;
- //--boolean hadexp;
- var hadexp;
- //--int d;
- var d;
- //--int dotoff;
- var dotoff;
- //--int last;
- var last;
- //--int i=0;
- var i=0;
- //--char si=0;
- var si=0;
- //--boolean eneg=false;
- var eneg=false;
- //--int k=0;
- var k=0;
- //--int elen=0;
- var elen=0;
- //--int j=0;
- var j=0;
- //--char sj=0;
- var sj=0;
- //--int dvalue=0;
- var dvalue=0;
- //--int mag=0;
- var mag=0;
- // This is the primary constructor; all incoming strings end up
- // here; it uses explicit (inline) parsing for speed and to avoid
- // generating intermediate (temporary) objects of any kind.
- // 1998.06.25: exponent form built only if E/e in string
- // 1998.06.25: trailing zeros not removed for zero
- // 1999.03.06: no embedded blanks; allow offset and length
- if (length<=0)
- this.bad("BigDecimal(): ", inchars); // bad conversion (empty string)
- // [bad offset will raise array bounds exception]
-
- /* Handle and step past sign */
- this.ind=this.ispos; // assume positive
- if (inchars[0]==('-'))
- {
- length--;
- if (length==0)
- this.bad("BigDecimal(): ", inchars); // nothing after sign
- this.ind=this.isneg;
- offset++;
- }
- else
- if (inchars[0]==('+'))
- {
- length--;
- if (length==0)
- this.bad("BigDecimal(): ", inchars); // nothing after sign
- offset++;
- }
-
- /* We're at the start of the number */
- exotic=false; // have extra digits
- hadexp=false; // had explicit exponent
- d=0; // count of digits found
- dotoff=-1; // offset where dot was found
- last=-1; // last character of mantissa
- {var $1=length;i=offset;i:for(;$1>0;$1--,i++){
- si=inchars[i];
- if (si>='0') // test for Arabic digit
- if (si<='9')
- {
- last=i;
- d++; // still in mantissa
- continue i;
- }
- if (si=='.')
- { // record and ignore
- if (dotoff>=0)
- this.bad("BigDecimal(): ", inchars); // two dots
- dotoff=i-offset; // offset into mantissa
- continue i;
- }
- if (si!='e')
- if (si!='E')
- { // expect an extra digit
- if (si<'0' || si>'9')
- this.bad("BigDecimal(): ", inchars); // not a number
- // defer the base 10 check until later to avoid extra method call
- exotic=true; // will need conversion later
- last=i;
- d++; // still in mantissa
- continue i;
- }
- /* Found 'e' or 'E' -- now process explicit exponent */
- // 1998.07.11: sign no longer required
- if ((i-offset)>(length-2))
- this.bad("BigDecimal(): ", inchars); // no room for even one digit
- eneg=false;
- if ((inchars[i+1])==('-'))
- {
- eneg=true;
- k=i+2;
- }
- else
- if ((inchars[i+1])==('+'))
- k=i+2;
- else
- k=i+1;
- // k is offset of first expected digit
- elen=length-((k-offset)); // possible number of digits
- if ((elen==0)||(elen>9))
- this.bad("BigDecimal(): ", inchars); // 0 or more than 9 digits
- {var $2=elen;j=k;j:for(;$2>0;$2--,j++){
- sj=inchars[j];
- if (sj<'0')
- this.bad("BigDecimal(): ", inchars); // always bad
- if (sj>'9')
- { // maybe an exotic digit
- /*if (si<'0' || si>'9')
- this.bad(inchars); // not a number
- dvalue=java.lang.Character.digit(sj,10); // check base
- if (dvalue<0)
- bad(inchars); // not base 10*/
- this.bad("BigDecimal(): ", inchars);
- }
- else
- dvalue=sj-'0';
- this.exp=(this.exp*10)+dvalue;
- }
- }/*j*/
- if (eneg)
- this.exp=-this.exp; // was negative
- hadexp=true; // remember we had one
- break i; // we are done
- }
- }/*i*/
-
- /* Here when all inspected */
- if (d==0)
- this.bad("BigDecimal(): ", inchars); // no mantissa digits
- if (dotoff>=0)
- this.exp=(this.exp+dotoff)-d; // adjust exponent if had dot
-
- /* strip leading zeros/dot (leave final if all 0's) */
- {var $3=last-1;i=offset;i:for(;i<=$3;i++){
- si=inchars[i];
- if (si=='0')
- {
- offset++;
- dotoff--;
- d--;
- }
- else
- if (si=='.')
- {
- offset++; // step past dot
- dotoff--;
- }
- else
- if (si<='9')
- break i;/* non-0 */
- else
- {/* exotic */
- //if ((java.lang.Character.digit(si,10))!=0)
- break i; // non-0 or bad
- // is 0 .. strip like '0'
- //offset++;
- //dotoff--;
- //d--;
- }
- }
- }/*i*/
-
- /* Create the mantissa array */
- this.mant=new Array(d); // we know the length
- j=offset; // input offset
- if (exotic)
- {exotica:do{ // slow: check for exotica
- {var $4=d;i=0;i:for(;$4>0;$4--,i++){
- if (i==dotoff)
- j++; // at dot
- sj=inchars[j];
- if (sj<='9')
- this.mant[i]=sj-'0';/* easy */
- else
- {
- //dvalue=java.lang.Character.digit(sj,10);
- //if (dvalue<0)
- this.bad("BigDecimal(): ", inchars); // not a number after all
- //mant[i]=(byte)dvalue;
- }
- j++;
- }
- }/*i*/
- }while(false);}/*exotica*/
- else
- {simple:do{
- {var $5=d;i=0;i:for(;$5>0;$5--,i++){
- if (i==dotoff)
- j++;
- this.mant[i]=inchars[j]-'0';
- j++;
- }
- }/*i*/
- }while(false);}/*simple*/
-
- /* Looks good. Set the sign indicator and form, as needed. */
- // Trailing zeros are preserved
- // The rule here for form is:
- // If no E-notation, then request plain notation
- // Otherwise act as though add(0,DEFAULT) and request scientific notation
- // [form is already PLAIN]
- if (this.mant[0]==0)
- {
- this.ind=this.iszero; // force to show zero
- // negative exponent is significant (e.g., -3 for 0.000) if plain
- if (this.exp>0)
- this.exp=0; // positive exponent can be ignored
- if (hadexp)
- { // zero becomes single digit from add
- this.mant=this.ZERO.mant;
- this.exp=0;
- }
- }
- else
- { // non-zero
- // [ind was set earlier]
- // now determine form
- if (hadexp)
- {
- this.form=MathContext.prototype.SCIENTIFIC;
- // 1999.06.29 check for overflow
- mag=(this.exp+this.mant.length)-1; // true exponent in scientific notation
- if ((magthis.MaxExp))
- this.bad("BigDecimal(): ", inchars);
- }
- }
- // say 'BD(c[]): mant[0] mantlen exp ind form:' mant[0] mant.length exp ind form
- return;
- }
-
- /**
- * Constructs a BigDecimal object directly from a
- * double.
- *
- * Constructs a BigDecimal which is the exact decimal
- * representation of the 64-bit signed binary floating point
- * parameter.
- *
- * Note that this constructor it an exact conversion; it does not give
- * the same result as converting num to a
- * String using the Double.toString() method
- * and then using the {@link #BigDecimal(java.lang.String)}
- * constructor.
- * To get that result, use the static {@link #valueOf(double)}
- * method to construct a BigDecimal from a
- * double.
- *
- * @param num The double to be converted.
- * @throws NumberFormatException if the parameter is infinite or
- * not a number.
- * @stable ICU 2.0
- */
-
- //--public BigDecimal(double num){
- //-- // 1999.03.06: use exactly the old algorithm
- //-- // 2000.01.01: note that this constructor does give an exact result,
- //-- // so perhaps it should not be deprecated
- //-- // 2000.06.18: no longer deprecated
- //-- this((new java.math.BigDecimal(num)).toString());
- //-- return;}
-
- /**
- * Constructs a BigDecimal object directly from a
- * int.
- *
- * Constructs a BigDecimal which is the exact decimal
- * representation of the 32-bit signed binary integer parameter.
- * The BigDecimal will contain only decimal digits,
- * prefixed with a leading minus sign (hyphen) if the parameter is
- * negative.
- * A leading zero will be present only if the parameter is zero.
- *
- * @param num The int to be converted.
- * @stable ICU 2.0
- */
-
- //--public BigDecimal(int num){super();
- //-- int mun;
- //-- int i=0;
- //-- // We fastpath commoners
- //-- if (num<=9)
- //-- if (num>=(-9))
- //-- {singledigit:do{
- //-- // very common single digit case
- //-- {/*select*/
- //-- if (num==0)
- //-- {
- //-- mant=ZERO.mant;
- //-- ind=iszero;
- //-- }
- //-- else if (num==1)
- //-- {
- //-- mant=ONE.mant;
- //-- ind=ispos;
- //-- }
- //-- else if (num==(-1))
- //-- {
- //-- mant=ONE.mant;
- //-- ind=isneg;
- //-- }
- //-- else{
- //-- {
- //-- mant=new byte[1];
- //-- if (num>0)
- //-- {
- //-- mant[0]=(byte)num;
- //-- ind=ispos;
- //-- }
- //-- else
- //-- { // num<-1
- //-- mant[0]=(byte)((int)-num);
- //-- ind=isneg;
- //-- }
- //-- }
- //-- }
- //-- }
- //-- return;
- //-- }while(false);}/*singledigit*/
- //--
- //-- /* We work on negative numbers so we handle the most negative number */
- //-- if (num>0)
- //-- {
- //-- ind=ispos;
- //-- num=(int)-num;
- //-- }
- //-- else
- //-- ind=isneg;/* negative */ // [0 case already handled]
- //-- // [it is quicker, here, to pre-calculate the length with
- //-- // one loop, then allocate exactly the right length of byte array,
- //-- // then re-fill it with another loop]
- //-- mun=num; // working copy
- //-- {i=9;i:for(;;i--){
- //-- mun=mun/10;
- //-- if (mun==0)
- //-- break i;
- //-- }
- //-- }/*i*/
- //-- // i is the position of the leftmost digit placed
- //-- mant=new byte[10-i];
- //-- {i=(10-i)-1;i:for(;;i--){
- //-- mant[i]=(byte)-(((byte)(num%10)));
- //-- num=num/10;
- //-- if (num==0)
- //-- break i;
- //-- }
- //-- }/*i*/
- //-- return;
- //-- }
-
- /**
- * Constructs a BigDecimal object directly from a
- * long.
- *
- * Constructs a BigDecimal which is the exact decimal
- * representation of the 64-bit signed binary integer parameter.
- * The BigDecimal will contain only decimal digits,
- * prefixed with a leading minus sign (hyphen) if the parameter is
- * negative.
- * A leading zero will be present only if the parameter is zero.
- *
- * @param num The long to be converted.
- * @stable ICU 2.0
- */
-
- //--public BigDecimal(long num){super();
- //-- long mun;
- //-- int i=0;
- //-- // Not really worth fastpathing commoners in this constructor [also,
- //-- // we use this to construct the static constants].
- //-- // This is much faster than: this(String.valueOf(num).toCharArray())
- //-- /* We work on negative num so we handle the most negative number */
- //-- if (num>0)
- //-- {
- //-- ind=ispos;
- //-- num=(long)-num;
- //-- }
- //-- else
- //-- if (num==0)
- //-- ind=iszero;
- //-- else
- //-- ind=isneg;/* negative */
- //-- mun=num;
- //-- {i=18;i:for(;;i--){
- //-- mun=mun/10;
- //-- if (mun==0)
- //-- break i;
- //-- }
- //-- }/*i*/
- //-- // i is the position of the leftmost digit placed
- //-- mant=new byte[19-i];
- //-- {i=(19-i)-1;i:for(;;i--){
- //-- mant[i]=(byte)-(((byte)(num%10)));
- //-- num=num/10;
- //-- if (num==0)
- //-- break i;
- //-- }
- //-- }/*i*/
- //-- return;
- //-- }
-
- /**
- * Constructs a BigDecimal object from a String.
- *
- * Constructs a BigDecimal from the parameter, which must
- * not be null and must represent a valid number ,
- * as described formally in the documentation referred to
- * {@link BigDecimal above}.
- *
- * In summary, numbers in String form must have at least
- * one digit, may have a leading sign, may have a decimal point, and
- * exponential notation may be used. They follow conventional syntax,
- * and may not contain blanks.
- *
- * Some valid strings from which a BigDecimal might
- * be constructed are:
- *
- * "0" -- Zero
- * "12" -- A whole number
- * "-76" -- A signed whole number
- * "12.70" -- Some decimal places
- * "+0.003" -- Plus sign is allowed
- * "17." -- The same as 17
- * ".5" -- The same as 0.5
- * "4E+9" -- Exponential notation
- * "0.73e-7" -- Exponential notation
- *
- *
- * (Exponential notation means that the number includes an optional
- * sign and a power of ten following an 'E' that
- * indicates how the decimal point will be shifted. Thus the
- * "4E+9" above is just a short way of writing
- * 4000000000, and the "0.73e-7" is short
- * for 0.000000073.)
- *
- * The BigDecimal constructed from the String is in a
- * standard form, with no blanks, as though the
- * {@link #add(BigDecimal)} method had been used to add zero to the
- * number with unlimited precision.
- * If the string uses exponential notation (that is, includes an
- * e or an E), then the
- * BigDecimal number will be expressed in scientific
- * notation (where the power of ten is adjusted so there is a single
- * non-zero digit to the left of the decimal point); in this case if
- * the number is zero then it will be expressed as the single digit 0,
- * and if non-zero it will have an exponent unless that exponent would
- * be 0. The exponent must fit in nine digits both before and after it
- * is expressed in scientific notation.
- *
- * Any digits in the parameter must be decimal; that is,
- * Character.digit(c, 10) (where c is the
- * character in question) would not return -1.
- *
- * @param string The String to be converted.
- * @throws NumberFormatException if the parameter is not a valid
- * number.
- * @stable ICU 2.0
- */
-
- //--public BigDecimal(java.lang.String string){
- //-- this(string.toCharArray(),0,string.length());
- //-- return;}
-
- /* Make a default BigDecimal object for local use. */
-
- //--private BigDecimal(){super();
- //-- return;
- //-- }
-
-// aw T-002278
-(function(BigDecimal){
- /* ---------------------------------------------------------------- */
- /* Operator methods [methods which take a context parameter] */
- /* ---------------------------------------------------------------- */
-
-/* JavaScript conversion (c) 2003 STZ-IDA and PTV AG, Karlsruhe, Germany */
-var div = function(a, b) {
- return (a-(a%b))/b;
-}
-
-BigDecimal.prototype.div = div;
-
-var arraycopy = function(src, srcindex, dest, destindex, length) {
- var i;
- if (destindex > srcindex) {
- // in case src and dest are equals, but also doesn't hurt
- // if they are different
- for (i = length-1; i >= 0; --i) {
- dest[i+destindex] = src[i+srcindex];
- }
- } else {
- for (i = 0; i < length; ++i) {
- dest[i+destindex] = src[i+srcindex];
- }
- }
-}
-
-BigDecimal.prototype.arraycopy = arraycopy;
-
-var createArrayWithZeros = function(length) {
- var retVal = new Array(length);
- var i;
- for (i = 0; i < length; ++i) {
- retVal[i] = 0;
- }
- return retVal;
-}
-
-BigDecimal.prototype.createArrayWithZeros = createArrayWithZeros;
-
- /**
- * Returns a plain BigDecimal whose value is the absolute
- * value of this BigDecimal.
- *
- * The same as {@link #abs(MathContext)}, where the context is
- * new MathContext(0, MathContext.PLAIN).
- *
- * The length of the decimal part (the scale) of the result will
- * be this.scale()
- *
- * @return A BigDecimal whose value is the absolute
- * value of this BigDecimal.
- * @stable ICU 2.0
- */
-
- //--public com.ibm.icu.math.BigDecimal abs(){
- //- return this.abs(plainMC);
- //- }
-
- /**
- * Returns a BigDecimal whose value is the absolute value
- * of this BigDecimal.
- *
- * If the current object is zero or positive, then the same result as
- * invoking the {@link #plus(MathContext)} method with the same
- * parameter is returned.
- * Otherwise, the same result as invoking the
- * {@link #negate(MathContext)} method with the same parameter is
- * returned.
- *
- * @param set The MathContext arithmetic settings.
- * @return A BigDecimal whose value is the absolute
- * value of this BigDecimal.
- * @stable ICU 2.0
- */
-
- //--public com.ibm.icu.math.BigDecimal abs(com.ibm.icu.math.MathContext set){
-var abs = function() {
- var set;
- if (abs.arguments.length == 1)
- {
- set = abs.arguments[0];
- }
- else if (abs.arguments.length == 0)
- {
- set = this.plainMC;
- }
- else
- {
- throw "abs(): " + abs.arguments.length + " arguments given; expected 0 or 1"
- }
- if (this.ind==this.isneg)
- return this.negate(set);
- return this.plus(set);
- }
-
- /**
- * Returns a plain BigDecimal whose value is
- * this+rhs, using fixed point arithmetic.
- *
- * The same as {@link #add(BigDecimal, MathContext)},
- * where the BigDecimal is rhs,
- * and the context is new MathContext(0, MathContext.PLAIN).
- *
- * The length of the decimal part (the scale) of the result will be
- * the maximum of the scales of the two operands.
- *
- * @param rhs The BigDecimal for the right hand side of
- * the addition.
- * @return A BigDecimal whose value is
- * this+rhs, using fixed point arithmetic.
- * @stable ICU 2.0
- */
-
- //--public com.ibm.icu.math.BigDecimal add(com.ibm.icu.math.BigDecimal rhs){
- //-- return this.add(rhs,plainMC);
- //-- }
-
- /**
- * Returns a BigDecimal whose value is this+rhs.
- *
- * Implements the addition (+ ) operator
- * (as defined in the decimal documentation, see {@link BigDecimal
- * class header}),
- * and returns the result as a BigDecimal object.
- *
- * @param rhs The BigDecimal for the right hand side of
- * the addition.
- * @param set The MathContext arithmetic settings.
- * @return A BigDecimal whose value is
- * this+rhs.
- * @stable ICU 2.0
- */
-
- //--public com.ibm.icu.math.BigDecimal add(com.ibm.icu.math.BigDecimal rhs,com.ibm.icu.math.MathContext set){
-var add = function() {
- var set;
- if (add.arguments.length == 2)
- {
- set = add.arguments[1];
- }
- else if (add.arguments.length == 1)
- {
- set = this.plainMC;
- }
- else
- {
- throw "add(): " + add.arguments.length + " arguments given; expected 1 or 2"
- }
- var rhs = add.arguments[0];
- //--com.ibm.icu.math.BigDecimal lhs;
- var lhs;
- //--int reqdig;
- var reqdig;
- //--com.ibm.icu.math.BigDecimal res;
- var res;
- //--byte usel[];
- var usel;
- //--int usellen;
- var usellen;
- //--byte user[];
- var user;
- //--int userlen;
- var userlen;
- //--int newlen=0;
- var newlen=0;
- //--int tlen=0;
- var tlen=0;
- //--int mult=0;
- var mult=0;
- //--byte t[]=null;
- var t=null;
- //--int ia=0;
- var ia=0;
- //--int ib=0;
- var ib=0;
- //--int ea=0;
- var ea=0;
- //int eb=0;
- var eb=0;
- //byte ca=0;
- var ca=0;
- //--byte cb=0;
- var cb=0;
- /* determine requested digits and form */
- if (set.lostDigits)
- this.checkdigits(rhs,set.digits);
- lhs=this; // name for clarity and proxy
-
- /* Quick exit for add floating 0 */
- // plus() will optimize to return same object if possible
- if (lhs.ind==0)
- if (set.form!=MathContext.prototype.PLAIN)
- return rhs.plus(set);
- if (rhs.ind==0)
- if (set.form!=MathContext.prototype.PLAIN)
- return lhs.plus(set);
-
- /* Prepare numbers (round, unless unlimited precision) */
- reqdig=set.digits; // local copy (heavily used)
- if (reqdig>0)
- {
- if (lhs.mant.length>reqdig)
- lhs=this.clone(lhs).round(set);
- if (rhs.mant.length>reqdig)
- rhs=this.clone(rhs).round(set);
- // [we could reuse the new LHS for result in this case]
- }
-
- res=new BigDecimal(); // build result here
-
- /* Now see how much we have to pad or truncate lhs or rhs in order
- to align the numbers. If one number is much larger than the
- other, then the smaller cannot affect the answer [but we may
- still need to pad with up to DIGITS trailing zeros]. */
- // Note sign may be 0 if digits (reqdig) is 0
- // usel and user will be the byte arrays passed to the adder; we'll
- // use them on all paths except quick exits
- usel=lhs.mant;
- usellen=lhs.mant.length;
- user=rhs.mant;
- userlen=rhs.mant.length;
- {padder:do{/*select*/
- if (lhs.exp==rhs.exp)
- {/* no padding needed */
- // This is the most common, and fastest, path
- res.exp=lhs.exp;
- }
- else if (lhs.exp>rhs.exp)
- { // need to pad lhs and/or truncate rhs
- newlen=(usellen+lhs.exp)-rhs.exp;
- /* If, after pad, lhs would be longer than rhs by digits+1 or
- more (and digits>0) then rhs cannot affect answer, so we only
- need to pad up to a length of DIGITS+1. */
- if (newlen>=((userlen+reqdig)+1))
- if (reqdig>0)
- {
- // LHS is sufficient
- res.mant=usel;
- res.exp=lhs.exp;
- res.ind=lhs.ind;
- if (usellen(reqdig+1))
- if (reqdig>0)
- {
- // LHS will be max; RHS truncated
- tlen=(newlen-reqdig)-1; // truncation length
- userlen=userlen-tlen;
- res.exp=res.exp+tlen;
- newlen=reqdig+1;
- }
- if (newlen>usellen)
- usellen=newlen; // need to pad LHS
- }
- else{ // need to pad rhs and/or truncate lhs
- newlen=(userlen+rhs.exp)-lhs.exp;
- if (newlen>=((usellen+reqdig)+1))
- if (reqdig>0)
- {
- // RHS is sufficient
- res.mant=user;
- res.exp=rhs.exp;
- res.ind=rhs.ind;
- if (userlen(reqdig+1))
- if (reqdig>0)
- {
- // RHS will be max; LHS truncated
- tlen=(newlen-reqdig)-1; // truncation length
- usellen=usellen-tlen;
- res.exp=res.exp+tlen;
- newlen=reqdig+1;
- }
- if (newlen>userlen)
- userlen=newlen; // need to pad RHS
- }
- }while(false);}/*padder*/
-
- /* OK, we have aligned mantissas. Now add or subtract. */
- // 1998.06.27 Sign may now be 0 [e.g., 0.000] .. treat as positive
- // 1999.05.27 Allow for 00 on lhs [is not larger than 2 on rhs]
- // 1999.07.10 Allow for 00 on rhs [is not larger than 2 on rhs]
- if (lhs.ind==this.iszero)
- res.ind=this.ispos;
- else
- res.ind=lhs.ind; // likely sign, all paths
- if (((lhs.ind==this.isneg)?1:0)==((rhs.ind==this.isneg)?1:0)) // same sign, 0 non-negative
- mult=1;
- else
- {signdiff:do{ // different signs, so subtraction is needed
- mult=-1; // will cause subtract
- /* Before we can subtract we must determine which is the larger,
- as our add/subtract routine only handles non-negative results
- so we may need to swap the operands. */
- {swaptest:do{/*select*/
- if (rhs.ind==this.iszero)
- ; // original A bigger
- else if ((usellenuserlen)
- ; // original A bigger
- else{
- {/* logical lengths the same */ // need compare
- /* may still need to swap: compare the strings */
- ia=0;
- ib=0;
- ea=usel.length-1;
- eb=user.length-1;
- {compare:for(;;){
- if (ia<=ea)
- ca=usel[ia];
- else
- {
- if (ib>eb)
- {/* identical */
- if (set.form!=MathContext.prototype.PLAIN)
- return this.ZERO;
- // [if PLAIN we must do the subtract, in case of 0.000 results]
- break compare;
- }
- ca=0;
- }
- if (ib<=eb)
- cb=user[ib];
- else
- cb=0;
- if (ca!=cb)
- {
- if (ca B if subtracting */
- // add [A+B*1] or subtract [A+(B*-1)]
- res.mant=this.byteaddsub(usel,usellen,user,userlen,mult,false);
- // [reuse possible only after chop; accounting makes not worthwhile]
-
- // Finish() rounds before stripping leading 0's, then sets form, etc.
- return res.finish(set,false);
- }
-
- /**
- * Compares this BigDecimal to another, using unlimited
- * precision.
- *
- * The same as {@link #compareTo(BigDecimal, MathContext)},
- * where the BigDecimal is rhs,
- * and the context is new MathContext(0, MathContext.PLAIN).
- *
- * @param rhs The BigDecimal for the right hand side of
- * the comparison.
- * @return An int whose value is -1, 0, or 1 as
- * this is numerically less than, equal to,
- * or greater than rhs.
- * @see #compareTo(Object)
- * @stable ICU 2.0
- */
-
- //--public int compareTo(com.ibm.icu.math.BigDecimal rhs){
- //-- return this.compareTo(rhs,plainMC);
- //-- }
-
- /**
- * Compares this BigDecimal to another.
- *
- * Implements numeric comparison,
- * (as defined in the decimal documentation, see {@link BigDecimal
- * class header}),
- * and returns a result of type int.
- *
- * The result will be:
- *
- * -1
- * if the current object is less than the first parameter
- *
- * 0
- * if the current object is equal to the first parameter
- *
- * 1
- * if the current object is greater than the first parameter.
- *
- *
- * A {@link #compareTo(Object)} method is also provided.
- *
- * @param rhs The BigDecimal for the right hand side of
- * the comparison.
- * @param set The MathContext arithmetic settings.
- * @return An int whose value is -1, 0, or 1 as
- * this is numerically less than, equal to,
- * or greater than rhs.
- * @see #compareTo(Object)
- * @stable ICU 2.0
- */
-
- //public int compareTo(com.ibm.icu.math.BigDecimal rhs,com.ibm.icu.math.MathContext set){
-var compareTo = function() {
- var set;
- if (compareTo.arguments.length == 2)
- {
- set = compareTo.arguments[1];
- }
- else if (compareTo.arguments.length == 1)
- {
- set = this.plainMC;
- }
- else
- {
- throw "compareTo(): " + compareTo.arguments.length + " arguments given; expected 1 or 2"
- }
- var rhs = compareTo.arguments[0];
- //--int thislength=0;
- var thislength=0;
- //--int i=0;
- var i=0;
- //--com.ibm.icu.math.BigDecimal newrhs;
- var newrhs;
- // rhs=null will raise NullPointerException, as per Comparable interface
- if (set.lostDigits)
- this.checkdigits(rhs,set.digits);
- // [add will recheck in slowpath cases .. but would report -rhs]
- if ((this.ind==rhs.ind)&&(this.exp==rhs.exp))
- {
- /* sign & exponent the same [very common] */
- thislength=this.mant.length;
- if (thislengthrhs.mant.length)
- return this.ind;
- /* lengths are the same; we can do a straight mantissa compare
- unless maybe rounding [rounding is very unusual] */
- if ((thislength<=set.digits)||(set.digits==0))
- {
- {var $6=thislength;i=0;i:for(;$6>0;$6--,i++){
- if (this.mant[i]rhs.mant[i])
- return this.ind;
- }
- }/*i*/
- return 0; // identical
- }
- /* drop through for full comparison */
- }
- else
- {
- /* More fastpaths possible */
- if (this.indrhs.ind)
- return 1;
- }
- /* carry out a subtract to make the comparison */
- newrhs=this.clone(rhs); // safe copy
- newrhs.ind=-newrhs.ind; // prepare to subtract
- return this.add(newrhs,set).ind; // add, and return sign of result
- }
-
- /**
- * Returns a plain BigDecimal whose value is
- * this/rhs, using fixed point arithmetic.
- *
- * The same as {@link #divide(BigDecimal, int)},
- * where the BigDecimal is rhs,
- * and the rounding mode is {@link MathContext#ROUND_HALF_UP}.
- *
- * The length of the decimal part (the scale) of the result will be
- * the same as the scale of the current object, if the latter were
- * formatted without exponential notation.
- *
- * @param rhs The BigDecimal for the right hand side of
- * the division.
- * @return A plain BigDecimal whose value is
- * this/rhs, using fixed point arithmetic.
- * @throws ArithmeticException if rhs is zero.
- * @stable ICU 2.0
- */
-
- //--public com.ibm.icu.math.BigDecimal divide(com.ibm.icu.math.BigDecimal rhs){
- //-- return this.dodivide('D',rhs,plainMC,-1);
- //-- }
-
- /**
- * Returns a plain BigDecimal whose value is
- * this/rhs, using fixed point arithmetic and a
- * rounding mode.
- *
- * The same as {@link #divide(BigDecimal, int, int)},
- * where the BigDecimal is rhs,
- * and the second parameter is this.scale(), and
- * the third is round.
- *
- * The length of the decimal part (the scale) of the result will
- * therefore be the same as the scale of the current object, if the
- * latter were formatted without exponential notation.
- *
- * @param rhs The BigDecimal for the right hand side of
- * the division.
- * @param round The int rounding mode to be used for
- * the division (see the {@link MathContext} class).
- * @return A plain BigDecimal whose value is
- * this/rhs, using fixed point arithmetic
- * and the specified rounding mode.
- * @throws IllegalArgumentException if round is not a
- * valid rounding mode.
- * @throws ArithmeticException if rhs is zero.
- * @throws ArithmeticException if round is {@link
- * MathContext#ROUND_UNNECESSARY} and
- * this.scale() is insufficient to
- * represent the result exactly.
- * @stable ICU 2.0
- */
-
- //--public com.ibm.icu.math.BigDecimal divide(com.ibm.icu.math.BigDecimal rhs,int round){
- //-- com.ibm.icu.math.MathContext set;
- //-- set=new com.ibm.icu.math.MathContext(0,com.ibm.icu.math.MathContext.PLAIN,false,round); // [checks round, too]
- //-- return this.dodivide('D',rhs,set,-1); // take scale from LHS
- //-- }
-
- /**
- * Returns a plain BigDecimal whose value is
- * this/rhs, using fixed point arithmetic and a
- * given scale and rounding mode.
- *
- * The same as {@link #divide(BigDecimal, MathContext)},
- * where the BigDecimal is rhs,
- * new MathContext(0, MathContext.PLAIN, false, round),
- * except that the length of the decimal part (the scale) to be used
- * for the result is explicit rather than being taken from
- * this.
- *
- * The length of the decimal part (the scale) of the result will be
- * the same as the scale of the current object, if the latter were
- * formatted without exponential notation.
- *
- * @param rhs The BigDecimal for the right hand side of
- * the division.
- * @param scale The int scale to be used for the result.
- * @param round The int rounding mode to be used for
- * the division (see the {@link MathContext} class).
- * @return A plain BigDecimal whose value is
- * this/rhs, using fixed point arithmetic
- * and the specified rounding mode.
- * @throws IllegalArgumentException if round is not a
- * valid rounding mode.
- * @throws ArithmeticException if rhs is zero.
- * @throws ArithmeticException if scale is negative.
- * @throws ArithmeticException if round is {@link
- * MathContext#ROUND_UNNECESSARY} and scale
- * is insufficient to represent the result exactly.
- * @stable ICU 2.0
- */
-
- //--public com.ibm.icu.math.BigDecimal divide(com.ibm.icu.math.BigDecimal rhs,int scale,int round){
- //-- com.ibm.icu.math.MathContext set;
- //-- if (scale<0)
- //-- throw new java.lang.ArithmeticException("Negative scale:"+" "+scale);
- //-- set=new com.ibm.icu.math.MathContext(0,com.ibm.icu.math.MathContext.PLAIN,false,round); // [checks round]
- //-- return this.dodivide('D',rhs,set,scale);
- //-- }
-
- /**
- * Returns a BigDecimal whose value is this/rhs.
- *
- * Implements the division (/ ) operator
- * (as defined in the decimal documentation, see {@link BigDecimal
- * class header}),
- * and returns the result as a BigDecimal object.
- *
- * @param rhs The BigDecimal for the right hand side of
- * the division.
- * @param set The MathContext arithmetic settings.
- * @return A BigDecimal whose value is
- * this/rhs.
- * @throws ArithmeticException if rhs is zero.
- * @stable ICU 2.0
- */
-
- //--public com.ibm.icu.math.BigDecimal divide(com.ibm.icu.math.BigDecimal rhs,com.ibm.icu.math.MathContext set){
-var divide = function() {
- var set;
- var scale = -1;
- if (divide.arguments.length == 2)
- {
- if (typeof divide.arguments[1] == 'number')
- {
- set=new MathContext(0,MathContext.prototype.PLAIN,false,divide.arguments[1]); // [checks round, too]
- }
- else
- {
- set = divide.arguments[1];
- }
- }
- else if (divide.arguments.length == 3)
- {
- scale = divide.arguments[1];
- if (scale<0)
- throw "divide(): Negative scale: "+scale;
- set=new MathContext(0,MathContext.prototype.PLAIN,false,divide.arguments[2]); // [checks round]
- }
- else if (divide.arguments.length == 1)
- {
- set = this.plainMC;
- }
- else
- {
- throw "divide(): " + divide.arguments.length + " arguments given; expected between 1 and 3"
- }
- var rhs = divide.arguments[0];
- return this.dodivide('D',rhs,set,scale);
- }
-
- /**
- * Returns a plain BigDecimal whose value is the integer
- * part of this/rhs.
- *
- * The same as {@link #divideInteger(BigDecimal, MathContext)},
- * where the BigDecimal is rhs,
- * and the context is new MathContext(0, MathContext.PLAIN).
- *
- * @param rhs The BigDecimal for the right hand side of
- * the integer division.
- * @return A BigDecimal whose value is the integer
- * part of this/rhs.
- * @throws ArithmeticException if rhs is zero.
- * @stable ICU 2.0
- */
-
- //--public com.ibm.icu.math.BigDecimal divideInteger(com.ibm.icu.math.BigDecimal rhs){
- //-- // scale 0 to drop .000 when plain
- //-- return this.dodivide('I',rhs,plainMC,0);
- //-- }
-
- /**
- * Returns a BigDecimal whose value is the integer
- * part of this/rhs.
- *
- * Implements the integer division operator
- * (as defined in the decimal documentation, see {@link BigDecimal
- * class header}),
- * and returns the result as a BigDecimal object.
- *
- * @param rhs The BigDecimal for the right hand side of
- * the integer division.
- * @param set The MathContext arithmetic settings.
- * @return A BigDecimal whose value is the integer
- * part of this/rhs.
- * @throws ArithmeticException if rhs is zero.
- * @throws ArithmeticException if the result will not fit in the
- * number of digits specified for the context.
- * @stable ICU 2.0
- */
-
- //--public com.ibm.icu.math.BigDecimal divideInteger(com.ibm.icu.math.BigDecimal rhs,com.ibm.icu.math.MathContext set){
-var divideInteger = function() {
- var set;
- if (divideInteger.arguments.length == 2)
- {
- set = divideInteger.arguments[1];
- }
- else if (divideInteger.arguments.length == 1)
- {
- set = this.plainMC;
- }
- else
- {
- throw "divideInteger(): " + divideInteger.arguments.length + " arguments given; expected 1 or 2"
- }
- var rhs = divideInteger.arguments[0];
- // scale 0 to drop .000 when plain
- return this.dodivide('I',rhs,set,0);
- }
-
- /**
- * Returns a plain BigDecimal whose value is
- * the maximum of this and rhs.
- *
- * The same as {@link #max(BigDecimal, MathContext)},
- * where the BigDecimal is rhs,
- * and the context is new MathContext(0, MathContext.PLAIN).
- *
- * @param rhs The BigDecimal for the right hand side of
- * the comparison.
- * @return A BigDecimal whose value is
- * the maximum of this and rhs.
- * @stable ICU 2.0
- */
-
- //--public com.ibm.icu.math.BigDecimal max(com.ibm.icu.math.BigDecimal rhs){
- //-- return this.max(rhs,plainMC);
- //-- }
-
- /**
- * Returns a BigDecimal whose value is
- * the maximum of this and rhs.
- *
- * Returns the larger of the current object and the first parameter.
- *
- * If calling the {@link #compareTo(BigDecimal, MathContext)} method
- * with the same parameters would return 1 or
- * 0, then the result of calling the
- * {@link #plus(MathContext)} method on the current object (using the
- * same MathContext parameter) is returned.
- * Otherwise, the result of calling the {@link #plus(MathContext)}
- * method on the first parameter object (using the same
- * MathContext parameter) is returned.
- *
- * @param rhs The BigDecimal for the right hand side of
- * the comparison.
- * @param set The MathContext arithmetic settings.
- * @return A BigDecimal whose value is
- * the maximum of this and rhs.
- * @stable ICU 2.0
- */
-
- //--public com.ibm.icu.math.BigDecimal max(com.ibm.icu.math.BigDecimal rhs,com.ibm.icu.math.MathContext set){
-var max = function() {
- var set;
- if (max.arguments.length == 2)
- {
- set = max.arguments[1];
- }
- else if (max.arguments.length == 1)
- {
- set = this.plainMC;
- }
- else
- {
- throw "max(): " + max.arguments.length + " arguments given; expected 1 or 2"
- }
- var rhs = max.arguments[0];
- if ((this.compareTo(rhs,set))>=0)
- return this.plus(set);
- else
- return rhs.plus(set);
- }
-
- /**
- * Returns a plain BigDecimal whose value is
- * the minimum of this and rhs.
- *
- * The same as {@link #min(BigDecimal, MathContext)},
- * where the BigDecimal is rhs,
- * and the context is new MathContext(0, MathContext.PLAIN).
- *
- * @param rhs The BigDecimal for the right hand side of
- * the comparison.
- * @return A BigDecimal whose value is
- * the minimum of this and rhs.
- * @stable ICU 2.0
- */
-
- //--public com.ibm.icu.math.BigDecimal min(com.ibm.icu.math.BigDecimal rhs){
- //-- return this.min(rhs,plainMC);
- //-- }
-
- /**
- * Returns a BigDecimal whose value is
- * the minimum of this and rhs.
- *
- * Returns the smaller of the current object and the first parameter.
- *
- * If calling the {@link #compareTo(BigDecimal, MathContext)} method
- * with the same parameters would return -1 or
- * 0, then the result of calling the
- * {@link #plus(MathContext)} method on the current object (using the
- * same MathContext parameter) is returned.
- * Otherwise, the result of calling the {@link #plus(MathContext)}
- * method on the first parameter object (using the same
- * MathContext parameter) is returned.
- *
- * @param rhs The BigDecimal for the right hand side of
- * the comparison.
- * @param set The MathContext arithmetic settings.
- * @return A BigDecimal whose value is
- * the minimum of this and rhs.
- * @stable ICU 2.0
- */
-
- //--public com.ibm.icu.math.BigDecimal min(com.ibm.icu.math.BigDecimal rhs,com.ibm.icu.math.MathContext set){
-var min = function() {
- var set;
- if (min.arguments.length == 2)
- {
- set = min.arguments[1];
- }
- else if (min.arguments.length == 1)
- {
- set = this.plainMC;
- }
- else
- {
- throw "min(): " + min.arguments.length + " arguments given; expected 1 or 2"
- }
- var rhs = min.arguments[0];
- if ((this.compareTo(rhs,set))<=0)
- return this.plus(set);
- else
- return rhs.plus(set);
- }
-
- /**
- * Returns a plain BigDecimal whose value is
- * this*rhs, using fixed point arithmetic.
- *
- * The same as {@link #add(BigDecimal, MathContext)},
- * where the BigDecimal is rhs,
- * and the context is new MathContext(0, MathContext.PLAIN).
- *
- * The length of the decimal part (the scale) of the result will be
- * the sum of the scales of the operands, if they were formatted
- * without exponential notation.
- *
- * @param rhs The BigDecimal for the right hand side of
- * the multiplication.
- * @return A BigDecimal whose value is
- * this*rhs, using fixed point arithmetic.
- * @stable ICU 2.0
- */
-
- //--public com.ibm.icu.math.BigDecimal multiply(com.ibm.icu.math.BigDecimal rhs){
- //-- return this.multiply(rhs,plainMC);
- //-- }
-
- /**
- * Returns a BigDecimal whose value is this*rhs.
- *
- * Implements the multiplication (* ) operator
- * (as defined in the decimal documentation, see {@link BigDecimal
- * class header}),
- * and returns the result as a BigDecimal object.
- *
- * @param rhs The BigDecimal for the right hand side of
- * the multiplication.
- * @param set The MathContext arithmetic settings.
- * @return A BigDecimal whose value is
- * this*rhs.
- * @stable ICU 2.0
- */
-
- //--public com.ibm.icu.math.BigDecimal multiply(com.ibm.icu.math.BigDecimal rhs,com.ibm.icu.math.MathContext set){
-var multiply = function() {
- var set;
- if (multiply.arguments.length == 2)
- {
- set = multiply.arguments[1];
- }
- else if (multiply.arguments.length == 1)
- {
- set = this.plainMC;
- }
- else
- {
- throw "multiply(): " + multiply.arguments.length + " arguments given; expected 1 or 2"
- }
- var rhs = multiply.arguments[0];
- //--com.ibm.icu.math.BigDecimal lhs;
- var lhs;
- //--int padding;
- var padding;
- //--int reqdig;
- var reqdig;
- //--byte multer[]=null;
- var multer=null;
- //--byte multand[]=null;
- var multand=null;
- //--int multandlen;
- var multandlen;
- //--int acclen=0;
- var acclen=0;
- //--com.ibm.icu.math.BigDecimal res;
- var res;
- //--byte acc[];
- var acc;
- //--int n=0;
- var n=0;
- //--byte mult=0;
- var mult=0;
- if (set.lostDigits)
- this.checkdigits(rhs,set.digits);
- lhs=this; // name for clarity and proxy
-
- /* Prepare numbers (truncate, unless unlimited precision) */
- padding=0; // trailing 0's to add
- reqdig=set.digits; // local copy
- if (reqdig>0)
- {
- if (lhs.mant.length>reqdig)
- lhs=this.clone(lhs).round(set);
- if (rhs.mant.length>reqdig)
- rhs=this.clone(rhs).round(set);
- // [we could reuse the new LHS for result in this case]
- }
- else
- {/* unlimited */
- // fixed point arithmetic will want every trailing 0; we add these
- // after the calculation rather than before, for speed.
- if (lhs.exp>0)
- padding=padding+lhs.exp;
- if (rhs.exp>0)
- padding=padding+rhs.exp;
- }
-
- // For best speed, as in DMSRCN, we use the shorter number as the
- // multiplier and the longer as the multiplicand.
- // 1999.12.22: We used to special case when the result would fit in
- // a long, but with Java 1.3 this gave no advantage.
- if (lhs.mant.length9)
- acclen=multandlen+1;
- else
- acclen=multandlen;
-
- /* Now the main long multiplication loop */
- res=new BigDecimal(); // where we'll build result
- acc=this.createArrayWithZeros(acclen); // accumulator, all zeros
- // 1998.07.01: calculate from left to right so that accumulator goes
- // to likely final length on first addition; this avoids a one-digit
- // extension (and object allocation) each time around the loop.
- // Initial number therefore has virtual zeros added to right.
- {var $7=multer.length;n=0;n:for(;$7>0;$7--,n++){
- mult=multer[n];
- if (mult!=0)
- { // [optimization]
- // accumulate [accumulator is reusable array]
- acc=this.byteaddsub(acc,acc.length,multand,multandlen,mult,true);
- }
- // divide multiplicand by 10 for next digit to right
- multandlen--; // 'virtual length'
- }
- }/*n*/
-
- res.ind=lhs.ind*rhs.ind; // final sign
- res.exp=(lhs.exp+rhs.exp)-padding; // final exponent
- // [overflow is checked by finish]
-
- /* add trailing zeros to the result, if necessary */
- if (padding==0)
- res.mant=acc;
- else
- res.mant=this.extend(acc,acc.length+padding); // add trailing 0s
- return res.finish(set,false);
- }
-
- /**
- * Returns a plain BigDecimal whose value is
- * -this.
- *
- * The same as {@link #negate(MathContext)}, where the context is
- * new MathContext(0, MathContext.PLAIN).
- *
- * The length of the decimal part (the scale) of the result will be
- * be this.scale()
- *
- *
- * @return A BigDecimal whose value is
- * -this.
- * @stable ICU 2.0
- */
-
- //--public com.ibm.icu.math.BigDecimal negate(){
- //-- return this.negate(plainMC);
- //-- }
-
- /**
- * Returns a BigDecimal whose value is -this.
- *
- * Implements the negation (Prefix - ) operator
- * (as defined in the decimal documentation, see {@link BigDecimal
- * class header}),
- * and returns the result as a BigDecimal object.
- *
- * @param set The MathContext arithmetic settings.
- * @return A BigDecimal whose value is
- * -this.
- * @stable ICU 2.0
- */
-
- //public com.ibm.icu.math.BigDecimal negate(com.ibm.icu.math.MathContext set){
-var negate = function() {
- var set;
- if (negate.arguments.length == 1)
- {
- set = negate.arguments[0];
- }
- else if (negate.arguments.length == 0)
- {
- set = this.plainMC;
- }
- else
- {
- throw "negate(): " + negate.arguments.length + " arguments given; expected 0 or 1"
- }
- //--com.ibm.icu.math.BigDecimal res;
- var res;
- // Originally called minus(), changed to matched Java precedents
- // This simply clones, flips the sign, and possibly rounds
- if (set.lostDigits)
- this.checkdigits(null,set.digits);
- res=this.clone(this); // safe copy
- res.ind=-res.ind;
- return res.finish(set,false);
- }
-
- /**
- * Returns a plain BigDecimal whose value is
- * +this.
- * Note that this is not necessarily a
- * plain BigDecimal, but the result will always be.
- *
- * The same as {@link #plus(MathContext)}, where the context is
- * new MathContext(0, MathContext.PLAIN).
- *
- * The length of the decimal part (the scale) of the result will be
- * be this.scale()
- *
- * @return A BigDecimal whose value is
- * +this.
- * @stable ICU 2.0
- */
-
- //--public com.ibm.icu.math.BigDecimal plus(){
- //-- return this.plus(plainMC);
- //-- }
-
- /**
- * Returns a BigDecimal whose value is
- * +this.
- *
- * Implements the plus (Prefix + ) operator
- * (as defined in the decimal documentation, see {@link BigDecimal
- * class header}),
- * and returns the result as a BigDecimal object.
- *
- * This method is useful for rounding or otherwise applying a context
- * to a decimal value.
- *
- * @param set The MathContext arithmetic settings.
- * @return A BigDecimal whose value is
- * +this.
- * @stable ICU 2.0
- */
-
- //public com.ibm.icu.math.BigDecimal plus(com.ibm.icu.math.MathContext set){
-var plus = function() {
- var set;
- if (plus.arguments.length == 1)
- {
- set = plus.arguments[0];
- }
- else if (plus.arguments.length == 0)
- {
- set = this.plainMC;
- }
- else
- {
- throw "plus(): " + plus.arguments.length + " arguments given; expected 0 or 1"
- }
- // This clones and forces the result to the new settings
- // May return same object
- if (set.lostDigits)
- this.checkdigits(null,set.digits);
- // Optimization: returns same object for some common cases
- if (set.form==MathContext.prototype.PLAIN)
- if (this.form==MathContext.prototype.PLAIN)
- {
- if (this.mant.length<=set.digits)
- return this;
- if (set.digits==0)
- return this;
- }
- return this.clone(this).finish(set,false);
- }
-
- /**
- * Returns a plain BigDecimal whose value is
- * this**rhs, using fixed point arithmetic.
- *
- * The same as {@link #pow(BigDecimal, MathContext)},
- * where the BigDecimal is rhs,
- * and the context is new MathContext(0, MathContext.PLAIN).
- *
- * The parameter is the power to which the this will be
- * raised; it must be in the range 0 through 999999999, and must
- * have a decimal part of zero. Note that these restrictions may be
- * removed in the future, so they should not be used as a test for a
- * whole number.
- *
- * In addition, the power must not be negative, as no
- * MathContext is used and so the result would then
- * always be 0.
- *
- * @param rhs The BigDecimal for the right hand side of
- * the operation (the power).
- * @return A BigDecimal whose value is
- * this**rhs, using fixed point arithmetic.
- * @throws ArithmeticException if rhs is out of range or
- * is not a whole number.
- * @stable ICU 2.0
- */
-
- //--public com.ibm.icu.math.BigDecimal pow(com.ibm.icu.math.BigDecimal rhs){
- //-- return this.pow(rhs,plainMC);
- //-- }
- // The name for this method is inherited from the precedent set by the
- // BigInteger and Math classes.
-
- /**
- * Returns a BigDecimal whose value is this**rhs.
- *
- * Implements the power (** ) operator
- * (as defined in the decimal documentation, see {@link BigDecimal
- * class header}),
- * and returns the result as a BigDecimal object.
- *
- * The first parameter is the power to which the this
- * will be raised; it must be in the range -999999999 through
- * 999999999, and must have a decimal part of zero. Note that these
- * restrictions may be removed in the future, so they should not be
- * used as a test for a whole number.
- *
- * If the digits setting of the MathContext
- * parameter is 0, the power must be zero or positive.
- *
- * @param rhs The BigDecimal for the right hand side of
- * the operation (the power).
- * @param set The MathContext arithmetic settings.
- * @return A BigDecimal whose value is
- * this**rhs.
- * @throws ArithmeticException if rhs is out of range or
- * is not a whole number.
- * @stable ICU 2.0
- */
-
- //--public com.ibm.icu.math.BigDecimal pow(com.ibm.icu.math.BigDecimal rhs,com.ibm.icu.math.MathContext set){
-var pow = function() {
- var set;
- if (pow.arguments.length == 2)
- {
- set = pow.arguments[1];
- }
- else if (pow.arguments.length == 1)
- {
- set = this.plainMC;
- }
- else
- {
- throw "pow(): " + pow.arguments.length + " arguments given; expected 1 or 2"
- }
- var rhs = pow.arguments[0];
- //--int n;
- var n;
- //--com.ibm.icu.math.BigDecimal lhs;
- var lhs;
- //--int reqdig;
- var reqdig;
- //-- int workdigits=0;
- var workdigits=0;
- //--int L=0;
- var L=0;
- //--com.ibm.icu.math.MathContext workset;
- var workset;
- //--com.ibm.icu.math.BigDecimal res;
- var res;
- //--boolean seenbit;
- var seenbit;
- //--int i=0;
- var i=0;
- if (set.lostDigits)
- this.checkdigits(rhs,set.digits);
- n=rhs.intcheck(this.MinArg,this.MaxArg); // check RHS by the rules
- lhs=this; // clarified name
-
- reqdig=set.digits; // local copy (heavily used)
- if (reqdig==0)
- {
- if (rhs.ind==this.isneg)
- //--throw new java.lang.ArithmeticException("Negative power:"+" "+rhs.toString());
- throw "pow(): Negative power: " + rhs.toString()
- workdigits=0;
- }
- else
- {/* non-0 digits */
- if ((rhs.mant.length+rhs.exp)>reqdig)
- //--throw new java.lang.ArithmeticException("Too many digits:"+" "+rhs.toString());
- throw "pow(): Too many digits: " + rhs.toString()
-
- /* Round the lhs to DIGITS if need be */
- if (lhs.mant.length>reqdig)
- lhs=this.clone(lhs).round(set);
-
- /* L for precision calculation [see ANSI X3.274-1996] */
- L=rhs.mant.length+rhs.exp; // length without decimal zeros/exp
- workdigits=(reqdig+L)+1; // calculate the working DIGITS
- }
-
- /* Create a copy of set for working settings */
- // Note: no need to check for lostDigits again.
- // 1999.07.17 Note: this construction must follow RHS check
- workset=new MathContext(workdigits,set.form,false,set.roundingMode);
-
- res=this.ONE; // accumulator
- if (n==0)
- return res; // x**0 == 1
- if (n<0)
- n=-n; // [rhs.ind records the sign]
- seenbit=false; // set once we've seen a 1-bit
- {i=1;i:for(;;i++){ // for each bit [top bit ignored]
- //n=n+n; // shift left 1 bit
- n<<=1;
- if (n<0)
- { // top bit is set
- seenbit=true; // OK, we're off
- res=res.multiply(lhs,workset); // acc=acc*x
- }
- if (i==31)
- break i; // that was the last bit
- if ((!seenbit))
- continue i; // we don't have to square 1
- res=res.multiply(res,workset); // acc=acc*acc [square]
- }
- }/*i*/ // 32 bits
- if (rhs.ind<0) // was a **-n [hence digits>0]
- res=this.ONE.divide(res,workset); // .. so acc=1/acc
- return res.finish(set,true); // round and strip [original digits]
- }
-
- /**
- * Returns a plain BigDecimal whose value is
- * the remainder of this/rhs, using fixed point arithmetic.
- *
- * The same as {@link #remainder(BigDecimal, MathContext)},
- * where the BigDecimal is rhs,
- * and the context is new MathContext(0, MathContext.PLAIN).
- *
- * This is not the modulo operator -- the result may be negative.
- *
- * @param rhs The BigDecimal for the right hand side of
- * the remainder operation.
- * @return A BigDecimal whose value is the remainder
- * of this/rhs, using fixed point arithmetic.
- * @throws ArithmeticException if rhs is zero.
- * @stable ICU 2.0
- */
-
- //--public com.ibm.icu.math.BigDecimal remainder(com.ibm.icu.math.BigDecimal rhs){
- //-- return this.dodivide('R',rhs,plainMC,-1);
- //-- }
-
- /**
- * Returns a BigDecimal whose value is the remainder of
- * this/rhs.
- *
- * Implements the remainder operator
- * (as defined in the decimal documentation, see {@link BigDecimal
- * class header}),
- * and returns the result as a BigDecimal object.
- *
- * This is not the modulo operator -- the result may be negative.
- *
- * @param rhs The BigDecimal for the right hand side of
- * the remainder operation.
- * @param set The MathContext arithmetic settings.
- * @return A BigDecimal whose value is the remainder
- * of this+rhs.
- * @throws ArithmeticException if rhs is zero.
- * @throws ArithmeticException if the integer part of the result will
- * not fit in the number of digits specified for the
- * context.
- * @stable ICU 2.0
- */
-
- //--public com.ibm.icu.math.BigDecimal remainder(com.ibm.icu.math.BigDecimal rhs,com.ibm.icu.math.MathContext set){
-var remainder = function() {
- var set;
- if (remainder.arguments.length == 2)
- {
- set = remainder.arguments[1];
- }
- else if (remainder.arguments.length == 1)
- {
- set = this.plainMC;
- }
- else
- {
- throw "remainder(): " + remainder.arguments.length + " arguments given; expected 1 or 2"
- }
- var rhs = remainder.arguments[0];
- return this.dodivide('R',rhs,set,-1);
- }
-
- /**
- * Returns a plain BigDecimal whose value is
- * this-rhs, using fixed point arithmetic.
- *
- * The same as {@link #subtract(BigDecimal, MathContext)},
- * where the BigDecimal is rhs,
- * and the context is new MathContext(0, MathContext.PLAIN).
- *
- * The length of the decimal part (the scale) of the result will be
- * the maximum of the scales of the two operands.
- *
- * @param rhs The BigDecimal for the right hand side of
- * the subtraction.
- * @return A BigDecimal whose value is
- * this-rhs, using fixed point arithmetic.
- * @stable ICU 2.0
- */
-
- //--public com.ibm.icu.math.BigDecimal subtract(com.ibm.icu.math.BigDecimal rhs){
- //-- return this.subtract(rhs,plainMC);
- //-- }
-
- /**
- * Returns a BigDecimal whose value is this-rhs.
- *
- * Implements the subtraction (- ) operator
- * (as defined in the decimal documentation, see {@link BigDecimal
- * class header}),
- * and returns the result as a BigDecimal object.
- *
- * @param rhs The BigDecimal for the right hand side of
- * the subtraction.
- * @param set The MathContext arithmetic settings.
- * @return A BigDecimal whose value is
- * this-rhs.
- * @stable ICU 2.0
- */
-
- //--public com.ibm.icu.math.BigDecimal subtract(com.ibm.icu.math.BigDecimal rhs,com.ibm.icu.math.MathContext set){
-var subtract = function() {
- var set;
- if (subtract.arguments.length == 2)
- {
- set = subtract.arguments[1];
- }
- else if (subtract.arguments.length == 1)
- {
- set = this.plainMC;
- }
- else
- {
- throw "subtract(): " + subtract.arguments.length + " arguments given; expected 1 or 2"
- }
- var rhs = subtract.arguments[0];
- //--com.ibm.icu.math.BigDecimal newrhs;
- var newrhs;
- if (set.lostDigits)
- this.checkdigits(rhs,set.digits);
- // [add will recheck .. but would report -rhs]
- /* carry out the subtraction */
- // we could fastpath -0, but it is too rare.
- newrhs=this.clone(rhs); // safe copy
- newrhs.ind=-newrhs.ind; // prepare to subtract
- return this.add(newrhs,set); // arithmetic
- }
-
- /* ---------------------------------------------------------------- */
- /* Other methods */
- /* ---------------------------------------------------------------- */
-
- /**
- * Converts this BigDecimal to a byte.
- * If the BigDecimal has a non-zero decimal part or is
- * out of the possible range for a byte (8-bit signed
- * integer) result then an ArithmeticException is thrown.
- *
- * @return A byte equal in value to this.
- * @throws ArithmeticException if this has a non-zero
- * decimal part, or will not fit in a byte.
- * @stable ICU 2.0
- */
-
- //--public byte byteValueExact(){
- //-- int num;
- //-- num=this.intValueExact(); // will check decimal part too
- //-- if ((num>127)|(num<(-128)))
- //-- throw new java.lang.ArithmeticException("Conversion overflow:"+" "+this.toString());
- //-- return (byte)num;
- //-- }
-
- /**
- * Compares this BigDecimal with the value of the parameter.
- *
- * If the parameter is null, or is not an instance of the
- * BigDecimal type, an exception is thrown.
- * Otherwise, the parameter is cast to type BigDecimal
- * and the result of the {@link #compareTo(BigDecimal)} method,
- * using the cast parameter, is returned.
- *
- * The {@link #compareTo(BigDecimal, MathContext)} method should be
- * used when a MathContext is needed for the comparison.
- *
- * @param rhs The Object for the right hand side of
- * the comparison.
- * @return An int whose value is -1, 0, or 1 as
- * this is numerically less than, equal to,
- * or greater than rhs.
- * @throws ClassCastException if rhs cannot be cast to
- * a BigDecimal object.
- * @see #compareTo(BigDecimal)
- * @stable ICU 2.0
- */
-
- //--public int compareTo(java.lang.Object rhsobj){
- //-- // the cast in the next line will raise ClassCastException if necessary
- //-- return compareTo((com.ibm.icu.math.BigDecimal)rhsobj,plainMC);
- //-- }
-
- /**
- * Converts this BigDecimal to a double.
- * If the BigDecimal is out of the possible range for a
- * double (64-bit signed floating point) result then an
- * ArithmeticException is thrown.
- *
- * The double produced is identical to result of expressing the
- * BigDecimal as a String and then
- * converting it using the Double(String) constructor;
- * this can result in values of Double.NEGATIVE_INFINITY
- * or Double.POSITIVE_INFINITY.
- *
- * @return A double corresponding to this.
- * @stable ICU 2.0
- */
-
- //--public double doubleValue(){
- //-- // We go via a String [as does BigDecimal in JDK 1.2]
- //-- // Next line could possibly raise NumberFormatException
- //-- return java.lang.Double.valueOf(this.toString()).doubleValue();
- //-- }
-
- /**
- * Compares this BigDecimal with rhs for
- * equality.
- *
- * If the parameter is null, or is not an instance of the
- * BigDecimal type, or is not exactly equal to the current
- * BigDecimal object, then false is returned.
- * Otherwise, true is returned.
- *
- * "Exactly equal", here, means that the String
- * representations of the BigDecimal numbers are
- * identical (they have the same characters in the same sequence).
- *
- * The {@link #compareTo(BigDecimal, MathContext)} method should be
- * used for more general comparisons.
- * @param rhs The Object for the right hand side of
- * the comparison.
- * @return A boolean whose value true if and
- * only if the operands have identical string representations.
- * @throws ClassCastException if rhs cannot be cast to
- * a BigDecimal object.
- * @stable ICU 2.0
- * @see #compareTo(Object)
- * @see #compareTo(BigDecimal)
- * @see #compareTo(BigDecimal, MathContext)
- */
-
- //--public boolean equals(java.lang.Object obj){
-var equals = function(obj) {
- //--com.ibm.icu.math.BigDecimal rhs;
- var rhs;
- //--int i=0;
- var i=0;
- //--char lca[]=null;
- var lca=null;
- //--char rca[]=null;
- var rca=null;
- // We are equal iff toString of both are exactly the same
- if (obj==null)
- return false; // not equal
- if ((!(((obj instanceof BigDecimal)))))
- return false; // not a decimal
- rhs=obj; // cast; we know it will work
- if (this.ind!=rhs.ind)
- return false; // different signs never match
- if (((this.mant.length==rhs.mant.length)&&(this.exp==rhs.exp))&&(this.form==rhs.form))
-
- { // mantissas say all
- // here with equal-length byte arrays to compare
- {var $8=this.mant.length;i=0;i:for(;$8>0;$8--,i++){
- if (this.mant[i]!=rhs.mant[i])
- return false;
- }
- }/*i*/
- }
- else
- { // need proper layout
- lca=this.layout(); // layout to character array
- rca=rhs.layout();
- if (lca.length!=rca.length)
- return false; // mismatch
- // here with equal-length character arrays to compare
- {var $9=lca.length;i=0;i:for(;$9>0;$9--,i++){
- if (lca[i]!=rca[i])
- return false;
- }
- }/*i*/
- }
- return true; // arrays have identical content
- }
-
- /**
- * Converts this BigDecimal to a float.
- * If the BigDecimal is out of the possible range for a
- * float (32-bit signed floating point) result then an
- * ArithmeticException is thrown.
- *
- * The float produced is identical to result of expressing the
- * BigDecimal as a String and then
- * converting it using the Float(String) constructor;
- * this can result in values of Float.NEGATIVE_INFINITY
- * or Float.POSITIVE_INFINITY.
- *
- * @return A float corresponding to this.
- * @stable ICU 2.0
- */
-
- //--public float floatValue(){
- //-- return java.lang.Float.valueOf(this.toString()).floatValue();
- //-- }
-
- /**
- * Returns the String representation of this
- * BigDecimal, modified by layout parameters.
- *
- * This method is provided as a primitive for use by more
- * sophisticated classes, such as DecimalFormat, that
- * can apply locale-sensitive editing of the result. The level of
- * formatting that it provides is a necessary part of the BigDecimal
- * class as it is sensitive to and must follow the calculation and
- * rounding rules for BigDecimal arithmetic.
- * However, if the function is provided elsewhere, it may be removed
- * from this class.
- *
- * The parameters, for both forms of the format method
- * are all of type int.
- * A value of -1 for any parameter indicates that the default action
- * or value for that parameter should be used.
- *
- * The parameters, before and after,
- * specify the number of characters to be used for the integer part
- * and decimal part of the result respectively. Exponential notation
- * is not used. If either parameter is -1 (which indicates the default
- * action), the number of characters used will be exactly as many as
- * are needed for that part.
- *
- * before must be a positive number; if it is larger than
- * is needed to contain the integer part, that part is padded on the
- * left with blanks to the requested length. If before is
- * not large enough to contain the integer part of the number
- * (including the sign, for negative numbers) an exception is thrown.
- *
- * after must be a non-negative number; if it is not the
- * same size as the decimal part of the number, the number will be
- * rounded (or extended with zeros) to fit. Specifying 0 for
- * after will cause the number to be rounded to an
- * integer (that is, it will have no decimal part or decimal point).
- * The rounding method will be the default,
- * MathContext.ROUND_HALF_UP.
- *
- * Other rounding methods, and the use of exponential notation, can
- * be selected by using {@link #format(int,int,int,int,int,int)}.
- * Using the two-parameter form of the method has exactly the same
- * effect as using the six-parameter form with the final four
- * parameters all being -1.
- *
- * @param before The int specifying the number of places
- * before the decimal point. Use -1 for 'as many as
- * are needed'.
- * @param after The int specifying the number of places
- * after the decimal point. Use -1 for 'as many as are
- * needed'.
- * @return A String representing this
- * BigDecimal, laid out according to the
- * specified parameters
- * @throws ArithmeticException if the number cannot be laid out as
- * requested.
- * @throws IllegalArgumentException if a parameter is out of range.
- * @stable ICU 2.0
- * @see #toString
- * @see #toCharArray
- */
-
- //--public java.lang.String format(int before,int after){
- //-- return format(before,after,-1,-1,com.ibm.icu.math.MathContext.SCIENTIFIC,ROUND_HALF_UP);
- //-- }
-
- /**
- * Returns the String representation of this
- * BigDecimal, modified by layout parameters and allowing
- * exponential notation.
- *
- * This method is provided as a primitive for use by more
- * sophisticated classes, such as DecimalFormat, that
- * can apply locale-sensitive editing of the result. The level of
- * formatting that it provides is a necessary part of the BigDecimal
- * class as it is sensitive to and must follow the calculation and
- * rounding rules for BigDecimal arithmetic.
- * However, if the function is provided elsewhere, it may be removed
- * from this class.
- *
- * The parameters are all of type int.
- * A value of -1 for any parameter indicates that the default action
- * or value for that parameter should be used.
- *
- * The first two parameters (before and
- * after) specify the number of characters to be used for
- * the integer part and decimal part of the result respectively, as
- * defined for {@link #format(int,int)}.
- * If either of these is -1 (which indicates the default action), the
- * number of characters used will be exactly as many as are needed for
- * that part.
- *
- * The remaining parameters control the use of exponential notation
- * and rounding. Three (explaces, exdigits,
- * and exform) control the exponent part of the result.
- * As before, the default action for any of these parameters may be
- * selected by using the value -1.
- *
- * explaces must be a positive number; it sets the number
- * of places (digits after the sign of the exponent) to be used for
- * any exponent part, the default (when explaces is -1)
- * being to use as many as are needed.
- * If explaces is not -1, space is always reserved for
- * an exponent; if one is not needed (for example, if the exponent
- * will be 0) then explaces+2 blanks are appended to the
- * result.
- *
- * If explaces is not -1 and is not large enough to
- * contain the exponent, an exception is thrown.
- *
- * exdigits sets the trigger point for use of exponential
- * notation. If, before any rounding, the number of places needed
- * before the decimal point exceeds exdigits, or if the
- * absolute value of the result is less than 0.000001,
- * then exponential form will be used, provided that
- * exdigits was specified.
- * When exdigits is -1, exponential notation will never
- * be used. If 0 is specified for exdigits, exponential
- * notation is always used unless the exponent would be 0.
- *
- * exform sets the form for exponential notation (if
- * needed).
- * It may be either {@link MathContext#SCIENTIFIC} or
- * {@link MathContext#ENGINEERING}.
- * If the latter, engineering, form is requested, up to three digits
- * (plus sign, if negative) may be needed for the integer part of the
- * result (before). Otherwise, only one digit (plus
- * sign, if negative) is needed.
- *
- * Finally, the sixth argument, exround, selects the
- * rounding algorithm to be used, and must be one of the values
- * indicated by a public constant in the {@link MathContext} class
- * whose name starts with ROUND_.
- * The default (ROUND_HALF_UP) may also be selected by
- * using the value -1, as before.
- *
- * The special value MathContext.ROUND_UNNECESSARY may be
- * used to detect whether non-zero digits are discarded -- if
- * exround has this value than if non-zero digits would
- * be discarded (rounded) during formatting then an
- * ArithmeticException is thrown.
- *
- * @param before The int specifying the number of places
- * before the decimal point.
- * Use -1 for 'as many as are needed'.
- * @param after The int specifying the number of places
- * after the decimal point.
- * Use -1 for 'as many as are needed'.
- * @param explaces The int specifying the number of places
- * to be used for any exponent.
- * Use -1 for 'as many as are needed'.
- * @param exdigits The int specifying the trigger
- * (digits before the decimal point) which if
- * exceeded causes exponential notation to be used.
- * Use 0 to force exponential notation.
- * Use -1 to force plain notation (no exponential
- * notation).
- * @param exform The int specifying the form of
- * exponential notation to be used
- * ({@link MathContext#SCIENTIFIC} or
- * {@link MathContext#ENGINEERING}).
- * @param exround The int specifying the rounding mode
- * to use.
- * Use -1 for the default, {@link MathContext#ROUND_HALF_UP}.
- * @return A String representing this
- * BigDecimal, laid out according to the
- * specified parameters
- * @throws ArithmeticException if the number cannot be laid out as
- * requested.
- * @throws IllegalArgumentException if a parameter is out of range.
- * @see #toString
- * @see #toCharArray
- * @stable ICU 2.0
- */
-
- //--public java.lang.String format(int before,int after,int explaces,int exdigits,int exformint,int exround){
-var format = function() {
- var explaces;
- var exdigits;
- var exformint;
- var exround;
- if (format.arguments.length == 6)
- {
- explaces = format.arguments[2];
- exdigits = format.arguments[3];
- exformint = format.arguments[4];
- exround = format.arguments[5];
- }
- else if (format.arguments.length == 2)
- {
- explaces = -1;
- exdigits = -1;
- exformint = MathContext.prototype.SCIENTIFIC;
- exround = this.ROUND_HALF_UP;
- }
- else
- {
- throw "format(): " + format.arguments.length + " arguments given; expected 2 or 6"
- }
- var before = format.arguments[0];
- var after = format.arguments[1];
- //--com.ibm.icu.math.BigDecimal num;
- var num;
- //--int mag=0;
- var mag=0;
- //--int thisafter=0;
- var thisafter=0;
- //--int lead=0;
- var lead=0;
- //--byte newmant[]=null;
- var newmant=null;
- //--int chop=0;
- var chop=0;
- //--int need=0;
- var need=0;
- //--int oldexp=0;
- var oldexp=0;
- //--char a[];
- var a;
- //--int p=0;
- var p=0;
- //--char newa[]=null;
- var newa=null;
- //--int i=0;
- var i=0;
- //--int places=0;
- var places=0;
-
-
- /* Check arguments */
- if ((before<(-1))||(before==0))
- this.badarg("format",1,before);
- if (after<(-1))
- this.badarg("format",2,after);
- if ((explaces<(-1))||(explaces==0))
- this.badarg("format",3,explaces);
- if (exdigits<(-1))
- this.badarg("format",4,exdigits);
- {/*select*/
- if (exformint==MathContext.prototype.SCIENTIFIC)
- ;
- else if (exformint==MathContext.prototype.ENGINEERING)
- ;
- else if (exformint==(-1))
- exformint=MathContext.prototype.SCIENTIFIC;
- // note PLAIN isn't allowed
- else{
- this.badarg("format",5,exformint);
- }
- }
- // checking the rounding mode is done by trying to construct a
- // MathContext object with that mode; it will fail if bad
- if (exround!=this.ROUND_HALF_UP)
- {try{ // if non-default...
- if (exround==(-1))
- exround=this.ROUND_HALF_UP;
- else
- new MathContext(9,MathContext.prototype.SCIENTIFIC,false,exround);
- }
- catch ($10){
- this.badarg("format",6,exround);
- }}
-
- num=this.clone(this); // make private copy
-
- /* Here:
- num is BigDecimal to format
- before is places before point [>0]
- after is places after point [>=0]
- explaces is exponent places [>0]
- exdigits is exponent digits [>=0]
- exformint is exponent form [one of two]
- exround is rounding mode [one of eight]
- 'before' through 'exdigits' are -1 if not specified
- */
-
- /* determine form */
- {setform:do{/*select*/
- if (exdigits==(-1))
- num.form=MathContext.prototype.PLAIN;
- else if (num.ind==this.iszero)
- num.form=MathContext.prototype.PLAIN;
- else{
- // determine whether triggers
- mag=num.exp+num.mant.length;
- if (mag>exdigits)
- num.form=exformint;
- else
- if (mag<(-5))
- num.form=exformint;
- else
- num.form=MathContext.prototype.PLAIN;
- }
- }while(false);}/*setform*/
-
- /* If 'after' was specified then we may need to adjust the
- mantissa. This is a little tricky, as we must conform to the
- rules of exponential layout if necessary (e.g., we cannot end up
- with 10.0 if scientific). */
- if (after>=0)
- {setafter:for(;;){
- // calculate the current after-length
- {/*select*/
- if (num.form==MathContext.prototype.PLAIN)
- thisafter=-num.exp; // has decimal part
- else if (num.form==MathContext.prototype.SCIENTIFIC)
- thisafter=num.mant.length-1;
- else{ // engineering
- lead=(((num.exp+num.mant.length)-1))%3; // exponent to use
- if (lead<0)
- lead=3+lead; // negative exponent case
- lead++; // number of leading digits
- if (lead>=num.mant.length)
- thisafter=0;
- else
- thisafter=num.mant.length-lead;
- }
- }
- if (thisafter==after)
- break setafter; // we're in luck
- if (thisafter0]
- if (chop>num.mant.length)
- { // all digits go, no chance of carry
- // carry on with zero
- num.mant=this.ZERO.mant;
- num.ind=this.iszero;
- num.exp=0;
- continue setafter; // recheck: we may need trailing zeros
- }
- // we have a digit to inspect from existing mantissa
- // round the number as required
- need=num.mant.length-chop; // digits to end up with [may be 0]
- oldexp=num.exp; // save old exponent
- num.round(need,exround);
- // if the exponent grew by more than the digits we chopped, then
- // we must have had a carry, so will need to recheck the layout
- if ((num.exp-oldexp)==chop)
- break setafter; // number did not have carry
- // mantissa got extended .. so go around and check again
- }
- }/*setafter*/
-
- a=num.layout(); // lay out, with exponent if required, etc.
-
- /* Here we have laid-out number in 'a' */
- // now apply 'before' and 'explaces' as needed
- if (before>0)
- {
- // look for '.' or 'E'
- {var $11=a.length;p=0;p:for(;$11>0;$11--,p++){
- if (a[p]=='.')
- break p;
- if (a[p]=='E')
- break p;
- }
- }/*p*/
- // p is now offset of '.', 'E', or character after end of array
- // that is, the current length of before part
- if (p>before)
- this.badarg("format",1,before); // won't fit
- if (p0;$12--,i++){
- newa[i]=' ';
- }
- }/*i*/
- //--java.lang.System.arraycopy((java.lang.Object)a,0,(java.lang.Object)newa,i,a.length);
- this.arraycopy(a,0,newa,i,a.length);
- a=newa;
- }
- // [if p=before then it's just the right length]
- }
-
- if (explaces>0)
- {
- // look for 'E' [cannot be at offset 0]
- {var $13=a.length-1;p=a.length-1;p:for(;$13>0;$13--,p--){
- if (a[p]=='E')
- break p;
- }
- }/*p*/
- // p is now offset of 'E', or 0
- if (p==0)
- { // no E part; add trailing blanks
- newa=new Array((a.length+explaces)+2);
- //--java.lang.System.arraycopy((java.lang.Object)a,0,(java.lang.Object)newa,0,a.length);
- this.arraycopy(a,0,newa,0,a.length);
- {var $14=explaces+2;i=a.length;i:for(;$14>0;$14--,i++){
- newa[i]=' ';
- }
- }/*i*/
- a=newa;
- }
- else
- {/* found E */ // may need to insert zeros
- places=(a.length-p)-2; // number so far
- if (places>explaces)
- this.badarg("format",3,explaces);
- if (places0;$15--,i++){
- newa[i]='0';
- }
- }/*i*/
- //--java.lang.System.arraycopy((java.lang.Object)a,p+2,(java.lang.Object)newa,i,places); // remainder of exponent
- this.arraycopy(a,p+2,newa,i,places);
- a=newa;
- }
- // [if places=explaces then it's just the right length]
- }
- }
- return a.join("");
- }
-
- /**
- * Returns the hashcode for this BigDecimal.
- * This hashcode is suitable for use by the
- * java.util.Hashtable class.
- *
- * Note that two BigDecimal objects are only guaranteed
- * to produce the same hashcode if they are exactly equal (that is,
- * the String representations of the
- * BigDecimal numbers are identical -- they have the same
- * characters in the same sequence).
- *
- * @return An int that is the hashcode for this.
- * @stable ICU 2.0
- */
-
- //--public int hashCode(){
- //-- // Maybe calculate ourselves, later. If so, note that there can be
- //-- // more than one internal representation for a given toString() result.
- //-- return this.toString().hashCode();
- //-- }
-
- /**
- * Converts this BigDecimal to an int.
- * If the BigDecimal has a non-zero decimal part it is
- * discarded. If the BigDecimal is out of the possible
- * range for an int (32-bit signed integer) result then
- * only the low-order 32 bits are used. (That is, the number may be
- * decapitated .) To avoid unexpected errors when these
- * conditions occur, use the {@link #intValueExact} method.
- *
- * @return An int converted from this,
- * truncated and decapitated if necessary.
- * @stable ICU 2.0
- */
-
- //--public int intValue(){
- //-- return toBigInteger().intValue();
- //-- }
-
- /**
- * Converts this BigDecimal to an int.
- * If the BigDecimal has a non-zero decimal part or is
- * out of the possible range for an int (32-bit signed
- * integer) result then an ArithmeticException is thrown.
- *
- * @return An int equal in value to this.
- * @throws ArithmeticException if this has a non-zero
- * decimal part, or will not fit in an
- * int.
- * @stable ICU 2.0
- */
-
- //--public int intValueExact(){
-var intValueExact = function() {
- //--int lodigit;
- var lodigit;
- //--int useexp=0;
- var useexp=0;
- //--int result;
- var result;
- //--int i=0;
- var i=0;
- //--int topdig=0;
- var topdig=0;
- // This does not use longValueExact() as the latter can be much
- // slower.
- // intcheck (from pow) relies on this to check decimal part
- if (this.ind==this.iszero)
- return 0; // easy, and quite common
- /* test and drop any trailing decimal part */
- lodigit=this.mant.length-1;
- if (this.exp<0)
- {
- lodigit=lodigit+this.exp; // reduces by -(-exp)
- /* all decimal places must be 0 */
- if ((!(this.allzero(this.mant,lodigit+1))))
- throw "intValueExact(): Decimal part non-zero: " + this.toString();
- if (lodigit<0)
- return 0; // -1=0 */
- if ((this.exp+lodigit)>9) // early exit
- throw "intValueExact(): Conversion overflow: "+this.toString();
- useexp=this.exp;
- }
- /* convert the mantissa to binary, inline for speed */
- result=0;
- {var $16=lodigit+useexp;i=0;i:for(;i<=$16;i++){
- result=result*10;
- if (i<=lodigit)
- result=result+this.mant[i];
- }
- }/*i*/
-
- /* Now, if the risky length, check for overflow */
- if ((lodigit+useexp)==9)
- {
- // note we cannot just test for -ve result, as overflow can move a
- // zero into the top bit [consider 5555555555]
- topdig=div(result,1000000000); // get top digit, preserving sign
- if (topdig!=this.mant[0])
- { // digit must match and be positive
- // except in the special case ...
- if (result==-2147483648) // looks like the special
- if (this.ind==this.isneg) // really was negative
- if (this.mant[0]==2)
- return result; // really had top digit 2
- throw "intValueExact(): Conversion overflow: "+this.toString();
- }
- }
-
- /* Looks good */
- if (this.ind==this.ispos)
- return result;
- return -result;
- }
-
- /**
- * Converts this BigDecimal to a long.
- * If the BigDecimal has a non-zero decimal part it is
- * discarded. If the BigDecimal is out of the possible
- * range for a long (64-bit signed integer) result then
- * only the low-order 64 bits are used. (That is, the number may be
- * decapitated .) To avoid unexpected errors when these
- * conditions occur, use the {@link #longValueExact} method.
- *
- * @return A long converted from this,
- * truncated and decapitated if necessary.
- * @stable ICU 2.0
- */
-
- //--public long longValue(){
- //-- return toBigInteger().longValue();
- //-- }
-
- /**
- * Converts this BigDecimal to a long.
- * If the BigDecimal has a non-zero decimal part or is
- * out of the possible range for a long (64-bit signed
- * integer) result then an ArithmeticException is thrown.
- *
- * @return A long equal in value to this.
- * @throws ArithmeticException if this has a non-zero
- * decimal part, or will not fit in a
- * long.
- * @stable ICU 2.0
- */
-
- //--public long longValueExact(){
- //-- int lodigit;
- //-- int cstart=0;
- //-- int useexp=0;
- //-- long result;
- //-- int i=0;
- //-- long topdig=0;
- //-- // Identical to intValueExact except for result=long, and exp>=20 test
- //-- if (ind==0)
- //-- return 0; // easy, and quite common
- //-- lodigit=mant.length-1; // last included digit
- //-- if (exp<0)
- //-- {
- //-- lodigit=lodigit+exp; // -(-exp)
- //-- /* all decimal places must be 0 */
- //-- if (lodigit<0)
- //-- cstart=0;
- //-- else
- //-- cstart=lodigit+1;
- //-- if ((!(allzero(mant,cstart))))
- //-- throw new java.lang.ArithmeticException("Decimal part non-zero:"+" "+this.toString());
- //-- if (lodigit<0)
- //-- return 0; // -1=0 */
- //-- if ((exp+mant.length)>18) // early exit
- //-- throw new java.lang.ArithmeticException("Conversion overflow:"+" "+this.toString());
- //-- useexp=exp;
- //-- }
- //--
- //-- /* convert the mantissa to binary, inline for speed */
- //-- // note that we could safely use the 'test for wrap to negative'
- //-- // algorithm here, but instead we parallel the intValueExact
- //-- // algorithm for ease of checking and maintenance.
- //-- result=(long)0;
- //-- {int $17=lodigit+useexp;i=0;i:for(;i<=$17;i++){
- //-- result=result*10;
- //-- if (i<=lodigit)
- //-- result=result+mant[i];
- //-- }
- //-- }/*i*/
- //--
- //-- /* Now, if the risky length, check for overflow */
- //-- if ((lodigit+useexp)==18)
- //-- {
- //-- topdig=result/1000000000000000000L; // get top digit, preserving sign
- //-- if (topdig!=mant[0])
- //-- { // digit must match and be positive
- //-- // except in the special case ...
- //-- if (result==java.lang.Long.MIN_VALUE) // looks like the special
- //-- if (ind==isneg) // really was negative
- //-- if (mant[0]==9)
- //-- return result; // really had top digit 9
- //-- throw new java.lang.ArithmeticException("Conversion overflow:"+" "+this.toString());
- //-- }
- //-- }
- //--
- //-- /* Looks good */
- //-- if (ind==ispos)
- //-- return result;
- //-- return (long)-result;
- //-- }
-
- /**
- * Returns a plain BigDecimal whose decimal point has
- * been moved to the left by a specified number of positions.
- * The parameter, n, specifies the number of positions to
- * move the decimal point.
- * That is, if n is 0 or positive, the number returned is
- * given by:
- *
- * this.multiply(TEN.pow(new BigDecimal(-n)))
- *
- *
- * n may be negative, in which case the method returns
- * the same result as movePointRight(-n).
- *
- * @param n The int specifying the number of places to
- * move the decimal point leftwards.
- * @return A BigDecimal derived from
- * this, with the decimal point moved
- * n places to the left.
- * @stable ICU 2.0
- */
-
- //--public com.ibm.icu.math.BigDecimal movePointLeft(int n){
-var movePointLeft = function(n) {
- //--com.ibm.icu.math.BigDecimal res;
- var res;
- // very little point in optimizing for shift of 0
- res=this.clone(this);
- res.exp=res.exp-n;
- return res.finish(this.plainMC,false); // finish sets form and checks exponent
- }
-
- /**
- * Returns a plain BigDecimal whose decimal point has
- * been moved to the right by a specified number of positions.
- * The parameter, n, specifies the number of positions to
- * move the decimal point.
- * That is, if n is 0 or positive, the number returned is
- * given by:
- *
- * this.multiply(TEN.pow(new BigDecimal(n)))
- *
- *
- * n may be negative, in which case the method returns
- * the same result as movePointLeft(-n).
- *
- * @param n The int specifying the number of places to
- * move the decimal point rightwards.
- * @return A BigDecimal derived from
- * this, with the decimal point moved
- * n places to the right.
- * @stable ICU 2.0
- */
-
- //--public com.ibm.icu.math.BigDecimal movePointRight(int n){
-var movePointRight = function(n) {
- //--com.ibm.icu.math.BigDecimal res;
- var res;
- res=this.clone(this);
- res.exp=res.exp+n;
- return res.finish(this.plainMC,false);
- }
-
- /**
- * Returns the scale of this BigDecimal.
- * Returns a non-negative int which is the scale of the
- * number. The scale is the number of digits in the decimal part of
- * the number if the number were formatted without exponential
- * notation.
- *
- * @return An int whose value is the scale of this
- * BigDecimal.
- * @stable ICU 2.0
- */
-
- //--public int scale(){
-var scale = function() {
- if (this.exp>=0)
- return 0; // scale can never be negative
- return -this.exp;
- }
-
- /**
- * Returns a plain BigDecimal with a given scale.
- *
- * If the given scale (which must be zero or positive) is the same as
- * or greater than the length of the decimal part (the scale) of this
- * BigDecimal then trailing zeros will be added to the
- * decimal part as necessary.
- *
- * If the given scale is less than the length of the decimal part (the
- * scale) of this BigDecimal then trailing digits
- * will be removed, and in this case an
- * ArithmeticException is thrown if any discarded digits
- * are non-zero.
- *
- * The same as {@link #setScale(int, int)}, where the first parameter
- * is the scale, and the second is
- * MathContext.ROUND_UNNECESSARY.
- *
- * @param scale The int specifying the scale of the
- * resulting BigDecimal.
- * @return A plain BigDecimal with the given scale.
- * @throws ArithmeticException if scale is negative.
- * @throws ArithmeticException if reducing scale would discard
- * non-zero digits.
- * @stable ICU 2.0
- */
-
- //--public com.ibm.icu.math.BigDecimal setScale(int scale){
- //-- return setScale(scale,ROUND_UNNECESSARY);
- //-- }
-
- /**
- * Returns a plain BigDecimal with a given scale.
- *
- * If the given scale (which must be zero or positive) is the same as
- * or greater than the length of the decimal part (the scale) of this
- * BigDecimal then trailing zeros will be added to the
- * decimal part as necessary.
- *
- * If the given scale is less than the length of the decimal part (the
- * scale) of this BigDecimal then trailing digits
- * will be removed, and the rounding mode given by the second
- * parameter is used to determine if the remaining digits are
- * affected by a carry.
- * In this case, an IllegalArgumentException is thrown if
- * round is not a valid rounding mode.
- *
- * If round is MathContext.ROUND_UNNECESSARY,
- * an ArithmeticException is thrown if any discarded
- * digits are non-zero.
- *
- * @param scale The int specifying the scale of the
- * resulting BigDecimal.
- * @param round The int rounding mode to be used for
- * the division (see the {@link MathContext} class).
- * @return A plain BigDecimal with the given scale.
- * @throws IllegalArgumentException if round is not a
- * valid rounding mode.
- * @throws ArithmeticException if scale is negative.
- * @throws ArithmeticException if round is
- * MathContext.ROUND_UNNECESSARY, and
- * reducing scale would discard non-zero digits.
- * @stable ICU 2.0
- */
-
- //--public com.ibm.icu.math.BigDecimal setScale(int scale,int round){
-var setScale = function() {
- var round;
- if (setScale.arguments.length == 2)
- {
- round = setScale.arguments[1];
- }
- else if (setScale.arguments.length == 1)
- {
- round = this.ROUND_UNNECESSARY;
- }
- else
- {
- throw "setScale(): " + setScale.arguments.length + " given; expected 1 or 2"
- }
- var scale = setScale.arguments[0];
- //--int ourscale;
- var ourscale;
- //--com.ibm.icu.math.BigDecimal res;
- var res;
- //--int padding=0;
- var padding=0;
- //--int newlen=0;
- var newlen=0;
- // at present this naughtily only checks the round value if it is
- // needed (used), for speed
- ourscale=this.scale();
- if (ourscale==scale) // already correct scale
- if (this.form==MathContext.prototype.PLAIN) // .. and form
- return this;
- res=this.clone(this); // need copy
- if (ourscale<=scale)
- { // simply zero-padding/changing form
- // if ourscale is 0 we may have lots of 0s to add
- if (ourscale==0)
- padding=res.exp+scale;
- else
- padding=scale-ourscale;
- res.mant=this.extend(res.mant,res.mant.length+padding);
- res.exp=-scale; // as requested
- }
- else
- {/* ourscale>scale: shortening, probably */
- if (scale<0)
- //--throw new java.lang.ArithmeticException("Negative scale:"+" "+scale);
- throw "setScale(): Negative scale: " + scale;
- // [round() will raise exception if invalid round]
- newlen=res.mant.length-((ourscale-scale)); // [<=0 is OK]
- res=res.round(newlen,round); // round to required length
- // This could have shifted left if round (say) 0.9->1[.0]
- // Repair if so by adding a zero and reducing exponent
- if (res.exp!=(-scale))
- {
- res.mant=this.extend(res.mant,res.mant.length+1);
- res.exp=res.exp-1;
- }
- }
- res.form=MathContext.prototype.PLAIN; // by definition
- return res;
- }
-
- /**
- * Converts this BigDecimal to a short.
- * If the BigDecimal has a non-zero decimal part or is
- * out of the possible range for a short (16-bit signed
- * integer) result then an ArithmeticException is thrown.
- *
- * @return A short equal in value to this.
- * @throws ArithmeticException if this has a non-zero
- * decimal part, or will not fit in a
- * short.
- * @stable ICU 2.0
- */
-
- //--public short shortValueExact(){
- //-- int num;
- //-- num=this.intValueExact(); // will check decimal part too
- //-- if ((num>32767)|(num<(-32768)))
- //-- throw new java.lang.ArithmeticException("Conversion overflow:"+" "+this.toString());
- //-- return (short)num;
- //-- }
-
- /**
- * Returns the sign of this BigDecimal, as an
- * int.
- * This returns the signum function value that represents the
- * sign of this BigDecimal.
- * That is, -1 if the BigDecimal is negative, 0 if it is
- * numerically equal to zero, or 1 if it is positive.
- *
- * @return An int which is -1 if the
- * BigDecimal is negative, 0 if it is
- * numerically equal to zero, or 1 if it is positive.
- * @stable ICU 2.0
- */
-
- //--public int signum(){
-var signum = function() {
- return this.ind; // [note this assumes values for ind.]
- }
-
- /**
- * Converts this BigDecimal to a
- * java.math.BigDecimal.
- *
- * This is an exact conversion; the result is the same as if the
- * BigDecimal were formatted as a plain number without
- * any rounding or exponent and then the
- * java.math.BigDecimal(java.lang.String) constructor
- * were used to construct the result.
- *
- * (Note: this method is provided only in the
- * com.ibm.icu.math version of the BigDecimal class.
- * It would not be present in a java.math version.)
- *
- * @return The java.math.BigDecimal equal in value
- * to this BigDecimal.
- * @stable ICU 2.0
- */
-
- //--public java.math.BigDecimal toBigDecimal(){
- //-- return new java.math.BigDecimal(this.unscaledValue(),this.scale());
- //-- }
-
- /**
- * Converts this BigDecimal to a
- * java.math.BigInteger.
- *
- * Any decimal part is truncated (discarded).
- * If an exception is desired should the decimal part be non-zero,
- * use {@link #toBigIntegerExact()}.
- *
- * @return The java.math.BigInteger equal in value
- * to the integer part of this BigDecimal.
- * @stable ICU 2.0
- */
-
- //--public java.math.BigInteger toBigInteger(){
- //-- com.ibm.icu.math.BigDecimal res=null;
- //-- int newlen=0;
- //-- byte newmant[]=null;
- //-- {/*select*/
- //-- if ((exp>=0)&(form==com.ibm.icu.math.MathContext.PLAIN))
- //-- res=this; // can layout simply
- //-- else if (exp>=0)
- //-- {
- //-- res=clone(this); // safe copy
- //-- res.form=(byte)com.ibm.icu.math.MathContext.PLAIN; // .. and request PLAIN
- //-- }
- //-- else{
- //-- { // exp<0; scale to be truncated
- //-- // we could use divideInteger, but we may as well be quicker
- //-- if (((int)-this.exp)>=this.mant.length)
- //-- res=ZERO; // all blows away
- //-- else
- //-- {
- //-- res=clone(this); // safe copy
- //-- newlen=res.mant.length+res.exp;
- //-- newmant=new byte[newlen]; // [shorter]
- //-- java.lang.System.arraycopy((java.lang.Object)res.mant,0,(java.lang.Object)newmant,0,newlen);
- //-- res.mant=newmant;
- //-- res.form=(byte)com.ibm.icu.math.MathContext.PLAIN;
- //-- res.exp=0;
- //-- }
- //-- }
- //-- }
- //-- }
- //-- return new BigInteger(new java.lang.String(res.layout()));
- //-- }
-
- /**
- * Converts this BigDecimal to a
- * java.math.BigInteger.
- *
- * An exception is thrown if the decimal part (if any) is non-zero.
- *
- * @return The java.math.BigInteger equal in value
- * to the integer part of this BigDecimal.
- * @throws ArithmeticException if this has a non-zero
- * decimal part.
- * @stable ICU 2.0
- */
-
- //--public java.math.BigInteger toBigIntegerExact(){
- //-- /* test any trailing decimal part */
- //-- if (exp<0)
- //-- { // possible decimal part
- //-- /* all decimal places must be 0; note exp<0 */
- //-- if ((!(allzero(mant,mant.length+exp))))
- //-- throw new java.lang.ArithmeticException("Decimal part non-zero:"+" "+this.toString());
- //-- }
- //-- return toBigInteger();
- //-- }
-
- /**
- * Returns the BigDecimal as a character array.
- * The result of this method is the same as using the
- * sequence toString().toCharArray(), but avoids creating
- * the intermediate String and char[]
- * objects.
- *
- * @return The char[] array corresponding to this
- * BigDecimal.
- * @stable ICU 2.0
- */
-
- //--public char[] toCharArray(){
- //-- return layout();
- //-- }
-
- /**
- * Returns the BigDecimal as a String.
- * This returns a String that exactly represents this
- * BigDecimal, as defined in the decimal documentation
- * (see {@link BigDecimal class header}).
- *
- * By definition, using the {@link #BigDecimal(String)} constructor
- * on the result String will create a
- * BigDecimal that is exactly equal to the original
- * BigDecimal.
- *
- * @return The String exactly corresponding to this
- * BigDecimal.
- * @see #format(int, int)
- * @see #format(int, int, int, int, int, int)
- * @see #toCharArray()
- * @stable ICU 2.0
- */
-
- //--public java.lang.String toString(){
-var toString = function() {
- return this.layout().join("");
- }
-
- /**
- * Returns the number as a BigInteger after removing the
- * scale.
- * That is, the number is expressed as a plain number, any decimal
- * point is then removed (retaining the digits of any decimal part),
- * and the result is then converted to a BigInteger.
- *
- * @return The java.math.BigInteger equal in value to
- * this BigDecimal multiplied by ten to the
- * power of this.scale().
- * @stable ICU 2.0
- */
-
- //--public java.math.BigInteger unscaledValue(){
- //-- com.ibm.icu.math.BigDecimal res=null;
- //-- if (exp>=0)
- //-- res=this;
- //-- else
- //-- {
- //-- res=clone(this); // safe copy
- //-- res.exp=0; // drop scale
- //-- }
- //-- return res.toBigInteger();
- //-- }
-
- /**
- * Translates a double to a BigDecimal.
- *
- * Returns a BigDecimal which is the decimal
- * representation of the 64-bit signed binary floating point
- * parameter. If the parameter is infinite, or is not a number (NaN),
- * a NumberFormatException is thrown.
- *
- * The number is constructed as though num had been
- * converted to a String using the
- * Double.toString() method and the
- * {@link #BigDecimal(java.lang.String)} constructor had then been used.
- * This is typically not an exact conversion.
- *
- * @param dub The double to be translated.
- * @return The BigDecimal equal in value to
- * dub.
- * @throws NumberFormatException if the parameter is infinite or
- * not a number.
- * @stable ICU 2.0
- */
-
- //--public static com.ibm.icu.math.BigDecimal valueOf(double dub){
- //-- // Reminder: a zero double returns '0.0', so we cannot fastpath to
- //-- // use the constant ZERO. This might be important enough to justify
- //-- // a factory approach, a cache, or a few private constants, later.
- //-- return new com.ibm.icu.math.BigDecimal((new java.lang.Double(dub)).toString());
- //-- }
-
- /**
- * Translates a long to a BigDecimal.
- * That is, returns a plain BigDecimal whose value is
- * equal to the given long.
- *
- * @param lint The long to be translated.
- * @return The BigDecimal equal in value to
- * lint.
- * @stable ICU 2.0
- */
-
- //--public static com.ibm.icu.math.BigDecimal valueOf(long lint){
- //-- return valueOf(lint,0);
- //-- }
-
- /**
- * Translates a long to a BigDecimal with a
- * given scale.
- * That is, returns a plain BigDecimal whose unscaled
- * value is equal to the given long, adjusted by the
- * second parameter, scale.
- *
- * The result is given by:
- *
- * (new BigDecimal(lint)).divide(TEN.pow(new BigDecimal(scale)))
- *
- *
- * A NumberFormatException is thrown if scale
- * is negative.
- *
- * @param lint The long to be translated.
- * @param scale The int scale to be applied.
- * @return The BigDecimal equal in value to
- * lint.
- * @throws NumberFormatException if the scale is negative.
- * @stable ICU 2.0
- */
-
- //--public static com.ibm.icu.math.BigDecimal valueOf(long lint,int scale){
- //-- com.ibm.icu.math.BigDecimal res=null;
- //-- {/*select*/
- //-- if (lint==0)
- //-- res=ZERO;
- //-- else if (lint==1)
- //-- res=ONE;
- //-- else if (lint==10)
- //-- res=TEN;
- //-- else{
- //-- res=new com.ibm.icu.math.BigDecimal(lint);
- //-- }
- //-- }
- //-- if (scale==0)
- //-- return res;
- //-- if (scale<0)
- //-- throw new java.lang.NumberFormatException("Negative scale:"+" "+scale);
- //-- res=clone(res); // safe copy [do not mutate]
- //-- res.exp=(int)-scale; // exponent is -scale
- //-- return res;
- //-- }
-
- /* ---------------------------------------------------------------- */
- /* Private methods */
- /* ---------------------------------------------------------------- */
-
- /* Return char array value of a BigDecimal (conversion from
- BigDecimal to laid-out canonical char array).
- The mantissa will either already have been rounded (following an
- operation) or will be of length appropriate (in the case of
- construction from an int, for example).
-
We must not alter the mantissa, here.
-
'form' describes whether we are to use exponential notation (and
- if so, which), or if we are to lay out as a plain/pure numeric.
-
*/
-
- //--private char[] layout(){
-var layout = function() {
- //--char cmant[];
- var cmant;
- //--int i=0;
- var i=0;
- //--java.lang.StringBuffer sb=null;
- var sb=null;
- //--int euse=0;
- var euse=0;
- //--int sig=0;
- var sig=0;
- //--char csign=0;
- var csign=0;
- //--char rec[]=null;
- var rec=null;
- //--int needsign;
- var needsign;
- //--int mag;
- var mag;
- //--int len=0;
- var len=0;
- cmant=new Array(this.mant.length); // copy byte[] to a char[]
- {var $18=this.mant.length;i=0;i:for(;$18>0;$18--,i++){
- cmant[i]=this.mant[i]+'';
- }
- }/*i*/
-
- if (this.form!=MathContext.prototype.PLAIN)
- {/* exponential notation needed */
- //--sb=new java.lang.StringBuffer(cmant.length+15); // -x.xxxE+999999999
- sb="";
- if (this.ind==this.isneg)
- sb += '-';
- euse=(this.exp+cmant.length)-1; // exponent to use
- /* setup sig=significant digits and copy to result */
- if (this.form==MathContext.prototype.SCIENTIFIC)
- { // [default]
- sb += cmant[0]; // significant character
- if (cmant.length>1) // have decimal part
- //--sb.append('.').append(cmant,1,cmant.length-1);
- sb += '.';
- sb += cmant.slice(1).join("");
- }
- else
- {engineering:do{
- sig=euse%3; // common
- if (sig<0)
- sig=3+sig; // negative exponent
- euse=euse-sig;
- sig++;
- if (sig>=cmant.length)
- { // zero padding may be needed
- //--sb.append(cmant,0,cmant.length);
- sb += cmant.join("");
- {var $19=sig-cmant.length;for(;$19>0;$19--){
- sb += '0';
- }
- }
- }
- else
- { // decimal point needed
- //--sb.append(cmant,0,sig).append('.').append(cmant,sig,cmant.length-sig);
- sb += cmant.slice(0,sig).join("");
- sb += '.';
- sb += cmant.slice(sig).join("");
- }
- }while(false);}/*engineering*/
- if (euse!=0)
- {
- if (euse<0)
- {
- csign='-';
- euse=-euse;
- }
- else
- csign='+';
- //--sb.append('E').append(csign).append(euse);
- sb += 'E';
- sb += csign;
- sb += euse;
- }
- //--rec=new Array(sb.length);
- //--Utility.getChars(sb, 0,sb.length(),rec,0);
- //--return rec;
- return sb.split("");
- }
-
- /* Here for non-exponential (plain) notation */
- if (this.exp==0)
- {/* easy */
- if (this.ind>=0)
- return cmant; // non-negative integer
- rec=new Array(cmant.length+1);
- rec[0]='-';
- //--java.lang.System.arraycopy((java.lang.Object)cmant,0,(java.lang.Object)rec,1,cmant.length);
- this.arraycopy(cmant,0,rec,1,cmant.length);
- return rec;
- }
-
- /* Need a '.' and/or some zeros */
- needsign=((this.ind==this.isneg)?1:0); // space for sign? 0 or 1
-
- /* MAG is the position of the point in the mantissa (index of the
- character it follows) */
- mag=this.exp+cmant.length;
-
- if (mag<1)
- {/* 0.00xxxx form */
- len=(needsign+2)-this.exp; // needsign+2+(-mag)+cmant.length
- rec=new Array(len);
- if (needsign!=0)
- rec[0]='-';
- rec[needsign]='0';
- rec[needsign+1]='.';
- {var $20=-mag;i=needsign+2;i:for(;$20>0;$20--,i++){ // maybe none
- rec[i]='0';
- }
- }/*i*/
- //--java.lang.System.arraycopy((java.lang.Object)cmant,0,(java.lang.Object)rec,(needsign+2)-mag,cmant.length);
- this.arraycopy(cmant,0,rec,(needsign+2)-mag,cmant.length);
- return rec;
- }
-
- if (mag>cmant.length)
- {/* xxxx0000 form */
- len=needsign+mag;
- rec=new Array(len);
- if (needsign!=0)
- rec[0]='-';
- //--java.lang.System.arraycopy((java.lang.Object)cmant,0,(java.lang.Object)rec,needsign,cmant.length);
- this.arraycopy(cmant,0,rec,needsign,cmant.length);
- {var $21=mag-cmant.length;i=needsign+cmant.length;i:for(;$21>0;$21--,i++){ // never 0
- rec[i]='0';
- }
- }/*i*/
- return rec;
- }
-
- /* decimal point is in the middle of the mantissa */
- len=(needsign+1)+cmant.length;
- rec=new Array(len);
- if (needsign!=0)
- rec[0]='-';
- //--java.lang.System.arraycopy((java.lang.Object)cmant,0,(java.lang.Object)rec,needsign,mag);
- this.arraycopy(cmant,0,rec,needsign,mag);
- rec[needsign+mag]='.';
- //--java.lang.System.arraycopy((java.lang.Object)cmant,mag,(java.lang.Object)rec,(needsign+mag)+1,cmant.length-mag);
- this.arraycopy(cmant,mag,rec,(needsign+mag)+1,cmant.length-mag);
- return rec;
- }
-
- /* Checks a BigDecimal argument to ensure it's a true integer
- in a given range.
- If OK, returns it as an int.
*/
- // [currently only used by pow]
-
- //--private int intcheck(int min,int max){
-var intcheck = function(min, max) {
- //--int i;
- var i;
- i=this.intValueExact(); // [checks for non-0 decimal part]
- // Use same message as though intValueExact failed due to size
- if ((imax))
- throw "intcheck(): Conversion overflow: "+i;
- return i;
- }
-
- /* Carry out division operations. */
- /*
- Arg1 is operation code: D=divide, I=integer divide, R=remainder
- Arg2 is the rhs.
- Arg3 is the context.
- Arg4 is explicit scale iff code='D' or 'I' (-1 if none).
-
- Underlying algorithm (complications for Remainder function and
- scaled division are omitted for clarity):
-
- Test for x/0 and then 0/x
- Exp =Exp1 - Exp2
- Exp =Exp +len(var1) -len(var2)
- Sign=Sign1 * Sign2
- Pad accumulator (Var1) to double-length with 0's (pad1)
- Pad Var2 to same length as Var1
- B2B=1st two digits of var2, +1 to allow for roundup
- have=0
- Do until (have=digits+1 OR residue=0)
- if exp<0 then if integer divide/residue then leave
- this_digit=0
- Do forever
- compare numbers
- if <0 then leave inner_loop
- if =0 then (- quick exit without subtract -) do
- this_digit=this_digit+1; output this_digit
- leave outer_loop; end
- Compare lengths of numbers (mantissae):
- If same then CA=first_digit_of_Var1
- else CA=first_two_digits_of_Var1
- mult=ca*10/b2b -- Good and safe guess at divisor
- if mult=0 then mult=1
- this_digit=this_digit+mult
- subtract
- end inner_loop
- if have\=0 | this_digit\=0 then do
- output this_digit
- have=have+1; end
- var2=var2/10
- exp=exp-1
- end outer_loop
- exp=exp+1 -- set the proper exponent
- if have=0 then generate answer=0
- Return to FINISHED
- Result defined by MATHV1
-
- For extended commentary, see DMSRCN.
- */
-
- //--private com.ibm.icu.math.BigDecimal dodivide(char code,com.ibm.icu.math.BigDecimal rhs,com.ibm.icu.math.MathContext set,int scale){
-var dodivide = function(code, rhs, set, scale) {
- //--com.ibm.icu.math.BigDecimal lhs;
- var lhs;
- //--int reqdig;
- var reqdig;
- //--int newexp;
- var newexp;
- //--com.ibm.icu.math.BigDecimal res;
- var res;
- //--int newlen;
- var newlen;
- //--byte var1[];
- var var1;
- //--int var1len;
- var var1len;
- //--byte var2[];
- var var2;
- //--int var2len;
- var var2len;
- //--int b2b;
- var b2b;
- //--int have;
- var have;
- //--int thisdigit=0;
- var thisdigit=0;
- //--int i=0;
- var i=0;
- //--byte v2=0;
- var v2=0;
- //--int ba=0;
- var ba=0;
- //--int mult=0;
- var mult=0;
- //--int start=0;
- var start=0;
- //--int padding=0;
- var padding=0;
- //--int d=0;
- var d=0;
- //--byte newvar1[]=null;
- var newvar1=null;
- //--byte lasthave=0;
- var lasthave=0;
- //--int actdig=0;
- var actdig=0;
- //--byte newmant[]=null;
- var newmant=null;
-
- if (set.lostDigits)
- this.checkdigits(rhs,set.digits);
- lhs=this; // name for clarity
-
- // [note we must have checked lostDigits before the following checks]
- if (rhs.ind==0)
- throw "dodivide(): Divide by 0"; // includes 0/0
- if (lhs.ind==0)
- { // 0/x => 0 [possibly with .0s]
- if (set.form!=MathContext.prototype.PLAIN)
- return this.ZERO;
- if (scale==(-1))
- return lhs;
- return lhs.setScale(scale);
- }
-
- /* Prepare numbers according to BigDecimal rules */
- reqdig=set.digits; // local copy (heavily used)
- if (reqdig>0)
- {
- if (lhs.mant.length>reqdig)
- lhs=this.clone(lhs).round(set);
- if (rhs.mant.length>reqdig)
- rhs=this.clone(rhs).round(set);
- }
- else
- {/* scaled divide */
- if (scale==(-1))
- scale=lhs.scale();
- // set reqdig to be at least large enough for the computation
- reqdig=lhs.mant.length; // base length
- // next line handles both positive lhs.exp and also scale mismatch
- if (scale!=(-lhs.exp))
- reqdig=(reqdig+scale)+lhs.exp;
- reqdig=(reqdig-((rhs.mant.length-1)))-rhs.exp; // reduce by RHS effect
- if (reqdig1)
- b2b=b2b+var2[1];
-
- /* start the long-division loops */
- have=0;
- {outer:for(;;){
- thisdigit=0;
- /* find the next digit */
- {inner:for(;;){
- if (var1len0;$22--,i++){
- // var1len is always <= var1.length
- if (iv2)
- break compare; // OK to subtract
- }
- }/*i*/
- /* reach here if lhs and rhs are identical; subtraction will
- increase digit by one, and the residue will be 0 so we
- are done; leave the loop with residue set to 0 (in case
- code is 'R' or ROUND_UNNECESSARY or a ROUND_HALF_xxxx is
- being checked) */
- thisdigit++;
- res.mant[have]=thisdigit;
- have++;
- var1[0]=0; // residue to 0 [this is all we'll test]
- // var1len=1 -- [optimized out]
- break outer;
- }while(false);}/*compare*/
- /* prepare for subtraction. Estimate BA (lengths the same) */
- ba=var1[0]; // use only first digit
- } // lengths the same
- else
- {/* lhs longer than rhs */
- /* use first two digits for estimate */
- ba=var1[0]*10;
- if (var1len>1)
- ba=ba+var1[1];
- }
- /* subtraction needed; V1>=V2 */
- mult=div((ba*10),b2b);
- if (mult==0)
- mult=1;
- thisdigit=thisdigit+mult;
- // subtract; var1 reusable
- var1=this.byteaddsub(var1,var1len,var2,var2len,-mult,true);
- if (var1[0]!=0)
- continue inner; // maybe another subtract needed
- /* V1 now probably has leading zeros, remove leading 0's and try
- again. (It could be longer than V2) */
- {var $23=var1len-2;start=0;start:for(;start<=$23;start++){
- if (var1[start]!=0)
- break start;
- var1len--;
- }
- }/*start*/
- if (start==0)
- continue inner;
- // shift left
- //--java.lang.System.arraycopy((java.lang.Object)var1,start,(java.lang.Object)var1,0,var1len);
- this.arraycopy(var1,start,var1,0,var1len);
- }
- }/*inner*/
-
- /* We have the next digit */
- if ((have!=0)||(thisdigit!=0))
- { // put the digit we got
- res.mant[have]=thisdigit;
- have++;
- if (have==(reqdig+1))
- break outer; // we have all we need
- if (var1[0]==0)
- break outer; // residue now 0
- }
- /* can leave now if a scaled divide and exponent is small enough */
- if (scale>=0)
- if ((-res.exp)>scale)
- break outer;
- /* can leave now if not Divide and no integer part left */
- if (code!='D')
- if (res.exp<=0)
- break outer;
- res.exp=res.exp-1; // reduce the exponent
- /* to get here, V1 is less than V2, so divide V2 by 10 and go for
- the next digit */
- var2len--;
- }
- }/*outer*/
-
- /* here when we have finished dividing, for some reason */
- // have is the number of digits we collected in res.mant
- if (have==0)
- have=1; // res.mant[0] is 0; we always want a digit
-
- if ((code=='I')||(code=='R'))
- {/* check for integer overflow needed */
- if ((have+res.exp)>reqdig)
- throw "dodivide(): Integer overflow";
-
- if (code=='R')
- {remainder:do{
- /* We were doing Remainder -- return the residue */
- if (res.mant[0]==0) // no integer part was found
- return this.clone(lhs).finish(set,false); // .. so return lhs, canonical
- if (var1[0]==0)
- return this.ZERO; // simple 0 residue
- res.ind=lhs.ind; // sign is always as LHS
- /* Calculate the exponent by subtracting the number of padding zeros
- we added and adding the original exponent */
- padding=((reqdig+reqdig)+1)-lhs.mant.length;
- res.exp=(res.exp-padding)+lhs.exp;
-
- /* strip insignificant padding zeros from residue, and create/copy
- the resulting mantissa if need be */
- d=var1len;
- {i=d-1;i:for(;i>=1;i--){if(!((res.exp=0)
- {scaled:do{
- // say 'scale have res.exp len' scale have res.exp res.mant.length
- if (have!=res.mant.length)
- // already padded with 0's, so just adjust exponent
- res.exp=res.exp-((res.mant.length-have));
- // calculate number of digits we really want [may be 0]
- actdig=res.mant.length-(((-res.exp)-scale));
- res.round(actdig,set.roundingMode); // round to desired length
- // This could have shifted left if round (say) 0.9->1[.0]
- // Repair if so by adding a zero and reducing exponent
- if (res.exp!=(-scale))
- {
- res.mant=this.extend(res.mant,res.mant.length+1);
- res.exp=res.exp-1;
- }
- return res.finish(set,true); // [strip if not PLAIN]
- }while(false);}/*scaled*/
-
- // reach here only if a non-scaled
- if (have==res.mant.length)
- { // got digits+1 digits
- res.round(set);
- have=reqdig;
- }
- else
- {/* have<=reqdig */
- if (res.mant[0]==0)
- return this.ZERO; // fastpath
- // make the mantissa truly just 'have' long
- // [we could let finish do this, during strip, if we adjusted
- // the exponent; however, truncation avoids the strip loop]
- newmant=new Array(have); // shorten
- //--java.lang.System.arraycopy((java.lang.Object)res.mant,0,(java.lang.Object)newmant,0,have);
- this.arraycopy(res.mant,0,newmant,0,have);
- res.mant=newmant;
- }
- return res.finish(set,true);
- }
-
- /* Report a conversion exception. */
-
- //--private void bad(char s[]){
-var bad = function(prefix, s) {
- throw prefix + "Not a number: "+s;
- }
-
- /* Report a bad argument to a method.
- Arg1 is method name
- Arg2 is argument position
- Arg3 is what was found */
-
- //--private void badarg(java.lang.String name,int pos,java.lang.String value){
-var badarg = function(name, pos, value) {
- throw "Bad argument "+pos+" to "+name+": "+value;
- }
-
- /* Extend byte array to given length, padding with 0s. If no
- extension is required then return the same array.
-
- Arg1 is the source byte array
- Arg2 is the new length (longer)
- */
-
- //--private static final byte[] extend(byte inarr[],int newlen){
-var extend = function(inarr, newlen) {
- //--byte newarr[];
- var newarr;
- if (inarr.length==newlen)
- return inarr;
- newarr=createArrayWithZeros(newlen);
- //--java.lang.System.arraycopy((java.lang.Object)inarr,0,(java.lang.Object)newarr,0,inarr.length);
- this.arraycopy(inarr,0,newarr,0,inarr.length);
- // 0 padding is carried out by the JVM on allocation initialization
- return newarr;
- }
-
- /* Add or subtract two >=0 integers in byte arrays
- This routine performs the calculation:
-
- C=A+(B*M)
-
- Where M is in the range -9 through +9
-
- If M<0 then A>=B must be true, so the result is always
- non-negative.
-
- Leading zeros are not removed after a subtraction. The result is
- either the same length as the longer of A and B, or 1 longer than
- that (if a carry occurred).
-
- A is not altered unless Arg6 is 1.
- B is never altered.
-
- Arg1 is A
- Arg2 is A length to use (if longer than A, pad with 0's)
- Arg3 is B
- Arg4 is B length to use (if longer than B, pad with 0's)
- Arg5 is M, the multiplier
- Arg6 is 1 if A can be used to build the result (if it fits)
-
- This routine is severely performance-critical; *any* change here
- must be measured (timed) to assure no performance degradation.
- */
- // 1996.02.20 -- enhanced version of DMSRCN algorithm (1981)
- // 1997.10.05 -- changed to byte arrays (from char arrays)
- // 1998.07.01 -- changed to allow destructive reuse of LHS
- // 1998.07.01 -- changed to allow virtual lengths for the arrays
- // 1998.12.29 -- use lookaside for digit/carry calculation
- // 1999.08.07 -- avoid multiply when mult=1, and make db an int
- // 1999.12.22 -- special case m=-1, also drop 0 special case
-
- //--private static final byte[] byteaddsub(byte a[],int avlen,byte b[],int bvlen,int m,boolean reuse){
-var byteaddsub = function(a, avlen, b, bvlen, m, reuse) {
- //--int alength;
- var alength;
- //--int blength;
- var blength;
- //--int ap;
- var ap;
- //--int bp;
- var bp;
- //--int maxarr;
- var maxarr;
- //--byte reb[];
- var reb;
- //--boolean quickm;
- var quickm;
- //--int digit;
- var digit;
- //--int op=0;
- var op=0;
- //--int dp90=0;
- var dp90=0;
- //--byte newarr[];
- var newarr;
- //--int i=0;
- var i=0;
-
-
-
-
- // We'll usually be right if we assume no carry
- alength=a.length; // physical lengths
- blength=b.length; // ..
- ap=avlen-1; // -> final (rightmost) digit
- bp=bvlen-1; // ..
- maxarr=bp;
- if (maxarr=0;op--){
- if (ap>=0)
- {
- if (ap=0)
- {
- if (bp0)
- digit=digit+b[bp]; // most common
- else
- digit=digit-b[bp]; // also common
- }
- else
- digit=digit+(b[bp]*m);
- }
- bp--;
- }
- /* result so far (digit) could be -90 through 99 */
- if (digit<10)
- if (digit>=0)
- {quick:do{ // 0-9
- reb[op]=digit;
- digit=0; // no carry
- continue op;
- }while(false);}/*quick*/
- dp90=digit+90;
- reb[op]=this.bytedig[dp90]; // this digit
- digit=this.bytecar[dp90]; // carry or borrow
- }
- }/*op*/
-
- if (digit==0)
- return reb; // no carry
- // following line will become an Assert, later
- // if digit<0 then signal ArithmeticException("internal.error ["digit"]")
-
- /* We have carry -- need to make space for the extra digit */
- newarr=null;
- if (reuse)
- if ((maxarr+2)==a.length)
- newarr=a; // OK to reuse A
- if (newarr==null)
- newarr=new Array(maxarr+2);
- newarr[0]=digit; // the carried digit ..
- // .. and all the rest [use local loop for short numbers]
- //--if (maxarr<10)
- {var $24=maxarr+1;i=0;i:for(;$24>0;$24--,i++){
- newarr[i+1]=reb[i];
- }
- }/*i*/
- //--else
- //--java.lang.System.arraycopy((java.lang.Object)reb,0,(java.lang.Object)newarr,1,maxarr+1);
- return newarr;
- }
-
- /* Initializer for digit array properties (lookaside).
- Returns the digit array, and initializes the carry array. */
-
- //--private static final byte[] diginit(){
-var diginit = function() {
- //--byte work[];
- var work;
- //--int op=0;
- var op=0;
- //--int digit=0;
- var digit=0;
- work=new Array((90+99)+1);
- {op=0;op:for(;op<=(90+99);op++){
- digit=op-90;
- if (digit>=0)
- {
- work[op]=(digit%10);
- BigDecimal.prototype.bytecar[op]=(div(digit,10)); // calculate carry
- continue op;
- }
- // borrowing...
- digit=digit+100; // yes, this is right [consider -50]
- work[op]=(digit%10);
- BigDecimal.prototype.bytecar[op]=((div(digit,10))-10); // calculate borrow [NB: - after %]
- }
- }/*op*/
- return work;
- }
-
- /* Create a copy of BigDecimal object for local use.
- This does NOT make a copy of the mantissa array.
-
- Arg1 is the BigDecimal to clone (non-null)
- */
-
- //--private static final com.ibm.icu.math.BigDecimal clone(com.ibm.icu.math.BigDecimal dec){
-var clone = function(dec) {
- //--com.ibm.icu.math.BigDecimal copy;
- var copy;
- copy=new BigDecimal();
- copy.ind=dec.ind;
- copy.exp=dec.exp;
- copy.form=dec.form;
- copy.mant=dec.mant;
- return copy;
- }
-
- /* Check one or two numbers for lost digits.
- Arg1 is RHS (or null, if none)
- Arg2 is current DIGITS setting
- returns quietly or throws an exception */
-
- //--private void checkdigits(com.ibm.icu.math.BigDecimal rhs,int dig){
-var checkdigits = function(rhs, dig) {
- if (dig==0)
- return; // don't check if digits=0
- // first check lhs...
- if (this.mant.length>dig)
- if ((!(this.allzero(this.mant,dig))))
- throw "Too many digits: "+this.toString();
- if (rhs==null)
- return; // monadic
- if (rhs.mant.length>dig)
- if ((!(this.allzero(rhs.mant,dig))))
- throw "Too many digits: "+rhs.toString();
- return;
- }
-
- /* Round to specified digits, if necessary.
- Arg1 is requested MathContext [with length and rounding mode]
- returns this, for convenience */
-
- //--private com.ibm.icu.math.BigDecimal round(com.ibm.icu.math.MathContext set){
- //-- return round(set.digits,set.roundingMode);
- //-- }
-
- /* Round to specified digits, if necessary.
- Arg1 is requested length (digits to round to)
- [may be <=0 when called from format, dodivide, etc.]
- Arg2 is rounding mode
- returns this, for convenience
-
- ind and exp are adjusted, but not cleared for a mantissa of zero
-
- The length of the mantissa returned will be Arg1, except when Arg1
- is 0, in which case the returned mantissa length will be 1.
-
- */
-
- //private com.ibm.icu.math.BigDecimal round(int len,int mode){
-var round = function() {
- var len;
- var mode;
- if (round.arguments.length == 2)
- {
- len = round.arguments[0];
- mode = round.arguments[1];
- }
- else if (round.arguments.length == 1)
- {
- var set = round.arguments[0];
- len = set.digits;
- mode = set.roundingMode;
- }
- else
- {
- throw "round(): " + round.arguments.length + " arguments given; expected 1 or 2";
- }
- //int adjust;
- var adjust;
- //int sign;
- var sign;
- //byte oldmant[];
- var oldmant;
- //boolean reuse=false;
- var reuse=false;
- //--byte first=0;
- var first=0;
- //--int increment;
- var increment;
- //--byte newmant[]=null;
- var newmant=null;
- adjust=this.mant.length-len;
- if (adjust<=0)
- return this; // nowt to do
-
- this.exp=this.exp+adjust; // exponent of result
- sign=this.ind; // save [assumes -1, 0, 1]
- oldmant=this.mant; // save
- if (len>0)
- {
- // remove the unwanted digits
- this.mant=new Array(len);
- //--java.lang.System.arraycopy((java.lang.Object)oldmant,0,(java.lang.Object)mant,0,len);
- this.arraycopy(oldmant,0,this.mant,0,len);
- reuse=true; // can reuse mantissa
- first=oldmant[len]; // first of discarded digits
- }
- else
- {/* len<=0 */
- this.mant=this.ZERO.mant;
- this.ind=this.iszero;
- reuse=false; // cannot reuse mantissa
- if (len==0)
- first=oldmant[0];
- else
- first=0; // [virtual digit]
- }
-
- // decide rounding adjustment depending on mode, sign, and discarded digits
- increment=0; // bumper
- {modes:do{/*select*/
- if (mode==this.ROUND_HALF_UP)
- { // default first [most common]
- if (first>=5)
- increment=sign;
- }
- else if (mode==this.ROUND_UNNECESSARY)
- { // default for setScale()
- // discarding any non-zero digits is an error
- if ((!(this.allzero(oldmant,len))))
- throw "round(): Rounding necessary";
- }
- else if (mode==this.ROUND_HALF_DOWN)
- { // 0.5000 goes down
- if (first>5)
- increment=sign;
- else
- if (first==5)
- if ((!(this.allzero(oldmant,len+1))))
- increment=sign;
- }
- else if (mode==this.ROUND_HALF_EVEN)
- { // 0.5000 goes down if left digit even
- if (first>5)
- increment=sign;
- else
- if (first==5)
- {
- if ((!(this.allzero(oldmant,len+1))))
- increment=sign;
- else /* 0.5000 */
- if ((((this.mant[this.mant.length-1])%2))==1)
- increment=sign;
- }
- }
- else if (mode==this.ROUND_DOWN)
- ; // never increment
- else if (mode==this.ROUND_UP)
- { // increment if discarded non-zero
- if ((!(this.allzero(oldmant,len))))
- increment=sign;
- }
- else if (mode==this.ROUND_CEILING)
- { // more positive
- if (sign>0)
- if ((!(this.allzero(oldmant,len))))
- increment=sign;
- }
- else if (mode==this.ROUND_FLOOR)
- { // more negative
- if (sign<0)
- if ((!(this.allzero(oldmant,len))))
- increment=sign;
- }
- else{
- throw "round(): Bad round value: "+mode;
- }
- }while(false);}/*modes*/
-
- if (increment!=0)
- {bump:do{
- if (this.ind==this.iszero)
- {
- // we must not subtract from 0, but result is trivial anyway
- this.mant=this.ONE.mant;
- this.ind=increment;
- }
- else
- {
- // mantissa is non-0; we can safely add or subtract 1
- if (this.ind==this.isneg)
- increment=-increment;
- newmant=this.byteaddsub(this.mant,this.mant.length,this.ONE.mant,1,increment,reuse);
- if (newmant.length>this.mant.length)
- { // had a carry
- // drop rightmost digit and raise exponent
- this.exp++;
- // mant is already the correct length
- //java.lang.System.arraycopy((java.lang.Object)newmant,0,(java.lang.Object)mant,0,mant.length);
- this.arraycopy(newmant,0,this.mant,0,this.mant.length);
- }
- else
- this.mant=newmant;
- }
- }while(false);}/*bump*/
- // rounding can increase exponent significantly
- if (this.exp>this.MaxExp)
- throw "round(): Exponent Overflow: "+this.exp;
- return this;
- }
-
- /* Test if rightmost digits are all 0.
- Arg1 is a mantissa array to test
- Arg2 is the offset of first digit to check
- [may be negative; if so, digits to left are 0's]
- returns 1 if all the digits starting at Arg2 are 0
-
- Arg2 may be beyond array bounds, in which case 1 is returned
- */
-
- //--private static final boolean allzero(byte array[],int start){
-var allzero = function(array, start) {
- //--int i=0;
- var i=0;
- if (start<0)
- start=0;
- {var $25=array.length-1;i=start;i:for(;i<=$25;i++){
- if (array[i]!=0)
- return false;
- }
- }/*i*/
- return true;
- }
-
- /* Carry out final checks and canonicalization
-
- This finishes off the current number by:
- 1. Rounding if necessary (NB: length includes leading zeros)
- 2. Stripping trailing zeros (if requested and \PLAIN)
- 3. Stripping leading zeros (always)
- 4. Selecting exponential notation (if required)
- 5. Converting a zero result to just '0' (if \PLAIN)
- In practice, these operations overlap and share code.
- It always sets form.
-
- Arg1 is requested MathContext (length to round to, trigger, and FORM)
- Arg2 is 1 if trailing insignificant zeros should be removed after
- round (for division, etc.), provided that set.form isn't PLAIN.
- returns this, for convenience
- */
-
- //--private com.ibm.icu.math.BigDecimal finish(com.ibm.icu.math.MathContext set,boolean strip){
-var finish = function(set, strip) {
- //--int d=0;
- var d=0;
- //--int i=0;
- var i=0;
- //--byte newmant[]=null;
- var newmant=null;
- //--int mag=0;
- var mag=0;
- //--int sig=0;
- var sig=0;
- /* Round if mantissa too long and digits requested */
- if (set.digits!=0)
- if (this.mant.length>set.digits)
- this.round(set);
-
- /* If strip requested (and standard formatting), remove
- insignificant trailing zeros. */
- if (strip)
- if (set.form!=MathContext.prototype.PLAIN)
- {
- d=this.mant.length;
- /* see if we need to drop any trailing zeros */
- {i=d-1;i:for(;i>=1;i--){
- if (this.mant[i]!=0)
- break i;
- d--;
- this.exp++;
- }
- }/*i*/
- if (d0;$26--,i++){
- if (this.mant[i]!=0)
- {
- // non-0 result; ind will be correct
- // remove leading zeros [e.g., after subtract]
- if (i>0)
- {delead:do{
- newmant=new Array(this.mant.length-i);
- //--java.lang.System.arraycopy((java.lang.Object)this.mant,i,(java.lang.Object)newmant,0,this.mant.length-i);
- this.arraycopy(this.mant,i,newmant,0,this.mant.length-i);
- this.mant=newmant;
- }while(false);}/*delead*/
- // now determine form if not PLAIN
- mag=this.exp+this.mant.length;
- if (mag>0)
- { // most common path
- if (mag>set.digits)
- if (set.digits!=0)
- this.form=set.form;
- if ((mag-1)<=this.MaxExp)
- return this; // no overflow; quick return
- }
- else
- if (mag<(-5))
- this.form=set.form;
- /* check for overflow */
- mag--;
- if ((magthis.MaxExp))
- {overflow:do{
- // possible reprieve if form is engineering
- if (this.form==MathContext.prototype.ENGINEERING)
- {
- sig=mag%3; // leftover
- if (sig<0)
- sig=3+sig; // negative exponent
- mag=mag-sig; // exponent to use
- // 1999.06.29: second test here must be MaxExp
- if (mag>=this.MinExp)
- if (mag<=this.MaxExp)
- break overflow;
- }
- throw "finish(): Exponent Overflow: "+mag;
- }while(false);}/*overflow*/
- return this;
- }
- }
- }/*i*/
-
- // Drop through to here only if mantissa is all zeros
- this.ind=this.iszero;
- {/*select*/
- if (set.form!=MathContext.prototype.PLAIN)
- this.exp=0; // standard result; go to '0'
- else if (this.exp>0)
- this.exp=0; // +ve exponent also goes to '0'
- else{
- // a plain number with -ve exponent; preserve and check exponent
- if (this.expBigDecimal constant "0".
- *
- * @see #ONE
- * @see #TEN
- * @stable ICU 2.0
- */
-//--public static final com.ibm.icu.math.BigDecimal ZERO=new com.ibm.icu.math.BigDecimal((long)0); // use long as we want the int constructor
-// .. to be able to use this, for speed
-BigDecimal.prototype.ZERO = new BigDecimal("0");
-
-/**
- * The BigDecimal constant "1".
- *
- * @see #TEN
- * @see #ZERO
- * @stable ICU 2.0
- */
-//--public static final com.ibm.icu.math.BigDecimal ONE=new com.ibm.icu.math.BigDecimal((long)1); // use long as we want the int constructor
-// .. to be able to use this, for speed
-BigDecimal.prototype.ONE = new BigDecimal("1");
-
-/**
- * The BigDecimal constant "10".
- *
- * @see #ONE
- * @see #ZERO
- * @stable ICU 2.0
- */
-//--public static final com.ibm.icu.math.BigDecimal TEN=new com.ibm.icu.math.BigDecimal(10);
-BigDecimal.prototype.TEN = new BigDecimal("10");
-
-/* ----- Instance properties [all private and immutable] ----- */
-/* properties private */
-
-/**
- * The indicator. This may take the values:
- *
- * ispos -- the number is positive
- * iszero -- the number is zero
- * isneg -- the number is negative
- *
- *
- * @serial
- */
-//--private byte ind; // assumed undefined
-// Note: some code below assumes IND = Sign [-1, 0, 1], at present.
-// We only need two bits for this, but use a byte [also permits
-// smooth future extension].
-
-/**
- * The formatting style. This may take the values:
- *
- * MathContext.PLAIN -- no exponent needed
- * MathContext.SCIENTIFIC -- scientific notation required
- * MathContext.ENGINEERING -- engineering notation required
- *
- *
- * This property is an optimization; it allows us to defer number
- * layout until it is actually needed as a string, hence avoiding
- * unnecessary formatting.
- *
- * @serial
- */
-//--private byte form=(byte)com.ibm.icu.math.MathContext.PLAIN; // assumed PLAIN
-// We only need two bits for this, at present, but use a byte
-// [again, to allow for smooth future extension]
-
-/**
- * The value of the mantissa.
- *
- * Once constructed, this may become shared between several BigDecimal
- * objects, so must not be altered.
- *
- * For efficiency (speed), this is a byte array, with each byte
- * taking a value of 0 -> 9.
- *
- * If the first byte is 0 then the value of the number is zero (and
- * mant.length=1, except when constructed from a plain number, for
- * example, 0.000).
- *
- * @serial
- */
-//--private byte mant[]; // assumed null
-
-/**
- * The exponent.
- *
- * For fixed point arithmetic, scale is -exp, and can
- * apply to zero.
- *
- * Note that this property can have a value less than MinExp when
- * the mantissa has more than one digit.
- *
- * @serial
- */
-//--private int exp;
-// assumed 0
-
-/* ---------------------------------------------------------------- */
-/* End Of Operator methods */
-/* ---------------------------------------------------------------- */
-})(BigDecimal);
diff --git a/AgileWorks/WebContent/TSlib/generator/borderScript.js b/AgileWorks/WebContent/TSlib/generator/borderScript.js
deleted file mode 100644
index dbfeacc2ec5ae5a8194fddc23be4a80d3bd5d88d..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/TSlib/generator/borderScript.js
+++ /dev/null
@@ -1,843 +0,0 @@
-// Copyright (C) 2010 ATLED CORP. All rights Reserved.
-//
-var TSREGEX_ERR=false;
-
-/**
- * f: target object (element node)
- * l, t, w, h: left, top, width, height
- * k: 1:over , 0: focus
- * e: edit mode editable = "1" / readonly = "0"
- * {^̏ꍇ
- * {^IuWFNg_evpeBl(l^ / 1:ҏW,0:ҏWs)
- * R{{bNX,Xg{bNX̏ꍇ
- * selectvfdisabledl(boolean^ / true:ҏWs,false:ҏW)
- * LȊÕtB[h̏ꍇ
- * TSisEŔ肵ʂ̒l(^ / '1':ҏW,'0':ҏWs)
- * c:
- *
- * l: 1:over , 0: focus
- * t: edit mode editable = "1" / readonly = "0"
- * w:
- *
-*/
-function TSBOn(f,l,t,w,h,k,e,c){
- if(k==undefined){
- k=l;
- e=t;
- c=w;
- l=parseInt(f.style.left);
- t=parseInt(f.style.top);
- w=parseInt(f.style.width)-1;
- h=parseInt(f.style.height)-1;
- }
-
- if (isNaN(w)||isNaN(h)){ //T-000559
- return;
- }
-
- if(XWEB.bIE){
- if((k==1||k==3)&&(f.type=="text")){
- var rng=f.createTextRange();
- if(rng){
- rng.select();
- }
- }
- if(e!=1){return;}
-
- if(!TSif){return;}
- }else{
- var w_tp=typeof(e);
- if (w_tp=='string'){
- if (e!='1'||e=='true') {return;}
- }else if(w_tp=='number'){
- if (e!=1) {return;} //T-002732
- }else if(w_tp=='boolean'){
- if (e==true) {return;}
- }else{
- if (e==true) {return;}
- }
- }
-
- /* focus control on readonly filed */
- if(XWEB.Form.readOnlyFocus==false){
- if(f.tagName=='TABLE'){ // btn
- }else if(f.tagName=='DIV'){ //radio,check
- if(f.readOnly||f.rad_readonly||f.chk_readonly){return;}
- }else{
- if(f.readOnly){return;} // readonly field.
- }
- }
-
- var o,y,g,u;
- var s="visible";
-
- if(k%2==0){
- y=TSma;
- g=TSmc;
- }else{
- y=TSfa;
- g=TSfc;
- TSobj=o; // BGΉ
- }
-
- if((y+1)%2==1){ // BD\ y= 0:BD 1:BG 2:BD&BG -1:none
- if(k<2){
- l+=TSmx-2;
- t+=TSmy-2;
- if(typeof(XWEB)!='undefined'){
- if(XWEB.Html.verticalPageMode==true){
- l-=TSmx;
- t-=TSmy;
- }
- }
- }else{
- l-=2;
- t-=2;
- }
- w+=3;
- h+=3;
- u="TS5"+k;
- o=document.getElementById(u+0);
- o.style.top=t+"px";
- o.style.left=l+"px";
- o.style.width=w+"px";
- o.style.height=2+"px";
- o.style.visibility=s;
- o=document.getElementById(u+1);
- o.style.top=t+2+"px";
- o.style.left=l+"px";
- o.style.width=2+"px";
- o.style.height=h+"px";
- o.style.visibility=s;
- o=document.getElementById(u+2);
- o.style.top=t+"px";
- o.style.left=l+w+"px";
- o.style.width=2+"px";
- o.style.height=h+"px";
- o.style.visibility=s;
- o=document.getElementById(u+3);
- o.style.top=t+h+"px";
- o.style.left=l+2+"px";
- o.style.width=w+"px";
- o.style.height=2+"px";
- o.style.visibility=s;
- if(k>=2){ // scroll area.
- TSBOn_Border(f,o.parentNode,u);
- }else if(typeof(XWEB)!='undefined'){
- if(XWEB.Html.verticalPageMode==true){
- TSBOn_Border(f,o.parentNode,u);
- }
- }
- }
- if(y>0){ // BG\ y= 0:BD 1:BG 2:BD&BG -1:none
- var bg_c=XWEB.bIE? (c==0) : ((c==0)&&(!TSof));
- if(bg_c==true){ // BGΉ
- if(k%2==0){ // MouseOver
- if(TSobj!=f){
- TSmbk=f.style.background;
- f.style.background=g;
- }
- }else{ // Focus
- TSobj=f;
- if(TSmbk==""){
- TSfbk=f.style.background;
- }else{
- TSfbk=TSmbk;
- }
- f.style.background=TSfc;
- }
- }
- }
- if(!XWEB.bIE){
- TSof=true;
- }
-}
-
-TSBOn_Border=function(f,sco,u){
- if(f.parentNode.id==sco.id){
- return;
- }
- var o;
- for(var n=0;n<4;++n){
- o=document.getElementById(u+n);
- if(o){
- sco.removeChild(o);
- var p=f.parentNode;
- p.insertBefore(o,p.firstChild);
- }
- }
-};
-
-function TSBOf(f,k,e,c){
- if(XWEB.bIE){
- if(e!=1){return;}
- if(!TSif){return;}
- }else{
- if(e!="1"){return;} // T-001695
- TSof=false;
- }
-
- var y,g;
- if(k%2==0){
- y=TSma;
- g=TSmc;
- }else{
- y=TSfa;
- g=TSfc;
- TSobj=null; // BGΉ
- }
- if((y+1)%2==1){ // BD\ y= 0:BD 1:BG 2:BD&BG -1:none
- for(var i=0;i<4;i++){
- var o=document.getElementById('TS5'+k+i);
- if(o){
- o.style.visibility='hidden';
- }
- }
- }
- if(y>0){ // BG\ y= 0:BD 1:BG 2:BD&BG -1:none
- var bg_c=XWEB.bIE? (c=="") : (c==0);
- if(bg_c==true){ // BGΉ
- if(k%2==0){ // MouseOut
- if(TSobj!=f){
- f.style.background=TSmbk;
- TSmbk="";
- }
- }else{ // Blur
- f.style.background=TSfbk;
- TSfbk="";
- }
- }
- }
- // dejipo.1978
- if((k==1||k==3) && f && f.createTextRange){
- var rng=f.createTextRange();
- if(rng.text.length>0){
- if(isIE9STD()){
- ;
- }else{
- rng.execCommand("Unselect");
- }
- }
- }
-}
-
-function TSChangeImg_(o,url){
- if(o){o.src=url;}
-}
-
-// TextArea Focus
-function TSTAF(o){
- if(o.createTextRange){ //IE
- o.style.overflowX="visible"; // T-001752
- o.style.overflowY="auto"; // T-001752
- if(rng=o.createTextRange()){
- rng.moveStart("character", o.value.length);
- rng.select();
- }
- }else{ // other.
- o.style.overflow="auto";
- }
-}
-
-// TextArea Blur
-function TSTAB(o){
- if(o.createTextRange){ //IE (T-001752)
- o.style.overflowX="hidden";
- o.style.overflowY="hidden";
- }else{
- o.style.overflow="hidden";
- }
-}
-
-// TextArea onPaste (T-001752)
-function TSPASTE(o,event){
- if(XWEB){
- var f=XWEB.getObject(o.id);
- if(f && f.type==XWEB.FieldType.TextArea){
- window.setTimeout("XWEB.TEXTAREA.setTextVAlign(document.getElementById('"+o.id+"'),"+f.valign+","+event.keyCode+");",1);
- }
- }
-}
-
-// div onChange(divɂonChangeȂ߁AdivonPropertyChangeŌĂ)
-// m ... 0:Radio 1:Check
-function TSDC(idname,s,m,onV,onM,onB,offV,offM,offB){
- var id=document.getElementById(idname);
- var o=document.getElementById(id.id+"_TMP");
- if(id.value != o.value) {
- o.value = id.value;
- if(m==0){
- var idx=0;
- while((b=document.getElementById(id.id+"_BGV_"+idx))!=null){
- if(id.value==b.value){
- document.getElementById(id.id+"_"+idx).click();
- }
- idx++;
- }
- }else{
- var b=document.getElementById(id.id+"_BG");
- if(id.value==onV){
- XWEB.setDivText(b,onM);
- b.style.background=onB;
- }else{
- XWEB.setDivText(b,offM);
- b.style.background=offB;
- }
- }
- if(s!=""){
- eval(s); // call "onChange" function.
- }
- }
-}
-
-// RadioButton Clicked
-function TSRC(id,num,max,onM,onV,onB,offM,offV,offB,e){
- if(XWEB.bIE){
- if(e!=1)return;
- }
- var o,p,i;
- o=document.getElementById(id+"_BG_0");
- if(o){
- if(o.rad_readonly==true||o.readOnly==true){
- return;
- }
- }
-
- var tgt_o=undefined; // T-001093:No.201111020
- var tgt_v=undefined;
- for(var i=0;i=0)?s.replace(/-/g,""):"-"+s;
- if(wk_s.substr(0,2)=="-."){
- wk_s="-0."+wk_s.substring(2);
- }
- if (wk_s=="-") {
- //T-002716
- //oC[̏ꍇ,͂type=numberinputvfōs
- //̏Ԃłvalue-łȂ̂ŃuEUɏ܂
- break;
- }
- o.value=wk_s;
- if(o.createTextRange){ // aw 000618
- var rng=o.createTextRange();
- if(wk_s.length>0 && wk_s.substr(0,1)=='-'){
- rng.move("character",1);
- rng.select();
- }
- }else{
- if(wk_s.length>0 && wk_s.substr(0,1)=='-'){
- o.setSelectionRange(1,1);
- }else{
- o.setSelectionRange(0,0);
- }
- }
- XWEB.preventDefault(event);
- break;
- case 110:
- if(s.indexOf(".")>=0){
- XWEB.preventDefault(event);
- }
- break;
- case 0:
- XWEB.preventDefault(event);
- break;
- default:
- if(s.substr(0,2)=="-."){
- o.value="-0."+s.substring(2);
- }
- break;
- }
-}
-
-function TSCND(s){
-// var r=s.replace(/[^0-9\\.-]/g,"");
-// var isMinus=(r.indexOf('-')==0);
-// var as=Math.abs(r.replace(/-/g,""));
-// return (as * (isMinus ? -1 : 1));
- var r=s.replace(/[^0-9\\.-]/g,"").replace(/[$\\]/,""); //T-000619, T-000830
- var isMinus=(r.indexOf('-')==0);
- r=r.replace(/-/g,"");
- var p=r.indexOf(".");
- if(p!=-1){
- r=(r.substring(0,p)-0)+""+r.substring(p);
- }
- r=(isMinus?'-':'')+r;
- return r;
-}
-
-function TSCNE(s){
- var r=s.replace(/,/g,"").replace(/^[$\\]/,""); //T-000619
- r=(r.indexOf('\\\\')==0)?r.substring(1):r;
- return r;
-}
-
-// Check Num onBlur (m=0:INTEGER, 1:NUMBER)
-function TSCNIU(o,event,m){
- if(o.readOnly)return true;
-
- //AndroidiWnnpreventDefaultŃL[̓LZłAő͕zl͂ꂦB
- //̂߃tH[JXXgɌsB
- var isNeedCheckLen=o && o.value && o.maxLength && o.value.length;
- if(isNeedCheckLen && XWEB.Form.isNeedCheckOverMaxLength(o) && (o.maxLength=0){
- o.value=o.value.substring(0,o.value.indexOf('.'));
- }
- var wk_sv=getTSOldVal(o); // T-000620
- alert(I18N.t("XWFCMN-W0004", old, o.value)); // "'"+old+"'ُ͈ȐlłB'"+o.value+"'ɕ܂B"
- _xwf_oldval[o.id]=wk_sv; // T-000620
- }
- var cu_val=o.value; // tH[JXړOɈꎟޔiSF/CHΉAT-000620j
- o.value=wk_sv;
- o.focus(); // T-001946
- o.value=cu_val;
- if(!isNaN(TSCNE(o.value))){ // T-000620
- return true;
- }
- setTSOldVal(o,wk_sv);
- if(XWEB.bIE){
- if(rng=o.createTextRange()) { rng.select(); }
- }
- XWEB.preventDefault(event);
- return false;
- }else{
- if(m==0&&o.value.indexOf(".")>=0){
- var old=o.value;
- o.value=old.substring(0,old.indexOf('.'));
- alert(I18N.t("XWFCMN-W0010", o.value)); // "̍ڂɏl͓͂ł܂B'"+o.value+"'ɕ܂B"
- XWEB.preventDefault(event);
- }
- if(o.value!=""){
- o.value=TSCNIZ(o);
- }
- return true;
- }
-}
-
-function TSCNIZ(o){
- var s=TSCNE(o.value);
- var isMinus=((s-0)<0);
- var p=s.indexOf(".");
- if(p!=-1){
- var rt=s.substring(isMinus?1:0,p)+""+s.substring(p); // aw 000618
- rt=rt.replace(/^0*/,"");
- if(rt.substring(0,1)=='.'){
- rt="0"+rt;
- }
- if (isMinus && rt.indexOf("-") != 0) {
- rt="-"+rt;
- }
- return rt;
- }
- if(s!=null && s!='undefined'){
- s=rmZeroPrefix(s);
- }
- return s; // O[
-}
-
-/*
- * l\̐ʌ'0'tĂꍇA菜܂B
- * no.2862Ή̈
- */
-function rmZeroPrefix(s){
- var minus=false;
- if(s.indexOf('-') == 0){
- s=s.substring(1);
- minus=true;
- }
-
- var targetSize;
- if(s.indexOf("0.") != -1){
- targetSize=s.indexOf("0.");
- }else if(s.indexOf(".") != -1){
- targetSize=s.indexOf(".");
- }else if(s.charAt(s.length-1)=='0'){
- targetSize=s.length-1;
- }else{
- targetSize=s.length;
- }
-
- var r='';
- var doFlag=1;
- for(var i=0;i0){
- alert(m);
- }
- TSREGEX_ERR=false;
- if(!r){
- TSREGEX_ERR=true;
- setTimeout("document.getElementById('"+o.id+"').focus()",0);
- XWEB.preventDefault(event);
- }
- return r;
-}
-
-function TSFCS_CLK(idname){
- var o=document.getElementById(idname);
- if(o.focus){
- if(o.click){
- o.click();
- }
- o.focus();
- }else if(o.onfocus){
- if(o.onclick){
- o.onclick();
- }
- o.focus();
- }
-}
-function TSFCS_DBL(idname){
- var o=document.getElementById(idname);
- if(o.dblclick){
- o.dblclick();
- }else if(o.ondblclick){
- o.ondblclick();
- }
-}
-function TSFCS_MOV(idname,cobj){
- var o=document.getElementById(idname);
- if(o.mouseover){
- o.mouseover();
- }else if(o.onmouseover){
- o.onmouseover();
- }
-}
-function TSFCS_MOT(idname){
- var o=document.getElementById(idname);
- if(o.mouseout){
- o.mouseout();
- }else if(o.onmouseout){
- o.onmouseout();
- }
-}
-
-TSif=true;
-
-//-- end of file.
diff --git a/AgileWorks/WebContent/TSlib/generator/formScript.js b/AgileWorks/WebContent/TSlib/generator/formScript.js
deleted file mode 100644
index 29a64e81d5369a6d7cc00fa0cf1bc84c59c65b67..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/TSlib/generator/formScript.js
+++ /dev/null
@@ -1,511 +0,0 @@
-// Copyright (C) 2011 ATLED CORP. All rights Reserved.
-//
-
-//-- TSF15BG/TSSF15BG (combobox/listbox)
-TSF15BG=function(o,z){
- var s="",t=0,b,l=typeof(o.options)=='undefined'?0:o.options.length;
- z=(l=0)&&(t+h";
- }else{
- s+="\" onclick=l_click('" + o.id + "',event)>";
- }
- }else{
- s+="\">";
- }
- var opt_text=XWEB.getDivText(o.options[i]);
- if(opt_text.length==0){
- s+=" ";
- }else{
- s+=XWEB.ISO8859_1_Escape(opt_text); //T-001763
- }
- s+="";
- }
- g.innerHTML=s;
-};
-TSSF15BG=TSF15BG;
-
-function l_click(lst_id,event){
- var o=document.getElementById(lst_id+"_BG");
- if(o){
- if(o.focus){
- o.focus();
- }else if(o.onfocus){
- o.onfocus();
- }
- }
-}
-
-//-- end of file.
-
-//\"
-
-// -- X-WebForm Generator functions.
-XGEN=new function(){
- this.TSaRdOff=new Array(); // WI{^OFF}[NArray
- this.TSsel=new Array(); // R{{bNXI`FbN
-
- // -- RadioButton Off Value.({^OffɂۂDIV\eLXg)
- this.addRadOff=function(idname){
- var f=XWEB.getObject(idname);
- if(f){
- if(f.radiovalues){
- for(var n in f.radiovalues){
- this.TSaRdOff[idname+"_"+n]=f.radiovalues[n].uncheckmark;
- }
- }
- }
- };
-
- // ComboBox/Listbox𖢑IԂɐݒ肷Kv̂IDXg
- this.addNoSelect=function(idname){
- this.TSsel.push(idname);
- };
-
- return this;
-};
-
-// --- Button Field Object.
-XGEN.Button=function(btn_name,bEnable,tab_index,fgCol,borderCol,bgCol,disCol){
- this.idname=btn_name;
- this._e=bEnable?bEnable:0; // enabled/disabled
- this._t=tab_index?tab_index:0; // tabindex.
- this._s=new Array("","","","","","","",""); //click[1],dblclick[2],keypush[3],keydown[4],keyup[5],mouseover[6],mouseblur[7]
- this._c=new Array(4);
- this._c[0]=fgCol?fgCol:"#000000"; // Enable , style.color ("#000000")
- this._c[1]=borderCol?borderCol:"#000000"; // Enable , style.borderColor ("#000000")
- this._c[2]=bgCol?bgCol:"transparent"; // Ena/Dis , style.backgroundColor ("transparent")
- this._c[3]=disCol?disCol:"#808080"; // Disable , style.color, style.borderColor ("#808080")
- this.CL=function(event){if((this._s[1].length>0)&&(this._e)){eval(this._s[1]);}};
- this.DC=function(event){if((this._s[2].length>0)&&(this._e)){eval(this._s[2]);}};
- this.KP=function(event){
- var r=true;
- if((this._s[3].length>0)&&(this._e)){
- r=eval(this._s[3]);
- }
- if((this._e)&&r){
- if(event.keyCode==13){this.CL(event);}
- }
- };
- this.KD=function(event){if((this._s[4].length>0)&&(this._e)){eval(this._s[4]);}};
- this.KU=function(event){if((this._s[5].length>0)&&(this._e)){eval(this._s[5]);}};
- this.MV=function(event){if((this._s[6].length>0)&&(this._e)){eval(this._s[6]);}};
- this.MU=function(event){if((this._s[7].length>0)&&(this._e)){eval(this._s[7]);}};
- this.UD=function(c,d,g,h,event){
- var o_bt=document.getElementById(this.idname+'_BT');
- var o_bl=document.getElementById(this.idname+'_BL');
- var o=document.getElementById(this.idname);
- o_bt.style.cursor=h;o_bl.style.color=c;o_bt.style.borderColor=d;o.style.backgroundColor=g;
- };
- this.UPADDING=function(event,t,b,l,r){
- if(this._e){
- var o_bl=document.getElementById(this.idname+'_BL');
- o_bl.style.paddingTop=t;
- o_bl.style.paddingBottom=b;
- o_bl.style.paddingLeft=l;
- o_bl.style.paddingRight=r;
- }
- };
-
- this.setOnClick=function(s){ this._s[1]=s;};
- this.setOnDblClick=function(s){ this._s[2]=s;};
- this.setOnKeyPress=function(s){ this._s[3]=s;};
- this.setOnKeyDown=function(s){ this._s[4]=s;};
- this.setOnKeyUp=function(s){ this._s[5]=s;};
- this.setOnMouseover=function(s){ this._s[6]=s;};
- this.setOnMouseout=function(s){ this._s[7]=s;};
-
- this.setEnable =function(){
- this._e=1;
- this.UD(this._c[0],this._c[1],this._c[2],'pointer',event);
- var o_bl=document.getElementById(this.idname+'_BL');
- o_bl.tabIndex=this._t;
- };
- this.setDisable =function(){
- this._e=0;
- this.UD(this._c[3],this._c[3],this._c[2],'default',event);
- var o_bt=document.getElementById(this.idname+'_BT');
- var o_bl=document.getElementById(this.idname+'_BL');
- o_bl.tabIndex=-1;
- o_bt.blur();
- };
- this.isEnable =function(){
- return this._e==1;
- };
- this.setVisibility =function(n){
- var o=document.getElementById(this.idname);
- o.style.visibility=((n!=1)?"visible":"hidden");
- };
-
- this.setFunction=function(){
- var n_id=this.idname;
- var s_id="__"+n_id;
-
-// eval(n_id+".setEnable=function(){"+s_id+".setEnable();};");
-// eval(n_id+".setDisable=function(){"+s_id+".setDisable();};");
-// eval(n_id+".isEnable=function(){return "+s_id+".isEnable();};");
-// eval(n_id+".setOnClick=function(s){"+s_id+".setOnClick(s);};");
-// eval(n_id+".setVisibility=function(n){"+s_id+".setVisibility(n);};");
-
- var xwBtnFld=document.getElementById(n_id);
- if(xwBtnFld){
- eval("xwBtnFld.setEnable=function(){"+s_id+".setEnable();};");
- eval("xwBtnFld.setDisable=function(){"+s_id+".setDisable();};");
- eval("xwBtnFld.isEnable=function(){return "+s_id+".isEnable();};");
- eval("xwBtnFld.setOnClick=function(s){"+s_id+".setOnClick(s);};");
- eval("xwBtnFld.setVisibility=function(n){"+s_id+".setVisibility(n);};");
- }
-
- var img_o=document.getElementById(n_id+"_BG_IMG"); // T-001744
- if(img_o){
- var btn_o=document.getElementById(n_id);
- if(btn_o){
- img_o.style.visibility=btn_o.style.visibility;
- }
- }
- };
-
- return this;
-};
-
-/**
- * Navigator Object.
- */
-XGEN.Navigator=function(navi_name,nPosX,nPosY,numButton,numCol,numRow){
- this.idname=navi_name;
- this.numX=numCol;
- this.numY=numRow;
- this.numButton=numButton;
- this.nPosX=nPosX;
- this.nPosY=nPosY;
-
- this.sFontName;
- this.sFontSize;
- this.bBold;
- this.sPadding;
-
- this.sDisableColor=XWEB.Navigator.disableColor;
- this.nBorderWidth=XWEB.Navigator.borderWidth;
- this.sHighColor=XWEB.Navigator.highColor;
- this.sEnableColor=XWEB.Navigator.enableColor;
-
- this.sBackGroundColor=XWEB.Navigator.backgroundColor;
- this.sBorderColor=XWEB.Navigator.borderColor;
-
- this.nButtonWidth=XWEB.Navigator.buttonWidth;
- this.nButtonHeight=XWEB.Navigator.buttonHeight;
- this.nButtonPadding=XWEB.Navigator.buttonPadding;
-
- this.sEventHandler=new Array(numButton);
- this.nActiveButton=-1;
- this.sButton=new Array(numButton);
- this.sTitle=new Array(numButton);
-
- this.setButtonCap=function(no,cap,tooltip){
- this.sButton[no]=cap;
- this.sTitle[no]=tooltip;
- };
-
- this.setFont=function(fontName,nFontSize,bBold){
- this.sFontName=fontName;
- this.sFontSize=nFontSize;
- this.bBold=bBold;
- };
-
- this.isDisabled=function(){
- var o=document.getElementById(this.idname);
- return o.disabled;
- };
- this.doMouseOver=function(n){
- if(this.isDisabled()){return;}
- this.doMouseOut();
- if(this.sEventHandler[n]!=''){
- this.nActiveButton=n;
- this.updateButton(n,this.sHighColor,'pointer');
- }
- }
- this.doMouseOut=function(){
- if(this.isDisabled()){return;}
- if(this.nActiveButton!=-1){
- if(this.sEventHandler[this.nActiveButton]!=''){
- this.updateButton(this.nActiveButton,this.sEnableColor,'pointer');
- }
- this.nActiveButton=-1;
- }
- }
- this.doClick=function(n){
- if(this.isDisabled()){return;}
- if(this.sEventHandler[n]!=''){
- eval(this.sEventHandler[n]);
- }
- }
- this.doKeyPress=function(event){
- if(this.isDisabled()){return;}
- if(this.nActiveButton!=-1){
- if(event.keyCode==13){
- this.doClick(this.nActiveButton);
- }
- }
- }
- this.doMouseDown=function(n){
- if(this.isDisabled()){return;}
- if(this.sEventHandler[n]!=''){
- o=document.getElementById(this.idname+'_Button_'+n);
- o.style.paddingTop=1;
- o.style.paddingBottom=0;
- o.style.paddingLeft=2;
- o.style.paddingRight=0;
- }
- }
- this.doMouseUp=function(n){
- if(this.isDisabled()){return;}
- if(this.sEventHandler[n]!=''){
- o=document.getElementById(this.idname+'_Button_'+n);o.style.padding=0;
- }
- }
- this.updateButton=function(n,c,h){
- o=document.getElementById(this.idname+'_Button_'+n);
- o.style.borderColor=c;
- o.style.cursor=h;
- o=document.getElementById(this.idname+'_ButtonLabel_'+n);
- o.style.color=c;
- }
- this.TSNtHL=function(x0,y0,x1,w,c){
- return "
";
- };
- this.TSNtVL=function(x0,y0,y1,w,c){
- return "
";
- };
- this.TSNtFL=function(x0,y0,x1,y1,c){
- return "
";
- };
- this.TSNtBX=function(x0,y0,x1,y1,w,c){
- return this.TSNtHL(x0,y0,x1,w,c)+this.TSNtHL(x0,y1,x1,w,c)+this.TSNtVL(x0,y0,y1,w,c)+this.TSNtVL(x1,y0,y1,w,c);
- };
-
- this.toHtml=function(){
- var s=new Array();
- var nv_top=this.nPosY;
- var nv_left=this.nPosX;
- var x1=this.numX * (this.nButtonWidth + this.nButtonPadding) + (this.nButtonPadding + 1);
- var y1=this.numY * (this.nButtonHeight + this.nButtonPadding) + (this.nButtonPadding + 1);
-
- if(typeof(aw_version)=='undefined') {
- s.push("");
- }else{
- s.push("
");
- }
-
- var x1=this.numX * (this.nButtonWidth + this.nButtonPadding) + (this.nButtonPadding + 1);
- var y1=this.numY * (this.nButtonHeight + this.nButtonPadding) + (this.nButtonPadding + 1);
- s.push(this.TSNtFL(0,0,x1,y1,this.sBackGroundColor));
-
- var x1=this.numX * (this.nButtonWidth + this.nButtonPadding) + (this.nButtonPadding + 1);
- var y1=this.numY * (this.nButtonHeight + this.nButtonPadding) + (this.nButtonPadding + 1);
- s.push(this.TSNtBX(0,0,x1,y1,1,this.sBorderColor));
-
- var x1=this.numY * (this.nButtonHeight + this.nButtonPadding) + (this.nButtonPadding + 1) + 1;
- var w =this.numX * (this.nButtonWidth + this.nButtonPadding) + (this.nButtonPadding + 1) + 1;
- s.push(this.TSNtHL(2,x1,w,2,this.sBorderColor));
-
- var y1=this.numX * (this.nButtonWidth + this.nButtonPadding) + (this.nButtonPadding + 1) + 1;
- var w =this.numY * (this.nButtonHeight + this.nButtonPadding) + (this.nButtonPadding + 1) + 1;
- s.push(this.TSNtVL(y1,2,w,2,this.sBorderColor));
-
- var s0=' style="border:'+this.sDisableColor+' '+this.nBorderWidth+'px solid;padding-top:0px;text-align:center;vertical-align:top;"';
-
- var nPADDINGTOP=this.sPadding;
- var bBtnSiz="";
- if(!XWEB.bIE){
- var nDx=6;
- var nDy=7;
- nPADDINGTOP = (this.nButtonHeight - this.sFontSize - this.nBorderWidth * 2) / 2;
- var nWIDTH_DIF = 2;
- var nHEIGHT_DIF = 2 - nPADDINGTOP + 1;
- if (this.nBorderWidth > 2) { // No.2987
- nDy += this.nBorderWidth + 1;
- }
- bBtnSiz="width:"+Math.floor(this.nButtonWidth-nDx+nWIDTH_DIF)+"px;height:"+Math.floor(this.nButtonHeight-nDy+nHEIGHT_DIF)+"px;";
- }
-
- var s1=
- ' style="'+bBtnSiz+'color:'+this.sDisableColor+';font-weight:'+(this.bBold?'bold;':'')+';font-size:'+this.sFontSize+'px;padding-top:'+nPADDINGTOP+'px;text-align:center;vertical-align:top;"';
-
- for(var i=0;i
");
- if(XWEB.bIE){
- for(var i=0;i');
- }
- }
- for(var i=0;i');
- }else{
- s.push('');
- }
- }
- var s_id="__"+this.idname;
- if(XWEB.bIE){
- if(isUntilIE8()){
- s.push('');
- }else{
- var td_h=(this.nButtonHeight-this.nBorderWidth*2);
- s.push(' ');
- }
- }else{
- s.push(' ');
- }
- s.push(''+this.sButton[i]+'
');
- s.push(' ');
- if((i%this.numX)==(this.numX-1)){
- s.push(' ');
- }
- }
- s.push("");
- s.push(" ");
- return s.join("");
- };
-
- this.enableButton=function(n,s){
- if((n<0)||(n>=this.numButton)){return;}
- var o=document.getElementById(this.idname+'_Button_'+n);
- this.sEventHandler[n]=s;
- if(s==''){
- this.updateButton(n,this.sDisableColor,'default');
- o.tabIndex=-1;
- o.blur();
- }else{
- if(this.nActiveButton==n){
- this.updateButton(n,this.sHighColor,'pointer');
- }else{
- this.updateButton(n,this.sEnableColor,'pointer');
- }
- o.tabIndex=0;
- }
- };
- this.disableButton=function(n){
- if((n<0)||(n>=this.numButton)){return;}
- this.enableButton(n,'');
- };
- this.focusButton=function(n){
- if((n<0)||(n>=this.numButton)){return;}
- if(this.sEventHandler[n]!=''){
- this.doMouseOver(n);
- document.getElementById(this.idname+'_Button_'+n).focus();
- }
- };
- this.setButtonLabel=function(n,s){
- if((n<0)||(n>=this.numButton)){return;}
- this.sButton[n]=s;
- var btn=document.getElementById(this.idname+'_ButtonLabel_'+n);
- if(btn){
- XWEB.getDivText(btn,s);
- }
- };
- this.getButtonLabel=function(n){
- if((n<0)||(n>=this.numButton)){return '';}
- return this.sButton[n];
- };
- this.getButtonNumber=function(s){
- for(var i=0;i
0){
- var v=o.value-0;
- if(n==1){
- if(vmx){ o.value=mx; }
- }
- }
- if(cm!=0){
- o.value=TSICM(o.value);
- }
-
- // nCt̗Lonchange
- var old_val=getTSOldVal(o);
- if((TSDCM(o.value)==TSDCM('-'+old_val))||(TSDCM('-'+o.value)==TSDCM(old_val))){
- try{
- o.onchange();
- setTSOldVal(o);
- }catch(e){}
- }
-}
-
-function TSCBFPFX(o){
- if(XWEB){
- var pfix=XWEB.getPrefix(o.id);
- if(pfix&&o.value.length>0){
- o.value=o.value.substring(XWEB.ISO8859_1_Characters(pfix).length);
- }
- }
-}
-
-function TSCBRPFX(o){
- if(XWEB){
- var pfix=XWEB.getPrefix(o.id);
- if(pfix&&o.value.length>0){
- o.value=XWEB.ISO8859_1_Characters(pfix)+o.value;
- }
- }
-}
-
-if(XWEB.bIE==false){
- TSCMN=function(f,mn,o){};
- TSCMX=function(f,mx,o){};
-}
-
-//-- end of file.
diff --git a/AgileWorks/WebContent/TSlib/generator/pageSupportCSS.css b/AgileWorks/WebContent/TSlib/generator/pageSupportCSS.css
deleted file mode 100644
index d6e2d2d08840a939d137ea5bd91b1bebf05e956f..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/TSlib/generator/pageSupportCSS.css
+++ /dev/null
@@ -1,471 +0,0 @@
-@charset "Shift_jis";
-/* Copyright (C) 2011 ATLED CORP. All rights Reserved.
- */
-
-/* S̐ݒ */
-* {
- margin:0;
- line-height:1; /* T-001767 (T-001647) */
- zoom:1.0;
- outline:0; /* for Safari */
-}
-
-/* tB[h */
-.XWFCMN {
- position:absolute;
- visibility:inherit;
- letter-spacing: 0px;
- color:#000000;
- background-color:transparent;
- border:none;
- padding:0px 0px 0px 0px;
- font-size:14px;
- font-weight:normal;
- font-style:normal;
-}
-
-/* tB[h (IE) */
-.XWFCMN_IE {
- z-index:-1;
-}
-
-/* tB[h (FF & Safari) */
-.XWFCMN_GEKKO {
-/* z-index:-1;*/
-}
-
-/* ԂɂZ-Index:-1̕Kv */
-.XWFCMN_ZIDX {
- z-index:-1;
-}
-
-/* eLXg */
-.XWFTXT {
- cursor:pointer;
- text-align:left;
- ime-mode:inactive;
- letter-spacing:0px;
- -webkit-appearance:none;
-}
-
-.XWFPWD {
- cursor:pointer;
- text-align:left;
- ime-mode:disabled;
- letter-spacing:0px;
- -webkit-appearance:none;
-}
-
-/* eLXgGA */
-.XWFTXA {
- overflow:hidden;
- cursor:pointer;
- text-align:left;
- ime-mode:inactive;
-
- resize:none;
- line-height:100%;
- -webkit-appearance:none;
-}
-
-/* lE */
-.XWFNUM {
- cursor:pointer;
- text-align:right;
- ime-mode:disabled;
- -webkit-appearance:none;
-}
-
-/* WI{^(x[X) */
-.XWFRAD0 {
- cursor:pointer;
- text-align:center;
- border-style:none;
- /*z-index:-1;*/
-}
-
-/* WI{^(e[u) */
-.XWFRAD1 {
- cursor:pointer;
- table-layout:fixed;
- position:absolute;
- /*z-index:-1;*/
-}
-
-/* WI{^(e[uC) */
-.XWFRAD2 {
- cursor:pointer;
- cursor:pointer;
- overflow:hidden;
- /*z-index:-1;*/
-}
-
-/* `FbN{bNX(x[X) */
-.XWFCHK0 {
- cursor:pointer;
- position:absolute;
- /*z-index:-1;*/
- text-align:center;
- border-style:none;
-}
-
-/* `FbN{bNX(e[u) */
-.XWFCHK1 {
- cursor:pointer;
- table-layout:fixed;
- position:absolute;
- /*z-index:-1;*/
-}
-
-/* `FbN{bNX(e[uC) */
-.XWFCHK2 {
- cursor:pointer;
- overflow:hidden;
-}
-
-/* R{{bNX(tH[JXO) */
-.XWFCMB1 {
- cursor:pointer;
- position:absolute;
- overflow:hidden;
- /*z-index:-1;*/
- white-space:nowrap;
- border-style:none;
-}
-
-/* R{{bNX(tH[JX) */
-.XWFCMB2 {
- cursor:pointer;
- position:absolute;
- /*z-index:-1;*/
- visibility:hidden;
- cursor:pointer;
- border-style:none;
-}
-
-/* listbox ,"_BG_TEXT","_BG_VALUE" and "" */
-.XWFLSTBG {
- position:absolute;
- /*z-index:-1;*/
- left:0;top:0;width:0;height:0;
-}
-
-/* Button base (table) */
-.XWFBTNBS {
- cursor:pointer;
- visibility:visible;
- position:absolute;
- /*z-index:-1;*/
- table-layout:fixed;
- background-color:transparent;
-}
-
-/* Button border */
-.XWFBTNBDR {
- border-style:solid;
- border-width:3px;
- border-color:#000000;
-}
-
-/* Button Label */
-.XWFBTNLBL {
- color:#000000;
- text-align:center;
- letter-spacing:0;
-
- font-size:14px;
- font-weight:normal;
- font-style:normal;
-}
-
-/* x(N) */
-.XWFLLK {
- text-decoration:none;
-}
-
-/* x() */
-.XWFLBL {
- overflow:hidden;
- text-align:center;
-}
-
-/* Label (for IE) */
-.XWFLBLIE {
- word-break:break-all;
-}
-
-/* Upload field */
-.XWFUPLD {
- cursor:pointer;
-}
-
-/* OtBbN */
-.XWGCMN {
- position:absolute;
- overflow:hidden;
- background-color:#000000;
- border-style:solid;
- border-color:#000000;
-}
-/* vline,hline,line,corner-r */
-.XWGFIG {
- position:absolute;
- overflow:hidden;
- border-style:none;
- background-color:transparent;
-}
-
-/* OtBbN (IE:`IE8) */
-.XWGCMN_IE {
-/* border-width:0px;*/
-/* z-index:-1;*/
-}
-/* OtBbN (IE:̂:solid) */
-.XWGCMN_IES {
- background-color:#000000;
- border-style:none;
-}
-/* OtBbN (IE:ȊO) */
-.XWGCMN_IEO {
- border-width:1px;
- background-color:transparent;
- border-color:#000000;
- border-style:none;
-/* z-index:-1;*/
-}
-
-/* OtBbN (FF & Safari) */
-.XWGCMN_GEKKOS {
-/* border-width:0px;*/
- border-style:none;
-}
-.XWGCMN_GEKKOO {
- border-width:1px;
- background-color:transparent;
- border-color:#000000;
- border-style:none;
-/* z-index:-1;*/
-}
-
-.XWGIMG {
- position:absolute;
- z-index:-1;
-}
-
-/* p̊{DIV */
-.XWGPGBASE {
- z-index:0;
- visibility:visible;
-}
-
-/* p̉e(sb1) */
-.XWGPGSB1 {
- overflow:hidden;
- position:absolute;
- z-index:-1;
- background-color:#000000;
- border-style:solid;
- border-width:1px;
- border-color:#000000;
-}
-
-/* p̉e(sb2,sb3) */
-.XWGPGSB2 {
- overflow:hidden;
- position:absolute;
- z-index:-1;
- background-color:#000000;
- border-style:solid;
- border-width:1px;
- border-color:#000000;
-}
-
-/* tH[̗vfDIVAy[W̊evf͂DIVɊ܂܂ */
-.XWGPGBODY {
- overflow:visible;
- position:absolute;
- visibility:visible;
- z-index:-1;
- background-color:#ffffff;
- border-color:#000000;
- -webkit-tap-highlight-color: rgba(0,0,0,0); /* for Android (bug: Issue 6721) */
-}
-
-/* tH[\܂őŜDIV */
-.XWGCOVER {
- position:absolute;
- z-index:999;
-}
-
-/* Scroll Area (TSsc1*) */
-.XWGSCR {
- visibility:visible;
- overflow:auto;
- position:absolute;
- z-index:-1; /* T-001634, T-001639, T-000697 */
- background-color:#ffffff;
- display:none; /* T-002714 */
-}
-
-/* Text Div (Banner) */
-.XWFBNRTXT {
- overflow:visible;
- position:absolute;
- z-index:-1;
- visibility:visible;
- letter-spacing:0px;
- background-color:transparent;
- font-size:10px;
- font-weight:normal;
- font-style:normal;
- font-family:MS Gothic,Hiragino Kaku Gothic ProN,Hiragino Kaku Gothic Pro,Hiragino Kaku Gothic ProN W3,Hiragino Kaku Gothic Pro W3,SimHei,Hiragino Sans GB W3,sans-serif;
- white-space:nowrap;
-}
-/* Dialog Frame (XWEB.Frame.xxx) */
-/* _CAO\Captiono[(FJSŌ܂) */
-.XWFRM_CAP {
- cursor:pointer;
- font-family:"MS UI Gothic";
- font-size:11pt;
- font-style:normal;
-}
-
-/* QƃEBhEpStyle */
-
-/* iݏ(ʍ) */
-.XWMW_WH {
- background-color:#FFFFFF;
- color:#000000;
- font-family:"MS UI Gothic";
- font-style:normal;
- font-size:9pt;
- white-space:nowrap;
-}
-.XWMW_WHINP {
- font-family:MS Gothic,Hiragino Kaku Gothic ProN,Hiragino Kaku Gothic Pro,Hiragino Kaku Gothic ProN W3,Hiragino Kaku Gothic Pro W3,SimHei,Hiragino Sans GB W3,sans-serif;
- font-style:normal;
- color:#000000;
-}
-
-/* wb_Z (TH) */
-.XWMWTH {
- white-space:nowrap;
- height:18px;
-}
-/* wb_Z (wb_) */
-.XWMWHDR {
- overflow:hidden;
- font-family:MS Gothic,Hiragino Kaku Gothic ProN,Hiragino Kaku Gothic Pro,Hiragino Kaku Gothic ProN W3,Hiragino Kaku Gothic Pro W3,SimHei,Hiragino Sans GB W3,sans-serif;
- font-style:normal;
- white-space:nowrap;
- height:18px;
- line-height:18px;
-}
-/* ׃Z */
-.XWMWCEL {
- overflow:hidden;
- font-family:MS Gothic,Hiragino Kaku Gothic ProN,Hiragino Kaku Gothic Pro,Hiragino Kaku Gothic ProN W3,Hiragino Kaku Gothic Pro W3,SimHei,Hiragino Sans GB W3,sans-serif;
- font-style:normal;
- white-space:nowrap;
- height:16px;
- line-height:18px;
-}
-/* y[W\ */
-.XWMPGINFO {
- font-family:MS UI Gothic,sans-serif;
- font-size:11px;
-}
-/* {^\ */
-.XWMWBTN {
- width:60px;
- border-style:solid;
- border-width:2px;
- border-color:#555555;
- background-color:Silver;
- line-height:18px;
-}
-
-/* Define Font (No.2525)*/
-.XWGOTHIC {
- font-weight:normal;
- font-family:MS Gothic,Hiragino Kaku Gothic ProN,Hiragino Kaku Gothic Pro,Hiragino Kaku Gothic ProN W3,Hiragino Kaku Gothic Pro W3,SimHei,Hiragino Sans GB W3;
-}
-.XWMINCHO {
- font-weight:normal;
- font-family:MS Mincho,Hiragino Mincho ProN,Hiragino Mincho Pro,Hiragino Mincho ProN W3,Hiragino Mincho Pro W3,SimSun,Hiragino Sans GB W3;
-}
-.XWPGOTHIC {
- font-weight:normal;
- font-family:MS PGothic,MS UI Gothic,Meiryo,Hiragino Kaku Gothic ProN,Hiragino Kaku Gothic Pro,Hiragino Kaku Gothic ProN W3,Hiragino Kaku Gothic Pro W3,SimHei,Hiragino Sans GB W3,Osaka,sans-serif;
-}
-.XWPMINCHO {
- font-weight:normal;
- font-family:MS PMincho,Hiragino Mincho ProN,Hiragino Mincho Pro,Hiragino Mincho ProN W3,Hiragino Mincho Pro W3,SimSun,Hiragino Sans GB W3;
-}
-/* - (ȑ̎) (T-000849)- */
-.XW_ZH_CN_SimHei {
- font-weight:normal;
- font-family:SimHei;
-}
-.XW_ZH_CN_NSimSum {
- font-weight:normal;
- font-family:NSimSun,KaiTi,FangSong;
-}
-.XW_ZH_CN_YaHei {
- font-weight:normal;
- font-family:Microsoft YaHei;
-}
-/* - (ɑ̎) (T-000849)- */
-.XW_ZH_TW_JhengHei {
- font-weight:normal;
- font-family:Microsoft JhengHei;
-}
-.XW_ZH_TW_MingLiU {
- font-weight:normal;
- font-family:MingLiU;
-}
-.XW_ZH_TW_PJhengHei {
- font-weight:normal;
- font-family:Microsoft JhengHei;
-}
-.XW_ZH_TW_PMingLiU {
- font-weight:normal;
- font-family:PMingLiU;
-}
-/* - ؍ (T-000849)- */
-.XW_KO_DotumChe {
- font-weight:normal;
- font-family:DotumChe;
-}
-.XW_KO_BatangChe {
- font-weight:normal;
- font-family:BatangChe,GungsuhChe;
-}
-.XW_KO_Dotum {
- font-weight:normal;
- font-family:Dotum;
-}
-.XW_KO_Batang {
- font-weight:normal;
- font-family:Batang,Gungsuh;
-}
-/* - STD Font (T-000849)- */
-.XW_Courier {
- font-weight:normal;
- font-family:Courier New,Courier;
-}
-.XW_Helvetica {
- font-weight:normal;
- font-family:Arial,Helvetica;
-}
-.XW_TimesRoman {
- font-weight:normal;
- font-family:Times New Roman;
-}
-/* for IE10 hidden input box clear button */
-input::-ms-clear {
- visibility:hidden;
- width:0;
-}
-
-/* End of File */
diff --git a/AgileWorks/WebContent/TSlib/generator/pageSupportScript.js b/AgileWorks/WebContent/TSlib/generator/pageSupportScript.js
deleted file mode 100644
index 4a643d9a225b9070cd36a5982e6762e3e396a8d1..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/TSlib/generator/pageSupportScript.js
+++ /dev/null
@@ -1,849 +0,0 @@
-// Copyright (C) 2010 ATLED CORP. All rights Reserved.
-//
-var TScp=0, // CurrentPageNo
- TSsp=1, // SelectedPageNo
- TSmx=0, // PageMargin X
- TSmy=0, // PageMargin Y
- TSpw=0, // PageWidth
- TSph=0, // PageHeight
- TSsw=0, // ScrollWidth
- TSsh=0, // ScrollHeight
- TSff="", // Current FontFamily
- TScl="#000000", // Current Color
- TSfw="normal", // Current FontWeight
- TSfs=12, // CurrentFontSize
- TSsc=0, // CharSpacing
- TSsl=0, // LineSpacing
- TSls="solid", // LineStyle
- TSlw=1, // LineWidth
- TSif=false, // CjVCYhtO
-// TSpa=[], // y[Ẅ
-// TSsa=[], // XN[̈
- TSma=0, // MouseOverType 0:Border / 1:BackGround / 2:0+1
- TSmc="#c0ffc0", // MouseOverBackGroundColor
- TSfa=0, // FocusType 0:Border / 1:BackGround / 2:0+1
- TSfc="#c0ffff", // FocusBackGroundColor
- TSmbk="", // MouseOverBackGroundColor(Backup)
- TSfbk="", // FocusBackGroundColor(Backup)
- TSobj=null, // Temporary Object
- TSAp1=0, // p^[(n_)
- TSAp2=0, // p^[(I_)
- TSAsX1=10, // ̑傫wW(n_)
- TSAsY1=6, // ̑傫xW(n_)
- TSAsX2=10, // ̑傫wW(I_)
- TSAsY2=6, // ̑傫xW(I_)
- TSoBl=null, // R{{bNXBlur
- TSMe=0, // IE@\֘A
- TSFm=""; // IE@\֘A
-//TSFe=new Array(); // IE@\֘A
-//TSsel=new Array(); // R{{bNXI`FbN
-//TSsan=new Array(); // VXN[̈惊Xg
-//TSsat=new Array(); // VXN[̈^O
-//TSaRdOff=new Array(); // WI{^OFF}[NArray
-
-function TSisE(o,id){
-// var ido=document.getElementById(id);
- var ido;
- if(id){
- ido=document.getElementById(id);
- }else{
- ido=o;
- }
- var editmode = true;
- try {
- editmode = isEditMode();
- } catch (e) {}
- if(ido){
- return (!ido.disabled && editmode);
- }else{
- return (!o.disabled && editmode);
- }
-}
-
-// FύX
-function TSSC(c){
- TScl=c;
-}
-
-// TCYE}[W(gpH)
-function TSIZ(x,y,w,h){
- TSmx=x;
- TSmy=y;
- TSpw=w;
- TSph=h;
- TScp=0;
-}
-
-// BeginPage
-function TSBP(x,y,w,h){
- TScp++;
- TSmx=x;
- TSmy=y;
- TSPS(w,h);
-// TSpa=[];
-// TSsa=[];
-}
-
-// y[W`(y[Ẅ)
-//function TSWP(){
-// TSpa=[];
-//}
-
-// y[W`(XN[̈)
-//function TSWS(){
-// TSCBS("TS52","#dd0044");
-// TSCBS("TS53","#000000");
-// TSsa=[];
-//}
-
-// FontFamily, FontSizeݒ
-function TSSF(f,s){
- if(f!=""){
- TSff=f;
- }
- TSfs=s;
-}
-
-// Ԑݒ CharSpacing
-function TSSS1(n){
- TSsc=n;
-}
-
-// sԐݒ LineSpacing
-function TSSS2(n){
- TSsl=n;
-};
-
-// FontWeightݒ
-function TSSFW(s){
- TSfw=s;
-}
-
-// LineStyleݒ
-function TSSLS(s){
- TSls=s;
-}
-
-// y[W}[WύX
-function TSSTX(o,x){
- o.style.left=x+"px";
-}
-
-// y[W}[WύX
-function TSSTY(o,y){
- o.style.top=y+"px";
-}
-
-// y[WύX
-function TSSTW(o,w){
- o.style.width=w+"px";
-}
-
-// y[WύX
-function TSSTH(o,h){
- o.style.height=h+"px";
-}
-
-// y[WTCYύX
-function TSPS(w,h){
- var o;
- TSpw=w;
- TSph=h;
- o=document.getElementById("TSb1"+TScp);
- if(o){
- TSSTX(o,TSmx-1);
- TSSTY(o,TSmy-1);
- TSSTW(o,w+2);
- TSSTH(o,h+2);
- }
- o=document.getElementById("TSb2"+TScp);
- if(o){
- TSSTX(o,TSmx+w+1);
- TSSTY(o,TSmy+1);
- TSSTW(o,2);
- TSSTH(o,h+2);
- }
- o=document.getElementById("TSb3"+TScp);
- if(o){
- TSSTX(o,TSmx+1);
- TSSTY(o,TSmy+h+1);
- TSSTW(o,w+2);
- TSSTH(o,2);
- }
- o=document.getElementById("TSpg"+TScp);
- if(o){
- TSSTX(o,TSmx);
- TSSTY(o,TSmy);
- TSSTW(o,w);
- TSSTH(o,h);
- }
-}
-
-function TSURL(s,u,t,a){
- var s = "
"+s+" ";
- return s;
-}
-
-function TSVI(p){
- var o=document.getElementById(p);
- if(o){
- o.style.visibility="visible";
- o.style.display="";
- }
-}
-
-function TSHI(p){
- var o=document.getElementById(p);
- if(o){
- o.style.visibility="hidden";
- o.style.display="none";
- }
-}
-
-function selectPage(n){
- TSSP(n,false);
-}
-
-function TSSP(n,f){
- if(f || (!f && (n!=TSsp))){
- TSHI("TSb1"+TSsp);
- TSHI("TSb2"+TSsp);
- TSHI("TSb3"+TSsp);
- TSHI("TSpg"+TSsp);
- TSHI("TSsc"+TSsp);
- TSsp=n;
- TSVI("TSb1"+TSsp);
- TSVI("TSb2"+TSsp);
- TSVI("TSb3"+TSsp);
- TSVI("TSpg"+TSsp);
- TSVI("TSsc"+TSsp);
- TSmx=document.getElementById("TSpg"+TSsp).style.pixelLeft;
- TSmy=document.getElementById("TSpg"+TSsp).style.pixelTop;
- try{
- doTSSP(n,f)
- }catch(e){
- }
- }
-}
-
-// R{{bNXEXg{bNX̏ԖIΉ(selectedIndex = -1)
-function TSNC(){
- var TSsel=XGEN.TSsel;
- len=TSsel.length;
- for(var i=0;i
0)?o.id+"_A1":"";
- var o_arw=document.createElement('div');
- o_arw.id=aid;
- o_arw.style.visibility=obj.style.visibility;
- obj.parentNode.appendChild(o_arw);
- o_arw.TSls=o.TSls;
- o_arw.TSscr=o.TSscr;
- TS_TSARW(o_arw,1,x1,y1,x2,y2,lw,col);
- }
- if(TSAp2!=0){
- aid=(o.id.length>0)?o.id+"_A2":"";
- var o_arw=document.createElement('div');
- o_arw.id=aid;
- o_arw.style.visibility=obj.style.visibility;
- obj.parentNode.appendChild(o_arw);
- o_arw.TSls=o.TSls;
- o_arw.TSscr=o.TSscr;
- TS_TSARW(o_arw,2,x1,y1,x2,y2,lw,col);
- }
- }else if(o.TSType=='circle'||o.TSType=='arc'){
- var x=Number(o.TSx);
- var y=Number(o.TSy);
- var rx=Number(o.TSrx);
- var ry=Number(o.TSry);
- var st=Number(o.TSst);
- var ed=Number(o.TSed);
- var step=Number(o.TSstep);
- if(rx==ry){
- if(rx<30){
- step=20;
- }else if(rx<50){
- step=15;
- }else{
- step=5;
- }
- }
- var df=Number(o.TSdf);
- var obj=document.getElementById(o.id);
- TS_TSPLY(obj,x,y,rx,ry,st,ed,step,df,lw,o.TSls,col,scr);
- }
- }else{
-// alert("UNDEF="+ o.id);
- }
- }
-}
-
-function TS_TSPLY(o,x,y,rx,ry,st,ed,step,df,lw,ls,col,scr){
- var x2,y2;
- var PI=3.14159265/180;
- var lw2=Math.floor(lw/2);
- var rad=(st+df)*PI;
- var x1=Math.round(rx*Math.cos(rad))+rx+lw2;
- var y1=Math.round(ry*Math.sin(rad))+ry+lw2;
-
- var bDraw=true; //T-000706
- var rStop=ed+df;
- for(var i=st+df;bDraw;i+=step){
- if(i>=rStop){ //T-000706
- i=rStop;
- bDraw=false;
- }
- rad=i*PI;
- x2=Math.round(rx*Math.cos(rad))+rx+lw2;
- y2=Math.round(ry*Math.sin(rad))+ry+lw2;
- if((x1!=x2)||(y1!=y2)){ //_͕\Ȃ
- var o_arw=document.createElement('div');
- o_arw.id=o.id+"L";
- o_arw.style.position="absolute";
- o_arw.style.overflow="hidden";
- o_arw.style.border="none";
- o_arw.style.borderStyle=ls;
- TS_TSSLN2(o_arw,x1,y1,x2,y2,lw,col,false,0,0,0,0,scr);
- o.appendChild(o_arw);
- }
- x1=x2;
- y1=y2;
- }
-};
-function TS_FIGSTYLE(){
- if (isUntilIE8()){
- return isIE() ? "XWGCMN" : "XWGCMN XWGCMN_GEKKOS"
- } else {
- return "XWGCMN XWGCMN_IES"
- }
-}
-function TS_TSSLN2(o,x1,y1,x2,y2,lw,col,child,lf,tp,wd,ht,scr){
- if(x1==x2){// Vertical
- px=x1-Math.floor(lw/2);
- if(y1=x2)?(x1-x2):(x2-x1);
- var dy=(y1>=y2)?(y1-y2):(y2-y1);
- var sx=(x1<=x2)?1:-1;
- var sy=(y1<=y2)?1:-1;
- if(dx>=dy){
- var a0=dy*2;
- var a1=a0-dx*2;
- var a2=a0-dx;
- var y=y1-Math.floor(lw/2);
- var len=0;
- var ph=lw;
- var osx=sx; // T-000707
- var osy=sy;
- for(var x=x1;((sx>=0)?(x<=x2):(x>=x2));x+=sx){
- len++;
- if(a2>=0){
- if(bFlip){ // T-000707
- var leng=Math.sqrt(Math.pow(osx-x,2)+Math.pow(osy-y,2));
- if(leng>bLimit){
- osx=x;
- osy=y;
- bDraw=!bDraw;
- }
- }
- px=((sx>0)?(x-len+1):x)-Math.floor(lw/2)-lf;
- py=y-tp;
- pw=(len>lw)?len:lw;
- var ch=document.createElement('div');
- ch.style.position="absolute";
- ch.style.overflow="hidden";
- ch.style.border="none";
- ch.style.left=px+"px";
- ch.style.top=py+"px";
- ch.style.width=pw+"px";
- ch.style.height=ph+"px";
- ch.style.backgroundColor=col;
- if(bFlip){ // T-000707
- ch.style.visibility=(bDraw?"visible":"hidden");
- }
- o.appendChild(ch);
- y+=sy;
- a2+=a1;
- len=0;
- }else{
- a2+=a0;
- }
- }
- if(len!=0){
- x-=sx;
- px=((sx>0)?(x-len+1):x)-Math.floor(lw/2)-lf;
- py=y-tp;
- pw=(len>lw)?len:lw;
- var ch=document.createElement('div');
- ch.style.position="absolute";
- ch.style.overflow="hidden";
- ch.style.border="none";
- ch.style.left=px+"px";
- ch.style.top=py+"px";
- ch.style.width=pw+"px";
- ch.style.height=ph+"px";
- ch.style.backgroundColor=col;
- o.appendChild(ch);
- }
- }else{
- var a0=dx*2;
- var a1=a0-dy*2;
- var a2=a0-dy;
- var x=x1-Math.floor(lw/2);
- var len=0;
- var pw=(len>lw)?len:lw;
- var osx=sx; // T-000707
- var osy=sy;
- for(var y=y1;((sy>=0)?(y<=y2):(y>=y2));y+=sy){
- len++;
- if(a2>=0){
- if(bFlip){ // T-000707
- var leng=Math.sqrt(Math.pow(osx-x,2)+Math.pow(osy-y,2));
- if(leng>bLimit){
- osx=x;
- osy=y;
- bDraw=!bDraw;
- }
- }
- py=((sy>0)?(y-len+1):y)-Math.floor(lw/2)-tp;
- px=x-lf;
- ph=(len>lw)?len:lw;
- var ch=document.createElement('div');
- ch.style.position="absolute";
- ch.style.overflow="hidden";
- ch.style.border="none";
- ch.style.left=px+"px";
- ch.style.top=py+"px";
- ch.style.width=pw+"px";
- ch.style.height=ph+"px";
- ch.style.backgroundColor=col;
- if(bFlip){ // T-000707
- ch.style.visibility=(bDraw?"visible":"hidden");
- }
- o.appendChild(ch);
- x+=sx;
- a2+=a1;
- len=0;
- }else{
- a2+=a0;
- }
- }
- if(len!=0){
- y-=sy;
- py=((sy>0)?(y-len+1):y)-Math.floor(lw/2)-tp;
- px=x-lf;
- ph=(len>lw)?len:lw;
- var ch=document.createElement('div');
- ch.style.position="absolute";
- ch.style.overflow="hidden";
- ch.style.border="none";
- ch.style.left=px+"px";
- ch.style.top=py+"px";
- ch.style.width=pw+"px";
- ch.style.height=ph+"px";
- ch.style.backgroundColor=col;
- o.appendChild(ch);
- }
- }
-
- }
-}
-
-// ̕`{
-function TS_TSARW(o,ptn,x1,y1,x2,y2,lw,col){
- var rad,vc,vs,dX,dY,x0,y0,xL,yL,xR,yR,xNL,yNL,xNR,yNR,typ,lw2;
- var PI=3.14159265/180;
- lw2=Math.floor(lw/2);
- typ=(ptn!=2)?TSAp1:TSAp2;
- dX=(ptn!=2)?TSAsX1:TSAsX2;
- dY=(ptn!=2)?TSAsY1:TSAsY2;
-
- rad=Math.atan2(y2-y1,x2-x1);
- vc=Math.cos(rad);
- vs=Math.sin(rad);
- if(ptn==1){
- x0=x1;
- y0=y1;
- xL=dX;
- yL=dY;
- xR=dX;
- yR=-dY;
- }else{
- x0=x2;
- y0=y2;
- xL=-dX;
- yL=-dY;
- xR=-dX;
- yR=dY;
- }
- xNL=x0+(xL*vc)-(yL*vs);
- yNL=y0+(xL*vs)+(yL*vc);
- xNR=x0+(xR*vc)-(yR*vs);
- yNR=y0+(xR*vs)+(yR*vc);
-
- switch(typ){
- case 1:
- case 2: //arrow.
- minX=(xNLxNR)?xNL:xNR;
- maxX=(x0>maxX)?x0:maxX;
- minY=(yNLyNR)?yNL:yNR;
- maxY=(y0>maxY)?y0:maxY;
- mw=maxX-minX+1;
- mh=maxY-minY+1;
-
- o.style.position="absolute";
- o.style.overflow="hidden";
- o.style.border="none";
- o.style.left=minX+"px";
- o.style.top=minY+"px";
- o.style.width=mw+"px";
- o.style.height=mh+"px";
- o.style.backgroundColor="transparent";
- if(typ==2){
- TS_TSSLN2(o,xNL,yNL,xNR,yNR,lw,col,true,minX,minY,mw,mh);
- }
- TS_TSSLN2(o,x0,y0,xNL,yNL,lw,col,true,minX,minY,mw,mh);
- TS_TSSLN2(o,x0,y0,xNR,yNR,lw,col,true,minX,minY,mw,mh);
- break;
- case 3: //square.
- o.style.position="absolute";
- o.style.overflow="hidden";
- o.style.border="none";
- o.style.left=(x0-dX)+"px";
- o.style.top=(y0-dX)+"px";
- o.style.width=(dX*2+lw)+"px";
- o.style.height=(dX*2+lw)+"px";
- o.style.backgroundColor="transparent";
- TS_TSPLY(o,x0,y0,dX,dX,0,360,90,rad/PI+45,lw,o.TSls,col,Number(o.TSscr));
- break;
- case 4:
- o.style.position="absolute";
- o.style.overflow="hidden";
- o.style.border="none";
- o.style.left=(x0-dX)+"px";
- o.style.top=(y0-dX)+"px";
- o.style.width=(dX*2+lw)+"px";
- o.style.height=(dX*2+lw)+"px";
- o.style.backgroundColor="transparent";
- TS_TSPLY(o,x0,y0,dX,dX,0,360,90,rad/PI,lw,o.TSls,col,Number(o.TSscr));
- break;
- case 5: // circle.
- o.style.position="absolute";
- o.style.overflow="hidden";
- o.style.border="none";
- o.style.left=(x0-dX)+"px";
- o.style.top=(y0-dX)+"px";
- o.style.width=(dX*2+lw)+"px";
- o.style.height=(dX*2+lw)+"px";
- o.style.backgroundColor="transparent";
- TS_TSPLY(o,x0,x0,dX,dX,0,360,3,0,lw,o.TSls,col,Number(o.TSscr));
- break;
- default:
- break;
- }
-}
-
-/**
- * getPageSupportScript()
-*/
-
-TSff="MS Gothic"; //default font.
-
-function TSCB(s,c){// ʏ{[_[\
- var z_index=XWEB.bIE ? 9999 : 1;
- for(var i=0;i<4;i++){
- document.write("
");
- }
-}
-function TSCBS(s,c){// XN[\{[_[\
- var z_index=XWEB.bIE ? 9999 : 1;
- for(var i=0;i<4;i++){
- document.write("
");
- }
-}
-
-//-- end of file.
diff --git a/AgileWorks/WebContent/TSlib/images/alarm_icon.gif b/AgileWorks/WebContent/TSlib/images/alarm_icon.gif
deleted file mode 100644
index 654f7b8d70b4a9085b339bb0a6dbca0958e9492a..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/TSlib/images/alarm_icon.gif and /dev/null differ
diff --git a/AgileWorks/WebContent/TSlib/images/arrows/arrow_down_icon.gif b/AgileWorks/WebContent/TSlib/images/arrows/arrow_down_icon.gif
deleted file mode 100644
index ed65c680c02c4f9043bedf5c36aafab1c5d64735..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/TSlib/images/arrows/arrow_down_icon.gif and /dev/null differ
diff --git a/AgileWorks/WebContent/TSlib/images/arrows/arrow_left_icon.gif b/AgileWorks/WebContent/TSlib/images/arrows/arrow_left_icon.gif
deleted file mode 100644
index 84a1c08ee1b6f1f880171a9eac0ef70041ab4152..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/TSlib/images/arrows/arrow_left_icon.gif and /dev/null differ
diff --git a/AgileWorks/WebContent/TSlib/images/arrows/arrow_right_icon.gif b/AgileWorks/WebContent/TSlib/images/arrows/arrow_right_icon.gif
deleted file mode 100644
index c1d37a311b74c1039e008e97d3f2b014b9077293..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/TSlib/images/arrows/arrow_right_icon.gif and /dev/null differ
diff --git a/AgileWorks/WebContent/TSlib/images/arrows/arrow_up_icon.gif b/AgileWorks/WebContent/TSlib/images/arrows/arrow_up_icon.gif
deleted file mode 100644
index 9fa05c5a7d50841cfe10a8aacb2d9a0c9d2bfc5b..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/TSlib/images/arrows/arrow_up_icon.gif and /dev/null differ
diff --git a/AgileWorks/WebContent/TSlib/images/buttons/btn_01.gif b/AgileWorks/WebContent/TSlib/images/buttons/btn_01.gif
deleted file mode 100644
index f83e4e9e48745b29bd9d7a33cf3c68cce335a8ae..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/TSlib/images/buttons/btn_01.gif and /dev/null differ
diff --git a/AgileWorks/WebContent/TSlib/images/buttons/btn_02.gif b/AgileWorks/WebContent/TSlib/images/buttons/btn_02.gif
deleted file mode 100644
index f2b7e796ba1bc2aa6f02f8cf6f3fba8b10eaf40f..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/TSlib/images/buttons/btn_02.gif and /dev/null differ
diff --git a/AgileWorks/WebContent/TSlib/images/buttons/del_icon.gif b/AgileWorks/WebContent/TSlib/images/buttons/del_icon.gif
deleted file mode 100644
index eb19aed3a8cef15b630dde56752b18a21b95bd72..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/TSlib/images/buttons/del_icon.gif and /dev/null differ
diff --git a/AgileWorks/WebContent/TSlib/images/buttons/dust_icon.gif b/AgileWorks/WebContent/TSlib/images/buttons/dust_icon.gif
deleted file mode 100644
index f04e24a72525ff2df9a0662f8fc7336de61356f4..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/TSlib/images/buttons/dust_icon.gif and /dev/null differ
diff --git a/AgileWorks/WebContent/TSlib/images/buttons/edit_icon.gif b/AgileWorks/WebContent/TSlib/images/buttons/edit_icon.gif
deleted file mode 100644
index 254176533f1acace7ece8802572dba4dcb5eda15..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/TSlib/images/buttons/edit_icon.gif and /dev/null differ
diff --git a/AgileWorks/WebContent/TSlib/images/buttons/new_icon.gif b/AgileWorks/WebContent/TSlib/images/buttons/new_icon.gif
deleted file mode 100644
index 28f34cbfd11056a067da7cb60a65a715b86bc732..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/TSlib/images/buttons/new_icon.gif and /dev/null differ
diff --git a/AgileWorks/WebContent/TSlib/images/buttons/search_icon.gif b/AgileWorks/WebContent/TSlib/images/buttons/search_icon.gif
deleted file mode 100644
index 4a4226749281a080fa30d14b0e0eb325983dbba6..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/TSlib/images/buttons/search_icon.gif and /dev/null differ
diff --git a/AgileWorks/WebContent/TSlib/images/error_icon.gif b/AgileWorks/WebContent/TSlib/images/error_icon.gif
deleted file mode 100644
index 394a23ee731ae0df1e1cbe2fe31128e27f47e729..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/TSlib/images/error_icon.gif and /dev/null differ
diff --git a/AgileWorks/WebContent/TSlib/images/frame/close.gif b/AgileWorks/WebContent/TSlib/images/frame/close.gif
deleted file mode 100644
index 513061e1faa96324202d1ca1279436ca8136c88e..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/TSlib/images/frame/close.gif and /dev/null differ
diff --git a/AgileWorks/WebContent/TSlib/images/frame/close_aqua.gif b/AgileWorks/WebContent/TSlib/images/frame/close_aqua.gif
deleted file mode 100644
index 447f29ab5edc02f74036197fa4bbfed60ca56867..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/TSlib/images/frame/close_aqua.gif and /dev/null differ
diff --git a/AgileWorks/WebContent/TSlib/images/frame/close_aqua1.gif b/AgileWorks/WebContent/TSlib/images/frame/close_aqua1.gif
deleted file mode 100644
index 47d70a479ad7e6e3e3fce57029b5c3a8b31bfb38..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/TSlib/images/frame/close_aqua1.gif and /dev/null differ
diff --git a/AgileWorks/WebContent/TSlib/images/frame/close_vista.gif b/AgileWorks/WebContent/TSlib/images/frame/close_vista.gif
deleted file mode 100644
index 6ed33f0b71bd997c99d43f07228a3d04641e67b1..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/TSlib/images/frame/close_vista.gif and /dev/null differ
diff --git a/AgileWorks/WebContent/TSlib/images/frame/dust_icon.gif b/AgileWorks/WebContent/TSlib/images/frame/dust_icon.gif
deleted file mode 100644
index f04e24a72525ff2df9a0662f8fc7336de61356f4..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/TSlib/images/frame/dust_icon.gif and /dev/null differ
diff --git a/AgileWorks/WebContent/TSlib/images/frame/edit_icon.gif b/AgileWorks/WebContent/TSlib/images/frame/edit_icon.gif
deleted file mode 100644
index 254176533f1acace7ece8802572dba4dcb5eda15..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/TSlib/images/frame/edit_icon.gif and /dev/null differ
diff --git a/AgileWorks/WebContent/TSlib/images/frame/eraser.gif b/AgileWorks/WebContent/TSlib/images/frame/eraser.gif
deleted file mode 100644
index a2fdd2cca0534520622abf2d7d1a2f145ea07197..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/TSlib/images/frame/eraser.gif and /dev/null differ
diff --git a/AgileWorks/WebContent/TSlib/images/frame/new_icon.gif b/AgileWorks/WebContent/TSlib/images/frame/new_icon.gif
deleted file mode 100644
index 28f34cbfd11056a067da7cb60a65a715b86bc732..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/TSlib/images/frame/new_icon.gif and /dev/null differ
diff --git a/AgileWorks/WebContent/TSlib/images/frame/undo_icon.gif b/AgileWorks/WebContent/TSlib/images/frame/undo_icon.gif
deleted file mode 100644
index 57bb55a507d881b5c6822652f87472937f10a274..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/TSlib/images/frame/undo_icon.gif and /dev/null differ
diff --git a/AgileWorks/WebContent/TSlib/images/info_icon.gif b/AgileWorks/WebContent/TSlib/images/info_icon.gif
deleted file mode 100644
index 04e34297d4f6cb7769a34c03d3b50764889d95ec..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/TSlib/images/info_icon.gif and /dev/null differ
diff --git a/AgileWorks/WebContent/TSlib/images/menu_down.gif b/AgileWorks/WebContent/TSlib/images/menu_down.gif
deleted file mode 100644
index c292d2a53005357a1f290b86d835b36de61fed66..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/TSlib/images/menu_down.gif and /dev/null differ
diff --git a/AgileWorks/WebContent/TSlib/images/menu_up.gif b/AgileWorks/WebContent/TSlib/images/menu_up.gif
deleted file mode 100644
index f36804b76b572f55fd5a2f8dac47f380985b7290..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/TSlib/images/menu_up.gif and /dev/null differ
diff --git a/AgileWorks/WebContent/TSlib/images/question_icon.gif b/AgileWorks/WebContent/TSlib/images/question_icon.gif
deleted file mode 100644
index a7b5b6927dd7f609b27cca920872f62e98e5c2c2..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/TSlib/images/question_icon.gif and /dev/null differ
diff --git a/AgileWorks/WebContent/TSlib/images/transparent.gif b/AgileWorks/WebContent/TSlib/images/transparent.gif
deleted file mode 100644
index 35d42e808f0a8017b8d52a06be2f8fec0b466a66..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/TSlib/images/transparent.gif and /dev/null differ
diff --git a/AgileWorks/WebContent/TSlib/images/tree/tree_close.gif b/AgileWorks/WebContent/TSlib/images/tree/tree_close.gif
deleted file mode 100644
index 4b43863002edf98a3549c345bad8559d26b8bf5e..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/TSlib/images/tree/tree_close.gif and /dev/null differ
diff --git a/AgileWorks/WebContent/TSlib/images/tree/tree_item.gif b/AgileWorks/WebContent/TSlib/images/tree/tree_item.gif
deleted file mode 100644
index 469bc61ac71b20f1afae71b70a53af32326fe07e..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/TSlib/images/tree/tree_item.gif and /dev/null differ
diff --git a/AgileWorks/WebContent/TSlib/images/tree/tree_open.gif b/AgileWorks/WebContent/TSlib/images/tree/tree_open.gif
deleted file mode 100644
index 6a7694e5d43481fcf8dca4b404d4cd635121ff3b..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/TSlib/images/tree/tree_open.gif and /dev/null differ
diff --git a/AgileWorks/WebContent/TSlib/jkl-parsexml.js b/AgileWorks/WebContent/TSlib/jkl-parsexml.js
deleted file mode 100644
index c29d16fb5eb51a86e0bb3ae5fd4c57b7ca1caa0d..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/TSlib/jkl-parsexml.js
+++ /dev/null
@@ -1,687 +0,0 @@
-// ================================================================
-// jkl-parsexml.js ---- JavaScript Kantan Library for Parsing XML
-// Copyright 2005-2007 Kawasaki Yusuke
-// http://www.kawa.net/works/js/jkl/parsexml.html
-// ================================================================
-// v0.01 2005/05/18 first release
-// v0.02 2005/05/20 Opera 8.0beta may be abailable but somtimes crashed
-// v0.03 2005/05/20 overrideMimeType( "text/xml" );
-// v0.04 2005/05/21 class variables: REQUEST_TYPE, RESPONSE_TYPE
-// v0.05 2005/05/22 use Msxml2.DOMDocument.5.0 for GET method on IE6
-// v0.06 2005/05/22 CDATA_SECTION_NODE
-// v0.07 2005/05/23 use Microsoft.XMLDOM for GET method on IE6
-// v0.10 2005/10/11 new function: JKL.ParseXML.HTTP.responseText()
-// v0.11 2005/10/13 new sub class: JKL.ParseXML.Text, JSON and DOM.
-// v0.12 2005/10/14 new sub class: JKL.ParseXML.CSV and CSVmap.
-// v0.13 2005/10/28 bug fixed: TEXT_NODE regexp for white spaces
-// v0.14 2005/11/06 bug fixed: TEXT_NODE regexp at Safari
-// v0.15 2005/11/08 bug fixed: JKL.ParseXML.CSV.async() method
-// v0.16 2005/11/15 new sub class: LoadVars, and UTF-8 text on Safari
-// v0.18 2005/11/16 improve: UTF-8 text file on Safari
-// v0.19 2006/02/03 use XMLHTTPRequest instead of ActiveX on IE7,iCab
-// v0.20 2006/03/22 (skipped)
-// v0.21 2006/11/30 use ActiveX again on IE7
-// v0.22 2007/01/04 JKL.ParseXML.JSON.parseResponse() updated
-//
-// -- atled.
-// 2007/10/15 JKL.ParseXML.prototype.parseElement() modify.
-// modify: DP.5563
-// ================================================================
-
-if ( typeof(JKL) == 'undefined' ) JKL = function() {};
-
-// ================================================================
-// class: JKL.ParseXML
-
-JKL.ParseXML = function ( url, query, method ) {
- // debug.print( "new JKL.ParseXML( '"+url+"', '"+query+"', '"+method+"' );" );
- this.http = new JKL.ParseXML.HTTP( url, query, method, false );
- return this;
-};
-
-// ================================================================
-// class variables
-
-JKL.ParseXML.VERSION = "0.22";
-JKL.ParseXML.MIME_TYPE_XML = "text/xml";
-JKL.ParseXML.MAP_NODETYPE = [
- "",
- "ELEMENT_NODE", // 1
- "ATTRIBUTE_NODE", // 2
- "TEXT_NODE", // 3
- "CDATA_SECTION_NODE", // 4
- "ENTITY_REFERENCE_NODE", // 5
- "ENTITY_NODE", // 6
- "PROCESSING_INSTRUCTION_NODE", // 7
- "COMMENT_NODE", // 8
- "DOCUMENT_NODE", // 9
- "DOCUMENT_TYPE_NODE", // 10
- "DOCUMENT_FRAGMENT_NODE", // 11
- "NOTATION_NODE" // 12
-];
-
-// ================================================================
-// define callback function (ajax)
-
-JKL.ParseXML.prototype.async = function ( func, args ) {
- this.callback_func = func; // callback function
- this.callback_arg = args; // first argument
-};
-
-JKL.ParseXML.prototype.onerror = function ( func, args ) {
- this.onerror_func = func; // callback function
-};
-
-// ================================================================
-// method: parse()
-// return: parsed object
-// Download a file from remote server and parse it.
-
-JKL.ParseXML.prototype.parse = function () {
- if ( ! this.http ) return;
-
- // set onerror call back
- if ( this.onerror_func ) {
- this.http.onerror( this.onerror_func );
- }
-
- if ( this.callback_func ) { // async mode
- var copy = this;
- var proc = function() {
- if ( ! copy.http ) return;
- var data = copy.parseResponse();
- copy.callback_func( data, copy.callback_arg ); // call back
- };
- this.http.async( proc );
- }
-
- this.http.load();
-
- if ( ! this.callback_func ) { // sync mode
- var data = this.parseResponse();
- return data;
- }
-};
-
-// ================================================================
-// every child/children into array
-JKL.ParseXML.prototype.setOutputArrayAll = function () {
- this.setOutputArray( true );
-}
-// a child into scalar, children into array
-JKL.ParseXML.prototype.setOutputArrayAuto = function () {
- this.setOutputArray( null );
-}
-// every child/children into scalar (first sibiling only)
-JKL.ParseXML.prototype.setOutputArrayNever = function () {
- this.setOutputArray( false );
-}
-// specified child/children into array, other child/children into scalar
-JKL.ParseXML.prototype.setOutputArrayElements = function ( list ) {
- this.setOutputArray( list );
-}
-// specify how to treate child/children into scalar/array
-JKL.ParseXML.prototype.setOutputArray = function ( mode ) {
- if ( typeof(mode) == "string" ) {
- mode = [ mode ]; // string into array
- }
- if ( mode && typeof(mode) == "object" ) {
- if ( mode.length < 0 ) {
- mode = false; // false when array == []
- } else {
- var hash = {};
- for( var i=0; i" );
-
- var ntype = elem.nodeType;
- // COMMENT_NODE
- if ( ntype == 7 ) {
- return;
- }
-
- // TEXT_NODE CDATA_SECTION_NODE
-
- if ( ntype == 3 || ntype == 4 ) {
- // var bool = elem.nodeValue.match( /[^\u0000-\u0020]/ );
- var bool = elem.nodeValue.match( /[^\x00-\x20]/ ); // for Safari
- if ( bool == null ) return; // ignore white spaces
- // debug.print( "TEXT_NODE: "+elem.nodeValue.length+ " "+bool );
- return elem.nodeValue;
- }
-
- var retval;
- var cnt = {};
-
- // parse attributes
-
- var atts=elem.attributes;
- if ( atts && atts.length ) {
- retval = {};
- var leng=atts.length;
- for ( var i=0; i -1 ) {
- if ( text.charAt(nextquote+1) != '"' ) {
- break; // end of column
- }
- nextquote = text.indexOf( '"', nextquote+2 );
- }
- if ( nextquote < 0 ) {
- // unclosed quote
- } else if ( text.charAt(nextquote+1) == "," ) { // end of column
- var quoted = text.substr( pos+1, nextquote-pos-1 );
- quoted = quoted.replace(/""/g,'"');
- line[line.length] = quoted;
- pos = nextquote+2;
- continue;
- } else if ( text.charAt(nextquote+1) == "\n" || // end of line
- len==nextquote+1 ) { // end of file
- var quoted = text.substr( pos+1, nextquote-pos-1 );
- quoted = quoted.replace(/""/g,'"');
- line[line.length] = quoted;
- pos = nextquote+2;
- break;
- } else {
- // invalid column
- }
- }
- var nextcomma = text.indexOf( ",", pos );
- var nextnline = text.indexOf( "\n", pos );
- if ( nextnline < 0 ) nextnline = len;
- if ( nextcomma > -1 && nextcomma < nextnline ) {
- line[line.length] = text.substr( pos, nextcomma-pos );
- pos = nextcomma+1;
- } else { // end of line
- line[line.length] = text.substr( pos, nextnline-pos );
- pos = nextnline+1;
- break;
- }
- }
- if ( line.length >= 0 ) {
- table[table.length] = line; // push line
- }
- }
- if ( table.length < 0 ) return; // null data
- return table;
-};
-
-// ================================================================
-// class: JKL.ParseXML.CSVmap
-
-JKL.ParseXML.CSVmap = function ( url, query, method ) {
- // debug.print( "new JKL.ParseXML.CSVmap( '"+url+"', '"+query+"', '"+method+"' );" );
- this.http = new JKL.ParseXML.HTTP( url, query, method, true );
- return this;
-};
-
-JKL.ParseXML.CSVmap.prototype.parse = JKL.ParseXML.prototype.parse;
-JKL.ParseXML.CSVmap.prototype.async = JKL.ParseXML.prototype.async;
-JKL.ParseXML.CSVmap.prototype.onerror = JKL.ParseXML.prototype.onerror;
-JKL.ParseXML.CSVmap.prototype.parseCSV = JKL.ParseXML.CSV.prototype.parseCSV;
-
-JKL.ParseXML.CSVmap.prototype.parseResponse = function () {
- var text = this.http.responseText();
- var source = this.parseCSV( text );
- if ( ! source ) return;
- if ( source.length < 0 ) return;
-
- var title = source.shift(); // first line as title
- var data = [];
- for( var i=0; i -1 ) {
- var key = decodeURIComponent(list[i].substr(0,eq).replace("+","%20"));
- var val = decodeURIComponent(list[i].substr(eq+1).replace("+","%20"));
- hash[key] = val;
- } else {
- hash[list[i]] = "";
- }
- }
- return hash;
-};
-
-// ================================================================
-// class: JKL.ParseXML.HTTP
-// constructer: new JKL.ParseXML.HTTP()
-
-JKL.ParseXML.HTTP = function( url, query, method, textmode ) {
- // debug.print( "new JKL.ParseXML.HTTP( '"+url+"', '"+query+"', '"+method+"', '"+textmode+"' );" );
- this.url = url;
- if ( typeof(query) == "string" ) {
- this.query = query;
- } else {
- this.query = "";
- }
- if ( method ) {
- this.method = method;
- } else if ( typeof(query) == "string" ) {
- this.method = "POST";
- } else {
- this.method = "GET";
- }
- this.textmode = textmode ? true : false;
- this.req = null;
- this.xmldom_flag = false;
- this.onerror_func = null;
- this.callback_func = null;
- this.already_done = null;
- return this;
-};
-
-// ================================================================
-// class variables
-
-JKL.ParseXML.HTTP.REQUEST_TYPE = "application/x-www-form-urlencoded";
-JKL.ParseXML.HTTP.ACTIVEX_XMLDOM = "Microsoft.XMLDOM"; // Msxml2.DOMDocument.5.0
-JKL.ParseXML.HTTP.ACTIVEX_XMLHTTP = "Microsoft.XMLHTTP"; // Msxml2.XMLHTTP.3.0
-JKL.ParseXML.HTTP.EPOCH_TIMESTAMP = "Thu, 01 Jun 1970 00:00:00 GMT"
-
-// ================================================================
-
-JKL.ParseXML.HTTP.prototype.onerror = JKL.ParseXML.prototype.onerror;
-JKL.ParseXML.HTTP.prototype.async = function( func ) {
- this.async_func = func;
-}
-
-// ================================================================
-// [IE+IXMLDOMElement]
-// XML text/xml OK
-// XML application/rdf+xml OK
-// TEXT text/plain NG
-// TEXT others NG
-// [IE+IXMLHttpRequest]
-// XML text/xml OK
-// XML application/rdf+xml NG
-// TEXT text/plain OK
-// TEXT others OK
-// [Firefox+XMLHttpRequest]
-// XML text/xml OK
-// XML application/rdf+xml OK (overrideMimeType)
-// TEXT text/plain OK
-// TEXT others OK (overrideMimeType)
-// [Opera+XMLHttpRequest]
-// XML text/xml OK
-// XML application/rdf+xml OK
-// TEXT text/plain OK
-// TEXT others OK
-// ================================================================
-
-JKL.ParseXML.HTTP.prototype.load = function() {
- // create XMLHttpRequest object
- // W: Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; Trident/6.0)
- // ݊: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.2; Trident/6.0)
- var bIE10later=window.navigator.userAgent.match(/Trident\/[6-9]\.[\d]+/);
- if ( bIE10later && window.XMLHttpRequest ) { // IE10+ (DP.5563)
- this.req = new XMLHttpRequest();
- } else if ( window.ActiveXObject ) { // IE5.5,6,7
- var activex = JKL.ParseXML.HTTP.ACTIVEX_XMLHTTP; // IXMLHttpRequest
- if ( this.method == "GET" && ! this.textmode ) {
- // use IXMLDOMElement to accept any mime types
- // because overrideMimeType() is not available on IE6
- activex = JKL.ParseXML.HTTP.ACTIVEX_XMLDOM; // IXMLDOMElement
- }
- // debug.print( "new ActiveXObject( '"+activex+"' )" );
- this.req = new ActiveXObject( activex );
- } else if ( window.XMLHttpRequest ) { // Firefox, Opera, iCab
- // debug.print( "new XMLHttpRequest()" );
- this.req = new XMLHttpRequest();
- }
-
- // async mode when call back function is specified
- var async_flag = this.async_func ? true : false;
- // debug.print( "async: "+ async_flag );
-
- // open for XMLHTTPRequest (not for IXMLDOMElement)
- if ( typeof(this.req.send) != "undefined" ) {
- // debug.print( "open( '"+this.method+"', '"+this.url+"', "+async_flag+" );" );
- this.req.open( this.method, this.url, async_flag );
- }
-
-// // If-Modified-Since: Thu, 01 Jun 1970 00:00:00 GMT
-// if ( typeof(this.req.setRequestHeader) != "undefined" ) {
-// // debug.print( "If-Modified-Since"+JKL.ParseXML.HTTP.EPOCH_TIMESTAMP );
-// this.req.setRequestHeader( "If-Modified-Since", JKL.ParseXML.HTTP.EPOCH_TIMESTAMP );
-// }
-
- // Content-Type: application/x-www-form-urlencoded (request header)
- // Some server does not accept without request content-type.
- if ( typeof(this.req.setRequestHeader) != "undefined" ) {
- // debug.print( "Content-Type: "+JKL.ParseXML.HTTP.REQUEST_TYPE+" (request)" );
- this.req.setRequestHeader( "Content-Type", JKL.ParseXML.HTTP.REQUEST_TYPE );
- }
-
- // Content-Type: text/xml (response header)
- // FireFox does not accept other mime types like application/rdf+xml etc.
- if ( typeof(this.req.overrideMimeType) != "undefined" && ! this.textmode ) {
- // debug.print( "Content-Type: "+JKL.ParseXML.MIME_TYPE_XML+" (response)" );
- this.req.overrideMimeType( JKL.ParseXML.MIME_TYPE_XML );
- }
-
- // set call back handler when async mode
- if ( async_flag ) {
- var copy = this;
- copy.already_done = false; // not parsed yet
- var check_func = function () {
- if ( copy.req.readyState != 4 ) return;
- // debug.print( "readyState(async): "+copy.req.readyState );
- var succeed = copy.checkResponse();
- // debug.print( "checkResponse(async): "+succeed );
- if ( ! succeed ) return; // failed
- if ( copy.already_done ) return; // parse only once
- copy.already_done = true; // already parsed
- copy.async_func(); // call back async
- };
- this.req.onreadystatechange = check_func;
- // for document.implementation.createDocument
- // this.req.onload = check_func;
- }
-
- // send the request and query string
- if ( typeof(this.req.send) != "undefined" ) {
- // debug.print( "XMLHTTPRequest: send( '"+this.query+"' );" );
- this.req.send( this.query ); // XMLHTTPRequest
- } else if ( typeof(this.req.load) != "undefined" ) {
- // debug.print( "IXMLDOMElement: load( '"+this.url+"' );" );
- this.req.async = async_flag;
- this.req.load( this.url ); // IXMLDOMElement
- }
-
- // just return when async mode
- if ( async_flag ) return;
-
- var succeed = this.checkResponse();
- // debug.print( "checkResponse(sync): "+succeed );
-}
-
-// ================================================================
-// method: checkResponse()
-
-JKL.ParseXML.HTTP.prototype.checkResponse = function() {
- // parseError on IXMLDOMElement
- if ( this.req.parseError && this.req.parseError.errorCode != 0 ) {
- // debug.print( "parseError: "+this.req.parseError.reason );
- if ( this.onerror_func ) this.onerror_func( this.req.parseError.reason );
- return false; // failed
- }
-
- // HTTP response code
- if ( this.req.status-0 > 0 &&
- this.req.status != 200 && // OK
- this.req.status != 206 && // Partial Content
- this.req.status != 304 ) { // Not Modified
- // debug.print( "status: "+this.req.status );
- if ( this.onerror_func ) this.onerror_func( this.req.status );
- return false; // failed
- }
-
- return true; // succeed
-}
-
-// ================================================================
-// method: documentElement()
-// return: XML DOM in response body
-
-JKL.ParseXML.HTTP.prototype.documentElement = function() {
- // debug.print( "documentElement: "+this.req );
- if ( ! this.req ) return;
- if ( this.req.responseXML ) {
- return this.req.responseXML.documentElement; // XMLHTTPRequest
- } else {
- return this.req.documentElement; // IXMLDOMDocument
- }
-}
-
-// ================================================================
-// method: responseText()
-// return: text string in response body
-
-JKL.ParseXML.HTTP.prototype.responseText = function() {
- // debug.print( "responseText: "+this.req );
- if ( ! this.req ) return;
-
- // Safari and Konqueror cannot understand the encoding of text files.
- if ( navigator.appVersion.match( "KHTML" ) ) {
- var esc = escape( this.req.responseText );
-// debug.print( "escape: "+esc );
- if ( ! esc.match("%u") && esc.match("%") ) {
- return decodeURIComponent(esc);
- }
- }
-
- return this.req.responseText;
-}
-
-// ================================================================
-// http://msdn.microsoft.com/library/en-us/xmlsdk/html/d051f7c5-e882-42e8-a5b6-d1ce67af275c.asp
-// ================================================================
diff --git a/AgileWorks/WebContent/TSlib/mathcontext.js b/AgileWorks/WebContent/TSlib/mathcontext.js
deleted file mode 100644
index 2f14cb86a96c915054c661345a9e2d3fdff5b161..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/TSlib/mathcontext.js
+++ /dev/null
@@ -1,675 +0,0 @@
-/* Generated from 'MathContext.nrx' 8 Sep 2000 11:07:48 [v2.00] */
-/* Options: Binary Comments Crossref Format Java Logo Strictargs Strictcase Trace2 Verbose3 */
-//--package com.ibm.icu.math;
-
-/* ------------------------------------------------------------------ */
-/* MathContext -- Math context settings */
-/* ------------------------------------------------------------------ */
-/* Copyright IBM Corporation, 1997, 2000. All Rights Reserved. */
-/* */
-/* The MathContext object encapsulates the settings used by the */
-/* BigDecimal class; it could also be used by other arithmetics. */
-/* ------------------------------------------------------------------ */
-/* Notes: */
-/* */
-/* 1. The properties are checked for validity on construction, so */
-/* the BigDecimal class may assume that they are correct. */
-/* ------------------------------------------------------------------ */
-/* Author: Mike Cowlishaw */
-/* 1997.09.03 Initial version (edited from netrexx.lang.RexxSet) */
-/* 1997.09.12 Add lostDigits property */
-/* 1998.05.02 Make the class immutable and final; drop set methods */
-/* 1998.06.05 Add Round (rounding modes) property */
-/* 1998.06.25 Rename from DecimalContext; allow digits=0 */
-/* 1998.10.12 change to com.ibm.icu.math package */
-/* 1999.02.06 add javadoc comments */
-/* 1999.03.05 simplify; changes from discussion with J. Bloch */
-/* 1999.03.13 1.00 release to IBM Centre for Java Technology */
-/* 1999.07.10 1.04 flag serialization unused */
-/* 2000.01.01 1.06 copyright update */
-/* ------------------------------------------------------------------ */
-
-
-/* JavaScript conversion (c) 2003 STZ-IDA and PTV AG, Karlsruhe, Germany */
-
-
-
-/**
- * The MathContext immutable class encapsulates the
- * settings understood by the operator methods of the {@link BigDecimal}
- * class (and potentially other classes). Operator methods are those
- * that effect an operation on a number or a pair of numbers.
- *
- * The settings, which are not base-dependent, comprise:
- *
- * digits:
- * the number of digits (precision) to be used for an operation
- * form:
- * the form of any exponent that results from the operation
- * lostDigits:
- * whether checking for lost digits is enabled
- * roundingMode:
- * the algorithm to be used for rounding.
- *
- *
- * When provided, a MathContext object supplies the
- * settings for an operation directly.
- *
- * When MathContext.DEFAULT is provided for a
- * MathContext parameter then the default settings are used
- * (9, SCIENTIFIC, false, ROUND_HALF_UP).
- *
- * In the BigDecimal class, all methods which accept a
- * MathContext object defaults) also have a version of the
- * method which does not accept a MathContext parameter. These versions
- * carry out unlimited precision fixed point arithmetic (as though the
- * settings were (0, PLAIN, false, ROUND_HALF_UP).
- *
- * The instance variables are shared with default access (so they are
- * directly accessible to the BigDecimal class), but must
- * never be changed.
- *
- * The rounding mode constants have the same names and values as the
- * constants of the same name in java.math.BigDecimal, to
- * maintain compatibility with earlier versions of
- * BigDecimal.
- *
- * @see BigDecimal
- * @author Mike Cowlishaw
- * @stable ICU 2.0
- */
-
-//--public final class MathContext implements java.io.Serializable{
- //--private static final java.lang.String $0="MathContext.nrx";
-
- //-- methods
- MathContext.prototype.getDigits = getDigits;
- MathContext.prototype.getForm = getForm;
- MathContext.prototype.getLostDigits = getLostDigits;
- MathContext.prototype.getRoundingMode = getRoundingMode;
- MathContext.prototype.toString = toString;
- MathContext.prototype.isValidRound = isValidRound;
-
-
- /* ----- Properties ----- */
- /* properties public constant */
- /**
- * Plain (fixed point) notation, without any exponent.
- * Used as a setting to control the form of the result of a
- * BigDecimal operation.
- * A zero result in plain form may have a decimal part of one or
- * more zeros.
- *
- * @see #ENGINEERING
- * @see #SCIENTIFIC
- * @stable ICU 2.0
- */
- //--public static final int PLAIN=0; // [no exponent]
- MathContext.prototype.PLAIN=0; // [no exponent]
-
- /**
- * Standard floating point notation (with scientific exponential
- * format, where there is one digit before any decimal point).
- * Used as a setting to control the form of the result of a
- * BigDecimal operation.
- * A zero result in plain form may have a decimal part of one or
- * more zeros.
- *
- * @see #ENGINEERING
- * @see #PLAIN
- * @stable ICU 2.0
- */
- //--public static final int SCIENTIFIC=1; // 1 digit before .
- MathContext.prototype.SCIENTIFIC=1; // 1 digit before .
-
- /**
- * Standard floating point notation (with engineering exponential
- * format, where the power of ten is a multiple of 3).
- * Used as a setting to control the form of the result of a
- * BigDecimal operation.
- * A zero result in plain form may have a decimal part of one or
- * more zeros.
- *
- * @see #PLAIN
- * @see #SCIENTIFIC
- * @stable ICU 2.0
- */
- //--public static final int ENGINEERING=2; // 1-3 digits before .
- MathContext.prototype.ENGINEERING=2; // 1-3 digits before .
-
- // The rounding modes match the original BigDecimal class values
- /**
- * Rounding mode to round to a more positive number.
- * Used as a setting to control the rounding mode used during a
- * BigDecimal operation.
- *
- * If any of the discarded digits are non-zero then the result
- * should be rounded towards the next more positive digit.
- * @stable ICU 2.0
- */
- //--public static final int ROUND_CEILING=2;
- MathContext.prototype.ROUND_CEILING=2;
-
- /**
- * Rounding mode to round towards zero.
- * Used as a setting to control the rounding mode used during a
- * BigDecimal operation.
- *
- * All discarded digits are ignored (truncated). The result is
- * neither incremented nor decremented.
- * @stable ICU 2.0
- */
- //--public static final int ROUND_DOWN=1;
- MathContext.prototype.ROUND_DOWN=1;
-
- /**
- * Rounding mode to round to a more negative number.
- * Used as a setting to control the rounding mode used during a
- * BigDecimal operation.
- *
- * If any of the discarded digits are non-zero then the result
- * should be rounded towards the next more negative digit.
- * @stable ICU 2.0
- */
- //--public static final int ROUND_FLOOR=3;
- MathContext.prototype.ROUND_FLOOR=3;
-
- /**
- * Rounding mode to round to nearest neighbor, where an equidistant
- * value is rounded down.
- * Used as a setting to control the rounding mode used during a
- * BigDecimal operation.
- *
- * If the discarded digits represent greater than half (0.5 times)
- * the value of a one in the next position then the result should be
- * rounded up (away from zero). Otherwise the discarded digits are
- * ignored.
- * @stable ICU 2.0
- */
- //--public static final int ROUND_HALF_DOWN=5;
- MathContext.prototype.ROUND_HALF_DOWN=5;
-
- /**
- * Rounding mode to round to nearest neighbor, where an equidistant
- * value is rounded to the nearest even neighbor.
- * Used as a setting to control the rounding mode used during a
- * BigDecimal operation.
- *
- * If the discarded digits represent greater than half (0.5 times)
- * the value of a one in the next position then the result should be
- * rounded up (away from zero). If they represent less than half,
- * then the result should be rounded down.
- *
- * Otherwise (they represent exactly half) the result is rounded
- * down if its rightmost digit is even, or rounded up if its
- * rightmost digit is odd (to make an even digit).
- * @stable ICU 2.0
- */
- //--public static final int ROUND_HALF_EVEN=6;
- MathContext.prototype.ROUND_HALF_EVEN=6;
-
- /**
- * Rounding mode to round to nearest neighbor, where an equidistant
- * value is rounded up.
- * Used as a setting to control the rounding mode used during a
- * BigDecimal operation.
- *
- * If the discarded digits represent greater than or equal to half
- * (0.5 times) the value of a one in the next position then the result
- * should be rounded up (away from zero). Otherwise the discarded
- * digits are ignored.
- * @stable ICU 2.0
- */
- //--public static final int ROUND_HALF_UP=4;
- MathContext.prototype.ROUND_HALF_UP=4;
-
- /**
- * Rounding mode to assert that no rounding is necessary.
- * Used as a setting to control the rounding mode used during a
- * BigDecimal operation.
- *
- * Rounding (potential loss of information) is not permitted.
- * If any of the discarded digits are non-zero then an
- * ArithmeticException should be thrown.
- * @stable ICU 2.0
- */
- //--public static final int ROUND_UNNECESSARY=7;
- MathContext.prototype.ROUND_UNNECESSARY=7;
-
- /**
- * Rounding mode to round away from zero.
- * Used as a setting to control the rounding mode used during a
- * BigDecimal operation.
- *
- * If any of the discarded digits are non-zero then the result will
- * be rounded up (away from zero).
- * @stable ICU 2.0
- */
- //--public static final int ROUND_UP=0;
- MathContext.prototype.ROUND_UP=0;
-
-
- /* properties shared */
- /**
- * The number of digits (precision) to be used for an operation.
- * A value of 0 indicates that unlimited precision (as many digits
- * as are required) will be used.
- *
- * The {@link BigDecimal} operator methods use this value to
- * determine the precision of results.
- * Note that leading zeros (in the integer part of a number) are
- * never significant.
- *
- * digits will always be non-negative.
- *
- * @serial
- */
- //--int digits;
-
- /**
- * The form of results from an operation.
- *
- * The {@link BigDecimal} operator methods use this value to
- * determine the form of results, in particular whether and how
- * exponential notation should be used.
- *
- * @see #ENGINEERING
- * @see #PLAIN
- * @see #SCIENTIFIC
- * @serial
- */
- //--int form; // values for this must fit in a byte
-
- /**
- * Controls whether lost digits checking is enabled for an
- * operation.
- * Set to true to enable checking, or
- * to false to disable checking.
- *
- * When enabled, the {@link BigDecimal} operator methods check
- * the precision of their operand or operands, and throw an
- * ArithmeticException if an operand is more precise
- * than the digits setting (that is, digits would be lost).
- * When disabled, operands are rounded to the specified digits.
- *
- * @serial
- */
- //--boolean lostDigits;
-
- /**
- * The rounding algorithm to be used for an operation.
- *
- * The {@link BigDecimal} operator methods use this value to
- * determine the algorithm to be used when non-zero digits have to
- * be discarded in order to reduce the precision of a result.
- * The value must be one of the public constants whose name starts
- * with ROUND_.
- *
- * @see #ROUND_CEILING
- * @see #ROUND_DOWN
- * @see #ROUND_FLOOR
- * @see #ROUND_HALF_DOWN
- * @see #ROUND_HALF_EVEN
- * @see #ROUND_HALF_UP
- * @see #ROUND_UNNECESSARY
- * @see #ROUND_UP
- * @serial
- */
- //--int roundingMode;
-
- /* properties private constant */
- // default settings
- //--private static final int DEFAULT_FORM=SCIENTIFIC;
- //--private static final int DEFAULT_DIGITS=9;
- //--private static final boolean DEFAULT_LOSTDIGITS=false;
- //--private static final int DEFAULT_ROUNDINGMODE=ROUND_HALF_UP;
- MathContext.prototype.DEFAULT_FORM=MathContext.prototype.SCIENTIFIC;
- MathContext.prototype.DEFAULT_DIGITS=9;
- MathContext.prototype.DEFAULT_LOSTDIGITS=false;
- MathContext.prototype.DEFAULT_ROUNDINGMODE=MathContext.prototype.ROUND_HALF_UP;
-
- /* properties private constant */
-
- //--private static final int MIN_DIGITS=0; // smallest value for DIGITS.
- //--private static final int MAX_DIGITS=999999999; // largest value for DIGITS. If increased,
- MathContext.prototype.MIN_DIGITS=0; // smallest value for DIGITS.
- MathContext.prototype.MAX_DIGITS=999999999; // largest value for DIGITS. If increased,
- // the BigDecimal class may need update.
- // list of valid rounding mode values, most common two first
- //--private static final int ROUNDS[]=new int[]{ROUND_HALF_UP,ROUND_UNNECESSARY,ROUND_CEILING,ROUND_DOWN,ROUND_FLOOR,ROUND_HALF_DOWN,ROUND_HALF_EVEN,ROUND_UP};
- MathContext.prototype.ROUNDS=new Array(MathContext.prototype.ROUND_HALF_UP,MathContext.prototype.ROUND_UNNECESSARY,MathContext.prototype.ROUND_CEILING,MathContext.prototype.ROUND_DOWN,MathContext.prototype.ROUND_FLOOR,MathContext.prototype.ROUND_HALF_DOWN,MathContext.prototype.ROUND_HALF_EVEN,MathContext.prototype.ROUND_UP);
-
-
- //--private static final java.lang.String ROUNDWORDS[]=new java.lang.String[]{"ROUND_HALF_UP","ROUND_UNNECESSARY","ROUND_CEILING","ROUND_DOWN","ROUND_FLOOR","ROUND_HALF_DOWN","ROUND_HALF_EVEN","ROUND_UP"}; // matching names of the ROUNDS values
- MathContext.prototype.ROUNDWORDS=new Array("ROUND_HALF_UP","ROUND_UNNECESSARY","ROUND_CEILING","ROUND_DOWN","ROUND_FLOOR","ROUND_HALF_DOWN","ROUND_HALF_EVEN","ROUND_UP"); // matching names of the ROUNDS values
-
-
-
-
- /* properties private constant unused */
-
- // Serialization version
- //--private static final long serialVersionUID=7163376998892515376L;
-
- /* properties public constant */
- /**
- * A MathContext object initialized to the default
- * settings for general-purpose arithmetic. That is,
- * digits=9 form=SCIENTIFIC lostDigits=false
- * roundingMode=ROUND_HALF_UP.
- *
- * @see #SCIENTIFIC
- * @see #ROUND_HALF_UP
- * @stable ICU 2.0
- */
- //--public static final com.ibm.icu.math.MathContext DEFAULT=new com.ibm.icu.math.MathContext(DEFAULT_DIGITS,DEFAULT_FORM,DEFAULT_LOSTDIGITS,DEFAULT_ROUNDINGMODE);
- MathContext.prototype.DEFAULT=new MathContext(MathContext.prototype.DEFAULT_DIGITS,MathContext.prototype.DEFAULT_FORM,MathContext.prototype.DEFAULT_LOSTDIGITS,MathContext.prototype.DEFAULT_ROUNDINGMODE);
-
-
-
-
- /* ----- Constructors ----- */
-
- /**
- * Constructs a new MathContext with a specified
- * precision.
- * The other settings are set to the default values
- * (see {@link #DEFAULT}).
- *
- * An IllegalArgumentException is thrown if the
- * setdigits parameter is out of range
- * (<0 or >999999999).
- *
- * @param setdigits The int digits setting
- * for this MathContext.
- * @throws IllegalArgumentException parameter out of range.
- * @stable ICU 2.0
- */
-
- //--public MathContext(int setdigits){
- //-- this(setdigits,DEFAULT_FORM,DEFAULT_LOSTDIGITS,DEFAULT_ROUNDINGMODE);
- //-- return;}
-
-
- /**
- * Constructs a new MathContext with a specified
- * precision and form.
- * The other settings are set to the default values
- * (see {@link #DEFAULT}).
- *
- * An IllegalArgumentException is thrown if the
- * setdigits parameter is out of range
- * (<0 or >999999999), or if the value given for the
- * setform parameter is not one of the appropriate
- * constants.
- *
- * @param setdigits The int digits setting
- * for this MathContext.
- * @param setform The int form setting
- * for this MathContext.
- * @throws IllegalArgumentException parameter out of range.
- * @stable ICU 2.0
- */
-
- //--public MathContext(int setdigits,int setform){
- //-- this(setdigits,setform,DEFAULT_LOSTDIGITS,DEFAULT_ROUNDINGMODE);
- //-- return;}
-
- /**
- * Constructs a new MathContext with a specified
- * precision, form, and lostDigits setting.
- * The roundingMode setting is set to its default value
- * (see {@link #DEFAULT}).
- *
- * An IllegalArgumentException is thrown if the
- * setdigits parameter is out of range
- * (<0 or >999999999), or if the value given for the
- * setform parameter is not one of the appropriate
- * constants.
- *
- * @param setdigits The int digits setting
- * for this MathContext.
- * @param setform The int form setting
- * for this MathContext.
- * @param setlostdigits The boolean lostDigits
- * setting for this MathContext.
- * @throws IllegalArgumentException parameter out of range.
- * @stable ICU 2.0
- */
-
- //--public MathContext(int setdigits,int setform,boolean setlostdigits){
- //-- this(setdigits,setform,setlostdigits,DEFAULT_ROUNDINGMODE);
- //-- return;}
-
- /**
- * Constructs a new MathContext with a specified
- * precision, form, lostDigits, and roundingMode setting.
- *
- * An IllegalArgumentException is thrown if the
- * setdigits parameter is out of range
- * (<0 or >999999999), or if the value given for the
- * setform or setroundingmode parameters is
- * not one of the appropriate constants.
- *
- * @param setdigits The int digits setting
- * for this MathContext.
- * @param setform The int form setting
- * for this MathContext.
- * @param setlostdigits The boolean lostDigits
- * setting for this MathContext.
- * @param setroundingmode The int roundingMode setting
- * for this MathContext.
- * @throws IllegalArgumentException parameter out of range.
- * @stable ICU 2.0
- */
-
- //--public MathContext(int setdigits,int setform,boolean setlostdigits,int setroundingmode){super();
- function MathContext() {
- //-- members
- this.digits = 0;
- this.form = 0; // values for this must fit in a byte
- this.lostDigits = false;
- this.roundingMode = 0;
-
- //-- overloaded ctor
- var setform = this.DEFAULT_FORM;
- var setlostdigits = this.DEFAULT_LOSTDIGITS;
- var setroundingmode = this.DEFAULT_ROUNDINGMODE;
- if (MathContext.arguments.length == 4)
- {
- setform = MathContext.arguments[1];
- setlostdigits = MathContext.arguments[2];
- setroundingmode = MathContext.arguments[3];
- }
- else if (MathContext.arguments.length == 3)
- {
- setform = MathContext.arguments[1];
- setlostdigits = MathContext.arguments[2];
- }
- else if (MathContext.arguments.length == 2)
- {
- setform = MathContext.arguments[1];
- }
- else if (MathContext.arguments.length != 1)
- {
- throw "MathContext(): " + MathContext.arguments.length + " arguments given; expected 1 to 4"
- }
- var setdigits = MathContext.arguments[0];
-
-
- // set values, after checking
- if (setdigits!=this.DEFAULT_DIGITS)
- {
- if (setdigitsthis.MAX_DIGITS)
- throw "MathContext(): Digits too large: "+setdigits;
- }
- {/*select*/
- if (setform==this.SCIENTIFIC)
- ; // [most common]
- else if (setform==this.ENGINEERING)
- ;
- else if (setform==this.PLAIN)
- ;
- else{
- throw "MathContext() Bad form value: "+setform;
- }
- }
- if ((!(this.isValidRound(setroundingmode))))
- throw "MathContext(): Bad roundingMode value: "+setroundingmode;
- this.digits=setdigits;
- this.form=setform;
- this.lostDigits=setlostdigits; // [no bad value possible]
- this.roundingMode=setroundingmode;
- return;}
-
- /**
- * Returns the digits setting.
- * This value is always non-negative.
- *
- * @return an int which is the value of the digits
- * setting
- * @stable ICU 2.0
- */
-
- //--public int getDigits(){
- function getDigits() {
- return this.digits;
- }
-
- /**
- * Returns the form setting.
- * This will be one of
- * {@link #ENGINEERING},
- * {@link #PLAIN}, or
- * {@link #SCIENTIFIC}.
- *
- * @return an int which is the value of the form setting
- * @stable ICU 2.0
- */
-
- //--public int getForm(){
- function getForm() {
- return this.form;
- }
-
- /**
- * Returns the lostDigits setting.
- * This will be either true (enabled) or
- * false (disabled).
- *
- * @return a boolean which is the value of the lostDigits
- * setting
- * @stable ICU 2.0
- */
-
- //--public boolean getLostDigits(){
- function getLostDigits() {
- return this.lostDigits;
- }
-
- /**
- * Returns the roundingMode setting.
- * This will be one of
- * {@link #ROUND_CEILING},
- * {@link #ROUND_DOWN},
- * {@link #ROUND_FLOOR},
- * {@link #ROUND_HALF_DOWN},
- * {@link #ROUND_HALF_EVEN},
- * {@link #ROUND_HALF_UP},
- * {@link #ROUND_UNNECESSARY}, or
- * {@link #ROUND_UP}.
- *
- * @return an int which is the value of the roundingMode
- * setting
- * @stable ICU 2.0
- */
-
- //--public int getRoundingMode(){
- function getRoundingMode() {
- return this.roundingMode;
- }
-
- /** Returns the MathContext as a readable string.
- * The String returned represents the settings of the
- * MathContext object as four blank-delimited words
- * separated by a single blank and with no leading or trailing blanks,
- * as follows:
- *
- *
- * digits=, immediately followed by
- * the value of the digits setting as a numeric word.
- *
- * form=, immediately followed by
- * the value of the form setting as an uppercase word
- * (one of SCIENTIFIC, PLAIN, or
- * ENGINEERING).
- *
- * lostDigits=, immediately followed by
- * the value of the lostDigits setting
- * (1 if enabled, 0 if disabled).
- *
- * roundingMode=, immediately followed by
- * the value of the roundingMode setting as a word.
- * This word will be the same as the name of the corresponding public
- * constant.
- *
- *
- * For example:
- *
- * digits=9 form=SCIENTIFIC lostDigits=0 roundingMode=ROUND_HALF_UP
- *
- *
- * Additional words may be appended to the result of
- * toString in the future if more properties are added
- * to the class.
- *
- * @return a String representing the context settings.
- * @stable ICU 2.0
- */
-
- //--public java.lang.String toString(){
- function toString() {
- //--java.lang.String formstr=null;
- var formstr=null;
- //--int r=0;
- var r=0;
- //--java.lang.String roundword=null;
- var roundword=null;
- {/*select*/
- if (this.form==this.SCIENTIFIC)
- formstr="SCIENTIFIC";
- else if (this.form==this.ENGINEERING)
- formstr="ENGINEERING";
- else{
- formstr="PLAIN";/* form=PLAIN */
- }
- }
- {var $1=this.ROUNDS.length;r=0;r:for(;$1>0;$1--,r++){
- if (this.roundingMode==this.ROUNDS[r])
- {
- roundword=this.ROUNDWORDS[r];
- break r;
- }
- }
- }/*r*/
- return "digits="+this.digits+" "+"form="+formstr+" "+"lostDigits="+(this.lostDigits?"1":"0")+" "+"roundingMode="+roundword;
- }
-
-
- /* Test whether round is valid. */
- // This could be made shared for use by BigDecimal for setScale.
-
- //--private static boolean isValidRound(int testround){
- function isValidRound(testround) {
- //--int r=0;
- var r=0;
- {var $2=this.ROUNDS.length;r=0;r:for(;$2>0;$2--,r++){
- if (testround==this.ROUNDS[r])
- return true;
- }
- }/*r*/
- return false;
- }
-
diff --git a/AgileWorks/WebContent/TSlib/tseformmaker.js b/AgileWorks/WebContent/TSlib/tseformmaker.js
deleted file mode 100644
index fd26e4d41fcf5303395de7d4aa55982649ab4f05..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/TSlib/tseformmaker.js
+++ /dev/null
@@ -1,1647 +0,0 @@
-// Copyright (C) 2010 ATLED CORP. All rights Reserved.
-//
-// X-WebForm ver.2.1.04 functions.
-// for X-WebForm Generator Tagset Ver.2.1.02-b00 build 080714 (1954) later.
-// for X-WebForm Generator 2.1.0-b00 build 070714 (2087)
-//
-//--- navigator button Submit.
-function xweb_navifunc(form_name,action_url,target_name,comma){
- var fm=document.forms[form_name];
- if(fm){
- if (isSafari()||isChrome()){
- if(action_url=="temp_pdf.jsp"){
- var d=XWEB.Date.getLocalDate();
- action_url=action_url+"?serial="+d.getTime();
- }
- }
- fm.action=action_url;
- fm.target=target_name;
- fm.submit();
- }
-}
-
-//---- for oracle ADF.
-function navi_adf(adf_name,adf_value){
- navi_adf_form_sub('_oracle_adf_form','_oracle_adf',adf_name,adf_value);
-}
-
-function navi_adf_form(adf_name,adf_value){
- navi_adf_form_sub('myForm','_oracle_adf',adf_name,adf_value);
-}
-
-function navi_adf_form_sub(fname,idname,adf_name,adf_value){
- var fm=document.forms[fname];
- if(fm){
- var o=fm.elements[idname];
- if(o){
- o.name=adf_name;
- o.value=adf_value;
- fm.submit();
- return;
- }
- }
- alert(I18N.t("XWFCMN-E0024", adf_value)); // '̃tH[łADFpł܂['+adf_value+']'
-}
-
-//--- J}葀
-function setCom(fld) {
- var o=XWEB.getElementById(fld);
- if(o){
- if(o.value.length != 0 ) {
- o.value=insCom(o.value);
- }
- }
-}
-function insCom(s) {
- var r = s,t;while(r != (t = r.replace(/^([+-]?\d+)(\d\d\d)/,"$1,$2"))) {r = t;}return r;
-}
-function delCom(s) {
- var r = s.replace(/,/g,"");return r;
-}
-function insComFld(fld) {
- setCom(fld);
-}
-function delComFld(fld) {
- var o=XWEB.getElementById(fld);
- if(o) {
- if(o.readOnly){ return; }
- var nleng=o.value.length;
- if(nleng != 0 ) {
- var wk_str=delCom(o.value);
- if(o.value!=wk_str){ // T-001106
- o.value = nleng>0 ? wk_str : 0;
- }
- if(isIE()){
- var rng = o.createTextRange();
- if (rng) {
- rng.select();
- }
- }else{
- ;//IԂɂBBB
- }
- }
- }
-// o.select();
-}
-
-//---ϊ(1:啶ϊA1ȊO:ϊ)
-/*
-function textConvert(fld,mode){
- var o=XWEB.getElementById(fld);
- if(o) {
- if(Number(mode)==1){
- o.value=o.value.toUpperCase();
- }else{
- o.value=o.value.toLowerCase();
- }
- }
-}*/
-
-//--- w蕶sɓn镶ł邩𐔂
-function __xp_linecount(str){
- var nLine=0;
- var nCh=0;
- for(var p=0;p 0 ? 1 : 0);
-};
-
-//--- ̎wsȍ~̂ĂB(s܂ގsAyTextAreaōss܂މs)
-//function __xp_trimline(str,lcount){
-function __xp_trimline(o,lcount){
- var str=o.value;
- var ret="";
- if(o.createTextRange){
- var rng;
- var rct;
- o.value=rtrim(o.value);
- do {
- var tlen=o.value.length;
- o.value=o.value.substr(0,tlen-1);
- if(o.value.length==tlen){
- o.value=o.value.substr(0,tlen-2);
- }
- rng=o.createTextRange();
- rct=rng.getClientRects();
- }while(rct.length>lcount&&lcount>0); // No.2820
- ret=o.value;
- }else{
- str=rtrim(str);
- var nLine=0;
- for(var p=0;p=lcount){
- break;
- }
- ret=ret+ch;
- }
- }
- return ret;
-};
-
-//--- TextArea̕Es(s܂ގsAyTextAreaōss܂މs)̃`FbN
-
-var oldTextAreaValue = "";
-var oldTextAreaField = null;
-function xp_checkTextAreaLen_sub(o,maxLen,maxLine,retray_flag) {
- if (oldTextAreaField != o) {
- oldTextAreaValue = "";
- oldTextAreaField = o;
- }
- var nLine;
- if (o.createTextRange) {
- var rng = o.createTextRange();
- var rct = rng.getClientRects();
- nLine=rct.length;
- } else {
- nLine=__xp_linecount(o.value);
- }
- var len = o.value.length;
- var lcr = o.value.lastIndexOf("\n");
- //T-002467 IE11Ή
- // IE11̏ꍇ͍ŏỈsR[hsnLineɑĂB
- // ̂ߕ͕KvȂB
- if (!XWEB.bIE11Later && (lcr == len - 1) && (len > 0)) {
- nLine++;
- }
-
- if ((maxLine < nLine) && (maxLine > 0)) {
- if(retray_flag!=true){
- alert(I18N.t("XWFCMN-W0005", maxLine+1)); // (maxLine+1) + "sȏ͓͂ł܂"
- }
- if(oldTextAreaValue.length==0){
- oldTextAreaValue=rtrim(__xp_trimline(o,maxLine));
- }
- o.value = oldTextAreaValue;
- if(retray_flag!=true){
- xp_checkTextAreaLen_sub(o, maxLen, maxLine,true);
- }
- return false;
- } else if ((maxLen < len) && maxLen > 0) {
- if(retray_flag!=true){
- alert(I18N.t("XWFCMN-W0006", maxLen+1)); // (maxLen+1) + "ȏ͓͂ł܂B\nFs2ƂĈ܂"
- }
- if(oldTextAreaValue.length==0){
- oldTextAreaValue=rtrim(__xp_trimline(o,maxLine));
- }
- o.value = oldTextAreaValue;
- if(o.value.length>maxLen){
- o.value=o.value.substr(0,maxLen);
- if(o.value.length>maxLen){
- o.value=o.value.replace(/[\n\r]*$/,""); //s̉s폜(deji.2135)
- }
- }
- if(retray_flag!=true){
- xp_checkTextAreaLen_sub(o, maxLen, maxLine,true);
- }
- return false;
- } else {
- oldTextAreaValue = o.value;
- }
- return true;
-}
-
-var __oncheck_text=false;
-function xp_checkTextAreaLen(o,maxLen,maxLine) {
- if(__oncheck_text){return;}
- __oncheck_text=true;
- xp_checkTextAreaLen_sub(o,maxLen, maxLine);
- __oncheck_text=false;
-}
-
-// -- exec "onblur"
-function xp_checkTextAreaLenB(o,maxLen,maxLine) {
- if(__oncheck_text){return;}
- __oncheck_text=true;
- if(xp_checkTextAreaLen_sub(o,maxLen, maxLine)==false){ // (deji.2138)
- o.focus();
- }
- __oncheck_text=false;
-}
-
-//--- scroll\̃p[^ݒ
-// tH[AtB[hzAs
-function xp_scroll2Hidden(formname, in_scrollarea, rownum) {
- if(in_scrollarea.length==0){
- return;
- }
- for(var row = 0; row < rownum ; ++row) {
- for (var i = 0; i < in_scrollarea.length; i++) {
- var fieldname = in_scrollarea[i] + "_" + row;
- var src=XWEB.getElementById(fieldname);
- var dst = document.forms[formname].item(fieldname);
- if ((src != null) && (dst != null)) {
- if (src.value != undefined) {
- dst.value = src.value;
- }
- }
- }
- }
-}
-
-//--- t𐮂
-
-function xp_dateformat(o,fmt){
- if(!o.value){return;} // T-002515AvalueȂDOM ELEMENT͏sȂ
- if(o.value.length==0) return;
- var t1=trim(o.value);
- if(t1.length==0) return;
- o.value=getDateString(t1,fmt);
-}
-
-function xp_string2date(o,fmt){
- if(o.value.length==0) return;
-}
-
-//--- _ȉwʒu̒[
-function setNumRound(fld,roundType,roundPos){
- var o=XWEB.getElementById(fld);
- if(o){
- if(o.value.length != 0){
- if(isNaN(o.value)==false){
- var wk_nstr=delCom(o.value);
- if(wk_nstr.length==0){
- o.value=num_round(0,roundType,roundPos);
- }else{
- o.value=num_round(wk_nstr,roundType,roundPos);
- }
- }
- }
- }
-}
-
-function num_round(n,roundType,roundPos){
- var wk_pos=Math.abs(roundPos);
- // "MathContext"`̏ꍇ́ABigDecimal ł͈Ƃł܂B
- // 10BigDecimalň(KvJS荞܂Ăꍇ̂)
- var bigval=n+"";
- if(bigval.length==0) { // T-001986
- return bigval;
- }
- if(Number(roundType)!=0) { // Deji.2824
- var bigdc=new BigDecimal(bigval);
- var wk_rtype=bigdc.ROUND_HALF_UP;
- switch(Number(roundType)) {
- // No.3035
- case 1:
-// if(bigval.indexOf('-')==0) {
-// wk_rtype=bigdc.ROUND_HALF_DOWN;
-// }else{
- wk_rtype=bigdc.ROUND_HALF_UP;
-// }
- break;
- case 2: wk_rtype=bigdc.ROUND_DOWN; break;
- case 3: wk_rtype=bigdc.ROUND_UP; break;
- }
- if(roundPos>0){
- newbigval=bigdc.setScale(roundPos,wk_rtype);
- }else{
- newbigval=bigdc.movePointLeft(wk_pos);
- newbigval=newbigval.setScale(0, wk_rtype);
- newbigval=newbigval.movePointRight(wk_pos);
- }
- bigval=newbigval.toString();
- }
- return bigval;
-}
-
-//--- Fieldv
-function check_comma(fld,fields) {
- var o;
- for(i in fields) {
- if( fields[i] == fld ) {
- o=XWEB.getElementById(fld);
- break;
- }
- }
- return o;
-}
-
-//---ŌvZ
-//
-function tax_field(setfld,field,caltype,comma_fields,roundType,roundPos){
- var s=0;
- var taxrate=0.05;
-
- var f=XWEB.getElementById(field);
- if(f){
- s=(delCom(f.value)-0);
- }
-
- switch(caltype){
- case 0: //ōݎ
- s=s-(s/(1.0+taxrate));
- break;
- case 1: //Ŕ
- s=s*taxrate;
- break;
- case 2: //Ŕ
- s=s*taxrate;
- break;
- default:
- break;
- }
-
- var o=XWEB.getElementById(setfld);
- if(roundType) {
- if(Number(roundType)==2&&roundPos>=0){
- s+=(1.0/Math.pow(10,roundPos)/1000.0);
- }
- s = num_round(s,roundType,roundPos);
- }
- o.value = s;
-
- // tB[hJ}t
- if( check_comma(setfld,comma_fields) ) {
- setCom(setfld);
- }
-}
-
-function checkNumberOfDigit(s){
- var len=0;
- var pos=s.lastIndexOf(".");
- if(pos>=0){
- len=s.substr(pos).length-1;
- }
- return len;
-}
-
-//---WvvZ
-// ID,vtB[h,J}荀,[^Cv,[ʒu
-sum_fields=function(setfld,sumfiels,comma_fields,roundType,roundPos){
- var bigdc=new BigDecimal("0");
- var f;
- var max_nd_len=0;
- for(var nn in sumfiels){
- var fname=sumfiels[nn];
- var pfld=XWEB.getField(fname);
- if(pfld && pfld.type==XWEB.FieldType.DateTime){
- var wk_val=pfld.getSerialValue();
- if(!isNaN(wk_val)){
- bigdc=bigdc.add(new BigDecimal(wk_val+""));
- }
- }else{
- f=XWEB.getElementById(fname);
- if(f){
- var wk_len=checkNumberOfDigit(f.value);
- if(max_nd_len0){ // T-000867
- bigdc=bigdc.add(new BigDecimal(add_val+""));
- }
- } else {
- alert("unkown field = " + fname);
- }
- }
- }
- var s = bigdc.toString();
-
- var fld=XWEB.getField(setfld);
- if(fld){
- if(fld.type==XWEB.FieldType.DateTime){
- fld.setSerialValue(s);
- }else{
- if(roundType) {
- s=expr_num_adjustment(s,roundType,roundPos);
- }
- if(roundType==undefined&&!isNaN(s)){
- fld.setValue( num_round(s,1,max_nd_len) );
- }else{
- fld.setValue(s);
- }
- }
- }else{
- var o=XWEB.getElementById(setfld);
- if(roundType) {
- s=expr_num_adjustment(s,roundType,roundPos);
- s = num_round(s,roundType,roundPos);
- }
- else if(roundType==undefined&&!isNaN(s)){
- s = num_round(s,1,max_nd_len);
- }
- o.value = s;
- }
-
- // have comma attribute on target field.
- if( check_comma(setfld,comma_fields) ) {
- setCom(setfld);
- }
-}
-
-//--- FieldlZ
-// ID,vZ,J}荀,[^Cv,[ʒu
-expr_fields=function(setfld,exprfiels,comma_fields,roundType,roundPos){
- var expr_arr=new Array();
- var ope, fld;
- var bNull=false;
- var sfld=XWEB.getField(setfld);
- var max_nd_len=0;
- var md_ope=false;
- for(var nn in exprfiels) {
- ope=exprfiels[nn];
- if(ope=='+'||ope=='-'||ope=='/'||ope=='*'){
- if(typeof(MathContext)!='undefined'){
- if(ope=='/'||ope=='*'){ // No.3019
- md_ope=true;
- }
- }else{
- if(ope=='/'){ // No.1666 (del.[ope=='*'])
- md_ope=true;
- }
- }
- expr_arr.push(ope);
- continue;
- }
- fld=XWEB.getElementById(ope);
- if(fld) {
- if(fld.value.length==0) {
- if(sfld){
- sfld.setValue("");
- }else{
- var o=XWEB.getElementById(setfld);
- if(o) o.value="";
- }
- return false;
- }
- var pfld=XWEB.getField(ope);
- if(pfld.type==XWEB.FieldType.DateTime){
- var wk_val=pfld.getSerialValue();
- if(isNaN(wk_val)) return false;
- expr_arr.push(wk_val);
- }else{
- if(XWEB.isRoundField(ope)){ //ꍇ
-// var wk_val=pfld.getTextValue?pfld.getTextValue():pfld.getValue();
- var wk_val=pfld.getValue(); // T-000170
- wk_val=num_round(wk_val+"",myform_round_type[ope],myform_round_pos[ope]);
- var wk_len=checkNumberOfDigit(fld.value);
- if(max_nd_len10||Math.abs(roundPos)>5){
-// return ss;
-// }
- var s=typeof(ss)=='string' ? Number(ss) : ss;
- if(roundPos>=0){
- var w_s=s+"";
- if(w_s.indexOf('.')>=0){ //ϊɏ_ȉ
- var nSigned=s<0?true:false; // T-000258
- if(nSigned){
- s=Math.abs(s);
- }
- if((w_s.substr(w_s.indexOf(".")).length-1)<=roundPos){
- //ϊɏ_ȉ܂ߌƈvA͂ȉ̏ꍇ͊ۂ߂{ȂB
- }else if(w_s.substr(w_s.indexOf(".")).length<(roundPos+3)){
- s+=(1.0/Math.pow(10,roundPos)/1000.0);
- }else{
-// s+=(1.0/Math.pow(10,(roundPos+3))/1000.0);
- var ww=Math.max((roundPos+3),w_s.substr(w_s.indexOf(".")).length+3);//Dej.2462
- if (ww > (roundPos+6)){
- ww=roundPos+6; // T-000381
- }
-// s+=(1.0/Math.pow(10,ww)/1000.0);
- //܂ߓ̃^Cvɉ@ւ (T-000381)
- if(roundType==1){ //ľܓ
- s+=(1.0/Math.pow(10,ww)/1000.0);
- }else if(roundType==2){ //̂
- s+=(1.0/Math.pow(10,ww)/1000.0);
- }else if(roundType==3){ //グ
- s-=(1.0/Math.pow(10,ww)/1000.0);
- }
- }
- if(nSigned){ // T-000258
- s=-s;
- }
- }else{ //ϊɏ_ȉȂ
- //ϊɏ_ȉȂ͊ۂ߂{ȂB
- }
- }
- return s;
-}
-
-//--- Enter Key (not use. function)
-function nextField(fld) {
- if (window.event.keyCode == 13&&XWEB.Html.enterkey==true) {
- var o=XWEB.getElementById(fld);
- if(o){o.focus();}
- event.keyCode=0;
- }
-}
-
-//--- for TSCalender ---
-
-var fldCal = null; // ԋptB[h
-var defDate = null; // l
-var winCal = null; // J_[EBhE
-var startDate = null;
-var endDate = null;
-var calDateFormat = null;
-var yy;
-var mm;
-var dd;
-var ww;
-var cal_focus; // tH[JX߂J_\tB[h
-
-function calendarOpen(obj,yymmdd,yyobj,mmobj,ddobj,weekobj,opt,fmt){
-// if(obj.readOnly){
-// return;
-// }
- var xpact = document.getElementById("act");
- if (xpact) {
- if (xpact.value == "view") { return; }
- }
-
- if(obj.disabled){ return; }
-
- if(fmt&&yymmdd){
- if(yymmdd.value.length>0){
- //alert('FMT='+fmt+","+yymmdd.value);
- }
- calDateFormat = fmt;
- }
-
- yy=yyobj;
- mm=mmobj;
- dd=ddobj;
- ww=weekobj;
-
- if( yyobj != null && mmobj != null && ddobj != null ) {
- var w = XWEB.Date.get();
- var nyy, nmm, ndd;
- if( yyobj.value.length==0 ) {
- nyy=w.getFullYear();
- } else {
- nyy=yyobj.value - 0;
- }
- if( mmobj.value.length==0 ) {
- nmm=w.getMonth() + 1;
- } else {
- nmm=mmobj.value - 0;
- }
- if( ddobj.value.length==0 ) {
- ndd=w.getDate();
- } else {
- ndd=ddobj.value - 0;
- }
- defDate = nyy;
- if( nmm < 10 ) {
- defDate += "/0" + nmm;
- } else {
- defDate += "/" + nmm;
- }
- if( ndd < 10 ) {
- defDate += "/0" + ndd;
- } else {
- defDate += "/" + ndd;
- }
- fldCal = yymmdd;
- }
- //---
- else if(yyobj != null || mmobj != null || ddobj != null){
- var w = XWEB.Date.get();
- defDate="";
- if(yyobj){
- defDate=yyobj.value.length==0?w.getFullYear():yyobj.value;
- }else{
- defDate+=w.getFullYear();
- }
- if(mmobj){
- var wk_mm=mmobj.value.length==0? w.getMonth()+1 : mmobj.value;
- defDate+=(wk_mm<10?"/0":"/")+wk_mm;
- }else if(w.getMonth()<10){
- defDate+="/0"+(w.getMonth()+1);
- }else{
- defDate+="/"+w.getMonth()+1;
- }
- if(ddobj){
- var wk_dd=ddobj.value.length==0? w.getDate() : ddobj.value;
- defDate+=(wk_dd<10?"/0":"/")+wk_dd;
- }else if(w.getDate()<10){
- defDate+="/0"+w.getDate();
- }else{
- defDate+="/"+w.getDate();
- }
- fldCal = yymmdd;
- }
- //---
- else {
- fldCal = obj;
- defDate = obj.value;
- var fld=XWEB.getField(obj.id);
- if(fld){
- if(fld.type==XWEB.FieldType.DateTime){
- if(fld.input_format=="YY/MM/DD"){
- defDate="20"+defDate;
- setStartDate(new Date(Date.parse('01/01/2000')));
- }
- }else if(XWEB.isFmtMMDD(fmt)){
- if(XWEB.isLeapDayMMDD(defDate)){
- var wk_dd=XWEB.getNearLeepYearDate();
- defDate=wk_dd.getFullYear()+"/02/29";
- }
- }
- }
- }
-
- cal_focus=obj; // tH[JX߂tB[h
-
- if(XWEB.Calendar){
- var dtrange=XWEB.Html.xwf_date_range[obj.id];
- if(dtrange){
- if (dtrange.mindate.length==8&&dtrange.mindate!="00000000"){
- var dmin=dtrange.mindate.substring(0,4)+"/"+dtrange.mindate.substring(4,6)+"/"+dtrange.mindate.substring(6);
- setStartDate(new Date(dmin));
- }else{
- setStartDate(null);
- }
- if(dtrange.maxdate.length==8&&dtrange.maxdate!="00000000"&&dtrange.maxdate!="99999999") {
- var dmax=dtrange.maxdate.substring(0,4)+"/"+dtrange.maxdate.substring(4,6)+"/"+dtrange.maxdate.substring(6);
- setEndDate(new Date(dmax));
- }else{
- setEndDate(null);
- }
- }else{
- setStartDate(null);
- setEndDate(null)
- }
- XWEB.Calendar.Show(obj,getStartDate(),getEndDate(),getCalDateFormat(),getDefaultDate());
- XWEB.Calendar.setAction(putDate,clearDate,closeCalWin); // set call back function.
- return;
- }else{
- var prm="scrollbars=no,width=175,height=190"; // {p[^
- if(opt != "") {
- prm += "," + opt;
- }
- var cal_url="."+XWEB.Rpc.tslib+"/TSCalendar.html";
- if(xpoint_js != "" ) {
- cal_url=xpoint_js+"/TSCalendar.html";
- } else if(typeof(XWEB.Rpc.contextpath)!='undefined'){
- cal_url=XWEB.Rpc.contextpath+XWEB.Rpc.tslib+"/TSCalendar.html";
- }
-
- winCal=window.open(cal_url, "TSCal", prm);
- winCal.focus();
- return winCal;
- }
-}
-
-// l擾
-function getDefaultDate() {
- return defDate;
-}
-
-// ̃tB[hɃtH[JX߂
-function setFocusCalField(){
- if(cal_focus){
- try {
- cal_focus.focus();
- } catch(e){}
- }
-}
-
-// lԋp
-function putDate(dt,fmt) {
- if(yy){ yy.value="";}
- if(mm){ mm.value="";}
- if(dd){ dd.value="";}
- if(ww){ ww.value="";}
-
- var o;
- var y = dt.getFullYear();
- var m = dt.getMonth() + 1;
- var d = dt.getDate();
-
- setFocusCalField(); // ̃tB[hɃtH[JX߂
-
- if( fldCal != null ) {
- o = fldCal;
-// o.value = (y + "/" + ((m < 10) ? "0" : "") + m + "/" + ((d < 10) ? "0" : "") + d);
- var str = (fmt) ? fmt : "Y/M/D";
- if(fmt=="YYYY/MM/DD"||fmt=="YY/MM/DD"){ // for datefield,
- if (str.indexOf("YY/")==0) str = str.replace("YY", y).substr(2);
- if (str.indexOf("YYYY/")==0) str = str.replace("YYYY", y);
- if (str.indexOf("/MM/")>=0) str = str.replace("MM", ((m < 10) ? "0" : "") + m);
- if (str.indexOf("/DD")>=0) str = str.replace("DD", ((d < 10) ? "0" : "") + d);
- }else if(fmt=="YYYY-MM-DD"||fmt=="YY-MM-DD"){ // T-000848
- if (str.indexOf("YY-")==0) str = str.replace("YY", y).substr(2);
- if (str.indexOf("YYYY-")==0) str = str.replace("YYYY", y);
- if (str.indexOf("-MM-")>=0) str = str.replace("MM", ((m < 10) ? "0" : "") + m);
- if (str.indexOf("-DD")>=0) str = str.replace("DD", ((d < 10) ? "0" : "") + d);
- }else{ // for text,year,month,date field.
- if (str.indexOf("Y")>=0) str = str.replace("Y", y);
- if (str.indexOf("M")>=0) str = str.replace("M", ((m < 10) ? "0" : "") + m);
- if (str.indexOf("m")>=0) str = str.replace("m", m);
- if (str.indexOf("D")>=0) str = str.replace("D", ((d < 10) ? "0" : "") + d);
- if (str.indexOf("d")>=0) str = str.replace("d", d);
- }
-
- var fld=XWEB.getObject(o.id);
- if(fld){
- fld.setValue(str);
- if(fld.OnChange){
-// fld.OnChange(); //function(_obj,event,_no)
- var rowno=getRowno(o);
- if(XWEB.bIE){
- fld.OnChange(o,event,rowno); //function(_obj,event,_no)
- }else{
- fld.OnChange(o,undefined,rowno);
- }
- }
- }else{
- o.value=str;
- }
- }
-
- var yymmdd=new Date(Date.parse(dt));
- if( yy != null ) {
- var fld=XWEB.getObject(yy.id);
- if(fld){ fld.setValue(yymmdd.getFullYear()); }
- else{ yy.value=yymmdd.getFullYear(); }
- try{yy.onblur();}catch(e){};
- }
- if( mm != null ) {
- var fld=XWEB.getObject(mm.id);
- if(fld){ fld.setValue(yymmdd.getMonth() + 1); }
- else{ mm.value=yymmdd.getMonth() + 1; }
- try{mm.onblur();}catch(e){};
- }
- if( dd != null ) {
- var fld=XWEB.getObject(dd.id);
- if(fld){ fld.setValue(yymmdd.getDate()); }
- else{ dd.value=yymmdd.getDate(); }
- try{dd.onblur();}catch(e){};
- }
- if( ww != null ) {
- //ww.value=yymmdd.getDay();
- var wfld=XWEB.getObject(ww.id);
- if(wfld){
- var dis=wfld.isDisabled();
- if(dis==true){
- wfld.setDisabled(false);
- wfld.setValue(yymmdd.getDay());
- wfld.setDisabled(true);
- }else{
- wfld.setValue(yymmdd.getDay());
- }
- }else{
- ww.value=yymmdd.getDay();
- }
- }
-
- setCalender(yy,mm,dd,ww);
-
- if(yy){XWEB.setDateFormat(yy)}
- if(mm){XWEB.setDateFormat(mm)}
- if(dd){XWEB.setDateFormat(dd)}
-}
-
-// close window.
-function closeCalWin(){
- setFocusCalField(); // ̃tB[hɃtH[JX߂
-}
-
-function getRowno(obj){
- var rowno=XWEB.getRowno(obj);
- if(XWEB.isNullUndefNaN(rowno)){
- rowno=undefined;
- }
- return rowno;
-}
-
-// clear field.
-function clearDate(){
- setFocusCalField(); // ̃tB[hɃtH[JX߂
-
- if(fldCal){
- var fld=XWEB.getObject(fldCal.id);
- if(fld){
- var rowno=getRowno(fldCal);
- fld.setValue("");
- if(XWEB.bIE){ fld.OnChange(fldCal,event,rowno);
- }else{ fld.OnChange(fldCal,undefined,rowno);
- }
- }
- }else{
- if( yy != null ) {
- var fld=XWEB.getObject(yy.id);
- if(fld){
- fld.setValue("");
- if(XWEB.bIE){ fld.OnChange(yy,event);
- }else{ fld.OnChange(yy,undefined);
- }
- }
- }
- if( mm != null ) {
- var fld=XWEB.getObject(mm.id);
- if(fld){
- fld.setValue("");
- if(XWEB.bIE){ fld.OnChange(mm,event);
- }else{ fld.OnChange(mm,undefined);
- }
- }
- }
- if( dd != null ) {
- var fld=XWEB.getObject(dd.id);
- if(fld){
- fld.setValue("");
- if(XWEB.bIE){ fld.OnChange(dd,event);
- }else{ fld.OnChange(dd,undefined);
- }
- }
- }
- if( ww != null ) {
- var wfld=XWEB.getObject(ww.id);
- if(wfld){
- var dis=wfld.isDisabled();
- if(dis==true){
- wfld.setDisabled(false);
- wfld.setValue("");
- wfld.setDisabled(true);
- }else{
- wfld.setValue("");
- }
- }
- }
-
- setCalender(yy,mm,dd,ww);
- }
-}
-
-function setStartDate(dt) {
- startDate = dt;
-}
-
-function setEndDate(dt) {
- endDate = dt;
-}
-
-function getStartDate() {
- return startDate;
-}
-
-function getEndDate() {
- return endDate;
-}
-
-function getCalDateFormat() {
- return calDateFormat;
-}
-
-function openCal(o, x, y) {
- winCal=TSCal(o, ".", "left=" + x + ",top=" + y);
-}
-
-function closeCal() {
- if(winCal){ winCal.close(); }
-}
-
-// j̍Đݒ (onblurŗjύXj
-function setCalender(yyobj, mmobj, ddobj, weekobj) {
- var yymmdd=XWEB.Date.get();
- var chk=0;
- var yy_val=false; var mm_val=false;
-
- yymmdd.setDate(1);
- if ((yyobj != null) && (yyobj.value.length > 0)) {
- yymmdd.setFullYear(yyobj.value);
- chk++;
- yy_val=true;
- }
- if ((mmobj != null) && (mmobj.value.length > 0)) {
- yymmdd.setMonth(mmobj.value-1);
- chk++;
- mm_val=true;
- }
- if ((ddobj != null) && (ddobj.value.length > 0)) {
- yymmdd.setDate(ddobj.value);
- var date_error=false;
- if(yy_val==true&&mm_val==true){
- var yy=yymmdd.getFullYear();
- var mm=yymmdd.getMonth()+1;
- var dd=yymmdd.getDate();
-
- if(yy!=parseInt(yyobj.value,10)){date_error=true;}
- if(mm!=parseInt(mmobj.value,10)){date_error=true}
- if(dd!=parseInt(ddobj.value,10)){date_error=true;}
-
- }else if(yy_val==false&&mm_val==true){
- var mm=parseInt(mmobj.value);
- var dd=parseInt(ddobj.value);
- switch(mm){
- case 2:
- if(dd>29){date_error=true;}
- break;
- case 4:
- case 6:
- case 9:
- case 11:
- if(dd>30){date_error=true;}
- break;
- }
- }
- if(date_error==true){
- alert(I18N.t("XWFCMN-W0007")); // t̎wɌ肪܂
- ddobj.focus();
- return;
- }
- chk++;
- }else{
-// return;
- }
-
- // --- set day of the week
- if (weekobj != null){
- if(chk == 3) {
- var bDisabled = weekobj.disabled;
- weekobj.disabled=false;
- weekobj.value =yymmdd.getDay();
- weekobj.disabled=bDisabled;
- }
- if(yyobj!=null&&mmobj!=null&&ddobj!=null){
- if(yyobj.value.length==0&&mmobj.value.length==0&&ddobj.value.length==0){
- var bDisabled = weekobj.disabled;
- weekobj.disabled = false;
- weekobj.value="";
- if(!isIE()){
- weekobj.selectedIndex=-1;
- }
- weekobj.disabled = bDisabled;
- }
- }
- }
-}
-
-//--- уtB[h ---
-
-var preVal = "";
-var preKey = 0;
-
-function initRuby(o) {
- preVal = o.value;
-}
-
-function getRuby(e, src, dst_id, type) {
- var dst=XWEB.getElementById(dst_id);
- if(dst==undefined){
- alert(I18N.t("XWFCMN-E0025", src.id, dst_id)); // "Error: "+src.id+": ȐU艼tB[hu"+dst_id+"vw肳Ă܂"
- return;
- }
-
- var oldKey = preKey;
- var k = e.keyCode;
- preKey = k;
-
-// status = k;
-
- var newVal = src.value;
- if (newVal == "") {
- preVal = "";
- dst.value = "";
- return;
- }
-
- switch (k) {
- case 8: // BS
- dst.value = dst.value.substr(0, dst.value.length - 1);
- preVal = newVal;
- break;
-
- case 13: // RET
- break;
- case 17: // CTRL
- case 28: // ϊ
- case 29: // ϊ
- case 33: // PAGEUP
- case 34: // PAGEDOWN
- case 35: // END
- case 36: // HOME
- case 37: // LEFT
- case 38: // UP
- case 39: // RIGHT
- case 40: // DOWN
- case 44: // ALT-PrnScr
- case 91: // Win
- case 112: // F1
- case 113: // F2
- case 114: // F3
- case 115: // F4
- case 116: // F5
- case 117: // F6
- case 118: // F7
- case 119: // F8
- case 120: // F9
- case 121: // F10
- case 122: // F11
- case 123: // F12
- preVal = newVal;
- break;
-
- case 229: // VK_PROCESSKEY(0xE5), T-002572(Vistaȍ~AIE7/IE8/IE9/IE10̂ݔ)
- return;
-
- case 32: // SPC
- preVal = newVal;
- var last = preVal.substr(preVal.length - 1, 1);
- // Xy[X鏈
- if ((last == " ") || (last == "@")) {
- if (type != 2) {
- dst.value += last;
- } else {
- dst.value += " ";
- }
- }
- break;
-
- default:
- if ((k >= 65) && (k <= 90)) { // A-Z
- if ((k != 65) && (k != 73) && (k != 85) && (k != 69) && (k != 79)) { // a,i,u,e,o
- if ((k == 78) && (oldKey == 78)) { // nn
- } else {
- return;
- }
- }
- }
- break;
- }
-
- if (preVal == newVal) {
- return;
- }
-
- var addVal = newVal;
- for (var i = preVal.length; i >= 0; i--) {
- if (newVal.substr(0, i) == preVal.substr(0, i)) {
- addVal = newVal.substr(i);
- break;
- }
- }
- preVal = newVal;
- var addRuby = addVal.replace(/[^ 0-9A-Za-z\-,.-߁@-EJK[|`-O-X`-y-]/g, "");
- addRuby = addRuby.replace(/[`-y-]*$/g, "");
- if (addRuby == "") {
- return;
- }
- dst.value += convHiraKata(addRuby, type);
-}
-
-// type: 0=SЂ炪ȁSJ^Ji
-// 1=SJ^JiSЂ炪
-// 2=SЂJ^J^Ji
-function convHiraKata(s, type) {
- var ret = "";
- for (var i = 0; i < s.length; i++) {
- var c = s.charAt(i);
- var n = c.charCodeAt(0);
- if ((n >= 0x3041) && (n <= 0x3096)) {
- if (type != 1) {
- n += 0x60;
- c = String.fromCharCode(n); // SЂ灨SJ^
- }
- } else if ((n >= 0x30A1) && (n <= 0x30F6)) {
- if (type != 0) {
- c = String.fromCharCode(n - 0x60); // SJ^SЂ
- }
- }
- if (type == 2) {
- c = convZen2Han(String.fromCharCode(n)); // pJi
- }
- ret += c;
- }
- return ret;
-}
-
-// SJ^JiJ^Ji
-function convZen2Han(s) {
- // ʏ
- hanN = " "
- + "ܦ"
- + "ܶߥ"
- + "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
- + "0123456789--";
- zenN = "@ACEGIJLNPRTVXZ\^`cegijklm"
- + "nqtwz}~"
- + "@BDFHbAB[JKE"
- + "`abcdefghijklmnopqrstuvwxy"
- + "OPQRSTUVWX|`";
-
- // p
- hanD = "γ";
- zenD = "KMOQSUWY[]_adfhorux{";
-
- // p
- hanP = "";
- zenP = "psvy|";
-
- var ret = "";
- for (i = 0; i < s.length; i++) {
- c = s.charAt(i);
- n = zenN.indexOf(c, 0);
- if (n >= 0) { // ʏ
- c = hanN.charAt(n);
- } else {
- nD = zenD.indexOf(c, 0);
- if (nD >= 0) { //
- c = hanD.charAt(nD) + "";
- } else {
- nP = zenP.indexOf(c, 0);
- if (nP >= 0) { //
- c = hanP.charAt(nP) + "";
- }
- }
- }
- ret += c;
- }
- return ret;
-}
-
-//----- t̐ݒ
-// N Y:2005 y:05
-// M:01 m:1 N:January n:Jan
-// D:08 d:8
-// j W:yj w:y X:Saturday x:Sat
-//
-// [gp]
-// var t1 = myForm.text1.value;
-// myForm.text2.value = getDateString(t1, "Y-M-D");
-// myForm.text3.value = getDateString(t1, "y-m-d (W)");
-// myForm.text4.value = getDateString(t1, "N n");
-// myForm.text5.value = getDateString(t1, "W w");
-// myForm.text6.value = getDateString(t1, "X x");
-//
-//
-function getWareki(y, m, d) {
- // ...(M1)1868/09/08 - (M45)1912/07/29
- // 吳...(T1)1912/07/30 - (T15)1926/12/24
- // a...(S1)1926/12/25 - (S64)1989/01/07
- // ...(H1)1989/01/08 -
- var ret = new Array(-1, -1);
- var ag = new Array("1868/09/08", "1912/07/30", "1926/12/25", "1989/01/08");
- var ag1 = new Array("M", "T", "S", "H");
-
- var dt = new Date(y, m - 1, d);
- for (var i = ag.length; i > 0; i--) {
- var gn = new Date(ag[i - 1]);
- if (dt >= gn) {
- ret[0] = i - 1;
- ret[1] = y - gn.getFullYear() + 1;
- break;
- }
- }
- return ret;
-}
-
-
-// N Y:2005 y:05 G: R:g r:H
-// M:01 m:1 N:January n:Jan
-// D:08 d:8
-// j W:yj w:y X:Saturday x:Sat
-function formatDateString(y, m, d, w, fmt) {
- ame = new Array("January", "February", "March", "April", "May", "June",
- "July", "August", "September", "October", "November", "December");
- awj = new Array("", "", "", "", "", "", "y");
- awe = new Array("Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday");
- agj = new Array("", "吳", "a", "");
- agr = new Array("M", "T", "S", "H");
- agR = new Array("l", "s", "r", "g");
-
- var s = fmt;
- y = "" + y;
- m = "" + m;
- d = "" + d;
- w = "" + w;
-
- if (s.indexOf("G") != -1) { //
- s = s.replace(/G/g, "{##G##}");
- }
- if (s.indexOf("R") != -1) { // ([}̑Sp)
- s = s.replace(/R/g, "{##R##}");
- }
- if (s.indexOf("r") != -1) { // ([}̔p)
- s = s.replace(/r/g, "{##r##}");
- }
- if (s.indexOf("N") != -1) { // January
- s = s.replace(/N/g, "{##N##}");
- }
- if (s.indexOf("n") != -1) { // January
- s = s.replace(/n/g, "{##n##}");
- }
- if (s.indexOf("W") != -1) { // yj
- s = s.replace(/W/g, "{##W##}");
- }
- if (s.indexOf("w") != -1) { // y
- s = s.replace(/w/g, "{##w##}");
- }
- if (s.indexOf("X") != -1) { // Saturday
- s = s.replace(/X/g, "{##X##}");
- }
- if (s.indexOf("x") != -1) { // Sat
- s = s.replace(/x/g, "{##x##}");
- }
-
- // N
- if (s.indexOf("Y") != -1) { // YYYY
- s = s.replace(/Y/g, y);
- }
- if (s.indexOf("y") != -1) { // YY
- s = s.replace(/y/g, y.substr(2));
- }
- if (s.indexOf("{##G##}") != -1) { //
- var dat = getWareki(y, m, d);
- if (dat[0] == -1) {
- s = s.replace(/{##G##}/g, y);
- } else {
- s = s.replace(/{##G##}/g, agj[dat[0]] + ((dat[1] == 1) ? "" : dat[1]));
- }
- }
-
- if (s.indexOf("{##R##}") != -1) { // [}̑Sp
- var dat = getWareki(y, m, d);
- if (dat[0] == -1) {
- s = s.replace(/{##R##}/g, y);
- } else {
- s = s.replace(/{##R##}/g, agR[dat[0]] + dat[1]);
- }
- }
- if (s.indexOf("{##r##}") != -1) { // [}̔p
- var dat = getWareki(y, m, d);
- if (dat[0] == -1) {
- s = s.replace(/{##r##}/g, y);
- } else {
- s = s.replace(/{##r##}/g, agr[dat[0]] + dat[1]);
- }
- }
-
- //
- if (s.indexOf("M") != -1) { // MM
- var mm = (m < 10) ? ("0" + m) : m;
- s = s.replace(/M/g, mm);
- }
- if (s.indexOf("m") != -1) { // M
- s = s.replace(/m/g, m);
- }
-
- if (s.indexOf("{##N##}") != -1) { // January
- s = s.replace(/{##N##}/g, ame[m - 1]);
- }
-
- if (s.indexOf("{##n##}") != -1) { // Jan
- s = s.replace(/{##n##}/g, ame[m - 1].substr(0, 3));
- }
-
- //
- if (s.indexOf("D") != -1) { // DD
- var dd = (d < 10) ? ("0" + d) : d;
- s = s.replace(/D/g, dd);
- }
- if (s.indexOf("d") != -1) { // D
- s = s.replace(/d/g, d);
- }
-
- // j
- if (s.indexOf("{##W##}") != -1) { // yj
- s = s.replace(/{##W##}/g, awj[w] + "j");
- }
-
- if (s.indexOf("{##w##}") != -1) { // y
- s = s.replace(/{##w##}/g, awj[w]);
- }
-
- if (s.indexOf("{##X##}") != -1) { // Saturday
- s = s.replace(/{##X##}/g, awe[w]);
- }
- if (s.indexOf("{##x##}") != -1) { // Sat
- s = s.replace(/{##x##}/g, awe[w].substr(0, 3));
- }
-
- return s;
-}
-
-function createDateString(y, m, d, fmt) {
- var isStrict = false; // t`FbN
- y = y - 0;
- m = m - 0;
- d = d - 0;
- if (y < 100) {
- y += 2000;
- }
-
- var d1 = new Date(y, m - 1, d);
- var ry = d1.getFullYear();
- var rm = d1.getMonth() + 1;
- var rd = d1.getDate();
- var rw = d1.getDay();
-
- if (isStrict) {
- if ((ry - y != 0) || (rm - m != 0)) {
- alert(I18N.t("XWFCMN-W0008")); // sȓtł
- return "";
- }
- }
-
- return formatDateString(ry, rm, rd, rw, fmt);
-}
-
-function getDateYMD(s, fmt) {
- err = false;
- y = -1;
- m = -1;
- d = -1;
- if (s.indexOf("-") == -1) { // Zp[^Ȃ
- if (s == "") {
- return null;
- }
-
- if (s.indexOf("#") != -1) {
- err = true;
- } else {
- switch (s.length) {
- case 4: // MMDD ƂĔf
- var now = XWEB.Date.get();
- y = now.getFullYear();
- m = s.substr(0, 2);
- d = s.substr(2);
- break;
-
- case 6: // YYYYMM ƂĔf(R2.1.4ƓdlAł͓ŏB
- if (fmt == "Ymd") {
- err = true;
- } else if (fmt == "YM") {
- err = true;
- } else if(fmt=="Ym"||
- (s.match(/^\d+$/)&&(fmt=="Y/M"||fmt=="Y-M"||fmt=="Y/m"||fmt=="Y-m"))) {
- y = s.substr(0,4);
- m = s.substr(4);
- d = 1;
- } else {
- y = s.substr(0,4);
- m = s.substr(4);
- d = 1;
- }
- break;
-
- case 8: // YYYYMMDD ƂĔf
-// if (fmt == "Ymd") {
-// err = true;
-// } else {
- y = s.substr(0, 4);
- m = s.substr(4, 2);
- d = s.substr(6);
-// }
- break;
-
- default:
- err = true;
- }
- }
- } else {
- if (s.indexOf("#") != -1) {
- err = true;
- } else {
- mat = s.match(/(\d+)/g);
- if (mat==null){
- var now = XWEB.Date.get();
- y = now.getFullYear();
- m = now.getMonth()+1;
- d = now.getDate();
- } else if (mat[2] != undefined) {
- y = mat[0];
- m = mat[1];
- d = mat[2];
- } else {
- if (mat[1]==undefined){
- var now = XWEB.Date.get();
- mat[1]=now.getDate();
- }
- if (mat[0] > 1000) { // N-ƂĔ d=1Ƃ
- y = mat[0];
- m = mat[1];
- d = 1;
- } else { // -ƂĔ N̓Jg
- var now = new Date();
- y = now.getFullYear();
- m = mat[0];
- d = mat[1];
- }
- }
- }
- }
- return new ymdDat(y, m, d, err);
-}
-
-function ymdDat(y, m, d, err) {
- this.year = y;
- this.month = m;
- this.date = d;
- this.error = err;
-}
-
-function getDateString(s, fmt) {
- if(XWEB.isFmtMMDD(fmt)){
- if(XWEB.isLeapDayMMDD(s)){
- return XWEB.getLeapDayMMDDString(s,fmt);
- }
- }
- s = s.replace(/[\/. N]/g, "-").replace(//g, "").replace(/[^0-9\-]/g, "#");
- dat = getDateYMD(s, fmt);
- if (dat == null) {
- return "";
- }
-
- if (!dat.error) {
- return createDateString(dat.year, dat.month, dat.date, fmt);
- } else {
- switch (fmt) {
- case "Ymd":
- case "YM":
- case "Ym":
- case "md":
- return s; //
-// break;
-
- default:
- alert(I18N.t("XWFCMN-W0008")); // sȓtł
- return "";
- }
- }
-}
-
-//-- c[`bv\
-
-var tipid = -1;
-function showTips(x,y,msg,bgc,bdc,ftc) {
- var DELAY = 600; // msec.
- if (msg != "") {
- var wk_msg=msg.replace(/^\\$/g, "\\\\");
- tipid = setTimeout("createTips("+x+","+y+",'"+wk_msg+"','"+bgc+"','"+bdc+"','"+ftc+"')", DELAY);
- } else {
- createTips(0,0,'');
- clearTimeout(tipid);
- }
-}
-
-function createTips(x,y,msg,bgc,bdc,ftc){
- var box = document.getElementById("xptipsbox");
- if (box == null) {
- return;
- }
- box.style.fontFamily="MS PGothic,Meiryo,Hiragino Kaku Gothic ProN,Hiragino Kaku Gothic Pro";
- box.style.zIndex=99999;
-
- if (bgc == "") bgc = "#ffffcc";
- if (bdc == "") bdc = "#999999";
- if (ftc == "") ftc = "#000000";
-
- if (msg != "") {
- msg = ""
- + ""
- + "" + msg + " "
- + "
";
- }
- if(navigator.userAgent.indexOf("MSIE 4.") >= 0){
- box.style.zIndex = 2;
- box.innerHTML = msg;
- box.style.left = x + 10;
- box.style.top = y + 10;
- } else if ((navigator.userAgent.indexOf("MSIE 5.")>=0) ||
- (navigator.userAgent.indexOf("MSIE 6.")>=0) ||
- (navigator.userAgent.indexOf("MSIE 7.")>=0) ||
- (navigator.userAgent.indexOf("MSIE 8.")>=0) ||
- (navigator.userAgent.indexOf("MSIE 9.")>=0) ) {
- box.style.zIndex = 2;
- box.innerHTML = msg;
- box.style.left = document.body.scrollLeft + x + 10 + "px";
- box.style.top = document.body.scrollTop + y + 10 + "px";
- } else if (document.layers) {
- // NN4 ... NO CHECKED
- document.box.document.open();
- document.box.document.write(msg);
- document.box.document.close();
- document.box.left = x + 10 + "px";
- document.box.top = y + 10 + "px";
- document.box.zIndex = 2;
- }else{
- box.style.zIndex = 2;
- box.innerHTML = msg;
- box.style.left = x + 10 + "px";
- box.style.top = y + 10 + "px";
- }
-}
-
-//--- copy field.
-// ex: copyValue_XP(_obj, "Rs[tB[hID")
-//
-function copyValue_XP(src, des) {
- var o = getElementById_XP(des);
- if (o) {
- if (o.tagName == "DIV") {
- if(navigator.userAgent.indexOf("Firefox") > -1){
- o.textContent = src.value;
- }else{
- o.innerText = src.value;
- }
- } else {
- o.value = src.value;
- }
- }
-}
-
-//--- string functions for x-point.
-function trim(s) {
- return s.replace(/^\s+|\s+$/g, "");
-}
-
-function rtrim(s) {
- return s.replace(/\s+$/, "");
-}
-
-function ltrim(s) {
- return s.replace(/^\s+/, "");
-}
-
-function lengthB(text){
- var count = 0;
- for (var i=0; i 0);
-};
-isProperDate=function(yymmdd){
- s = yymmdd.replace(/[\/. N]/g, "-").replace(//g, "").replace(/[^0-9\-]/g, "#");
- dat = getDateYMD(s, "");
- var y1 = dat.year;
- var m1 = dat.month - 1;
- var d1 = dat.date;
- var dt = new Date(y1, m1, d1);
- var y2 = dt.getFullYear();
- var m2 = dt.getMonth();
- var d2 = dt.getDate();
- return ((y1 == y2) && (m1 == m2) && (d1 == d2));
-};
-
-isEditMode=function(){
- var o=document.getElementById("doc_editmode");
- if(o){
- return o.value="true"?true:false;
- }else{
- return true;
- }
-};
-getCurrentPageNo=function(){return 1};
-getMaxPageNo=function(){return 1};
-
-//---
-
-/**
- * OCĂhC̃R[h擾
- */
-getLoginDomainCd=function(){
- return "";
-};
-
-/**
- * \tH[̃tH[R[h擾B
- * tH[̏ꍇ͕tH[̓o^R[hԂ܂B
- */
-getFormCd=function(){
- return _xp_myformcd;
-};
-
-/**
- * \̓̓tH[ŗpĂtH[̃tH[R[h
- * Array^zŕԂ܂B
- */
-getFormCdList=function(){ // arrays.
- return new Array(_xp_myformcd);
-};
-
-/**
- * wtH[R[htH[̉y[WڂŗpĂ邩Ԃ܂B
- */
-getFormPageNo=function(fcd) {
- return 1;
-};
-
-/**
- * ֘AtH[̏ID擾B(Deji.934)
- * eFormMakerł͏undefinedԂB
- */
-getParentDocumentId=function(){
- return undefined;
-};
-
-/**
- * tH[initXpForm()ɎsB
- * Av1.8.4.01ȍ~eFormMakeronLoad JavaScript^uɋLq
- * sꍇɌ܂B
- */
-initXpForm_ALL=function(){
- var _xp_fcd_lists=getFormCdList();
- for(var n in _xp_fcd_lists){
- var f_xp_init=eval("window.initXpForm_"+_xp_fcd_lists[n]);
- if(typeof(f_xp_init)=='function'){
- try{
- f_xp_init();
- }catch(e){
- throw new Error(-1, 'initXpForm: '+_xp_fcd_lists[n]+': '+e.description);
- }
- }
- }
-};
-
-xpPrepare_ALL=function(func){
- return true;
-};
-
-// End of file.
diff --git a/AgileWorks/WebContent/TSlib/xweberr.jsp b/AgileWorks/WebContent/TSlib/xweberr.jsp
deleted file mode 100644
index c8e9ad25adda9e81d34d419043285860c81b7038..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/TSlib/xweberr.jsp
+++ /dev/null
@@ -1,124 +0,0 @@
-
-<%@ page contentType="text/html;charset=Shift_JIS" isErrorPage="true"
- import="java.io.CharArrayWriter, java.io.PrintWriter, java.util.*"%>
-<%@ page import="jp.co.softcreate.xwebform.lib.XWebException"%>
-<%@ page import="jp.co.softcreate.xwebform.lib.XWebError"%>
-
-<%
- if( exception != null ){
- XWebException xwe = ( XWebException )exception;
- XWebError err = xwe.getXWebError();
-%>
-
-
-
-
- <%= err.getTypeTitle() %>
-
-
-
-
-
-
-
- <%= err.getTitle() %>
-
-
-
-
-
-
-
-
-
- y <%= err.getCaptionReason() %> z
-
-
-
-
-
-
- <%
- int maxcnt = 7;
- List reason = err.getReason();
- System.out.println( reason );
- for( int i = 0; ( i < reason.size() || i < maxcnt ); i++ ){
- out.println( "" );
- if( i < reason.size() ){
- out.println( reason.get( i ) + " " );
- } else {
- out.println( " " );
- }
- out.println( " " );
- }
- %>
-
-
-
-
-
-
-
-
-
-
-
- <% if ( ( err.getType() != XWebError.INPUT ) && ( err.getType() != XWebError.SETTING_FILTER_TABLE ) ) { %>
-
-
-
-
-
-
- y <%= err.getCaptionStackTrace() %> z
-
-
-
-
-
-
-
-
-
- <%= xwe.getThrowableMessage() %>
-
-
-
-
-
-
-
-
-
-
- <% } %>
-
-
-
-
-
-<% } %>
-
-
-
diff --git a/AgileWorks/WebContent/TSlib/xwebform-calendar.js b/AgileWorks/WebContent/TSlib/xwebform-calendar.js
deleted file mode 100644
index b8e2dd1aef7806af353738345d45feff1dc96c0c..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/TSlib/xwebform-calendar.js
+++ /dev/null
@@ -1,858 +0,0 @@
-// Copyright (C) 2011 ATLED CORP. All rights Reserved.
-//
-// X-WebForm functions.
-// for X-WebForm Generator Tagset Ver.2.1.03-b00 build 081118 (1970) later.
-//
-XWEB.Calendar_timerID;
-XWEB.Calendar_instance;
-XWEB.Calendar=new function(){
- XWEB.Calendar_instance=this;
- this.idname='_XWebCal';
- this.storeOnFocus=false;
-
- this.id_Py=this.idname+'_bPy'; // prev year.
- this.id_Pm=this.idname+'_bPm'; // prev month.
- this.id_Nw=this.idname+'_bNw'; // now.
- this.id_Nm=this.idname+'_bNm'; // next month.
- this.id_Ny=this.idname+'_bNy'; // next year.
- this.id_day=this.idname+'_d'; // calendar date cell.
-
- this.yy_idname=this.idname+"_yy";
- this.yyspan_idname=this.idname+"_yyspan";
- this.mm_idname=this.idname+"_mm";
- this.mmspan_idname=this.idname+"_mmspan";
- this.drag_calendar=true;
-
- this.COL_MVC = "#caf9d8"; // MouseOverF
- this.COL_MTC = "#ffffff"; // MouseOutF
- this.COL_MVT = "#9999ff"; // c[sMouseOverwiF
- this.COL_MVB = "#ffffff"; // c[sMouseOvergF
- this.COL_MTT = "#999999"; // c[sMouseOutwiF
- this.COL_MTB = "#999999"; // c[sMouseOutgF
-
- this.aYStr = new Array(
- I18N.t("js.control.Calendar.day.Sunday"), //
- I18N.t("js.control.Calendar.day.Monday"), //
- I18N.t("js.control.Calendar.day.Tuesday"), //
- I18N.t("js.control.Calendar.day.Wednesday"), //
- I18N.t("js.control.Calendar.day.Thursday"), //
- I18N.t("js.control.Calendar.day.Friday"), //
- I18N.t("js.control.Calendar.day.Saturday") // y
- );
- //this.IMG_CLOSE="/TSlib/images/frame/close.gif";
- //this.IMG_CLEAR="/TSlib/images/frame/eraser.gif";
-
- this.dtToday = null; // ̓t(VXet)
- this.dtTarget;
- this.targetY;
- this.targetM;
- this.targetD;
- this.dtFirst;
- this.firstYear;
- this.firstMonth;
- this.firstDate;
-
- this.msgTd ='';
- this.pId;
-
- this.dtStart;
- this.dtEnd;
- this.dtFmt;
-
- this.ttStart = null;
- this.ttEnd = null;
- this.defaut_date;
-
- this.clear_action;
- this.putdate_action;
- this.close_action;
-
- /**
- * obj --- kick object.
- * start_date,
- * end_date,
- * date_Fmt --- date format, default is "Y/M/D"
- * defaut_date --- default is system date.
- */
- this.Show=function(obj,start_date,end_date,date_Fmt,defaut_date){
- var cal_obj=document.getElementById(this.idname);
- if(cal_obj==undefined){
- cal_obj=document.createElement('div');
- cal_obj.id=this.idname;
- //cal_obj.name=this.idname;
- cal_obj.style.position='absolute';
- cal_obj.style.width='180px';
- cal_obj.style.height='auto';//'210px';
- cal_obj.style.overflowX='auto';
- cal_obj.style.overflowY='auto';
- cal_obj.style.backgroundColor='#ffffff';
- cal_obj.style.borderColor='silver';
- document.body.appendChild(cal_obj);
- }else{
- cal_obj.style.width='180px';
- cal_obj.style.height='auto';//'210px';
- };
-
- var obj_pos=XWEB.getObjectPosition(obj);
- var vpg_diff=0;
- if(XWEB.Html.enabled_vertical_view){
-// var lno=XWEB.LAYERMANAGER.getLayerNo(obj.id);
- var lno_obj=obj.id;
- if(lno_obj.match(/_\d*$/)){ //T-000453
- var www=lno_obj.replace(/_\d*$/,"");
- var rowno=0;
- var p=lno_obj.lastIndexOf('_');
- if(p>=0){
- var s=lno_obj.substr(p+1);
- rowno=parseInt(s);
- }
- for(var n in XWEB.Html.xwf_field_type){
- var tbl=XWEB.Html.xwf_field_type[n];
- if (tbl.type==XWEB.FieldType.Table){
- if (tbl.getField(rowno,www)!=undefined){
- lno_obj=tbl.id;
- break;
- }
- }
- }
- }
- var lno=XWEB.LAYERMANAGER.getLayerNo(lno_obj);
- if(lno>0){
- var pbody0=document.getElementById('xwf_vbody0');
- var pbodyn=document.getElementById('xwf_vbody'+lno);
- //alert('Vertical: '+obj.id+': '+lno+": "+pbodyn.style.left+","+pbodyn.style.top);
- if(pbodyn){
-// vpg_diff=(parseInt(pbodyn.style.top)+parseInt(pbody0.style.top));
- vpg_diff=(parseInt(pbodyn.style.top)-parseInt(pbody0.style.top)); //T-000453
- obj_pos.y+=vpg_diff;
- }
- }
- }
- var pos_x=obj_pos.x+10;
- var pos_y=obj_pos.y+parseInt(obj.style.height)+3;
- if (isNaN(pos_y)){ // T-001044
- pos_y=obj_pos.y+obj.clientHeight+3;
- }
-
- if(XWEB.Form.width==0){ // for X-point
- XWEB.Form.width=TSpw;
- XWEB.Form.height=TSph;
- }
-
- var wk_cal_left=XWEB.Form.left+XWEB.Form.width-parseInt(cal_obj.style.width);
-// var wk_cal_top =XWEB.Form.top+XWEB.Form.height-(9*20);
- var wk_cal_top =XWEB.Form.top+XWEB.Form.height-(9*20)+vpg_diff;
- cal_obj.style.left=(wk_cal_left80?"19":"20")+dt_str;
- }else{
- return dt_str;
- }
- }else if(this.dtFmt=="Y/M"||this.dtFmt=="Y/m"){ //@yyyy/mm, y/m
- return dt_str+"/01";
- }else if(this.dtFmt=="M/D"||this.dtFmt=="m/D"){ // mm/dd, m/d
- ;//skip.
- }else if(this.dtFmt=="MD"){ // mm/dd
- ;//skip.
- }
- return dt_str.replace(/[N]/g, "/").replace(//g,"");
- }
-
- // t(YYYY/MM/DD)
- this.formatDateYMD=function(dt) {
- var y = dt.getFullYear();
- var m = dt.getMonth() + 1;
- var d = dt.getDate();
- return (y + "/" + ((m < 10) ? "0" : "") + m + "/" + ((d < 10) ? "0" : "") + d);
- };
-
- // t(YYYY/MM/DD)
- this.formatDateYM=function(dt) {
- var y = dt.getFullYear();
- var m = dt.getMonth() + 1;
- return (y + "/" + ((m < 10) ? "0" : "") + m);
- };
-
- // ړ
- this.moveMonth=function(k) {
- if (k == 0) {
- this.dtTarget = this.dtToday;
- } else {
- this.dtTarget = new Date(this.targetY, this.targetM + k, this.targetD);
- if (this.dtTarget.getDate() != this.targetD) {
- this.dtTarget = this.dateSub(this.dtTarget, this.dtTarget.getDate());
- }
- }
- this.setTarget();
- this.dispCal();
- };
-
- this.getNYobi=function(y, m, n, yo){
- var wDate = new Date(y, (m - 1), 1); // y/m/1
- var yobi = wDate.getDay(); // j擾 -> yobi
- var dm = (7 - (yobi - yo)) % 7 + 1; // P wdj
- d = dm + ((n - 1) * 7); // Ώۓ(n wdj)
- return d;
- };
-
- this.getHolidayStr=function(y,m,d){
- switch (m) {
- case 1:
- if (d == 1) { return "U"; }
- if (y < 2000) {
- if (d == 15) { return "l̓"; }
- } else {
- if (d == this.getNYobi(y, 1, 2, 1)) { return "l̓"; } // 12j
- }
- break;
- case 2:
- if (d == 11) { return "LO"; }
- break;
- case 3:
- var nS3 = Math.floor(20.8431 + 0.242194 * (y - 1980) - Math.floor((y - 1980) / 4)); // (1980-2099܂)
- if (d == nS3) { return "t̓"; }
- break;
- case 4:
- if (d == 29) {
- if (y < 1989) { return "(a)Vca";
- } else if (y < 2007) { return "݂ǂ̓";
- } else { return "a̓";
- }
- }
- break;
- case 5:
- if (d == 3) { return "@LO"; }
- if (d == 4) { return (y >= 2007) ? "݂ǂ̓" : "";}
- if (d == 5) { return "ǂ̓"; }
- break;
- case 6:
- break;
- case 7:
- if (y >= 1995) {
- if (y <= 2002) {
- if (d == 20) { return "C̓"; }
- } else {
- if (d == this.getNYobi(y, 7, 3, 1)) { return "C̓"; } // 73j
- }
- }
- break;
- case 8:
- break;
- case 9:
- if (y >= 1966) {
- if (y <= 2002) {
- if (d == 15) { return "hV̓"; }
- } else {
- if (d == this.getNYobi(y, 9, 3, 1)) { return "hV̓"; } // 93j
- }
- }
- var nS9 = Math.floor(23.2488 + 0.242194 * (y - 1980) - Math.floor((y - 1980) / 4)); // (1980-2099܂)
- if (d == nS9) { return "H̓"; }
- break;
- case 10:
- if (y >= 1966) {
- if (y <= 2000) {
- if (d == 10) { return "̈̓"; }
- } else {
- if (d == this.getNYobi(y, 10, 2, 1)) { return "̈̓"; } // 102j
- }
- }
- var nS9 = Math.floor(23.2488 + 0.242194 * (y - 1980) - Math.floor((y - 1980) / 4)); // (1980-2099܂)
- break;
- case 11:
- if (d == 3) { return "̓"; }
- if (d == 23) { return "ΘJӂ̓"; }
- break;
- case 12:
- if (d == 23) { return "Vca"; }
- break;
- default:
- break;
- }
- return "";
- };
-
- this.drawHoliday=function(st, ed) {
- var dt = st;
- var tt = dt.getTime();
- var et = ed.getTime();
- var cnt = 0;
- while (tt <= et) {
- var y = dt.getFullYear();
- var m = dt.getMonth() + 1;
- var d = dt.getDate();
- var sHd = "";
-
- sHd = this.getHolidayStr(y, m, d);
- if (sHd != "") {
- var wCol;
- if (((tt < this.ttStart) && (this.dtStart)) || ((tt > this.ttEnd) && (this.dtEnd)) || (this.targetM + 1 != m)) {
- wCol = "#ff9999";
- } else {
- wCol = "#ff0000";
- }
-
- document.getElementById(this.id_day + cnt).title = sHd;
- document.getElementById(this.id_day + cnt).style.color = wCol;
- if (dt.getDay() == 0) {
-// if (y < 2007) {
- document.getElementById(this.id_day + (cnt + 1)).title = "Ux";
- document.getElementById(this.id_day + (cnt + 1)).style.color = wCol;
-// }
- }
-
- if (y >= 1986) {
- if (((cnt - 2) >= 0) && (document.getElementById(this.id_day + (cnt - 1)).title == "") && (document.getElementById(this.id_day + (cnt - 2)).title != "")) {
- if (this.targetM + 1 != m) {
- wCol = "#ff9999";
- } else {
- wCol = "#ff0000";
- }
- document.getElementById(this.id_day + (cnt - 1)).title = "̋x";
- document.getElementById(this.id_day + (cnt - 1)).style.color = wCol;
- }
- }
-
- if (y >= 2007) {
- // 2007Nȍ~AjjǍ̍̏jłȂUxɂȂB
- // 悤5/3-5̂ǂꂩjȂ5/6x
- if ((m == 5) && (d >= 3) && (d <= 5)) {
- if (dt.getDay() == 0) {
- document.getElementById(this.id_day + (cnt + 5 - d + 1)).title = "Ux";
- document.getElementById(this.id_day + (cnt + 5 - d + 1)).style.color = wCol;
- }
- }
- }
- }
-
- cnt++;
- dt = this.dateAdd(dt, 1);
- tt = dt.getTime();
- }
- }
-
- // YJnt擾
- this.calcfirstDate=function() {
- var d = new Date(this.targetY, this.targetM, 1);
- this.dtFirst = new Date(this.targetY, this.targetM, 1 - d.getDay());
- this.firstYear = this.dtFirst.getFullYear();
- this.firstMonth = this.dtFirst.getMonth();
- this.firstDate = this.dtFirst.getDate();
- };
-
- this.DragComboArea=function(event){
- if(this.drag_calendar){
- XWEB.Calendar.DragStart(event);
- }
- };
-
- // AComboBoxőIwiANbNj
- this.ShowCombo=function(bYear){
- var oy=document.getElementById(this.yy_idname);
- var om=document.getElementById(this.mm_idname);
- var sy=document.getElementById(this.yyspan_idname);
- var sm=document.getElementById(this.mmspan_idname);
-
- oy.style.visibility=bYear?'visible':'hidden';
- om.style.visibility=bYear?'hidden':'visible';
- oy.style.left = (parseInt(sy.offsetLeft) + 25) + "px";
- om.style.left = (parseInt(sm.offsetLeft) + 25) + "px";
-
- this.drag_calendar=false;
- };
-
- // AComboBoxőIԂŒlύX
- this.ChangeCombo=function(bYear){
- var oy=document.getElementById(this.yy_idname);
- var om=document.getElementById(this.mm_idname);
- if(bYear){
- this.dtTarget=new Date(oy.value,this.targetM,this.targetD);
- }else{
- this.dtTarget=new Date(this.targetY,Number(om.value)-1,this.targetD);
- }
- if (this.dtTarget.getDate() != this.targetD) {
- this.dtTarget = this.dateSub(this.dtTarget, this.dtTarget.getDate());
- }
- this.BlurCombo(bYear);
- this.setTarget();
- this.dispCal();
- };
-
- // AComboBoxőIԂłtH[JXO
- this.BlurCombo=function(bYear){
- var oy=document.getElementById(this.yy_idname);
- var om=document.getElementById(this.mm_idname);
- if(bYear){
- oy.style.visibility='hidden';
- }else{
- om.style.visibility='hidden';
- }
- this.drag_calendar=true;
- }
-
- // J_[\
- this.dispCal=function() {
- var s ="";
- var sStyle="";
- var isPm = true;
- var isNm = true;
-
- var ttToday = this.dtToday.getTime();
- var ttTarget = this.dtTarget.getTime();
- if (this.dtStart) {
- if (ttTarget < this.ttStart) {
- this.dtTarget = this.dtStart;
- this.setTarget();
- }
-
- dtWork = new Date(this.targetY, this.targetM, 0);
- if (dtWork.getTime() < this.ttStart) {
- isPm = false;
- }
- }
-
- if (this.dtEnd) {
- if (ttTarget > this.ttEnd) {
- this.dtTarget = this.dtEnd;
- this.setTarget();
- }
- dtWork = new Date(this.targetY, this.targetM + 1, 1);
- if (dtWork.getTime() > this.ttEnd) {
- isNm = false;
- }
- }
- ttTarget = this.dtTarget.getTime();
-
- this.calcfirstDate();
- s += "";
-s += "";
- for (var y = 0; y < 7; y++) {
- s += " ";
- }
-s += " ";
-s += "";
- var caption_bar_style="background-color:"+XWEB.Const.CaptionBarBackgroundColor+";color:"+XWEB.Const.CaptionBarColor+";"+
- "cursor:pointer;font-family:MS UI Gothic, Hiragino Kaku Gothic Pro W3, Osaka, sans-serif;font-size:11pt;";
- s += "";
- s += " ";
-
- var block_year = function(self){
- var s = "";
- s += "" + self.targetY + " ";
- var cur_year = Number(self.targetY);
- cur_year = cur_year < 1600 ? 1600 : cur_year;
- cur_year = cur_year < 2400 ? cur_year : 2400;
- var min_year = cur_year - 50;
- var max_year = cur_year + 50;
- s += "";
- for (var iy=min_year;iy < max_year; ++iy) {
- s += ""+iy+" ";
- }
- s += " ";
- return s;
- }(this);
-
- var block_month = function(self){
- var s = "";
- s += "" + I18N.t("js.control.Calendar.month." + (self.targetM+1)) + " ";
- var cur_month = Number(self.targetM)+1;
- s += "";
- for (var im=1;im <= 12; ++im){
- s += "" + I18N.t("js.control.Calendar.month." + im) +" ";
- }
- s += " ";
- return s;
- }(this);
-
- s += "";
- s += " " + I18N.t("js.control.Calendar.label", block_year, block_month) + "
";
- s += " ";
-
- s+=" ";
- s+=" ";
-
- s += " ";
- s += "";
-
- var style_ta ="display: block;color: #ffffff;text-decoration: none;";
- var style_ta1="font: bold 15px Verdana, MS PGothic, Hiragino Kaku Gothic Pro W3, Osaka, sans-serif;";
- var style_ta2="font: 13px MS PGothic, Hiragino Kaku Gothic Pro W3, Osaka, sans-serif; padding: 3px 0px 0px 0px;";
- var style_tad="color: #666666;cursor: default;";
-
- var style_ta_ta1=style_ta+style_ta1;
- var style_ta_ta1_tad=style_ta+style_ta1+style_tad;
- var style_ta_ta2=style_ta+style_ta2;
-
- if (isPm) {
- s += "« ";
- s += "‹ ";
- } else {
- s += "« ";
- s += "‹ ";
- }
-
- s += "" + I18N.t("js.control.Calendar.button.thisMonth") +" ";
-
- if (isNm) {
- s += "› ";
- s += "» ";
- } else {
- s += "› ";
- s += "» ";
- }
-
- s += " ";
- s += "";
- for (var i = 0; i < 7; i++) {
- sStyle="height:20px; font: 13px MS PGothic, Hiragino Kaku Gothic Pro W3, Osaka, sans-serif;";
- switch(i){
- case 0: sStyle+="color: #ff0000;cursor: pointer;"; break;
- case 6: sStyle+="color: #0000ff;cursor: pointer;"; break;
- default: sStyle+="color: #000000;cursor: pointer;"; break;
- }
- s += "" + this.aYStr[i] + " ";
- }
- s += " ";
-
- var dtLast; // PT̓j
- var dt = this.dtFirst; // PT̓j
- var cnt = 0;
- var tdyId = "";
- for (var w = 0; w < 6; w++) { // TƂ̃[v
- s += "";
- for (var y = 0; y < 7; y++) { // `ỹ[v
- tt = dt.getTime();
- tM = dt.getMonth();
- tD = dt.getDate();
- var cTyp = dt.getMonth() == this.targetM ? "1" : "2"; // (1),אڌ(2)
- if (this.dtStart) {
- if (tt < this.ttStart) {
- cTyp = "2";
- }
- }
- if (this.dtEnd) {
- if (tt > this.ttEnd) {
- cTyp = "2";
- }
- }
-
- if(isIE9STD()){
- //T-002467 Windows UIIEŃJ_t^b`삷ƁAtnCCg\B
- //̖邽߁A-ms-user-selectNjL
- sStyle="height:16px; font: 13px MS PGothic, Hiragino Kaku Gothic Pro W3, Osaka, sans-serif;-ms-user-select:none;";
- }else{
- sStyle="height:20px; font: 13px MS PGothic, Hiragino Kaku Gothic Pro W3, Osaka, sans-serif;outline:0;";
- }
- if(cTyp=="1"){
- switch(y){
- case 0: sStyle+="color: #ff0000;cursor: pointer;"; break;
- case 6: sStyle+="color: #0000ff;cursor: pointer;"; break;
- default: sStyle+="color: #000000;cursor: pointer;"; break;
- }
- }else{
- switch(y){
- case 0: sStyle+="color: #ff9999;cursor: default;"; break;
- case 6: sStyle+="color: #9999ff;cursor: default;"; break;
- default: sStyle+="color: #999999;cursor: default;"; break;
- }
- }
-
- // ̓tł
- if (tt == ttToday) {
- sStyle+="font-weight:bold;"; //
- }
- if (tt == ttTarget) {
- sStyle+="border:solid 2px #caf9d8;"; // I(g)
- this.pId = this.id_day + cnt;
- } else {
- sStyle+="border:solid 2px #ffffff;"; // I
- }
- s += "" + tD + " ";
- cnt++;
- dtLast = dt;
- dt = this.dateAdd(dt, 1);
- }
- s += " ";
- if (dt.getMonth() != this.targetM){ // T̏IŌςĂ
- break;
- }
- }
- s+=" ";
- s += "
";
-
- s="";
- if(isIE9STD()){
- s="";
- }else{
- s="";
- }
-
- var cal_obj=document.getElementById(this.idname);
- cal_obj.innerHTML = s;
- this.drawHoliday(this.dtFirst, dtLast);
- var oSelId = document.getElementById(this.pId);
- if (oSelId != null) {
- if(oSelId.focus){
- oSelId.focus();
- }
- }
- };
-
- // wtB[hŃ|bvAbvJ_\ł邩肷BiT-002668j
- this.isShowCalendar=function(fld){
- var cal_obj=document.getElementById(this.idname);
- if (cal_obj && fldCal) { // "fldCal"tseformmaker.js"yyyy.mm.dd","yy.mm.dd"`œZ߂ĕԂۂ̃tB[hw
- if (fld.id==fldCal.id && cal_obj.style.visibility=='visible'){
- return true; // ݂̃tB[hŃJ_\
- }
- }
- return false;
- };
-
- return this;
-};
-
-//-- end of file.
diff --git a/AgileWorks/WebContent/TSlib/xwebform-dialog.js b/AgileWorks/WebContent/TSlib/xwebform-dialog.js
deleted file mode 100644
index cc59b10f4b320581264e24fbed97dfd61bfd8d90..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/TSlib/xwebform-dialog.js
+++ /dev/null
@@ -1,267 +0,0 @@
-// Copyright (C) 2011 ATLED CORP. All rights Reserved.
-//
-// X-WebForm functions.
-// for X-WebForm Generator Tagset Ver.2.2.00-b00 build 110520 (2145) later.
-// for X-WebForm Generator 2.2.0-b00 build 110511 (2145)
-//
-MessageBoxButtons=new function(){
- this.AbortRetryIgnore=1;
- this.OK =2;
- this.OKCancel =3;
- this.RetryCancel =4;
- this.YesNo =5;
- this.YesNoCancel =6;
- return this;
-};
-
-MessageBoxIcon=new function(){
- this.Asterisk =1; //bZ[W {bNXɁA~ň͂܂ꂽ i 琬L\܂B
- this.Error =2; //bZ[W {bNXɁAwiԂ̉~ň͂܂ꂽ X 琬L\܂B
- this.Exclamation =3; //bZ[W {bNXɁAwiF̎Op`ň͂܂ꂽQ琬L\܂B
- this.Hand =4; //bZ[W {bNXɁAwiԂ̉~ň͂܂ꂽ X 琬L\܂B
- this.Information =5; //bZ[W {bNXɁA~ň͂܂ꂽ i 琬L\܂B
- this.None =6; //bZ[W {bNXɋL\܂B
- this.Question =7; //bZ[W {bNXɁA~ň͂܂ꂽ^╄琬L\܂B
- this.Stop =8; //bZ[W {bNXɁAwiԂ̉~ň͂܂ꂽ X 琬L\܂B
- this.Warning =9; //bZ[W {bNXɁAwiF̎Op`ň͂܂ꂽQ琬L\܂B
- return this;
-};
-
-MessageBoxDefaultButton=new function(){
- this.Button1=1; //bZ[W {bNX 1 Ԗڂ̃{^̃{^łB
- this.Button2=2; //bZ[W {bNX 2 Ԗڂ̃{^̃{^łB
- this.Button3=3; //bZ[W {bNX 3 Ԗڂ̃{^̃{^łB
- return this;
-};
-
-DialogResult=new function(){
- this.Abort = 1; //_CAO {bNX̖߂l Abort ł (ʏ "~" Ƃxw肳ꂽ{^瑗܂)B
- this.Cancel = 2; //_CAO {bNX̖߂l Cancel ł (ʏ "LZ" Ƃxw肳ꂽ{^瑗܂)B
- this.Ignore = 3; //_CAO {bNX̖߂l Ignore ł (ʏ "" Ƃxw肳ꂽ{^瑗܂)B
- this.No = 4; //_CAO {bNX̖߂l No ł (ʏ "" Ƃxw肳ꂽ{^瑗܂)B
- this.None = 5; //_CAO {bNX Nothing Ԃ܂B܂A[_ _CAO {bNX̎sp܂B
- this.OK = 6; //_CAO {bNX̖߂l OK ł (ʏ "OK" Ƃxw肳ꂽ{^瑗܂)B
- this.Retry = 7; //_CAO {bNX̖߂l Retry ł (ʏ "Ďs" Ƃxw肳ꂽ{^瑗܂)B
- this.Yes = 8; //_CAO {bNX̖߂l Yes ł (ʏ "͂" Ƃxw肳ꂽ{^瑗܂)B
- return this;
-};
-
-XWEB.MessageBox=new function(){
- this.func=undefined; // call back function.(ex: XWEB.MessageBox.result(function))
-
- this.msg_id="_xwf_msg_box";
- this.alt_msg="";
- this.img_src="";
-
- this.OnClick=function(result_val,no_exec){
- if(this.func){
- if(no_exec==undefined){
- this.func(result_val);
- }
- this.func=undefined;
- }
- if(this.msg_obj){
- this.msg_obj.style.visibility='hidden';
- this.msg_obj.innerHTML="";
- }
- XWEB.Form.Disabled(false); // hidden backpanel screen.
- }
-
- /**
- * button click, function.
- */
- this.result=function(result_func){
- this.func=result_func;
- };
-
- /**
- * mesg : dialog message.(html tag ok)
- * caption : message caption.
- * buttons : default is "MessageBoxButtons.OK"
- * icons : default is no icon
- * defbutton: default is "MessageBoxDefaultButton.Button1"
- *
- * XWEB.MessageBox.result(): select dialog function.
- */
- this.Show=function(mesg,caption,buttons,icons,defbutton){
- if(typeof(buttons)=='undefined'||isNaN(Number(buttons))){
- buttons=MessageBoxButtons.OK;
- }
- if(typeof(defbutton)=='undefined'||isNaN(Number(defbutton))){
- defbutton=MessageBoxDefaultButton.Button1;
- }
- if(this.msg_obj==undefined){
- this.getMessageDiv();
- }
- var btn_html=this.getButtonHtml(Number(buttons));
- if(icons&&isNaN(Number(icons))==false){
- this.getIconImage(Number(icons)); // set alt_msg, img_src,
- }
-
- if(this.msg_obj){
- //var cap_style="background-color:"+XWEB.Const.CaptionBarBackgroundColor+";color:"+XWEB.Const.CaptionBarColor+";cursor:pointer;font-family:\"MS UI Gothic\";font-size:11pt;";
- var mesg_text;
- if(this.img_src.length>0){
- mesg_text=
- " "+
- " "+
- " "+
- " "+mesg+"
"+
- " ";
- }else{
- mesg_text=
- " "+
- " "+mesg+"
"+
- " ";
- }
- var html_text =
- ""+
- ""+
- " "+
- ""+mesg_text+" "+
- " "+
- ""+btn_html+" "+
- " "+
- " "+
- "
";
-
- this.msg_obj.innerHTML=html_text;
- XWEB.Frame.createDialog(this.msg_obj,caption,'XWEB.MessageBox.DragStart','XWEB.MessageBox.Close',html_text);
-
- //-- W
- this.msg_obj.style.left=XWEB.getWindowLeft()+(XWEB.Form.width/2);
- this.msg_obj.style.top =XWEB.getWindowTop()+(XWEB.getWindowHeight()/2);
-
- this.msg_obj.style.visibility='visible';
-
- var def_button=this.msg_id+"_b1";
- switch(Number(defbutton)){
- case MessageBoxDefaultButton.Button3: def_button=this.msg_id+"_b3"; break;
- case MessageBoxDefaultButton.Button2: def_button=this.msg_id+"_b2"; break;
- default:
- case MessageBoxDefaultButton.Button1: def_button=this.msg_id+"_b1"; break;
- }
- var o=document.getElementById(def_button);
- if(o){
- o.focus();
- }
-
- //-- W
- //this.msg_obj.style.left=(XWEB.getWindowWidth()-this.msg_obj.style.width)/2;
- //this.msg_obj.style.top=(XWEB.getWindowHeight()-this.msg_obj.style.height)/2;
-// this.msg_obj.style.left=XWEB.Form.left+(XWEB.Form.width /2);
-// this.msg_obj.style.top =XWEB.Form.top +(XWEB.Form.height/2);
-
- XWEB.Form.Disabled(true);
- }
- }
-
- this.getMessageDiv=function(){
- this.msg_obj=document.getElementById(this.msg_id);
- if(this.msg_obj==undefined){
- this.msg_obj=document.createElement('div');
- this.msg_obj.style.visibility='hidden';
- this.msg_obj.style.position='absolute';
- this.msg_obj.style.overflowX='hidden';
- this.msg_obj.style.overflowY='hidden';
- this.msg_obj.style.zIndex=XWEB.Const.MessageLayer;
- this.msg_obj.style.backgroundColor='#ffffff';
- //border:1 1 solid
- document.body.appendChild(this.msg_obj);
- }
- };
-
- this.makeButton=function(idname,val,click,access_key){
- var wk_val=access_key?val+"("+access_key+")":val;
- return " ";
- };
-
- this.getButtonHtml=function(buttons){
- var btn_html;
- switch(buttons){
- case MessageBoxButtons.AbortRetryIgnore:
- btn_html=this.makeButton(this.msg_id+"_b1",'Abort','DialogResult.Abort','A')+" "+
- this.makeButton(this.msg_id+"_b2",'Retry','DialogResult.Retry','R')+" "+
- this.makeButton(this.msg_id+"_b3",'Ignore','DialogResult.Ignore','I');
- break;
- default:
- case MessageBoxButtons.OK :
- btn_html=this.makeButton(this.msg_id+"_b1",'OK','DialogResult.OK','O');
- break;
- case MessageBoxButtons.OKCancel :
- btn_html=this.makeButton(this.msg_id+"_b1",'OK','DialogResult.OK','O')+" "+
- this.makeButton(this.msg_id+"_b2",'Cancel','DialogResult.Cancel','C');
- break;
- case MessageBoxButtons.RetryCancel :
- btn_html=this.makeButton(this.msg_id+"_b1",'Retry','DialogResult.Retry','R')+" "+
- this.makeButton(this.msg_id+"_b2",'Cancel','DialogResult.Cancel','C');
- break;
- case MessageBoxButtons.YesNo :
- btn_html=this.makeButton(this.msg_id+"_b1",'Yes','DialogResult.Yes','Y')+" "+
- this.makeButton(this.msg_id+"_b2",'No','DialogResult.No','N');
- break;
- case MessageBoxButtons.YesNoCancel :
- btn_html=this.makeButton(this.msg_id+"_b1",'Yes','DialogResult.Yes','Y')+" "+
- this.makeButton(this.msg_id+"_b2",'No','DialogResult.No','N')+" "+
- this.makeButton(this.msg_id+"_b3",'Cancel','DialogResult.Cancel','C');
- break;
- }
- return btn_html;
- };
-
- this.getIconImage=function(icons){
- switch(icons){
- case MessageBoxIcon.Asterisk: // "i" (small i on circle)
- this.alt_msg="Asterisk";
- this.img_src=XWEB.Rpc.contextpath+"/TSlib/images/info_icon.gif";
- break;
- case MessageBoxIcon.Information:
- this.alt_msg="Information";
- this.img_src=XWEB.Rpc.contextpath+"/TSlib/images/info_icon.gif";
- break;
- case MessageBoxIcon.Error: // "X" (on red circle)
- this.alt_msg="Error";
- this.img_src=XWEB.Rpc.contextpath+"/TSlib/images/error_icon.gif";
- break;
- case MessageBoxIcon.Hand:
- this.alt_msg="Hand";
- this.img_src=XWEB.Rpc.contextpath+"/TSlib/images/error_icon.gif";
- break;
- case MessageBoxIcon.Stop:
- this.alt_msg="Stop";
- this.img_src=XWEB.Rpc.contextpath+"/TSlib/images/error_icon.gif";
- break;
- case MessageBoxIcon.Exclamation: // "!" (on yellow tryangle)
- this.alt_msg="Exclamation";
- this.img_src=XWEB.Rpc.contextpath+"/TSlib/images/alarm_icon.gif";
- break;
- case MessageBoxIcon.Warning: // "!" (on yellow tryangle)
- this.alt_msg="Warning";
- this.img_src=XWEB.Rpc.contextpath+"/TSlib/images/alarm_icon.gif";
- break;
- case MessageBoxIcon.Question: // "?"
- this.alt_msg="Question";
- this.img_src=XWEB.Rpc.contextpath+"/TSlib/images/question_icon.gif";
- break;
- case MessageBoxIcon.None:
- this.alt_msg="";
- //this.img_src=XWEB.Rpc.contextpath+"/TSlib/images/transparent.gif";
- this.img_src="";
- break;
- }
- };
-
- this.DragStart=function(event){
- if(this.msg_obj){
- XWEB.Drag.Start(this.msg_obj,event);
- }
- };
-
- this.Close=function(){
- this.OnClick(-1,true);
- };
-
- return this;
-};
-
-//-- end of file.
diff --git a/AgileWorks/WebContent/TSlib/xwebform-i18n.js b/AgileWorks/WebContent/TSlib/xwebform-i18n.js
deleted file mode 100644
index fcd7eb6be9c2b798dbc088381b730fe08aa3b24d..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/TSlib/xwebform-i18n.js
+++ /dev/null
@@ -1,158 +0,0 @@
-var I18N = window.I18N || {};
-
-I18N.t = function(code, insertion) {
- var message = I18N[code];
- if (message && insertion) {
- var args;
- if (insertion instanceof Array) {
- args = insertion;
- } else {
- args = Array.prototype.slice.call(arguments, 1, arguments.length);
- }
- message = message.sprintf(args);
- }
- return message || "";
-};
-
-/** tiny sprintf
- * format:
- * "%"[arg-index-specifier"$"][sign-specifier][width-specifier][precision-specifier]type-specifier
- *
- * sign-specifier:
- * "#": add "0", "0x", "0X" mark
- * : type"o"Ȃ擪"0"lj܂B
- * : type"x"Ȃ擪"0x"lj܂B
- * : type"X"Ȃ擪"0X"lj܂B
- *
- * width-specifier:
- * n: minimize field width(0 to 9)
- * : Œች\邩w肵܂Bw\Ȓl0`9łB0Ŕ\ɂȂ܂B
- *
- * precision-specifier:
- * "."n: floating-point limit width(0 to 9) for "f". string limit width(0 to 9) for "s"
- * : hbgƐlw肷邱Ƃŏ_ȉ̌╶̒wł܂Bw\Ȓl0`9łB
- * : type"f"ȂA_ȉ̌w肵܂B_lۂ߂邱Ƃ܂B0ŏ_ȉ\ɂȂ܂B
- * : type"s"ȂA̒w肵܂Bw肵ȏ͐̂̕Ă܂B0Ŕ\ɂȂ܂B
- *
- * type-specifier:
- * "d": signed decimal number
- * "u": unsigned decimal number
- * "o": unsigned octet number
- * "x": unsigned hex number(lower case)
- * "X": unsigned hex number(upper case)
- * "f": floating-point number
- * "c": the character with that ASCII value
- * "s": string
- * "%": "%"
- *
- * arg-index-specifier:
- * n : arguments index
- * : ̃CfbNXw肵܂B̍ėpƁȀw肷邱Ƃɂi18nT|[g܂B
- *
- */
-if (!String.prototype.sprintf) {
- String.prototype.sprintf = function(args___) {
- var rv = [], i = 0, v, width, precision, sign, idx, argv = arguments, next = 0;
-
- // ɔzw肳ꂽꍇ
- if (argv && argv.length >= 1 && (argv[0] instanceof Array)) {
- argv = argv[0];
- }
-
- var s = (this + " ").split(""); // add dummy 5 chars.
- var unsign = function(val) {
- return (val >= 0) ? val : val % 0x100000000 + 0x100000000;
- };
- var getArg = function() {
- var arg = argv[idx ? idx - 1 : next++];
- if (arg !== null && arg !== undefined) {
- return arg;
- }
- return "";
- };
-
- for (; i < s.length - 5; ++i) {
- if (s[i] !== "%") {
- rv.push(s[i]);
- continue;
- }
-
- ++i, idx = 0, precision = undefined;
-
- // arg-index-specifier
- if (!isNaN(parseInt(s[i])) && s[i + 1] === "$") {
- idx = parseInt(s[i]);
- i += 2;
- }
- // sign-specifier
- sign = (s[i] !== "#") ? false : ++i, true;
- // width-specifier
- width = (isNaN(parseInt(s[i]))) ? 0 : parseInt(s[i++]);
- // precision-specifier
- if (s[i] === "." && !isNaN(parseInt(s[i + 1]))) {
- precision = parseInt(s[i + 1]);
- i += 2;
- }
-
- switch (s[i]) {
- case "d":
- v = parseInt(getArg()).toString();
- break;
- case "u":
- v = parseInt(getArg());
- if (!isNaN(v)) {
- v = unsign(v).toString();
- }
- break;
- case "o":
- v = parseInt(getArg());
- if (!isNaN(v)) {
- v = (sign ? "0" : "") + unsign(v).toString(8);
- }
- break;
- case "x":
- v = parseInt(getArg());
- if (!isNaN(v)) {
- v = (sign ? "0x" : "") + unsign(v).toString(16);
- }
- break;
- case "X":
- v = parseInt(getArg());
- if (!isNaN(v)) {
- v = (sign ? "0X" : "")
- + unsign(v).toString(16).toUpperCase();
- }
- break;
- case "f":
- v = parseFloat(getArg()).toFixed(precision);
- break;
- case "c":
- width = 0;
- v = getArg();
- v = (typeof v === "number") ? String.fromCharCode(v) : NaN;
- break;
- case "s":
- width = 0;
- v = getArg().toString();
- if (precision) {
- v = v.substring(0, precision);
- }
- break;
- case "%":
- width = 0;
- v = s[i];
- break;
- default:
- width = 0;
- v = "%" + ((width) ? width.toString() : "") + s[i].toString();
- break;
- }
- if (isNaN(v)) {
- v = v.toString();
- }
- (v.length < width) ? rv.push(" ".repeat(width - v.length), v) : rv
- .push(v);
- }
- return rv.join("");
- };
-}
diff --git a/AgileWorks/WebContent/TSlib/xwebform-mwin.js b/AgileWorks/WebContent/TSlib/xwebform-mwin.js
deleted file mode 100644
index 3d06ca3361294200e08b3fd62f7c4b6f03e0fccb..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/TSlib/xwebform-mwin.js
+++ /dev/null
@@ -1,1014 +0,0 @@
-// Copyright (C) 2011 ATLED CORP. All rights Reserved.
-//
-// X-WebForm ver.2.2.00 functions.
-// for X-WebForm Generator Tagset Ver.2.2.00-b00 build 110520 (2145) later.
-// for X-WebForm Generator 2.2.0-b00 build 110511 (2145)
-//
-XWEB.MWindow=new function(){
- this.idname='XWebMWin';
- this.rpc_url='/xwebform_mwin';
- this.mwin_obj; // window div.
- this.form_id;
- this.cellname='XWebMWinCell'; // this.cellname+"_"+row;
- this.cond_name='XWebMWinCond'; // condition parameter prefix.
- this.hdetail_idname='XWebMWinHDetail'; // detail header prefix.
- this.deital_idname='XWebMWinDetail'; // detail record prefix.
- this.content_idname='XWebMWinContent';
-
- this.caption="";
- this.caption_bg="silver"; // #C0C0C0
- this.caption_fg="#black"; // #000000
- this.border_col="#black"; // #000000
- this.odd_color ="white"; // #ffffff
- this.even_color="white"; // #ffffff
- this.mwin_width=400;
- this.mwin_height=200;
- this.pageline=10;
- this.viewline=5;
- this.seek_width=150; //̈敝
- this.seek_other_width=40; //̈敝(̑)
- this.button_width=60; //{^̈敝
- this.button_other_width=10; //{^̈敝(̑)
- this.list_min_width=50; //Xg̈̍Œᕝ
- this.mwin_margin_width=100; //}X^QƃEBhE̍E}[Wv
-
- this.col_caption=new Array();
- this.col_width=new Array();
- //this.datas=..
- this.seek_ids=new Array();
- this.seek_cap=new Array();
-
- this.columns=5;
- this.recordset=new Array(); // recordset data. (new XWEB.MWindow.CellData())
- this.return_to=new Array(); // select data set field id's.
-
- this.cur_page=1;
- this.top_page=1;
- this.prev_page=0;
- this.next_page=0;
- this.last_page=1;
-
- this.maxline=0; // line total.
-
- this.currentRow=''; // select record.
- this.responseCode;
-
- this.execCondition=false;
- this.window_open_object;
-
- this.rowno=undefined;
-
- this.Show=function(obj,form_id,args,bInitList,rowno){
- if(this.mwin_obj){
- // XWEB.Calendar.Close();
- this.mwin_obj.style.visibility='hidden';//\łtH[JX߂ɕ
- }
- this.form_id=form_id;
- this.rowno=rowno;
- if(XWEB.MWindow.Invoke(args,bInitList)==false){
- return; // error. create window data.
- }
- if(this.mwin_obj){
- var obj_pos=XWEB.getObjectPosition(obj);
- if(XWEB.Html.enabled_vertical_view){
-
- //--- (T-000297)
- var lno_obj=obj.id;
- if(rowno!=undefined){
- var www=obj.id.replace(/_\d*$/,"");
- for(var n in XWEB.Html.xwf_field_type){
- var tbl=XWEB.Html.xwf_field_type[n];
- if (tbl.type==XWEB.FieldType.Table){
- if (tbl.getField(rowno,www)!=undefined){
- lno_obj=tbl.id;
- break;
- }
- }
- }
- }
-
- //var lno=XWEB.LAYERMANAGER.getLayerNo(obj.id);
- var lno=XWEB.LAYERMANAGER.getLayerNo(lno_obj);
- if(lno>0){
- var pbody0=document.getElementById('xwf_vbody0');
- var pbodyn=document.getElementById('xwf_vbody'+lno);
- //alert('Vertical: '+obj.id+': '+lno+": "+pbodyn.style.left+","+pbodyn.style.top);
- if(pbodyn){
- obj_pos.y+=(parseInt(pbodyn.style.top)+parseInt(pbody0.style.top));
- }
- }
- }
- //var pos_x=obj_pos.x+10;
- var pos_y;
- if((isNaN(parseInt(obj.style.height)))){
- pos_y=obj_pos.y+3;
- }else{
- pos_y=obj_pos.y+parseInt(obj.style.height)+3;
- }
-
- var scr_left=0;
- var sct_top=0;
- if(XWEB.bIE){
- scr_left=parseInt(XWEB.getWindowLeft());
- sct_top =parseInt(XWEB.getWindowTop());
- }else{
- scr_left=parseInt(window.scrollX);
- sct_top =parseInt(window.scrollY);
- }
- var mwinLeft=(XWEB.getWindowWidth() - parseInt(this.mwin_obj.style.width))/2 + scr_left;
- if(mwinLeft<0){
- mwinLeft=0;
- }
- this.mwin_obj.style.left=mwinLeft+"px";
-
- var win_h=XWEB.getWindowHeight();
- var lst_h=parseInt(this.mwin_obj.style.height)*1.3;
- if(win_h < (pos_y+lst_h) ) {
- pos_y=(win_h - lst_h)/2+sct_top;
- this.mwin_obj.style.top=(pos_y<0?0:pos_y)+"px";
- } else {
- this.mwin_obj.style.top=pos_y+"px";
- }
- this.mwin_obj.style.visibility='visible';
- this.mwin_obj.style.zIndex=XWEB.Const.PopupZIndex;
- }
- this.window_open_object=obj;
- };
-
- this.InvokePage=function(current_page){
- this.setCondition(current_page);
- };
-
- this.resetError=function(){
- this.responseCode=undefined;
- };
- this.onError=function(args){
- XWEB.MWindow.responseCode=args;
- var msg=XWEB.responseMessage(args);
- if(msg.length>0){
- alert(XWEB.MWindow.responseCode+": "+msg);
- }
- };
-
- this.Invoke=function(args,bInitList){
- if(this.mwin_obj==undefined){
- var ocal=document.getElementById(XWEB.Calendar.idname);
- if(ocal && ocal.parentNode){
- ocal.parentNode.removeChild(ocal);
- }
- this.mwin_obj=document.createElement('div');
- this.mwin_obj.id=XWEB.Calendar.idname;
- //this.mwin_obj.name=XWEB.Calendar.idname;
- this.mwin_obj.style.position='absolute';
- this.mwin_obj.style.visibility='hidden';
- document.body.appendChild(this.mwin_obj);
- }
- var wk_url=XWEB.Rpc.contextpath+this.rpc_url;
- var wk_args="_xw_rpc="+(XWEB.Date.getLocalDate().getTime())+"&"+args;
- if(document.charset){
- wk_args+="&_xw_charset="+document.charset;
- }else if(document.characterSet){
- wk_args+="&_xw_charset="+document.characterSet;
- }
- if(bInitList==undefined){
- wk_args+="&_xw_initlist=true";
- }else{
- wk_args+="&_xw_initlist="+bInitList;
- }
-
- if(typeof(AgileWorks)!='undefined'){
- if(AgileWorks.getCriterionDate){
- var params=AgileWorks.getCriterionDate();
- for(var pname in params){
- var val=params[pname];
- wk_args+="&"+pname+"="+(val?encodeURI(val):"");
- }
- }
- }
-
- //var http=new JKL.ParseXML(wk_url,encodeURI(wk_args),"POST");
- var http=new JKL.ParseXML(wk_url,wk_args,"POST");
-
- XWEB.MWindow.resetError();
- http.onerror(XWEB.MWindow.onError);
- var data=http.parse();
- var ret_stat=true;
- if(data){
- if(XWEB.MWindow.responseCode!=undefined){
- ;
- } else if(data.error){
- ret_stat=false;
- alert(data.error.type+": "+data.error.message);
- } else if(typeof(data.xwebform_rpc)=='undefined'){
- alert("Error: xml parse error, rpc response. [X-WebForm::mwin]");
- this.Close();
- this.mwin_obj=undefined;
- } else if(data.xwebform_rpc.detail.operation.maxline=="0"){
- if(this.execCondition==true){
- alert(I18N.t("XWFMWN-W0001")); // wɊYf[^͂܂
- }else{
- alert(I18N.t("XWFMWN-W0002", data.xwebform_rpc.title.caption)); // Iꗗ["+data.xwebform_rpc.title.caption+"]ɕ\f[^܂
- this.Close();
- this.mwin_obj=undefined;
- }
- }else{
- var operation=data.xwebform_rpc.detail.operation;
- if(bInitList==false){
- operation.maxline=0;
- }
- //alert("bInitList="+bInitList+", Cur Max="+this.maxline+", "+operation.maxline);
- XWEB.MWindow.Load(data);
- window.status="";
- }
- }else{
- this.Close();
- window.status="Error: undefined rpc response. [mwin]";
- this.mwin_obj=undefined;
- }
- this.execCondition=false;
- return ret_stat;
- };
-
- this.Load=function(data){
- var title=data.xwebform_rpc.title;
- this.caption=title.caption;
- this.caption_bg=title.background;
- this.caption_fg=title.foreground;
- this.border_col=title.bordercolor;
- this.odd_color =title.oddcolor;
- this.even_color=title.evencolor;
- this.mwin_width=title.width;
- this.mwin_height=title.height;
- this.pageline=title.pageline; // record set unit.
- if(title.viewline){
- this.viewline=title.viewline; // view area line.
- }else{
- this.viewline=title.pageline; // view area line.
- }
-
- this.columns=data.xwebform_rpc.detail.columns;
- //--
- var header=data.xwebform_rpc.detail.header;
- this.col_caption=new Array();
- this.col_width=new Array();
- if(header.count==1){
- this.col_caption.push(header.col.caption);
- this.col_width.push(header.col.width);
- }else{
- for(var n in header.col){
- var col=header.col[n];
- this.col_caption.push(col.caption);
- this.col_width.push(col.width);
- }
- }
-
- //--
- this.seek_ids=new Array();
- this.seek_cap=new Array();
- var condition=data.xwebform_rpc.detail.condition;
- var datas;
- if(condition.count==0){
- datas=new Array();
- }else if(condition.count==1){
- datas=new Array(condition.field);
- }else{
- datas=condition.field;
- }
- for(var n in datas){
- this.seek_ids.push(datas[n].idname);
- this.seek_cap.push(datas[n].caption);
- }
-
- //--
- var rs=data.xwebform_rpc.detail.recordset;
- var count=Number(rs.count);
- if(count==0){
- datas=new Array();
- }else if(count==1){
- datas=new Array(rs.record);
- }else{
- datas=rs.record;
- }
- this.recordset=new Array();
- for(var n in datas){
- var record=datas[n];
- var record_data=new Array();
- var data_count=Number(record.count);
- var cell_data;
- if(data_count==0){
- cell_data=new Array();
- }else if(data_count==1){
- cell_data=new Array(record.data);
- }else{
- cell_data=record.data;
- }
- for(var col in cell_data){
- var d=cell_data[col];
- if(d.nodata){
- record_data.push(new XWEB.MWindow.CellData(" ",d.visible));
- }else{
- record_data.push(new XWEB.MWindow.CellData(d.value.replace(/ /g," "),d.visible));
- }
- }
- this.recordset.push(record_data);
- }
-
- //--
- this.return_to=new Array();
- var returnTo=data.xwebform_rpc.detail.returnTo;
- count=Number(returnTo.count);
- if(count==0){
- datas=new Array();
- }else if(count==1){
- datas=new Array(returnTo.field);
- }else{
- datas=returnTo.field;
- }
- for(var n in datas){
- if(datas[n].noset==true){
- this.return_to.push("");
- }else{
- this.return_to.push(datas[n].idname);
- }
- }
-
- //---
- var operation=data.xwebform_rpc.detail.operation;
- this.cur_page=operation.cur_page;
- this.top_page=operation.top_page;
- this.prev_page=operation.prev_page;
- this.next_page=operation.next_page;
- this.last_page=operation.last_page;
- this.maxline=operation.maxline;
-
- XWEB.MWindow.CreateWindow();
- };
-
- this.CreateWindow=function(){
- //var tbl_cap ="border:"+this.border_col+" solid 3px;font-size:23px;color:"+this.caption_fg+";";
- var tbl_seek ="background-color:"+this.border_col+";font-size:12px;table-layout: fixed;";
- var tbl_list ="background-color:"+this.border_col+";font-size:12px;table-layout: fixed;";
- var list_hd ="background-color:"+this.caption_bg+";color:"+this.caption_fg+"; ";
- var list_odd ="background-color:"+this.odd_color +";color:#000000; "; // (s)
- var list_eveb="background-color:"+this.even_color+";color:#000000; "; // (s)
- var scr_width=20; // scroll handle, scroll view.
- if(isIE()){
- scr_width=22;
- }else if(isFireFox()){
- scr_width=11;
- }else if(isIPhone()||isIPad()){
- scr_width=0;
- }else if(isSafari()){
- scr_width=16;
- }
-
- var lines=new Array();
-
- // detail.
- lines.push("");
- lines.push("");
- var colspan=5;
- lines.push(" ");
- lines.push("");
- lines.push(" ");
-
- // condition paramenter
- if(this.seek_ids.length>0){
- lines.push("");
- lines.push("");
-
- lines.push("");
- //
- lines.push(" ");
- //
- lines.push(" "); // separator.
- }
-
- lines.push("");
-
- //-- over window size ?
- var scr_left=XWEB.getWindowLeft();
- var sct_top=XWEB.getWindowTop();
- var basic_width=scr_width+this.button_width+this.button_other_width+this.mwin_margin_width;
- if(this.seek_ids.length>0){
- basic_width=basic_width+this.seek_width+this.seek_other_width;
- }
- var mwin_width=basic_width;
- for(var col=0;colXWEB.getWindowWidth()){
- if(!(isIPhone()||isIPad())){
- detail_w="width:"+view_width+"px;";
- }
- }
- //}X^QƃEBhẺXN[o[\w
- lines.push("");
-
- //-- detail.
- // header section.
- var tb_w=0;
- var tb_ncel=0;
- for(var col=0;col
0){ tb_w=tb_w+Number(this.col_width[col]); tb_ncel=tb_ncel+1; }
- }
- }
- tb_w=tb_w+(tb_ncel-1)*10;
- var list_width=0;
- lines.push("");
- lines.push("
");
- lines.push("");
- lines.push("");
- for(var col=0;col0){
- lines.push("");
- lines.push(""+this.col_caption[col]+"
");
- lines.push(" ");
- list_width+=Number(this.col_width[col]);
- }
- }
- list_width+=(tb_ncel-1)*10;
- lines.push(" ");
- lines.push("
");
- lines.push("
");
-
- // records data section.
- lines.push("");
- lines.push("");
- lines.push("
");
-
- var last_rec=undefined;
- for(var row=0;row");
- var rec_data=this.recordset[row];
- var cell_idname=this.cellname+"_"+row;
- if(rec_data){
- var vis_col=0; //T-000231
- for(var col=0;col");
- lines.push(""+cell_data+"
");
- lines.push("");
- vis_col=vis_col+1; //T-000231
- }else{
- lines.push("");
- lines.push(""+cell_data+"
");
- lines.push(" ");
- }
- //alert('['+row+':'+col+']'+cell_data+'('+cell_visible+')');
- }
- last_rec=rec_data;
- }else if(last_rec){
- var vis_col=0; //T-000231
- for(var col=0;col");
- lines.push("
");
- lines.push("");
- vis_col=vis_col+1; //T-000231
- }else{
- lines.push("");
- lines.push("
");
- lines.push(" ");
- }
- }
- }else{ // record empty.
- for(var col=0;col0){
- lines.push("");
- lines.push("
");
- lines.push(" ");
- }else{
- lines.push("");
- lines.push("
");
- lines.push(" ");
- }
- }
- }
- lines.push("");
- }
- lines.push("
");
- lines.push("
");
-
- lines.push(" "); // horizontal scroll.
-
- lines.push(" ");
-
- //-- buttons.
- var nextDisabled = ( this.cur_page <= 1 ) ? "disabled" : "";
- var lastDisabled = ( this.cur_page == this.last_page ) ? "disabled" : "";
-
- if(isIE9STD()){
- lines.push("");
- lines.push(" "); // list <- 5px -> buttons.
- }
-
- lines.push("");
- lines.push("");
- lines.push("");
- lines.push(" ");
- //--
- lines.push(" ");
- lines.push(" ");
- lines.push(" ");
- lines.push("
");
-
- XWEB.Frame.createDialog(this.mwin_obj,this.caption,
- 'XWEB.MWindow.DtagStart','XWEB.MWindow.Close',lines.join(""),'XWEB.MWindow.Clear');
-
- var add_w=this.button_other_width + this.button_width + (this.seek_ids.length>0 ? this.seek_width+this.seek_other_width : 0);
- var hobj=document.getElementById(this.hdetail_idname);
- var dobj=document.getElementById(this.deital_idname);
- var vis_colms=2; // T-000147
- if(parseInt(this.viewline)0?'auto':'hidden';
- dobj.style.height=(this.viewline*18)+"px";
- }else{ // not scroll list.
- if(detail_w){
- this.mwin_obj.style.width=(view_width + add_w)+"px";//this.mwin_width;
- }else{
- this.mwin_obj.style.width=(list_width + add_w)+"px";//this.mwin_width;
- }
- //this.mwin_obj.style.height=this.mwin_height;
- this.mwin_obj.style.height=(this.mwin_height-(this.pageline)*18)+"px";
- hobj.style.width=list_width+"px";
- if(XWEB.bIE){
- dobj.style.width=list_width+"px";
- }else if(XWEB.bFF){
- dobj.style.width=(list_width+(vis_colms*8))+"px";
- }else{
- dobj.style.width=(list_width+(vis_colms*2))+"px";
- }
- }
-
- //}X^QƃXg̃TCY
- var content=document.getElementById(this.content_idname);
- if (content) {
- if (!detail_w && hobj && dobj) {
- //ŵƂÃRec菭傫ȕݒ肷邱ƂɂA
- //XN[o[ł]nȂB
- var contentWidth = Math.max(this.getWidthFromStyle(hobj),this.getWidthFromStyle(dobj));
- content.style.width=(contentWidth+5)+"px";
- }
- if(isIE9STD() && !isIE10Later()){
- //IE9̏ꍇAXN[\}EXI[o[Ƃɕ\ɋlj̉
- content.style.height="100%";
- } else if (isUntilIE8()) {
- //IE8ȑȌꍇAXN[o[DIVvfɓɕ\Ă܂B
- //̂߁AXN[o[̍xZB
- //ȂAXN[o[TCY͉ςł邽߁AWinXP̕WTCY17px
- //傫Ȓlw肷B
- content.style.height=(content.offsetHeight+30)+"px";
- }
- }
-
- };
-
- this.getWidthFromStyle=function(obj){
- if (obj && obj.style && obj.style.width) {
- return parseInt(trim(obj.style.width.replace(/px/i,"")));
- } else {
- return 0;
- }
- };
-
- this.DtagStart=function(event){
- XWEB.Drag.Start(this.mwin_obj,event);
- };
-
- this.Close=function(){
- if(this.mwin_obj){
- var cur_vis=this.mwin_obj.style.visibility;
- this.mwin_obj.style.visibility='hidden';
- this.mwin_obj.innerHTML="";
- if(this.mwin_obj.parentElement){
- this.mwin_obj.parentElement.removeChild(this.mwin_obj); //T-001379
- }
- this.mwin_obj=undefined;
- if(cur_vis!='hidden'){
- this.setParentFocus();
- }
- }
- };
-
- this.Clear=function(){
- for(var col=0;col 0){
- XWEB.MWindow.setParentField(this.currentRow);
- }
- };
-
- this.setMouseOverRow=function(id){
- XWEB.MWindow.setSelectRow(id,'#000000');
- XWEB.MWindow.setSelectRow(this.currentRow,'#FF0000');
- };
- this.setMouseOutRow=function(id){
- XWEB.MWindow.setReleaseRow(id);
- XWEB.MWindow.setSelectRow(this.currentRow,'#FF0000');
- };
- this.setClickRow=function(id){
- XWEB.MWindow.setReleaseRow(this.currentRow);
- this.currentRow = id;
- XWEB.MWindow.setSelectRow(this.currentRow,'#FF0000');
- };
- this.setDbClickRow=function(id,event){
- XWEB.MWindow.setClickRow(id);
- XWEB.MWindow.setParentField(id,event);
- };
-
- this.getEnabledList=function(o) {
- var ar=new Array();
- for(var k=0;k 0 ){
- var ar = XWEB.MWindow.getEnabledList( o );
- for(var i = 0; i < ar.length; i++ ){
- ar[i].style.paddingTop = "1px";
- ar[i].style.borderTopColor = color;
- ar[i].style.borderTopStyle = 'solid';
- ar[i].style.borderTopWidth = "2px";
- ar[i].style.paddingBottom = "1px";
- ar[i].style.borderBottomColor = color;
- ar[i].style.borderBottomStyle = 'solid';
- ar[i].style.borderBottomWidth = "2px";
- if( i == 0 ){
- ar[i].style.paddingLeft = "1px";
- ar[i].style.borderLeftColor = color;
- ar[i].style.borderLeftStyle = 'solid';
- ar[i].style.borderLeftWidth = "2px";
- }
- if( i == ar.length - 1 ){
- ar[i].style.paddingRight = "1px";
- ar[i].style.borderRightColor = color;
- ar[i].style.borderRightStyle = 'solid';
- ar[i].style.borderRightWidth = "2px";
- }
- }
- } else {
- if(document.all){
- o.style.padding = "1px";
- o.style.borderColor = color;
- o.style.borderStyle = 'solid';
- o.style.borderWidth = "2px";
- }
- }
- }
- };
-
- this.setReleaseRow=function(id,color){
- var o;
- if(document.all){
- o=document.all.item(this.cellname+"_"+id);
- }else{
- o=document.getElementsByName(this.cellname+"_"+id);
- }
- if( o != null ){
- if( o.length > 0 ){
- for(var i = 0; i < o.length; i++ ){
- o[i].style.padding = '3px';
- o[i].style.borderColor = '';
- o[i].style.borderStyle = '';
- o[i].style.borderWidth = '';
- }
- } else {
- if(document.all){
- o.style.padding = '3px';
- o.style.borderColor = '';
- o.style.borderStyle = '';
- o.style.borderWidth = '';
- }
- }
- }
- };
-
- this.setFocus=function(){
- var o;
- if(this.window_open_object){
- if(this.window_open_object.id){
- o=XWEVT.hasOnblurEventById(this.window_open_object.id);
- if(o){ XWEVT.storeOnBlurFunc(o); }
- }
- }
- o=document.getElementById(XWEB.MWindow.cellname+"_0");
- if(o){
- try{o.focus();}catch(e){} // T-000138
- this.setClickRow("0");
- }
- };
-
- this.setParentField=function(id,event){
- var o;
- if(document.all){
- o=document.all.item(this.cellname+"_"+id);
- }else{
- o=document.getElementsByName(this.cellname+"_"+id);
- }
- if( o != null ){
- if( o.length && o.length > 0 ){
- for(var col=0;col0&&idname!=mwfid){ // T-001956
- var f=XWEB.getField(mwfid);
- if(f){
- if (!f.isTextLenZero()) { //T-002158
- f.setValue("");
- }
- }
- }
- }
- };
-
- this.SetDataField=function(data,flds,suffix){
- var columns=data.xwebform_rpc.columns;
- var recordset=data.xwebform_rpc.recordset;
- var returnTo=data.xwebform_rpc.returnTo;
-
- var colnames=this.toArrayType(columns.field,Number(columns.count));
- var records=this.toArrayType(recordset.record,Number(recordset.count));
- var returns=this.toArrayType(returnTo.set,Number(returnTo.count));
-
- var filter_id=new Array(); // i肱ݗp̍ڃXg쐬
- for(var i=0; i 1) break; // save 2 record, over is break.
- var rec=this.toArrayType(records[n].value,records[n].count);
- for(var col in rec){
- if(rec[col].nodata){
- recset[colnames[col]].push("");
- }else{
- recset[colnames[col]].push(rec[col]);
- }
- }
- }
-
- //-- return to top record only.
- for(var n in returns){
- var rset=returns[n];
- if(filter_id[rset.field]==true){
- ;//not set.
- }else{
- if(records.length==0){
- this.setOpenerAllValue(rset.field,""); // T-000275
- }else{
- this.setOpenerAllValue(rset.field,recset[rset.column][0]); // T-000275
- }
- }
- }
- };
-
- this.setOpenerAllValue=XWEB.MWindow.setOpenerAllValue; // T-000275, T-000454
-
- this.toArrayType=function(values,count){
- if(count==0){
- return new Array();
- }else if(count==1){
- return new Array(values);
- }else{
- return values;
- }
- };
-
- return this;
-};
-
-//-- end of file.
diff --git a/AgileWorks/WebContent/TSlib/xwebform-rpc.js b/AgileWorks/WebContent/TSlib/xwebform-rpc.js
deleted file mode 100644
index 64141b86c6ea140e9340fbc08705dc5085eb8dd1..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/TSlib/xwebform-rpc.js
+++ /dev/null
@@ -1,13031 +0,0 @@
-// Copyright (C) 2012 ATLED CORP. All rights Reserved.
-//
-// X-WebForm ver.2.2.00 functions.
-// for X-WebForm Generator Tagset Ver.2.2.00-b00 build 110520 (2145) later.
-// for X-WebForm Generator 2.2.0-b00 build 110511 (2145)
-//
-//--- default URI.
-if(typeof(_xweb_rpc_uri)=='undefined') {
- var _xweb_rpc_uri="tsform2";
-};
-
-isIE=function(){
- return (navigator.appName.indexOf('Microsoft') > -1) || (navigator.userAgent.indexOf('Trident') > -1) ? true : false;
-}
-isUntilIE8=function(){
- if (isIE10Later()) {
- return false;
- }
- var ua=navigator.userAgent;
- if (ua.indexOf('Trident/5.0')<0){
- return ua.match(/MSIE [5678]/)?true:false;
- }
- return false;
-}
-isIE9STD=function(){
- // {\bhR2.3.1܂łIE9(W)ǂ肷łB
- // R2.4.0IE10ΉɂAIE10̏ꍇIE9Ɠ̏s
- // KvA{\bḧӖIE9ȍ~ǂ肷
- // ɕύX(XR[vL\bĥߖ̕ύX͊ɋyڂ
- // XN邽ߖ̕ύX͍sȂ)
- var ua=navigator.userAgent;
- if (ua.indexOf('Trident/5.0')>=0){
- return ua.match(/MSIE [5678]/)?false:true;
- }else{
- return isIE10Later();
- }
-}
-
-isIE10Later=function() {
- var re = /Trident\/(\d){1,2}/;
- var trident = re.exec(navigator.userAgent);
- if (trident) {
- // IE10 User-Agent ɂ Trident6 ܂܂
- // IE10 ȍ~ Trident7, 8 ... ƂȂ邱Ƃ\邽 6 ȏƂĔ肷
- var tridentVer = trident[0].replace(/Trident\//,"");
- return 6 <= tridentVer;
- } else {
- return false;
- }
-}
-
-isFireFox=function(){
- return navigator.userAgent.indexOf("Firefox") > -1 ? true : false;
-}
-
-isSafari=function(){
- return navigator.userAgent.indexOf("Safari") > -1 ? true : false;
-}
-
-isChrome=function(){
- return navigator.userAgent.indexOf("Chrome") > -1 ? true : false;
-}
-
-isIPhone=function(){
- return navigator.userAgent.indexOf("iPhone") > -1 || navigator.userAgent.indexOf("iPod") > -1? true : false;
-}
-
-isIPad=function(){
- return navigator.userAgent.indexOf("iPad") > -1 ? true : false;
-}
-
-isAndroid=function(){
- return navigator.userAgent.indexOf("Android") > -1 ? true : false;
-}
-
-isMZ=function(){
- if(isIE()) {
- return false;
- } else if (navigator.appCodeName=='Mozilla') {
- return true;
- } else {
- return false;
- }
-}
-
-isLang=function(lang_compaer){
- var w_lang=lang_compaer?lang_compaer.toLowerCase():"jp";
- var c_lang=navigator.browserLanguage;
- if(!c_lang){
- c_lang=navigator.language;
- }
- if(c_lang){
- return c_lang==w_lang?true:false;
- }else{
- return true;
- }
-}
-
-// for Firefox/Safari.
-window.addEventListener && window.addEventListener("load", function(){ // T-001383
- if(!window.event){
- var wevent = [
- "load","click","dblclick",
- "mousedown","mouseover","mouseout","mousemove","mousedrag"
- ];
- for (var cnt=0;cnt=0){
- var s=no.id.substr(p+1);
- if(isNaN(s)){ // aw 000603.
- p=no.id.substr(0,p).lastIndexOf('_');
- if (p>=0){
- s=no.id.substr(p+1);
- }
- }
- return parseInt(s);
- }
- }else if(no.idname){//for button.(aw 000718)
- var p=no.idname.lastIndexOf('_');
- if(p>=0){
- var s=no.idname.substr(p+1);
- return parseInt(s);
- }
- }
- return undefined;
- }
- return no;
- };
-
- XWEB.Browser=function() {};
-
- XWEB.Browser.tridentVer=function(ua) {
- var re = /Trident\/(\d){1,2}/;
- var trident = re.exec(ua);
-
- if (trident) {
- var tridentVer = trident[0].replace(/Trident\//,"");
- return tridentVer;
- } else {
- return 0;
- }
- };
-
- XWEB.Browser.isIE11Later=function() {
- var tridentVer = XWEB.Browser.tridentVer(navigator.userAgent);
- return 7 <= tridentVer;
- };
-
- XWEB.Browser.isIeWindowsUiMode=function() {
- if (XWEB.Browser.tridentVer(navigator.userAgent) <= 5) {
- return false;
- }
- try {
- var obj = new ActiveXObject("htmlfile");
- return false;
- } catch (e) {
- return true;
- }
- };
-
- XWEB.Browser.isTouchPanelDevice=function() {
- return isIPhone() || isIPad() || isAndroid() || XWEB.Browser.isIeWindowsUiMode();
- };
-
- XWEB.KeyCode=new function(){
- this.TAB=9;
- this.ENTER=13;
- this.LEFT=37;
- this.RIGHT=39;
- this.BS=8;
- this.DEL=46;
-
- this.isInputKey=function(key){
- if ((key==this.TAB) || (key==this.LEFT) || (key==this.RIGHT) || (key==this.RIGHT) || (key==this.BS) || (key==this.DEL)) {
- return false;
- } else {
- return true;
- }
- };
- };
-
- XWEB.Html=new function(){
- this.name;
- this.taborder;
- this.pg_orderlist; // taborder list array.
- this.pg_tabindex; // max tabIndex number.
- this.enterkey; // "htmlpage" tag, "enterkey=true/false"
- this.moveallow; // move field on allow(<-,->), (not table)
- this.page_id; // x-webform data binding key.
- this.pagelayout; // html page layour(0:std/1:layer/2:custom)
- this.layerorder; // order by page layer number.
- this.layercommon; // common layer number.
-
- this.backgroundImage;
- this.templatepdf;
-
- this.html_to_pdf_style=false; // JavaScriptŕύXStlyePDFɂfB
-
- this.disabled_panel; // form disabled panel.
-
- this.init_barcode=new Array(); // init refalence barcode field function.
- this.init_enhance=new Array(); // extend event function. (image field)
- this.init_sellist=new Array(); // init combobox/listbox option data function.
-
- this.xwf_field_type=new Array(); //--- init control array.
- this.xwf_figure_type=new Array();
- this.xwf_required_list=new Array(); //-- Indispensable item list --
- this.xwf_barcode_datas=new Array(); //-- barcode define datas.
- this.xwf_calender_set=new Array(); //-- calender set( year,month,day,week)
- this.xwf_window_handles=new Array();//-- window handle.
- this.xwf_background_info = new Array(); //setBackgroundColorŔwiF\̈邽߂̏
-
- this.init_expr_exec=true;
- this.forceAutoCalc=false;
- this.init_expr=new Array();
- this.ExprParam=function(fname,rno,t,def_fields,targetid){
- this.funcname=fname;
- this.rowno=rno;
- this.type=t;
- this.define_fields=def_fields;
- this.targetid=targetid;
- return this;
- };
-
- this.xwf_date_range=new Array(); //-- date range. (only datetime field)
- this.xwf_popup_win_attr=new Array();//-- attribute of popup window (calendar,mwin)
-
- this.field_anchor=new Array();
- this.field_popup_cal=new Array();
- this.field_mwin=new Array();
- this.mark_popup_visible=false;
- this.mark_mwin_visible=false;
-
- this.ctrl_page_jump=true;
- this.enabled_vertical_view=true; // true: tabpage<->vertical/false: tabpage only.
-
- this.addFieldAnchor=function(anchor,field_id){
- this.field_anchor[anchor]=field_id;
- };
- this.addPopupCalField=function(field_id){
- this.field_popup_cal.push(field_id);
- };
- this.addPopupMWinField=function(field_id){
- this.field_mwin.push(field_id);
- };
-
- this.page_tab_init=true;
- this.page_tab_pos=""; // north,south,west,east
- this.page_tab=new Array();
-
- this.setInitTabpage=function(bTab){
- this.page_tab_init=bTab;
- };
- this.setTabPosition=function(pos){
- this.page_tab_pos=pos;
- };
- this.addTabData=function(pgno,caption,tooltip,width,height,backgroundColor,
- backgroundImage,templateImage,
- html_pgno,pdf_pgno,bSame_bgimage){
- this.page_tab[pgno]=new XWEB.Html.TabData(caption,tooltip,width,height,backgroundColor,
- backgroundImage,templateImage,
- html_pgno,pdf_pgno,bSame_bgimage);
- };
-
- this.setCtrlPageJump=function(bEnabled){
- this.ctrl_page_jump=(bEnabled==undefined) ? true : bEnabled;
- };
-
- this.setEnabledVerticalView=function(bEnabled){
- this.enabled_vertical_view=(bEnabled==undefined) ? true : bEnabled;
- };
-
- this.cur_tab; // current visible page number.
- this.verticalPageMode=false; // vertical page view mode.
- this.tabPageIdname='__xwf_page_tab_select';
-
- this.tabSelectFirst=function(){
- var tabs=this.page_tab;
- for(var pgno=0;pgno0){
-// this.tabSelect(tabs[pgno].html_pgno-1);
- this.tabSelect(pgno);
- break;
- }
- }
- };
-
- this.tabSelectLast=function(){
- var tabs=this.page_tab;
- for(var pgno=tabs.length-1;pgno>=0;--pgno){
- if(tabs[pgno].html_pgno>0){
-// this.tabSelect(tabs[pgno].html_pgno-1);
- this.tabSelect(pgno);
- break;
- }
- }
- };
-
- this.tabSelectNext=function(){
- var tabs=this.page_tab;
- if(this.cur_tab==undefined){
- this.cur_tab=0;
- }
-
- for(var pgno=(Number(this.cur_tab)+1);pgno0){
- //this.tabSelect(tabs[pgno].html_pgno-1);
- this.tabSelect(pgno);
- break;
- }
- }
- };
-
- this.tabSelectPrev=function(){
- var tabs=this.page_tab;
- if(this.cur_tab==undefined){
- this.cur_tab=tabs.length - 1;
- }
-
- for(var pgno=(Number(this.cur_tab)-1);pgno>=0;--pgno){
- if(tabs[pgno].html_pgno>0){
- //this.tabSelect(tabs[pgno].html_pgno-1);
- this.tabSelect(pgno);
- break;
- }
- }
- };
-
- this.setNavigator=function(tab_no){
- var tabs=this.page_tab;
- var top_no;
- var end_no;
- for(var pgno=0;pgno0){
- if(top_no==undefined){
- top_no=pgno;
- }else{
- end_no=pgno;
- }
- }
- }
-
- var idnames=XWEB.Navigator.idnames;
- XWEB.Navigator.setButtonDisabled(idnames['first_page'],(tab_no==top_no?true:false));
- XWEB.Navigator.setButtonDisabled(idnames['prev_page'],(tab_no==top_no?true:false));
- XWEB.Navigator.setButtonDisabled(idnames['next_page'],(tab_no==end_no?true:false));
- XWEB.Navigator.setButtonDisabled(idnames['last_page'],(tab_no==end_no?true:false));
- };
-
- this.getBelongingTabNumber=function(fld_id){
- var lno=XWEB.LAYERMANAGER.getBelongingLayerNumber(fld_id);
- if(isNaN(lno)==false){
- var tabs=this.page_tab;
- for(var pgno=0;pgno0){
- return pgno;
- }
- }
- }
- }
- return undefined;
- };
-
- this.isTabVisible=function(pgno){
- var tab_pg=document.getElementById('xwf_vpage_'+pgno);
- if(tab_pg){
- return tab_pg.style.display=='block'?true:false;
- }else{
- return false;
- }
- };
-
- //XWEB.Html
- this.setPagePos=function(pg_body,pg_sb1,pg_sb2,pg_sb3,x,y,w,h){
- pg_body.style.left=(x)+"px";
- pg_body.style.top =(y)+"px";
-
- pg_sb1.style.left=(x-1)+"px";
- pg_sb1.style.top =(y-1)+"px";
-
- pg_sb2.style.left=(x+w+1)+"px";
- pg_sb2.style.top =(y+1)+"px";
-
- pg_sb3.style.left=(x+1)+"px";
- pg_sb3.style.top =(y+h+1)+"px";
- };
-
- this.setPdfTemplateURLSet=function(){ // aw 000591
- for(var pgno in this.page_tab){
- var tab=this.page_tab[pgno];
- if(tab.html_pgno>0){ // add v2.1.01
- tab.setPdfTemplateURL(pgno);
- }
- }
- }
-
- this.tabSelect=function(pgno){
- if(this.verticalPageMode==true){
- return true;
- }
-
- var draw_pgno=-1;
- var wk_pgno=(pgno==undefined?0:pgno);
- if(this.cur_tab!=wk_pgno){
- var tabs=this.page_tab;
- for(var n in tabs){
- if(tabs[wk_pgno].html_pgno>0){
- var tab_pg=document.getElementById('xwf_vpage_'+n);
- var pg_body=document.getElementById('xwf_vbody'+n);
- var pg_sb1=document.getElementById('xwf_vsb1'+n);
- var pg_sb2=document.getElementById('xwf_vsb2'+n);
- var pg_sb3=document.getElementById('xwf_vsb3'+n);
- if (tab_pg){
- var disp_opt=(n==wk_pgno?'block':'none')
- if(tab_pg.style.display==disp_opt){
- continue;
- }
- //XWEB.Calendar.PopupClose();
- XWEB.Form.PopupClose();
- tab_pg.style.display=disp_opt;
- pg_body.style.display=disp_opt;
- pg_sb1.style.display=disp_opt;
- pg_sb2.style.display=disp_opt;
- pg_sb3.style.display=disp_opt;
- if(disp_opt=='block'){
- draw_pgno=tabs[wk_pgno].html_pgno-1;
- }
- }
- }
- }
- this.cur_tab=wk_pgno;
- XWEB.Form.TSBorderOff();
- }
- var pg_body=document.getElementById('xwf_vbody'+wk_pgno);
-// if(pg_body==undefined){
-// alert(wk_pgno);
-// }
- var fm_width=parseInt(pg_body.style.width);
- var fm_height=parseInt(pg_body.style.height);
-
- XWEB.Navigator.location(XWEB.Navigator.position,pgno);
- XWEB.Html.setNavigator(wk_pgno);
-
- //------
- var pg_sb1=document.getElementById("xwf_vsb1"+wk_pgno);
- var pg_sb2=document.getElementById("xwf_vsb2"+wk_pgno); // tate
- var pg_sb3=document.getElementById("xwf_vsb3"+wk_pgno); //yoko
-
- XWEB.Html.setPagePos(pg_body,pg_sb1,pg_sb2,pg_sb3,TSmx,TSmy,parseInt(pg_body.style.width),parseInt(pg_body.style.height));
-
- if(this.page_tab_pos.length>0&&this.page_tab_pos!="none"){
- var rectangle=new XWEB.Rectangle(XWEB.Form.left,XWEB.Form.top,fm_width,fm_height);
- this.drawTab(wk_pgno,rectangle);
- }
- //--------------------------------------------
- if(draw_pgno>=0){
- var layers=XWEB.LAYERMANAGER.getLayer(draw_pgno);
- if(layers && layers.member){ // tB[hLB
- for(var n in layers.member){
- var idname=layers.member[n];
- var img=XWEB.getFigure(idname);
- if(img){
- if(img.type==XWEB.FieldType.Image && img.aspectratio==true){
- var img_obj=XWEB.getElementById(idname);
- //alert('A: '+idname+"="+img.getValue()+" ["+draw_pgno+"]");
- XWEB.IMAGE.setAspectAndAlign(img,img_obj,img.getValue());
- }
- }
- }
- }
- }
- //--------------------------------------------
- };
-
- this.drawTab=function(select_tab,rectangle){
- if(XWEB.Html.verticalPageMode==true){
- return; // not virtical document view.
- }
-
- if(this.page_tab.length<=1){
- if(this.page_tab.length==1){ // T-000485
- var tab=this.page_tab[0];
- if(tab.html_pgno>0){
- tab.setPdfTemplateURL(0);
- }
- }
- return; // single page is not use tab.
- }
-
- //XWEB.Html.page_tab_pos; // north,south,west,east
- //XWEB.Html.page_tab; // array.
-
- var tab_left=rectangle.x;
- var tab_top=rectangle.y;
- switch(this.page_tab_pos){
- case 'north': tab_top-=25; break;
- case 'south': tab_top+=rectangle.height+2; break;
- case 'west': tab_left-=25; break;
- case 'east': tab_left+=rectangle.width; break;
- }
-
- var bHor=(this.page_tab_pos=="north"||this.page_tab_pos=="south")?true:false;
- var s=new Array();
- s.push("");
- if(bHor){ s.push(""); }
- for(var pgno in this.page_tab){
- var tab=this.page_tab[pgno];
- if(tab.html_pgno>0){ // add v2.1.01
- s.push(bHor==true?"":" ");
- s.push(tab.toHTML(pgno,pgno == select_tab?true:false,this.page_tab_pos));
- s.push(bHor==true?" ":" ");
- tab.setPdfTemplateURL(pgno);
- }
- }
- if(bHor){ s.push(""); }
- s.push("
");
-
- var div=document.getElementById(XWEB.Html.tabPageIdname);
- if(div==undefined){
- div=document.createElement('div');
- div.id=XWEB.Html.tabPageIdname;
- div.style.position='absolute';
- div.style.overflow='hidden';
- }
-
- div.style.left=tab_left+'px';
- div.style.top =tab_top +'px';
- div.innerHTML=s.join("");
- document.body.appendChild(div);
- };
-
- return this;
- };
-
- XWEB.Html.TabData=function(caption,tooltip,width,height,backgroundColor,
- backgroundImage,templateImage,
- html_pgno,pdf_pgno,bSame_bgimage){
- this.caption=caption;
- this.tooltip=tooltip;
- this.width=width;
- this.height=height;
- this.backgroundColor=backgroundColor;
- this.backgroundImage=backgroundImage;
- this.templateImage=templateImage;
- this.html_pgno=html_pgno;
- this.pdf_pgno=pdf_pgno;
- this.bSame_bgimage=bSame_bgimage;
-
- /**
- pgno : page number.
- bSelect: active page is true.
- */
- this.toHTML=function(pgno,bSelect,tab_pos){
- var left_img ="tab_left.gif";
- var center_img="tab_center.gif";
- var right_img ="tab_right.gif";
- var font_col=bSelect?"black":"white";
- var img_path="images/tabs/"+tab_pos+"/"+(bSelect?"selected":"unselected");
-
- var wk_left_img =XWEB.Resource.Image(img_path+"/"+left_img);
- var wk_center_img=XWEB.Resource.Image(img_path+"/"+center_img);
- var wk_right_img =XWEB.Resource.Image(img_path+"/"+right_img);
-
- var onclick="if(XWEB.User.validateChangeViewPage('"+pgno+"')==false){return false};"+
- "XWEB.Html.tabSelect('"+pgno+"');"+
- "XWEB.Html.PageView.OnChangeTabPage('"+pgno+"',event);";
- var s=new Array();
- if(XWEB.Html.page_tab_pos=='north'||XWEB.Html.page_tab_pos=='south'){
- s.push("");
- s.push("");
- s.push("");
- s.push(" ");
- s.push("");
- s.push("");
- s.push("");
- s.push("");
- s.push("");
- s.push("" + this.caption + "
");; // T-001909
- s.push(" ");
- s.push(" ");
- s.push(" ");
- s.push("
");
-
- s.push(" ");
- s.push(" ");
- s.push(" ");
- s.push(" ");
- s.push("
");
- }else{
- s.push("");
- }
- return s.join("");
- };
-
- this.setPdfTemplateURL=function(pgno){
- if(this.templateImage==undefined){
- return;
- }
-
- var idname='TSpg_pdf_url_'+pgno;
- var pdf_bg=document.getElementById(idname);
- if(pdf_bg==undefined){
- pdf_bg=document.createElement('input');
- pdf_bg.type='hidden';
- pdf_bg.id=idname;
- pdf_bg.name=idname;
- document.forms[XWEB.Form.name].appendChild(pdf_bg);
- }
- if (this.templateImage.match(/^http:/)||this.templateImage.match(/^https:/)) {
- pdf_bg.value=this.templateImage;
- }else{
- pdf_bg.value=XWEB.Rpc.contextpath+"/"+this.templateImage;
- }
- };
-
- return this;
- };
-
- XWEB.Html.Page=new function(){
- this.setBackground=function(bg_img_url,pgno){
- if(XWEB.Html.page_tab.length<=1){// single page is not use tab.
- var pg=document.getElementById('xwf_vbody0');
- if(pg){
- var idname='TSpg_pdf_url';
- pg.style.backgroundImage='url('+bg_img_url+')';
- pg.style.backgroundRepeat='no-repeat';
- var pdf_bg=document.getElementById(idname);
- if(pdf_bg==undefined){
- pdf_bg=document.createElement('input');
- pdf_bg.type='hidden';
- pdf_bg.id=idname;
- pdf_bg.name=idname;
- document.forms[XWEB.Form.name].appendChild(pdf_bg);
- }
- pdf_bg.value=bg_img_url;
- }
- }else{ // multi page.
- var pg_tab=XWEB.Html.page_tab[pgno];
- if(pg_tab){
- var idname='TSpg_pdf_url_'+pgno;
- var pdf_bg=document.getElementById(idname);
- if(pdf_bg==undefined){
- pdf_bg=document.createElement('input');
- pdf_bg.type='hidden';
- pdf_bg.id=idname;
- pdf_bg.name=idname;
- document.forms[XWEB.Form.name].appendChild(pdf_bg);
- }
- pdf_bg.value=bg_img_url;
- pg_tab.backgroundImage=bg_img_url;
- var pg_div=document.getElementById('xwf_vbody'+(pgno-1));
- if(pg_div){
- pg_div.style.backgroundImage='url('+bg_img_url+')';
- pg_div.style.backgroundRepeat='no-repeat';
- }
- }
- }
- }
- return this;
- };
-
- //-- ajax field id's.
- var myform_field_ids=new Array(); // send field id names, (ajax use)
- //-- for number fields.
- var myform_comma_fields=new Array();
- var myform_round_pos=new Array(); // round position.
- var myform_round_type=new Array(); // round type.
- var myform_zero_fill=new Array(); // zero fill.(only integer field)
- var myform_number_prefix=new Array(); // integer value, prefix charactor.
- //-- textfield,year,month,day (format data)
- var myform_dformat=new Array(); // date format.
-
- XWEB.Form=new function(){
- this.id; // form code.
- this.name;
- this.width;
- this.height;
- this.action; // array, navigator action.
- this.minus_color=new Array(); // array.
- this.table_ids=new Array(); // array, table id.
-
- // form functions.
- this.onLoad; // form onload.
- this.onLoadDelay;
- this.onload_delay=false;
- this.delay_time=10; // onload delayed time(msec)
- this.onUnload; // form onunlad.
- this.onResize; // form onresize.
- this.onMove; // form onmove.
-
- this.ServerOnLoad; // onload event, exec server.
- this.ServerUnLoad; // unload event, exec server.
- this.ServerViewChange; // multi page, view change.
- this.ServerTabChange; // multi page, page change.
- this.ServerResize; // resize event, exec server.
- this.ServerMove; // move event, exec server.
-
- this.table_id_list;
- this.table_list;
- this.scroll_ids;
-
- this.readonlycolor; // background color for readonly field.
- this.disabledcolor; // background color for disabled field.
-
- //--- browser window resize.
- this.formResize; // reisize form.
- //--- browser window location.
- this.bzlocation; // normal,center,lu,ld,ru,rd
- //--- browser window size.
- this.bzsize; // normal,full,size.
- this.bzwidth; // bzsize=='size'
- this.bzheight; // bzsize=='size'
-
- this.table_id_list=new Array();
- this.table_list=new Array();
- this.scroll_ids=new Array();
- this.Scroll2Hidden=function(){}; //copy scroll window field, (redefine htmlpage tag)
-
- this.calc_permission_func=new Array();
-
- this.upload_list=new Array();
- this.addUpload=function(up_list){
- XWEB.Form.upload_list=XWEB.Form.upload_list.concat(up_list);
- };
-
- this.textconvert=new Array(); // flag: 1=a->A(toUpper), 2:A->a(toLower)
- this.addtextConvert=function(idname,flag){
- XWEB.Form.textconvert[idname]=flag;
- };
- return this;
- };
-
- //XWEB.EVENT=function(){}; // Form Event.
- //XWEVT=XWEB.EVENT;
- XWEB.EVENT=new function(){ // Form Event.
-
- //---
- this.saveBlurF=new Array();
- this.saveFocusF=new Array();
-
- this.hasOnfocusEventById=function(idname){
- if(idname){
- var o=document.getElementById(idname);
- if(o){
- if(o.id && o.onfocus){ return o; }
- }
- }
- return undefined;
- };
- this.hasOnblurEventById=function(idname){
- if(idname){
- var o=document.getElementById(idname);
- if(o){
- if(o.id && o.onblur){ return o; }
- }
- }
- return undefined;
- };
- this.storeOnBlurFunc=function(o){
- this.saveBlurF[o.id]=o.onblur;
- o.onblur=new Function("XWEVT.restoreOnBlurFunc('"+o.id+"')");
- };
- this.restoreOnBlurFunc=function(idname){
- var ff=this.saveBlurF[idname];
- if(ff){
- var o=document.getElementById(idname);
- if(o){o.onblur=ff;}
- this.saveBlurF[idname]=undefined;
- }
- };
- this.storeOnFocusFunc=function(o){
- this.saveFocusF[o.id]=o.onfocus;
- o.onfocus=new Function("XWEVT.restoreOnFocusFunc('"+o.id+"')");
- };
- this.restoreOnFocusFunc=function(idname){
- var ff=this.saveFocusF[idname];
- if(ff){
- var o=document.getElementById(idname);
- if(o){o.onfocus=ff;}
- this.saveFocusF[idname]=undefined;
- }
- };
-
- return this;
- };
- XWEVT=XWEB.EVENT;
-
- XWEB.elements=new Array(); // private value. for XWEB.getElementById().
- XWEB.elm_notfound=new Array();
- XWEB.bIE=isIE(); // is IE = true
- XWEB.bIE10before=isIE() && !XWEB.Browser.isIE11Later();
- XWEB.bIE9or10=XWEB.bIE10before && !isUntilIE8();
- XWEB.bIE11Later=XWEB.Browser.isIE11Later();
- XWEB.bMZ=isMZ(); // is Mozilla = true
- XWEB.bFF=isFireFox(); // is FireFox = true;
- XWEB.bSafari=isSafari(); // is Safari = true;
- XWEB.bIOS=isIPhone() || isIPad();
- XWEB.bInputNumberHTML5=XWEB.bIOS || isAndroid();
-
- XWEB.FF_VER="0.0.0.0"; // firefox version. ( is FireFox only )
- if(XWEB.bFF){
- if(navigator.userAgent.search(/Firefox\/\d\.\d\.\d\.\d/i)>0){ // FireFox/2.0.1.1 Ȃ
- var n=navigator.userAgent.lastIndexOf('/')+1;
- XWEB.FF_VER=navigator.userAgent.substr(n);
- }
- if(navigator.userAgent.search(/Firefox\/\d\.\d/i)>0){ // FireFox/3.0 Ȃ
- var n=navigator.userAgent.lastIndexOf('/')+1;
- XWEB.FF_VER=navigator.userAgent.substr(n)+".0.0";
- }
- }
-
- XWEB.getWindowLeft =function(){
- if(XWEB.bIE){
- if(isUntilIE8()){
- return document.body.scrollLeft;
- }else{
- return document.documentElement.scrollLeft;
- }
- }else{
- return pageXOffset;
- }
- };
- XWEB.getWindowTop =function(){
- if(XWEB.bIE){
- if(isUntilIE8()){
- return document.body.scrollTop;
- }else{
- return document.documentElement.scrollTop;
- }
- }else{
- return pageYOffset;
- }
- };
- XWEB.getWindowWidth =function(){
- if(XWEB.bIE){
- if(isUntilIE8()){
- return document.body.clientWidth;
- }else{
- return document.documentElement.clientWidth;
- }
- }else{
- return innerWidth;
- }
- };
- XWEB.getWindowHeight=function(){
- if(XWEB.bIE){
- if(isUntilIE8()){
- return document.body.clientHeight;
- }else{ // IE9W[h
- return document.documentElement.clientHeight;
- }
- }else{
- return innerHeight;
- }
- };
-
- XWEB.User=function(){}; // User function/ User Data.
- XWEB.User.OnLoad=function(){
- XWEB.Exec('xweb_onLoad'); // for xweb2.0.06
- };
- XWEB.User.UnLoad=function(){
- XWEB.Exec('xweb_unLoad'); // for xweb2.0.06
- };
- XWEB.User.OnChangeViewMode=function(vmode){}; // system redefine.
- XWEB.User.OnChangeViewPage=function(pgno){
- if(XWEB.bIE){ // T-000147
- if(isUntilIE8()){
- document.body.scrollLeft=0+"px";
- document.body.scrollTop=0+"px";
- }else{
- document.documentElement.scrollLeft=0+"px";
- document.documentElement.scrollTop=0+"px";
- }
- }else{ // T-001379(FF/SF)
- document.body.scrollLeft="0px";
- document.body.scrollTop="0px";
- }
- }; // system redefine.
-
- XWEB.User.validateChangeViewMode=function(bVertical){
- var retval=XWEB.Exec('XWEB.User.validateViewMode',bVertical);
- return (retval!=undefined && retval==false) ? false : true;
- };
- XWEB.User.validateChangeViewPage=function(pgno){
- var retval=XWEB.Exec('XWEB.User.validateViewPage',pgno,XWEB.Html.cur_tab);
- return (retval!=undefined && retval==false) ? false : true;
- };
-
- //------ [UĒ`Ă悢Function.
- XWEB.User.Enabled=new function(){
- this.setEditableForm=function(bEditable){ };
- this.isEditableForm=function() { return true; };
- this.isSelectListWindow=function() { return this.isEditableForm(); };
- this.isSelectListWindowById=function() { return this.isEditableForm(); };
- this.isCalenderEnabled=function() { return this.isEditableForm(); };
- this.isCalenderEnabledById=function() { return this.isEditableForm(); };
- this.isCalenderIcon=function() { return this.isCalenderEnabled(); };
- this.isCalenderIconById=function(idname){ return this.isCalenderEnabledById(idname); };
- return this;
- };
-
- //------ Point, Rectangle
- XWEB.Point2d=function(x_co,y_co){
- this.x=x_co;
- this.y=y_co;
- this.toString=function(){
- return "Point2d: "+this.x+","+this.y;
- };
- return this;
- };
- XWEB.Rectangle=function(x_co,y_co,w,h){
- this.x=x_co;
- this.y=y_co;
- this.width=w;
- this.height=h;
- this.toString=function(){
- return "Rectangle: "+this.x+","+this.y+","+this.width+","+this.height;
- };
- return this;
- };
- XWEB.Dimension=function(w,h){
- this.width=w;
- this.height=h;
- this.toString=function(){
- return "Dimension: "+this.width+","+this.height;
- };
- return this;
- };
-};
-
-XWEB.Date=new function(){
- this.server_date=new Date();
- this.diff_time=0;
-
- this.setServerDate=function(dateString){
- this.server_date = new Date(dateString);
- this.diff_time=new Date().getTime()-this.server_date.getTime();
- };
-
- this.get=function(){
- var cur_date=new Date();
- if(this.diff_time!=0){
- cur_date.setTime(cur_date.getTime()-this.diff_time);
- }
- return cur_date;
- };
-
- this.getLocalDate=function(){
- return new Date();
- };
-
- this.toString=function(){
- return this.server_date.toString();
- };
-
- this.convYearAD=function(year){
- if (year<100){
- return year+2000;
- } else {
- return year;
- }
- };
-
- return this;
-};
-
-XWEB.Navigator=new function(){
- this.name;
- this.buttonWidth=84; // navibutton width
- this.enableColor='#333399'; // enable button color
- this.disableColor='#dddddd'; // disable button color
- this.highColor='#dd0044'; // focus button color
- this.backgroundColor='#ffffff'; // backgound color
- this.borderColor='#000000'; // border line color
- this.borderWidth=2; // border line width
-
- this.columns=1;
- this.rows=8;
- this.position;
- this.fontsize=12;
- this.fontfamily=1;
-
- this.hidden=false;
- this.popup=false;
-
- this.titles;
- this.buttons;
- this.activeButton;
- this.eventHandler;
- this.backupEventHandler=new Array(); // save handler.
- this.idnames=new Array(); // save id idname, (navibutton id)
-
- // XWEB.Navigator. (for function "XWEB.Navigator.location()")
- this.EAST=0;
- this.NORTH=1;
- this.WEST=2;
- this.SOUTH=3;
-
- this.execPrecheck=function(idname){
- var n=XWEB.Navigator.idnames[idname];
- if(n!=undefined){
- if(XWEB.Navigator.isPrecheck(n)==true){
- return XWEB.Navigator.precheck(n);
- }
- }
- return false;
- };
-
- this.execButton=function(idname){
- var n=XWEB.Navigator.idnames[idname];
- if(n!=undefined){
- if(this.isButtonEnabled(n)){
- XWEB.Navigator.functions(n);
- }
- }else{
- alert('Error: undefined navigator button id: '+idname);
- }
- };
-
- this.functions=function(n){ // navibutton function,
- if(XWEB.Navigator.isButtonDisabled(n)==true){
- return;
- }
- if(XWEB.Navigator.isPrecheck(n)==true){
- var result=XWEB.Navigator.precheck(n);
- if(result==false){ return; }
- }
- XWEB.Form.Submit(XWEB.Form.action[n]);
- };
- this.precheck_func=new Array();
- this.precheck=function(no){
- var myNavigator_sEventHandler=eval("__"+this.name+".sEventHandler");
- if (myNavigator_sEventHandler[no].length==0){
- return;
- }
- var func=XWEB.Navigator.precheck_func[no];
- if(func){
- return func();
- }else{
- alert('Error: undefined navibutton function');
- return false;
- }
- };
- this.isPrecheck=function(no){
- return XWEB.Navigator.precheck_func[no]==undefined?false:true;
- };
- this.addPrecheck=function(no,func){
- XWEB.Navigator.precheck_func[no]=func;
- };
-
- this.initNavidata=function(){
- if(this.name.length==0){
- return;
- }
- var n_idname="__"+this.name;
- if(eval("typeof("+n_idname+")")=='undefined'){
- //alert("navigator button ["+this.name+"] is not defined."); (aw 000420)
- return;
- }
- if(this.titles==undefined){
- if(eval("typeof("+n_idname+".sButton)")=='undefined'){
- this.titles=new Array();
- this.buttons=new Array();
- this.eventHandler=new Array();
- this.activeButton=new Array();
- return;
- }
- this.titles=eval(n_idname+".sButton");
- this.buttons=eval(n_idname+".sTitle");
- this.eventHandler=eval(n_idname+".sEventHandler");
- this.activeButton=eval(n_idname+".nActiveButton");
- for(var n=0;n0){
- s=s+";XWEB.Server_navigator(n,XWEB.Form.id,new Array(),-1);";
- }
- this.eventHandler[n]=s;
- this.backupEventHandler[n]=s;
-*/
- }
- }
- };
-
- this.getButtonCount=function(){
- this.initNavidata();
- return this.buttons.length;
- };
-
- this.setDisabled=function(b){
- this.initNavidata();
- for(var n=0;n disabled
- enable_button(n,'');
- }else{ // disabled -> enabled
- enable_button(n,this.backupEventHandler[n]);
- }
- }catch(e){
- XWEB.Exec.Exception(e,'Error: Navigator['+n+']');
- }
- }
- }
-
- if(XWEB.Navigator.popup==true){
- var idname=XWEB.PopupMenu.idname+"_NAVI_BTN_"+n;
- var btn=document.getElementById(XWEB.PopupMenu.idname+"_NAVI_BTN_"+n);
- if(btn){
- XWEB.PopupMenu.setColor(btn,false);
- btn.disabled=b;
- }
- }
- };
-
- this.setButtonEnabled=function(n,b){
- this.setButtonDisabled(n,!b);
- };
-
- this.isButtonDisabled=function(n){
- this.initNavidata();
- return this.eventHandler[n].length==0?true:false;
- };
-
- this.isButtonEnabled=function(n){
- return !this.isButtonDisabled(n);
- };
-
- this.setNaviIdnames=function(){
- for(var n=0; n0){
- wk_action+="?"+params.join("&");
- }
- //alert("submit: "+formaction.name+","+wk_action+","+formaction.target);
-
- if(formaction.nosubmit==true){
- var hnd;
- if(formaction.style==undefined){
- hnd=window.open(wk_action,formaction.target);
- }else{
- hnd=window.open(wk_action,formaction.target,formaction.style);
- }
- XWEB.addWindowHandle(hnd,formaction.targe);
- }else{
-// xweb_navifunc(formaction.name,wk_action,formaction.target);
- if(XWEB.Form.upload_list.length>0){
- var up_form=document.forms[XWEB.Form.name];
- XWEB.FileUpload.ExecFormSubmit();
- if(XWEB.FileUpload.upload_stat==true){
- up_form.submit=XWEB.FileUpload.nativeSubmit;
- xweb_navifunc(formaction.name,wk_action,formaction.target);
- up_form.submit=XWEB.FileUpload.ExecFormSubmit;
- }
- }else{
- xweb_navifunc(formaction.name,wk_action,formaction.target);
- }
- }
-
- for(var n in dis_combo){
- dis_combo[n].setDisabled(true);
- }
- for(var n in ro_combo){
- ro_combo[n].setReadOnly(true);
- }
- for(var n in dis_checkbox){
- dis_checkbox[n].setDisabled(true);
- }
- for(var n in dis_radio){
- dis_radio[n].setDisabled(true);
- }
- for(var n in dis_listbox){
- dis_listbox[n].setDisabled(true);
- }
- for(var n in ro_listbox){
- ro_listbox[n].setReadOnly(true);
- }
-
- if(formaction.comma){
- if(myform_comma_fields){ // -- insert comma.
- for(var i=0;i=48&&key_code<=57)||
- (key_code>=96&&key_code<=105) ){
- return true; // '0'->'9', tenkey '0'->'9'
- }else{
- return false;
- }
-};
-
-// tB[hɕtĂ{[_[OFFɂB
-XWEB.Form.TSBorderOff=function(){
- XWEB.Form.TSBOff(0); // mouseover rect.
- XWEB.Form.TSBOff(1); // onfocus rect.
-};
-XWEB.Form.TSBOff=function(k){
- var o;
- for(var i=0;i<4;i++){
- o=document.getElementById('TS5'+k+i);
- if(o){ o.style.visibility='hidden'; }
- }
-};
-
-XWEB.Form.PopupClose=function(){
- XWEB.Calendar.Close();
- XWEB.MWindow.Close();
- XWEB.Form.Disabled(false)
- XWEB.FileUpload.Close();
-};
-
-XWEB.Form.ShotCutOperation=function(event){
- // Anchor key. (+ number)
- if(event.altKey==true){
- if(event.keyCode==88||event.keyCode==120){ // 'X' or 'x'
- XWEB.Html.showCalenderIcon(false);
- XWEB.Html.showComboboxAllow(false);
- if(XWEB.Html.enabled_vertical_view==false){
- return;
- }
- if(XWEB.User.validateChangeViewMode(true)==false){
- return;
- }
- //XWEB.Calendar.PopupClose();
- XWEB.Form.PopupClose();
- XWEB.Html.PageView.ShowVerticalPage();// vertical view.
- XWEB.Html.PageView.OnChangeViewMode(true); //user & server function
- XWEB.Form.TSBorderOff();
- XWEB.preventDefault(event);
- return false;
- }
- else if(event.keyCode==90||event.keyCode==122){ // 'Z' or 'z'
- XWEB.Html.showCalenderIcon(false);
- XWEB.Html.showComboboxAllow(false);
- if(XWEB.Html.enabled_vertical_view==false){
- return;
- }
- if(XWEB.User.validateChangeViewMode(false)==false){
- return;
- }
- //XWEB.Calendar.PopupClose();
- XWEB.Form.PopupClose();
- XWEB.Html.PageView.ShowTabPage(); // tab view.
- XWEB.Html.PageView.OnChangeViewMode(false); //user & server function
- XWEB.Form.TSBorderOff();
- XWEB.preventDefault(event);
- return false;
- }
- else if(XWEB.Form.isNumberKey(event.keyCode)==true){
- var ch=String.fromCharCode(event.keyCode);
- var fld_id=XWEB.Html.field_anchor[ch];
- if(fld_id){
- var fld=XWEB.getField(fld_id);
- if(fld){
- if(XWEB.Html.verticalPageMode==false){
- var lno=XWEB.Html.getBelongingTabNumber(fld_id);
- if(!isNaN(lno)){
- if(XWEB.Html.isTabVisible(lno)==false){
- XWEB.Html.showCalenderIcon(false);
- XWEB.Html.showComboboxAllow(false);
- XWEB.Html.tabSelect(lno);
- }
- }
- }
- if(fld.isVisible()){
- fld.setFocus();
- }else{
- var lno=XWEB.Html.getBelongingTabNumber(fld_id);
- if(isNaN(lno)==false){
- XWEB.Html.showCalenderIcon(false);
- XWEB.Html.showComboboxAllow(false);
- if(XWEB.User.validateChangeViewPage(lno)==true){
- document.body.focus();
- XWEB.Html.PageView.ChangeTabID=setTimeout('XWEB.Html.PageView.ChangeTab('+lno+',"'+fld_id+'");',XWEB.Html.PageView.ChangeTabDelayTime);
- }
- }
- }
- XWEB.preventDefault(event);
- return true;
- }
- }
- }
- }
-
- // PageJump Operation.
- if(event.ctrlKey==true){
- if(XWEB.Html.ctrl_page_jump==true){
- if(XWEB.Form.isNumberKey(event.keyCode)==true){
- var pgno=Number(String.fromCharCode(event.keyCode))-1;
- var jump_tab=undefined;
- var tabs=XWEB.Html.page_tab;
- var htm_pgno=-1;
- for(var n in tabs){
- if(pgno==(tabs[n].html_pgno-1)){
- jump_tab=tabs[n];
- htm_pgno=n;
- break;
- }
- }
- if(jump_tab){
- XWEB.Html.showCalenderIcon(false);
- XWEB.Html.showComboboxAllow(false);
- if(XWEB.LAYERMANAGER.isVisble(htm_pgno)!=true){
- if(XWEB.User.validateChangeViewPage(htm_pgno)==true){
- document.body.focus();
- XWEB.Html.PageView.ChangeTabID=setTimeout('XWEB.Html.PageView.ChangeTab('+htm_pgno+');',XWEB.Html.PageView.ChangeTabDelayTime);
- }
- }
- XWEB.preventDefault(event);
- return true;
- }
- }
- }
-
- XWEB.Html.showCalenderIcon(true);
- XWEB.Html.showComboboxAllow(true);
- }
- return true;
-};
-
-XWEB.Form.ShotCutEnd=function(event){
- XWEB.Html.showCalenderIcon(false);
- XWEB.Html.showComboboxAllow(false);
-}
-
-XWEB.Html.showCalenderIcon=function(bVisble){
- if(XWEB.Html.mark_popup_visible==bVisble||isEditMode()==false||XWEB.User.Enabled.isCalenderIcon()==false){
- return;
- }
- XWEB.Html.mark_popup_visible=bVisble;
-
- var icon_image=XWEB.Resource.Image("images/markup/calendar.gif");
-
- for(var n in XWEB.Html.field_popup_cal){
- var idname=XWEB.Html.field_popup_cal[n];
- var fld=XWEB.getField(idname);
- if(fld){
- if(fld.isDisabled()){
- ;
- } else if(fld.isVisible() &&
- XWEB.User.Enabled.isCalenderIconById(fld.id)==true){
- var mark_id="_pcal_"+idname;
- var o_fld=document.getElementById(idname);
- if(isSafari()){
- var wk_fld=document.getElementById("_"+idname+"_FCS");
- if(wk_fld) {o_fld=wk_fld;};
- }
- var p_node=o_fld.parentNode;
- var o_img=document.getElementById(mark_id);
- if(o_img==undefined){
- if(bVisble==true&&fld.isReadOnly()==true&&XWEB.isRoPopCalc(idname)==false){
- continue;
- }
- o_img=document.createElement('img');
- o_img.id=mark_id;
- o_img.title=I18N.t("js.rpc.message.1"); // _uNbNŃJ_\܂
- o_img.src=icon_image;
- p_node.appendChild(o_img);
- o_img.style.position='absolute';
- o_img.fldid=idname;
- if(o_img.addEventListener){
- o_img.addEventListener('click', XWEB.Html.wclickField_sphone, false);
- }
- o.style.zIndex=9999;
- }
- if(bVisble){
- o_img.style.left=parseInt(o_fld.style.left)+"px";
- o_img.style.top =parseInt(o_fld.style.top)-5+"px";
- o_img.style.visibility=bVisble?'visible':'hidden';
- }else{
- p_node.removeChild(o_img);
- }
- }
- }
- }
-}
-
-XWEB.Html.showMWinIcon=function(bVisble){
- if(XWEB.Html.mark_mwin_visible==bVisble || isEditMode()==false){
- return;
- }
- XWEB.Html.mark_mwin_visible=bVisble;
-
- var icon_image=XWEB.Resource.Image("images/markup/mref.gif");
-
- for(n in XWEB.Html.field_mwin){
- var idname=XWEB.Html.field_mwin[n];
- var fld=XWEB.getField(idname);
- if(fld){
- if(fld.isDisabled()){
- ;
- } else if(fld.isVisible()){
- var mark_id="_pmwin_"+idname;
- var o_fld=document.getElementById(idname);
- var p_node=o_fld.parentNode;
- var o_img=document.getElementById(mark_id);
- if(o_img==undefined){
- if(bVisble==true&&fld.isReadOnly()==true&&XWEB.isRoPopMwin(idname)==false){
- continue;
- }
- o_img=document.createElement('img');
- o_img.id=mark_id;
- o_img.title='_uNbNŃ}X^QƃEBhE\܂';
- o_img.src=icon_image;
- p_node.appendChild(o_img);
- o_img.style.position='absolute';
- o_img.fldid=idname;
- if(o_img.addEventListener){
- o_img.addEventListener('click', XWEB.Html.wclickField_sphone, false);
- }
- o.style.zIndex=9999;
- }
- if(bVisble){
- o_img.style.left=parseInt(o_fld.style.left)+"px";
- o_img.style.top =parseInt(o_fld.style.top)-5+"px";
- o_img.style.visibility=bVisble?'visible':'hidden';
- }else{
- p_node.removeChild(o_img);
- }
- }
- }
- }
-}
-XWEB.Html.wclickField_sphone=function(event){
- var fldid=event.srcElement.fldid;
- var pos = fldid.lastIndexOf("_");
- var num = fldid.substring(pos + 1);
- var wclickfunc=eval('XWEB.EVENT.'+ fldid + '.OnDblClick');
- if (!isNaN(num)) {
- wclickfunc(document.getElementById(fldid),event,num);
- }else{
- wclickfunc(document.getElementById(fldid),event);
- }
-}
-
-XWEB.Html.showComboboxAllow=function(bVisble){
- return;
-};
-
-//ő啶žKvǂ
-XWEB.Form.isNeedCheckOverMaxLength=function(o){
- if (XWEB.bInputNumberHTML5) {
- //input(type=number)Ől͂sꍇ́AmaxLengthl͖B
- //̂߁AmaxLengthɒlݒ肳Ăꍇ́AvB
- return (o && o.value && o.value.length && o.maxLength && (o.maxLength > 0));
- } else {
- //input(type=text)Ől͂sꍇ́AmaxLengthl邱Ƃ͂ȂB(Rs[&y[XgłȂ)
- //̂߁AؕsvłB
- return false;;
- }
-};
-
-// eLXgGAonkeyup/onblurŐʒu݂̒̂sB
-XWEB.Form.setTextVAlign=function(_obj,dispReload){ // T-002450
- var fld=XWEB.getField(_obj.id);
- if(fld!=undefined && fld.type==XWEB.FieldType.TextArea && fld.valign>0){
- XWEB.TEXTAREA.setTextVAlign(_obj,fld.valign,0,dispReload);
- }
-};
-
-// enter, tab, backtab (only not table)
-XWEB.Form.enterkey=function(_obj,event){
- var fld=XWEB.getField(_obj.id);
- if(fld==undefined){ return; }
-
- if(fld.type==XWEB.FieldType.TextArea){ // Deji.2167
- if(fld.valign>0){
- XWEB.TEXTAREA.setTextVAlign(_obj,fld.valign,event.keyCode);
- }
- }
-
- if(XWEB.Html.enterkey==false&&event.keyCode==13){
- return; // disabled enter key.
- }
-
- var bNext=true;
- if(event.keyCode==9){ // tab.
- // T-001946 (ړOɐltB[h̑ÓmF)
- if(fld.type==XWEB.FieldType.Integer||fld.type==XWEB.FieldType.Number){
- if(!_obj.readOnly){
- if(isNaN(TSCNE(_obj.value))){
- return; // ltB[hsȏꍇ͈ړ~߂B("TSCNIU"ɕ키)
- }
- }
- }
-
- if(fld.type==XWEB.FieldType.RadioButton){
- var rad_id=event.srcElement ? event.srcElement.id : event.target.id;
- var n=rad_id.lastIndexOf('_');
- if(n!=-1){
- var id_left=rad_id.substr(0,n);
- var id_sufix=Number(rad_id.substr(n+1));
- if(id_sufix==0 && event.shiftKey==true){
- return;
- }else{
- rad_id=id_left+"_"+(id_sufix+(event.shiftKey==false?1:-1));
- }
- if(document.getElementById(rad_id)){
- return;
- }
- }
- }
-
- bNext=event.shiftKey==false?true:false;
- XWEB.preventDefault(event);
- }else if(event.keyCode!=13){ // not enter.
- if(XWEB.bIE &&
- XWEB.Html.moveallow==true &&
- (event.keyCode==37||event.keyCode==39)){ // <-(37),->(39)
- if(XWEB.isInput(fld.type)){
- val=document.selection.createRange();
- if(fld.getValue()){
- if(val.text.length==0 && fld.getValue().length != 0){
- return;
- }
- }
- }
- bNext=event.keyCode==37?false:true;
- }else{
- return;
- }
- }
-
- if(fld.type==XWEB.FieldType.Button&&event.keyCode==13){
- return; // button is skip.
- }
-
- var next_id=bNext?fld.nextField():fld.backField();
- if(next_id==undefined){ return; }
-
- var next_fld=XWEB.getField(next_id);
- if(next_fld==undefined){ return; }
- if(next_fld.type==XWEB.FieldType.Button){
- if(fld.type==XWEB.FieldType.TextArea){
- if(event.keyCode==9){
- XWEB.preventDefault(event);
- }
- }else{
- XWEB.preventDefault(event);
- }
- }
-
- if(fld.type==XWEB.FieldType.TextArea){
- if(event.ctrlKey==true||fld.isReadOnly()==true){
- next_fld.setFocus();// is push CTRL key.
- }else if(event.keyCode==9){
- next_fld.setFocus();
- }else if(fld.getValue().length==0&&event.ctrlKey==false){
- XWEB.preventDefault(event); // T-000610
- next_fld.setFocus(); // T-000610
- }
- }else{
- next_fld.setFocus(!bNext);
- }
-
- if(XWEB.Html.enterkey==true){ // (dejipo.1083)
- if(next_fld.type==XWEB.FieldType.TextArea&&event.keyCode==13){
- if(fld.type!=XWEB.FieldType.TextArea){
- XWEB.preventDefault(event);
- }
- }
- }
-};
-XWEB.Form.onKeyEnter=function(_obj,event){
- XWEB.Form.enterkey(_obj,event);
- return true;
-};
-XWEB.Form.onChgNumber=function(_obj,event,_no){
- if(_obj){
- XWEB.NUMBER.MinusColor(_obj.id);
- }
- return true;
-};
-XWEB.Form.onFocusNumber=function(_obj,event,_no){
- delComFld(_obj.id);
- TSOldVal=_obj.value; // patch, for Generator.
- return true;
-};
-XWEB.Form.onBlurNumber=function(_obj,event,_no){
- setCom(_obj.id);
- return true;
-};
-
-//--- X-WebForm, initialized form data.
-XWEB.Html.InitFields=function(){
- XWEB.Html.patch();
- XWEB.Html.InitFormat();
- XWEB.Html.InitNumberField();
- XWEB.Html.InitBarcodeField();
- XWEB.Html.InitOptionList();
- XWEB.Html.InitCombobox();
- if(XWEB.Html.page_tab_pos.length>0){
- XWEB.Html.tabSelect(); // Tabؑւiw̃^uIAPDF쐬j
- }else{ // aw 000591
- XWEB.Html.setPdfTemplateURLSet(); // ^uؑւȂiwiPDFp̏쐬)
- }
-
- //-- XN[\悤CSSւB
- XWEB.Html.setCSSDisplayStyle("block",'.XWGSCR'); // T-002714
-
- //T-002877
- // IE9,10ł̓tH[JXԂŃeLXgGApaddingtoplݒ肵ĂAڏ㔽fȂB
- // ̖邽߁AtH[[h̏tH[JXݒ(XWEB.Html.setFocus)OɁA
- // eLXgGApaddingtoplݒ肷B
- XWEB.Html.InitTextArea();
-};
-init_numberfield=XWEB.Html.InitFields; // for x-point v1.8
-
-XWEB.Html.patch=function(){
- XWEB.Html.patch_older_gen2101();
-};
-
-XWEB.Html.patch_older_gen2101=function(){
- if(XWEB.Build){
- if(parseInt(XWEB.Build.Generator)>2090){
- return; // XWF Generator b2091ȍ~NOP.(VGenȅꍇ)
- }
- }
-
- if(XWEB.Html.page_tab_pos=='north'||XWEB.Html.page_tab_pos=='west'){
- var dwx=XWEB.Html.page_tab_pos=='north'?0:20;
- var dwy=XWEB.Html.page_tab_pos=='west'?0:20;
- TSmx+=dwx;
- TSmy+=dwy;
- XWEB.Form.left+=dwx;
- XWEB.Form.top+=dwy;
- for(var pgno=0;pgno<255;++pgno){
- var bdy=document.getElementById('xwf_vbody'+pgno);
- var sb1=document.getElementById('xwf_vsb1'+pgno);
- var sb2=document.getElementById('xwf_vsb2'+pgno);
- var sb3=document.getElementById('xwf_vsb3'+pgno);
- if(bdy==undefined){
- break;
- }
- if(dwx>0){
- bdy.style.left=(parseInt(bdy.style.left)+dwx)+"px";
- sb1.style.left=(parseInt(sb1.style.left)+dwx)+"px";
- sb2.style.left=(parseInt(sb2.style.left)+dwx)+"px";
- sb3.style.left=(parseInt(sb3.style.left)+dwx)+"px";
- }
- if(dwy>0){
- bdy.style.top=(parseInt(bdy.style.top)+dwy)+"px";
- sb1.style.top=(parseInt(sb1.style.top)+dwy)+"px";
- sb2.style.top=(parseInt(sb2.style.top)+dwy)+"px";
- sb3.style.top=(parseInt(sb3.style.top)+dwy)+"px";
- }
- }
- }
-};
-
-// T-002714 imode=displayɐݒ肷l, st_name=CSSNXj
-XWEB.Html.setCSSDisplayStyle=function(mode,st_name){
- // ChromeCSSł͏ňׁAuEUނ킸ňɂB
- var css_blockname=st_name.toLowerCase();
- var styleSheets=document.styleSheets;
- var rules, rule, st, ncss;
- for (var sn=0;sn0) ){ // Deji.2167
- var tobj=XWEB.getElementById(fld.id);
- if(tobj){
- XWEB.TEXTAREA.setTextVAlign(tobj,fld.valign,0,XWEB.TEXTAREA.CONST.DISP_RELOAD);
- }
- }
- }
-};
-
-XWEB.Html.InitBody=function(){
-
- XWEB.refreshCalenderSet();
- //XWEB.TabOrder.ResetTabIndex(XWEB.Navigator.name); //reset tabindex value.
- //XWEB.TabOrder.CreateList(); // create Taborder data for [XWEB.FieldPropertiy].
-
- XWEB.TabOrder.CreatePageTabIndex(0);
- // javascript function patch for x-point.
- if(typeof(patches4xpoint)=='function'){
- patches4xpoint();
- };
-
- for(var fldname in XWEB.Form.minus_color){
- XWEB.NUMBER.MinusColor(fldname);
- }
-
- //--- init objects.
- for(var n in XWEB.Html.xwf_field_type){
- var fld=XWEB.Html.xwf_field_type[n];
- switch(fld.type){
- case XWEB.FieldType.Table: //--- set zOrder, table row back fill.
- var tb_rows=fld.getMaxrow();
- for(var row=0;row0){
- XWEB.FileUpload.CreatePageBaseUploadFormTag();
- var up_form=document.forms[XWEB.Form.name];
- if(up_form){
- XWEB.FileUpload.nativeSubmit=up_form.submit;
- up_form.submit=XWEB.FileUpload.ExecFormSubmit;
- }
- }
-
- //-- mirror set, init value copy all.
- XWEB.Mirror.initValue();
-
- // ancker key control, page jump key control.
- if(document.addEventListener){ //FF
- document.addEventListener('keydown',XWEB.Form.ShotCutOperation,true);
- document.addEventListener('keyup',XWEB.Form.ShotCutEnd,true);
- }else if(document.attachEvent){ //IE.
- document.attachEvent('onkeydown',XWEB.Form.ShotCutOperation);
- document.attachEvent('onkeyup',XWEB.Form.ShotCutEnd);
- }
-
- XWEB.IMAGE.InitAspectRatio();
-
- if(isIPhone()||isIPad()||isAndroid()){
- document.body.style.KhtmlUserSelect='none';
- document.addEventListener('touchstart', XWEB.TouchStartHdlr, false);
- document.addEventListener('touchend', XWEB.TouchEndHdlr, false);
- } else if(XWEB.Browser.isIeWindowsUiMode()) {
- document.body.style.KhtmlUserSelect='none';
- if(window.PointerEvent){
- document.addEventListener('pointerdown', XWEB.TouchStartHdlr, false);
- document.addEventListener('pointerup', XWEB.TouchEndHdlr, false);
- } else {
- //IE10p (IE10łpointerdownł̓nhOłȂ)
- document.addEventListener('MSPointerDown', XWEB.TouchStartHdlr, false);
- document.addEventListener('MSPointerUp', XWEB.TouchEndHdlr, false);
- }
- }
-};
-
-if(XWEB.Browser.isTouchPanelDevice()){
- XWEB.touchTimerID=null;
- XWEB.touched = false;
- XWEB.TouchStartHdlr=function(event){
- XWEB.touchTimerID=setTimeout('XWEB.Html.showCalenderIcon(true);XWEB.Html.showMWinIcon(true);XWEB.touched=true;', 200);
- event.stopPropagation();
- }
- XWEB.TouchEndHdlr=function(event){
- if(XWEB.touchTimerID != null){
- clearTimeout(XWEB.touchTimerID);
- XWEB.touchTimerID=null;
- }
- if(XWEB.touched){
- XWEB.touched=false;
- setTimeout('XWEB.Html.showCalenderIcon(false);XWEB.Html.showMWinIcon(false);', 7000);
- }
- }
-}
-
-/**
- * HTML̃tH[{́Ae̕ɑz-indexĐݒ肷B
-*/
-XWEB.Html.pageZIndex=function(bdy_zidx,sdb_zidx){
- for(var pgno=0;true;++pgno){
- var o=document.getElementById('xwf_vpage_'+pgno);
- if(o==undefined){
- break; // no more page.
- }
- o.style.zIndex=0;
- for(var n=1;n<=3;++n){
- o=document.getElementById('xwf_vsb'+n+pgno);
- if(o){o.style.zIndex=sdb_zidx;}
- }
- o=document.getElementById('xwf_vbody'+pgno);
- if(o){o.style.zIndex=bdy_zidx;}
- }
-};
-
-XWEB.Html.InitNumberField=function(){
- if(XWEB.isXpoint()){ // for X-point18
- for(var i=0;i0){ // T-002016, 00:00N_A1970/01/01N_ZbgĂ܂ʂB
- fld.setSerialValue(from_fld.getValue());
- }else{
- fld.setValue("");
- }
- }else if(from_fld.type==XWEB.FieldType.DateTime){
- if(XWEB.DATETIME.FORMAT.isImpDate(from_fld.input_format)==XWEB.DATETIME.FORMAT.isImpDate(fld.input_format)){
- fld.setValue(XWEB.DATETIME.FORMAT.getFormatValue(arg_val,from_fld.input_format,fld.input_format),val2,val3);
- } else {
- fld.setSerialValue(from_fld.getSerialValue());
- }
- }else{
- fld.setValue("");
- }
- }else{
- if(arg_val==undefined){
- fld.setValue(arg_val,val2,val3);
- } else if(arg_val.length==0 || (from_fld.type==XWEB.FieldType.DateTime&&XWEB.DATETIME.FORMAT.isEmpty(arg_val))){
- // T-002016, OȊOɁA^̏ꍇ͖͏̕\ɉA"__:__"̏ʂ̍ڂɐݒ肵Ă܂B
- fld.setValue("");
- }else if(fld.type==XWEB.FieldType.Integer||fld.type==XWEB.FieldType.Number ){
- if(from_fld.type==XWEB.FieldType.DateTime){
- var wk_val=from_fld.getSerialValue();
- if(isNaN(wk_val)){ // T-002016
- fld.setValue(""); // t͋NaNԂ̂ŃZbgl͋ɂB
- }else if(wk_val==0 && XWEB.DATETIME.FORMAT.isEmpty(from_fld.getValue())){
- fld.setValue(""); // ̏ꍇłOԂ̂œ͏ԂmF
- }else{
- fld.setValue(from_fld.getSerialValue());
- }
- }else{
- fld.setValue(arg_val,val2,val3);
- }
- }else{
- fld.setValue(arg_val,val2,val3);
- if(fld.type==XWEB.FieldType.Text||fld.type==XWEB.FieldType.DateTime){ // T-002515
- if(fld.display_format&&fld.display_format.length>0){ // T-001308
- var o=XWEB.getElementById(fld.id);
- if(o){
- if(!XWEB.DATETIME.FORMAT.isEmpty(o.value)){ // T-002016, ͂łΏȂB
- xp_dateformat(o,fld.display_format);
- }
- }
- }else if( (!fld.display_format || fld.display_format.length==0) &&
- (from_fld.display_format && from_fld.display_format.length>0) ){ // T-001308(L->Ȃ)
- var _obj=XWEB.getElementById(fld.id);
- if(_obj){
- if(!XWEB.DATETIME.FORMAT.isEmpty(_obj.value) &&
- XWEB.DATETIME.FORMAT.isDateFormat(from_fld.display_format)){ // T-002016, ͂łΏȂB
- xp_dateformat(_obj,from_fld.display_format);
- }
- }
- }
- }
- }
- }
- try {
- var org_idname=this.mirror_orgid[mname][idname].toLowerCase();
- if(fld.type==XWEB.FieldType.Year||fld.type==XWEB.FieldType.Month||fld.type==XWEB.FieldType.Day){
- var func=eval("XWEVT."+org_idname+".OnBlur");
- if(typeof(func)=='function'){
- func(document.getElementById(org_idname));
- }
- }
- var ffld=XWEB.getObject(org_idname);
- if(ffld){
- if(ffld.OnChange){
- var _obj=XWEB.getElementById(org_idname);
- ffld.OnChange(_obj,window.event,rowno); //T-000352
- }
- }
- }catch(ex){
- XWEB.Exec.Exception(ex,'Mirror');
- }
- }
- }
-
- this.mirror_copy=false; // end copy.
-//alert('mirror copy: stop');
- };
-
- // XWEB.Mirror.CopyValue
- this.onChangeCopy=function(_obj){
- if(_obj){
- var fld=XWEB.getObject(_obj.id);
- if(fld){
- // T-002016
- if (fld.isTextLenZero()) {
- XWEB.Mirror.CopyValue(fld.id,"");// T-002016ȉꍇValueNAANAȂƐltB[hł͂O邽߁j
- } else {
- XWEB.Mirror.CopyValue(fld.id,fld.getValue());
- }
- }
- }
- };
-
- // XWEB.Mirror.initValue
- this.initValue=function(){
- for(var n in this.mirror_set){
- // T-000128 (from)
- //var fld=XWEB.getField(n);
- var fld;
- var fields=XWEB.Mirror.getMirrorFields(n);
- for(var idname in fields){
- fld=XWEB.getObject(idname);
- if(fld && fld.getTextValue){
- var rval=fld.getTextValue();
- if(rval && rval.length>0){
- break;
- }
- }
- }
- // T-000128 (to)
- if(fld){
- if (fld.isTextLenZero()) {
- this.CopyValue(fld.id,"");// T-002016ȉꍇValueNAANAȂƐltB[hł͂O邽߁j
- } else {
- this.CopyValue(fld.id,fld.getValue());
- }
- }
- }
- };
-
- return this;
-};
-
-//---
-XWEB.getField=function(id){
- if(id!=null){
- return XWEB.Html.xwf_field_type[id.toLowerCase()];
- }
-};
-XWEB.getFigure=function(id){
- if(id!=null){
- return XWEB.Html.xwf_figure_type[id.toLowerCase()];
- }
-};
-XWEB.getObject=function(id){
- var fld=XWEB.getField(id);
- if(typeof(fld)=='undefined'){
- fld=XWEB.getFigure(id);
- }
- return fld;
-};
-
-XWEB.getXPField=function(id,pgno){
- var formname=getFormname_XP(pgno);
- if(formname.length>0){ formname+="_"; }
- var ff=XWEB.getField(formname+id);
- if(ff){
- ff.pageno=pgno;
- }
- return ff;
-};
-XWEB.getXPObject=function(id,pgno){
- var formname=getFormname_XP(pgno);
- if(formname.length>0){ formname+="_"; }
- var ff=XWEB.getObject(formname+id);
- if(ff){
- ff.pageno=pgno;
- }
- return ff;
-};
-
-//XWEB.FunctioNames=new Array('OnClick','OnDblClick','OnChange','OnKeyDown','OnKeyPress','OnKeyUp','OnFocus','OnBlur','OnMouseOut','OnMouseOver');
-//XWEB.FigFunctioNames=new Array('OnClick','OnDblClick','OnMouseOut','OnMouseOver');
-
-XWEB._vlbl_size=new Array();
-XWEB.addVLabel=function(fid,px,py,pw,ph){
- XWEB._vlbl_size[fid]=new XWEB.Rectangle(px,py,pw,ph);
-};
-
-XWEB.addField=function(fld_prop,fld_tooltip){
- XWEB.Html.xwf_field_type[fld_prop.id]=fld_prop;
- if(fld_tooltip){
- fld_prop.tooltip=fld_tooltip;
- }
- if(fld_prop.type==XWEB.FieldType.Table){
- XWEB.Form.addTable(fld_prop.id,fld_prop.scroll);
- }
-};
-
-XWEB.addBackgroundInfo=function(key, x, y, w, h) {
- XWEB.Html.xwf_background_info[key] = new XWEB.Rectangle(x, y, w, h);
-}
-
-XWEB.addFigure=function(fld_prop,fld_tooltip){
- XWEB.Html.xwf_figure_type[fld_prop.id]=fld_prop;
- if(fld_tooltip){
- fld_prop.tooltip=fld_tooltip;
- }
-};
-
-XWEB.addTextAttribute=function(idname,pdfbg){
- var fld=XWEB.getObject(idname);
- if(fld){
- fld.pdf_background=pdfbg;
- }
-};
-
-// get Div Text. set Div Text.
-if(XWEB.bFF){ // firefox.
- XWEB.getDivText=function(o){return o.textContent;};
- XWEB.setDivText=function(o,val){o.textContent=val;};
-}else{ // not firefox (ie,netscape,opera..)
- XWEB.getDivText=function(o){
- //return o.innerText;
- if(o.childNodes){
- if(o.firstChild==undefined){
- return "";
- }else if(o.firstChild.nodeType==3){ //TextNode
- return o.firstChild.nodeValue;
- }else{
- return o.innerText;
- }
- }else{
- return o.innerText;
- }
- };
- XWEB.setDivText=function(o,val){o.innerText=val;};
-}
-
-// Switch of content of check box by space key pressing
-XWEB.Form.CheckBySpace=function(o,event){
- if(event.keyCode!=32) return;
-
- if(XWEB.bIE){
- o.click();
- event.returnValue=false;
- }else{
- o.onclick();
- XWEB.preventDefault(event);
- }
-};
-
-// Switch of content of radiobutton by space key pressing
-XWEB.Form.RadioBySpace=function(id,o,event){
- if(event.keyCode!=32) return;
-
- if(true){ // onfocus radiobutton is selected (push space key)
- if (XWEB.bIE) {
- o.click();
- event.returnValue=false;
- }else{
- o.onclick(event);
- XWEB.preventDefault(event);
- }
- }else{ // onfocus radiobutton is flip selected.
- var fld=XWEB.getField(id);
- var save_val=fld.getValue();
- if(save_val.length==0){
- o.click();
- return;
- }
-
- var found=false;
- for(var n=0; n < fld.radiovalues.length ; ++n){
- var val=fld.radiovalues[n];
- if(found){
- var r=XWEB.getElementById(id+'_'+n);
- r.click();
- return;
- }else if(save_val==val.value){
- found=true; // select next radio.
- }
- }
- if(found){ // select top radio.
- var r=XWEB.getElementById(id+'_0');
- if(r){ r.click(); }
- }
- }
-};
-
-XWEB.Form.CreateDisabledPanel=function(){
- var div_id="_xwf_disabled";
- var dis=XWEB.Html.disabled_panel;
- if(dis==undefined){
- dis=document.createElement('div');
- dis.style.visibility='hidden';
- dis.style.zIndex=XWEB.Const.DisabledLayer;
- dis.style.position='absolute';
-
- var img=document.createElement('img');
- img.src=XWEB.Rpc.contextpath+XWEB.Rpc.tslib+"/images/transparent.gif";
-
- dis.appendChild(img);
- document.body.appendChild(dis);
-
- XWEB.Html.disabled_panel=dis;
- }
- return dis;
-};
-XWEB.Form.Disabled=function(b){
- var dis=XWEB.Form.CreateDisabledPanel();
- if(dis){
- img=dis.firstChild;
- if(b){
- img.width=XWEB.getWindowWidth();
- img.height=XWEB.getWindowHeight();
- img.galleryimg='no';
- img.style.zIndex=62000;
- //img.style.visibility='visible';
-
- dis.style.visibility='visible';
- dis.style.left =XWEB.getWindowLeft();
- dis.style.top =XWEB.getWindowTop();
- //dis.style.width =XWEB.getWindowWidth();
- //dis.style.height=XWEB.getWindowHeight();
- dis.style.cursor="wait";
- }else{
- dis.style.visibility='hidden';
- dis.style.cursor = "default"
- }
- }
-};
-
-//--- OnLoad setMessage()
-var _xwf_onload_message="";
-XWEB.onLoadMessage=function(){
- if(typeof(_xwf_onload_message)!='undefined'){
- if(_xwf_onload_message.length>0){
- alert(_xwf_onload_message);
- }
- }
-};
-
-// filed type.
-XWEB.FieldType=new function() {
- this.Label = 1;
- this.Text = 2;
- this.Number = 3;
- this.Integer = 4;
- this.TextArea = 5;
- this.Password = 6;
- this.Button = 7;
- this.RadioButton = 8;
- this.CheckBox = 9;
- this.ComboBox = 10;
- this.List = 11;
- this.Year = 12;
- this.Month = 13;
- this.Day = 14;
- this.WeekDay = 15;
- this.Stamp = 16;
- this.Barcode = 17;
- this.Hidden = 18;
- this.Zipcode = 19;
- this.Upload = 20;
- this.DateTime = 21;
-
- this.Table = 30;
-
- this.Tree = 40;
-
- this.WebCharts = 50;
-
- this.Hline = 100;
- this.Vline = 101;
- this.Line = 102;
- this.Rect = 103;
- this.Fill = 104;
- this.Image = 105;
-
- return this;
-};
-
-XWEB.isInput=function(type){
- switch(type){
- case XWEB.FieldType.Text:
- case XWEB.FieldType.Number:
- case XWEB.FieldType.Integer:
- case XWEB.FieldType.TextArea:
- case XWEB.FieldType.Password:
- case XWEB.FieldType.Year:
- case XWEB.FieldType.Month:
- case XWEB.FieldType.Day:
- case XWEB.FieldType.Zipcode:
- case XWEB.FieldType.Upload:
- case XWEB.FieldType.DateTime:
- return true;
- break;
- default:
- return false;
- break;
- }
-};
-
-//--- Ime control.
-XWEB.IMEType=new function() {
- this.auto = "auto"; //Japanese input auto
- this.active = "active"; //Japanese input on
- this.inactive = "inactive"; //Japanese input off
- this.disabled = "disabled"; //Japanese input disabled
- return this;
-};
-
-//---- Tree Object, Node type.
-XWEB.TreeNode=function(){};
-XWEB.TreeNode.Type=new function(){
- this.NODE=0;
- this.LEAF=1;
- this.URL=2;
- return this;
-};
-
-XWEB.TreeNode.Item=function(idname,caption,
- childNode,childOpen,
- url,target,
- tooltip,onclick,server){ // client script, server event (send field array), null is event not fire.
- this.id=idname;
- this.caption=caption; //caption data.
- this.childNode=childNode; // hava child node is not null. (array)
- this.childOpen=childOpen?childOpen:false; // init mode(true:open/false:close)
-
- this.onclick=onclick?onclick:false; // (only use item)
- this.server=server?server:false;
- this.url=url;
- this.target=target?target:'_blank';
-
- this.tooltip=tooltip?tooltip:''; // tooltip text
-
- return this;
-};
-XWEB.TreeNode.Folder=function(idname,caption,childNode,childOpen,tooltip){
- var childs=childNode==null ? childNode : new Array();
- return new XWEB.TreeNode.Item(idname,caption,childNode,childOpen,null,null,tooltip);
-};
-XWEB.TreeNode.Leaf=function(idname,caption,tooltip){
- return new XWEB.TreeNode.Item(idname,caption,null,false,null,null,tooltip);
-};
-XWEB.TreeNode.Url=function(idname,caption,url,target,tooltip){
- return new XWEB.TreeNode.Item(idname,caption,null,false,url,target,tooltip);
-};
-
-//----- Field Object common functions.
-XWEB.FP=new function(){
- this.isTextLenZero = function(val_str){
- return (!XWEB.isNullUndef(val_str)) && (val_str.length<=0); //if karamoji return true.
- }
-
- this.Visible=function(type,id,vis){
- switch(type){
- case XWEB.FieldType.Label: XWEB.LABEL.Visible(id,vis); break;
- case XWEB.FieldType.Text: XWEB.TEXTFIELD.Visible(id,vis); break;
- case XWEB.FieldType.Number: XWEB.NUMBER.Visible(id,vis); break;
- case XWEB.FieldType.Integer: XWEB.INTEGER.Visible(id,vis); break;
- case XWEB.FieldType.TextArea: XWEB.TEXTAREA.Visible(id,vis); break;
- case XWEB.FieldType.Password: XWEB.PASSWORD.Visible(id,vis); break;
- case XWEB.FieldType.Button: XWEB.BUTTON.Visible(id,vis); break;
- case XWEB.FieldType.RadioButton: XWEB.RADIO.Visible(id,vis); break;
- case XWEB.FieldType.CheckBox: XWEB.CHECKBOX.Visible(id,vis); break;
- case XWEB.FieldType.ComboBox: XWEB.COMBOBOX.Visible(id,vis); break;
- case XWEB.FieldType.List: XWEB.LISTBOX.Visible(id,vis); break;
- case XWEB.FieldType.Year: XWEB.YEAR.Visible(id,vis); break;
- case XWEB.FieldType.Month: XWEB.MONTH.Visible(id,vis); break;
- case XWEB.FieldType.Day: XWEB.DAY.Visible(id,vis); break;
- case XWEB.FieldType.WeekDay: XWEB.WEEKDAY.Visible(id,vis); break;
- case XWEB.FieldType.DateTime: XWEB.DATETIME.Visible(id,vis); break;
- case XWEB.FieldType.Stamp: XWEB.STAMP.Visible(id,vis); break;
- case XWEB.FieldType.Barcode: XWEB.BARCODE.Visible(id,vis); break;
- case XWEB.FieldType.Hidden: break;
- case XWEB.FieldType.Zipcode: XWEB.ZIPCODE.Visible(id,vis); break;
- case XWEB.FieldType.Upload: XWEB.UPLOAD.Visible(id,vis); break;
-
- case XWEB.FieldType.Table: XWEB.TABLE.Visible(id,vis); break;
-
- case XWEB.FieldType.Tree: XWEB.TREE.Visible(id,vis); break;
-
- case XWEB.FieldType.Hline: XWEB.HLINE.Visible(id,vis); break;
- case XWEB.FieldType.Vline: XWEB.VLINE.Visible(id,vis); break;
- case XWEB.FieldType.Line: XWEB.LINE.Visible(id,vis); break;
- case XWEB.FieldType.Rect: XWEB.RECT.Visible(id,vis); break;
- case XWEB.FieldType.Fill: XWEB.FILL.Visible(id,vis); break;
- case XWEB.FieldType.Image: XWEB.IMAGE.Visible(id,vis); break;
- };
- };
- this.TextVisible=function(type,id,vis){
- switch(type){
- case XWEB.FieldType.Label: XWEB.TEXTFIELD.TextVisible(id,vis); break;
- case XWEB.FieldType.Text: XWEB.TEXTFIELD.TextVisible(id,vis); break;
- case XWEB.FieldType.Number: XWEB.TEXTFIELD.TextVisible(id,vis); break;
- case XWEB.FieldType.Integer: XWEB.TEXTFIELD.TextVisible(id,vis); break;
- case XWEB.FieldType.TextArea: XWEB.TEXTFIELD.TextVisible(id,vis); break;
- case XWEB.FieldType.Password: XWEB.TEXTFIELD.TextVisible(id,vis); break;
- case XWEB.FieldType.Button: XWEB.BUTTON.TextVisible(id,vis); break;
- case XWEB.FieldType.RadioButton: break;
- case XWEB.FieldType.CheckBox: break;
- case XWEB.FieldType.ComboBox: XWEB.COMBOBOX.TextVisible(id,vis); break;
- case XWEB.FieldType.List: XWEB.LISTBOX.TextVisible(id,vis); break;
- case XWEB.FieldType.Year: XWEB.TEXTFIELD.TextVisible(id,vis); break;
- case XWEB.FieldType.Month: XWEB.TEXTFIELD.TextVisible(id,vis); break;
- case XWEB.FieldType.Day: XWEB.TEXTFIELD.TextVisible(id,vis); break;
- case XWEB.FieldType.WeekDay: XWEB.COMBOBOX.TextVisible(id,vis); break;
- case XWEB.FieldType.DateTime: XWEB.TEXTFIELD.TextVisible(id,vis); break;
- case XWEB.FieldType.Stamp: XWEB.STAMP.TextVisible(id,vis); break;
- case XWEB.FieldType.Barcode: break;
- case XWEB.FieldType.Hidden: break;
- case XWEB.FieldType.Zipcode: XWEB.TEXTFIELD.TextVisible(id,vis); break;
- case XWEB.FieldType.Upload: XWEB.UPLOAD.TextVisible(id,vis); break;
- case XWEB.FieldType.Table: XWEB.TABLE.TextVisible(id,vis); break;
- default:
-// alert('TextVisible: '+id+': '+vis);
- break;
- }
- };
- this.setFontSize=function(type,id,n){
- switch(type){
- case XWEB.FieldType.Label: XWEB.TEXTFIELD.setFontSize(id,n); break;
- case XWEB.FieldType.Text: XWEB.TEXTFIELD.setFontSize(id,n); break;
- case XWEB.FieldType.Number: XWEB.TEXTFIELD.setFontSize(id,n); break;
- case XWEB.FieldType.Integer: XWEB.TEXTFIELD.setFontSize(id,n); break;
- case XWEB.FieldType.TextArea: XWEB.TEXTFIELD.setFontSize(id,n); break;
- case XWEB.FieldType.Password: XWEB.TEXTFIELD.setFontSize(id,n); break;
- case XWEB.FieldType.Button: XWEB.BUTTON.setFontSize(id,n); break;
- case XWEB.FieldType.RadioButton: break;
- case XWEB.FieldType.CheckBox: break;
- case XWEB.FieldType.ComboBox: XWEB.COMBOBOX.setFontSize(id,n); break;
- case XWEB.FieldType.List: XWEB.LISTBOX.setFontSize(id,n); break;
- case XWEB.FieldType.Year: XWEB.TEXTFIELD.setFontSize(id,n); break;
- case XWEB.FieldType.Month: XWEB.TEXTFIELD.setFontSize(id,n); break;
- case XWEB.FieldType.Day: XWEB.TEXTFIELD.setFontSize(id,n); break;
- case XWEB.FieldType.WeekDay: XWEB.COMBOBOX.setFontSize(id,n); break;
- case XWEB.FieldType.DateTime: XWEB.TEXTFIELD.setFontSize(id,n); break;
- case XWEB.FieldType.Stamp: XWEB.STAMP.setFontSize(id,n); break;
- case XWEB.FieldType.Barcode: break;
- case XWEB.FieldType.Hidden: break;
- case XWEB.FieldType.Zipcode: XWEB.TEXTFIELD.setFontSize(id,n); break;
- case XWEB.FieldType.Upload: XWEB.TEXTFIELD.setFontSize(id,n); break;
- case XWEB.FieldType.Table: break;
-
- case XWEB.FieldType.Tree: break;
-
- case XWEB.FieldType.Hline: break;
- case XWEB.FieldType.Vline: break;
- case XWEB.FieldType.Line: break;
- case XWEB.FieldType.Rect: break;
- case XWEB.FieldType.Fill: break;
- case XWEB.FieldType.Image: break;
- };
- };
- this.setFontName=function(type,id,n){
- switch(type){
- case XWEB.FieldType.Label: XWEB.TEXTFIELD.setFontName(id,n); break;
- case XWEB.FieldType.Text: XWEB.TEXTFIELD.setFontName(id,n); break;
- case XWEB.FieldType.Number: XWEB.TEXTFIELD.setFontName(id,n); break;
- case XWEB.FieldType.Integer: XWEB.TEXTFIELD.setFontName(id,n); break;
- case XWEB.FieldType.TextArea: XWEB.TEXTFIELD.setFontName(id,n); break;
- case XWEB.FieldType.Password: XWEB.TEXTFIELD.setFontName(id,n); break;
- case XWEB.FieldType.Button: XWEB.BUTTON.setFontName(id,n); break;
- case XWEB.FieldType.RadioButton: break;
- case XWEB.FieldType.CheckBox: break;
- case XWEB.FieldType.ComboBox: XWEB.COMBOBOX.setFontName(id,n); break;
- case XWEB.FieldType.List: XWEB.LISTBOX.setFontName(id,n); break;
- case XWEB.FieldType.Year: XWEB.TEXTFIELD.setFontName(id,n); break;
- case XWEB.FieldType.Month: XWEB.TEXTFIELD.setFontName(id,n); break;
- case XWEB.FieldType.Day: XWEB.TEXTFIELD.setFontName(id,n); break;
- case XWEB.FieldType.WeekDay: XWEB.COMBOBOX.setFontName(id,n); break;
- case XWEB.FieldType.DateTime: XWEB.TEXTFIELD.setFontName(id,n); break;
- case XWEB.FieldType.Stamp: XWEB.STAMP.setFontName(id,n); break;
- case XWEB.FieldType.Barcode: break;
- case XWEB.FieldType.Hidden: break;
- case XWEB.FieldType.Zipcode: XWEB.TEXTFIELD.setFontName(id,n); break;
- case XWEB.FieldType.Upload: XWEB.TEXTFIELD.setFontName(id,n); break;
- case XWEB.FieldType.Table: break;
-
- case XWEB.FieldType.Tree: break;
-
- case XWEB.FieldType.Hline: break;
- case XWEB.FieldType.Vline: break;
- case XWEB.FieldType.Line: break;
- case XWEB.FieldType.Rect: break;
- case XWEB.FieldType.Fill: break;
- case XWEB.FieldType.Image: break;
- };
- };
- this.setFontWeight=function(type,id,n){
- switch(type){
- case XWEB.FieldType.Label: XWEB.TEXTFIELD.setFontWeight(id,n); break;
- case XWEB.FieldType.Text: XWEB.TEXTFIELD.setFontWeight(id,n); break;
- case XWEB.FieldType.Number: XWEB.TEXTFIELD.setFontWeight(id,n); break;
- case XWEB.FieldType.Integer: XWEB.TEXTFIELD.setFontWeight(id,n); break;
- case XWEB.FieldType.TextArea: XWEB.TEXTFIELD.setFontWeight(id,n); break;
- case XWEB.FieldType.Password: XWEB.TEXTFIELD.setFontWeight(id,n); break;
- case XWEB.FieldType.Button: XWEB.BUTTON.setFontWeight(id,n); break;
- case XWEB.FieldType.RadioButton: break;
- case XWEB.FieldType.CheckBox: break;
- case XWEB.FieldType.ComboBox: XWEB.COMBOBOX.setFontWeight(id,n); break;
- case XWEB.FieldType.List: XWEB.LISTBOX.setFontWeight(id,n); break;
- case XWEB.FieldType.Year: XWEB.TEXTFIELD.setFontWeight(id,n); break;
- case XWEB.FieldType.Month: XWEB.TEXTFIELD.setFontWeight(id,n); break;
- case XWEB.FieldType.Day: XWEB.TEXTFIELD.setFontWeight(id,n); break;
- case XWEB.FieldType.WeekDay: XWEB.COMBOBOX.setFontWeight(id,n); break;
- case XWEB.FieldType.DateTime: XWEB.TEXTFIELD.setFontWeight(id,n); break;
- case XWEB.FieldType.Stamp: XWEB.STAMP.setFontWeight(id,n); break;
- case XWEB.FieldType.Barcode: break;
- case XWEB.FieldType.Hidden: break;
- case XWEB.FieldType.Zipcode: XWEB.TEXTFIELD.setFontWeight(id,n); break;
- case XWEB.FieldType.Upload: XWEB.TEXTFIELD.setFontWeight(id,n); break;
- case XWEB.FieldType.Table: break;
-
- case XWEB.FieldType.Tree: break;
-
- case XWEB.FieldType.Hline: break;
- case XWEB.FieldType.Vline: break;
- case XWEB.FieldType.Line: break;
- case XWEB.FieldType.Rect: break;
- case XWEB.FieldType.Fill: break;
- case XWEB.FieldType.Image: break;
- };
- };
- this.setFontStyle=function(type,id,n){
- switch(type){
- case XWEB.FieldType.Label: XWEB.TEXTFIELD.setFontStyle(id,n); break;
- case XWEB.FieldType.Text: XWEB.TEXTFIELD.setFontStyle(id,n); break;
- case XWEB.FieldType.Number: XWEB.TEXTFIELD.setFontStyle(id,n); break;
- case XWEB.FieldType.Integer: XWEB.TEXTFIELD.setFontStyle(id,n); break;
- case XWEB.FieldType.TextArea: XWEB.TEXTFIELD.setFontStyle(id,n); break;
- case XWEB.FieldType.Password: XWEB.TEXTFIELD.setFontStyle(id,n); break;
- case XWEB.FieldType.Button: XWEB.BUTTON.setFontStyle(id,n); break;
- case XWEB.FieldType.RadioButton: break;
- case XWEB.FieldType.CheckBox: break;
- case XWEB.FieldType.ComboBox: XWEB.COMBOBOX.setFontStyle(id,n); break;
- case XWEB.FieldType.List: XWEB.LISTBOX.setFontStyle(id,n); break;
- case XWEB.FieldType.Year: XWEB.TEXTFIELD.setFontStyle(id,n); break;
- case XWEB.FieldType.Month: XWEB.TEXTFIELD.setFontStyle(id,n); break;
- case XWEB.FieldType.Day: XWEB.TEXTFIELD.setFontStyle(id,n); break;
- case XWEB.FieldType.WeekDay: XWEB.COMBOBOX.setFontStyle(id,n); break;
- case XWEB.FieldType.DateTime: XWEB.TEXTFIELD.setFontStyle(id,n); break;
- case XWEB.FieldType.Stamp: XWEB.STAMP.setFontStyle(id,n); break;
- case XWEB.FieldType.Barcode: break;
- case XWEB.FieldType.Hidden: break;
- case XWEB.FieldType.Zipcode: XWEB.TEXTFIELD.setFontStyle(id,n); break;
- case XWEB.FieldType.Upload: XWEB.TEXTFIELD.setFontStyle(id,n); break;
- case XWEB.FieldType.Table: break;
-
- case XWEB.FieldType.Tree: XWEB.TREE.setFontStyle(id,n); break;
-
- case XWEB.FieldType.Hline: break;
- case XWEB.FieldType.Vline: break;
- case XWEB.FieldType.Line: break;
- case XWEB.FieldType.Rect: break;
- case XWEB.FieldType.Fill: break;
- case XWEB.FieldType.Image: break;
- };
- };
- this.setTextDecoration=function(type,id,n){
- switch(type){
- case XWEB.FieldType.Label: XWEB.TEXTFIELD.setTextDecoration(id,n); break;
- case XWEB.FieldType.Text: XWEB.TEXTFIELD.setTextDecoration(id,n); break;
- case XWEB.FieldType.Number: XWEB.TEXTFIELD.setTextDecoration(id,n); break;
- case XWEB.FieldType.Integer: XWEB.TEXTFIELD.setTextDecoration(id,n); break;
- case XWEB.FieldType.TextArea: XWEB.TEXTFIELD.setTextDecoration(id,n); break;
- case XWEB.FieldType.Password: XWEB.TEXTFIELD.setTextDecoration(id,n); break;
- case XWEB.FieldType.Button: XWEB.BUTTON.setTextDecoration(id,n); break;
- case XWEB.FieldType.RadioButton: break;
- case XWEB.FieldType.CheckBox: break;
- case XWEB.FieldType.ComboBox: XWEB.COMBOBOX.setTextDecoration(id,n); break;
- case XWEB.FieldType.List: XWEB.LISTBOX.setTextDecoration(id,n); break;
- case XWEB.FieldType.Year: XWEB.TEXTFIELD.setTextDecoration(id,n); break;
- case XWEB.FieldType.Month: XWEB.TEXTFIELD.setTextDecoration(id,n); break;
- case XWEB.FieldType.Day: XWEB.TEXTFIELD.setTextDecoration(id,n); break;
- case XWEB.FieldType.WeekDay: XWEB.COMBOBOX.setTextDecoration(id,n); break;
- case XWEB.FieldType.DateTime: XWEB.TEXTFIELD.setTextDecoration(id,n); break;
- case XWEB.FieldType.Stamp: XWEB.STAMP.setTextDecoration(id,n); break;
- case XWEB.FieldType.Barcode: break;
- case XWEB.FieldType.Hidden: break;
- case XWEB.FieldType.Zipcode: XWEB.TEXTFIELD.setTextDecoration(id,n); break;
- case XWEB.FieldType.Upload: XWEB.TEXTFIELD.setTextDecoration(id,n); break;
- case XWEB.FieldType.Table: break;
-
- case XWEB.FieldType.Tree: XWEB.TREE.setTextDecoration(id,n); break;
-
- case XWEB.FieldType.Hline: break;
- case XWEB.FieldType.Vline: break;
- case XWEB.FieldType.Line: break;
- case XWEB.FieldType.Rect: break;
- case XWEB.FieldType.Fill: break;
- case XWEB.FieldType.Image: break;
- };
- };
- this.setForegroundColor=function(type,id,col){
- switch(type){
- case XWEB.FieldType.Label: XWEB.TEXTFIELD.setForegroundColor(id,col); break;
- case XWEB.FieldType.Text: XWEB.TEXTFIELD.setForegroundColor(id,col); break;
- case XWEB.FieldType.Number: XWEB.TEXTFIELD.setForegroundColor(id,col); break;
- case XWEB.FieldType.Integer: XWEB.TEXTFIELD.setForegroundColor(id,col); break;
- case XWEB.FieldType.TextArea: XWEB.TEXTFIELD.setForegroundColor(id,col); break;
- case XWEB.FieldType.Password: XWEB.TEXTFIELD.setForegroundColor(id,col); break;
- case XWEB.FieldType.Button: XWEB.BUTTON.setForegroundColor(id,col); break;
- case XWEB.FieldType.RadioButton: break;
- case XWEB.FieldType.CheckBox: break;
- case XWEB.FieldType.ComboBox: XWEB.COMBOBOX.setForegroundColor(id,col); break;
- case XWEB.FieldType.List: XWEB.LISTBOX.setForegroundColor(id,col); break;
- case XWEB.FieldType.Year: XWEB.TEXTFIELD.setForegroundColor(id,col); break;
- case XWEB.FieldType.Month: XWEB.TEXTFIELD.setForegroundColor(id,col); break;
- case XWEB.FieldType.Day: XWEB.TEXTFIELD.setForegroundColor(id,col); break;
- case XWEB.FieldType.WeekDay: XWEB.COMBOBOX.setForegroundColor(id,col); break;
- case XWEB.FieldType.DateTime: XWEB.TEXTFIELD.setForegroundColor(id,col); break;
- case XWEB.FieldType.Stamp: XWEB.STAMP.setForegroundColor(id,col); break;
- case XWEB.FieldType.Barcode: break;
- case XWEB.FieldType.Hidden: break;
- case XWEB.FieldType.Zipcode: XWEB.TEXTFIELD.setForegroundColor(id,col); break;
- case XWEB.FieldType.Upload: XWEB.TEXTFIELD.setForegroundColor(id,col); break;
- case XWEB.FieldType.Table: break;
-
- case XWEB.FieldType.Tree: break;
-
- case XWEB.FieldType.Hline: break;
- case XWEB.FieldType.Vline: break;
- case XWEB.FieldType.Line: break;
- case XWEB.FieldType.Rect: break;
- case XWEB.FieldType.Fill: break;
- case XWEB.FieldType.Image: break;
- };
- };
- this.setBackgroundColor=function(type,id,col){
- if(col==""){col="transparent";} // T-001649
- switch(type){
- case XWEB.FieldType.Label: XWEB.TEXTFIELD.setBackgroundColor(id,col); break;
- case XWEB.FieldType.Text: XWEB.TEXTFIELD.setBackgroundColor(id,col); break;
- case XWEB.FieldType.Number: XWEB.TEXTFIELD.setBackgroundColor(id,col); break;
- case XWEB.FieldType.Integer: XWEB.TEXTFIELD.setBackgroundColor(id,col); break;
- case XWEB.FieldType.TextArea: XWEB.TEXTFIELD.setBackgroundColor(id,col); break;
- case XWEB.FieldType.Password: XWEB.TEXTFIELD.setBackgroundColor(id,col); break;
- case XWEB.FieldType.Button: XWEB.BUTTON.setBackgroundColor(id,col); break;
- case XWEB.FieldType.RadioButton: break;
- case XWEB.FieldType.CheckBox: break;
- case XWEB.FieldType.ComboBox: XWEB.COMBOBOX.setBackgroundColor(id,col); break;
- case XWEB.FieldType.List: XWEB.COMBOBOX.setBackgroundColor(id,col); break;
- case XWEB.FieldType.Year: XWEB.TEXTFIELD.setBackgroundColor(id,col); break;
- case XWEB.FieldType.Month: XWEB.TEXTFIELD.setBackgroundColor(id,col); break;
- case XWEB.FieldType.Day: XWEB.TEXTFIELD.setBackgroundColor(id,col); break;
- case XWEB.FieldType.WeekDay: XWEB.COMBOBOX.setBackgroundColor(id,col); break;
- case XWEB.FieldType.DateTime: XWEB.TEXTFIELD.setBackgroundColor(id,col); break;
- case XWEB.FieldType.Stamp: XWEB.STAMP.setBackgroundColor(id,col); break;
- case XWEB.FieldType.Barcode: break;
- case XWEB.FieldType.Hidden: break;
- case XWEB.FieldType.Zipcode: XWEB.TEXTFIELD.setBackgroundColor(id,col); break;
- case XWEB.FieldType.Upload: XWEB.TEXTFIELD.setBackgroundColor(id,col); break;
- case XWEB.FieldType.Table: break;
-
- case XWEB.FieldType.Tree: XWEB.TREE.setBackgroundColor(id,col); break;
-
- case XWEB.FieldType.Hline: break;
- case XWEB.FieldType.Vline: break;
- case XWEB.FieldType.Line: break;
- case XWEB.FieldType.Rect: break;
- case XWEB.FieldType.Fill: break;
- case XWEB.FieldType.Image: break;
- };
- };
- this.setRectColor=function(type,id,col){
- switch(type){
- case XWEB.FieldType.Label: XWEB.TEXTFIELD.setRectColor(id,col); break;
- case XWEB.FieldType.Text: XWEB.TEXTFIELD.setRectColor(id,col); break;
- case XWEB.FieldType.Number: XWEB.TEXTFIELD.setRectColor(id,col); break;
- case XWEB.FieldType.Integer: XWEB.TEXTFIELD.setRectColor(id,col); break;
- case XWEB.FieldType.TextArea: XWEB.TEXTFIELD.setRectColor(id,col); break;
- case XWEB.FieldType.Password: XWEB.TEXTFIELD.setRectColor(id,col); break;
- case XWEB.FieldType.Button: XWEB.BUTTON.setRectColor(id,col); break;
- case XWEB.FieldType.RadioButton: break;
- case XWEB.FieldType.CheckBox: break;
- case XWEB.FieldType.ComboBox: XWEB.TEXTFIELD.setRectColor(id,col); break;
- case XWEB.FieldType.List: XWEB.TEXTFIELD.setRectColor(id,col); break;
- case XWEB.FieldType.Year: XWEB.TEXTFIELD.setRectColor(id,col); break;
- case XWEB.FieldType.Month: XWEB.TEXTFIELD.setRectColor(id,col); break;
- case XWEB.FieldType.Day: XWEB.TEXTFIELD.setRectColor(id,col); break;
- case XWEB.FieldType.WeekDay: XWEB.TEXTFIELD.setRectColor(id,col); break;
- case XWEB.FieldType.DateTime: XWEB.TEXTFIELD.setRectColor(id,col); break;
- case XWEB.FieldType.Stamp: XWEB.STAMP.setRectColor(id,col); break;
- case XWEB.FieldType.Barcode: break;
- case XWEB.FieldType.Hidden: break;
- case XWEB.FieldType.Zipcode: XWEB.TEXTFIELD.setRectColor(id,col); break;
- case XWEB.FieldType.Upload: XWEB.TEXTFIELD.setRectColor(id,col); break;
- case XWEB.FieldType.Table: break;
-
- case XWEB.FieldType.Tree: XWEB.TREE.setRectColor(id,col); break;
-
- case XWEB.FieldType.Hline: XWEB.HLINE.setColor(id,col); break;
- case XWEB.FieldType.Vline: XWEB.VLINE.setColor(id,col); break;
- case XWEB.FieldType.Line: XWEB.LINE.setColor(id,col); break;
- case XWEB.FieldType.Rect: XWEB.RECT.setColor(id,col); break;
- case XWEB.FieldType.Fill: XWEB.FILL.setColor(id,col); break;
- case XWEB.FieldType.Image: break;
- };
- };
- this.setColor=function(type,id,col){
- switch(type){
- case XWEB.FieldType.Hline: XWEB.HLINE.setColor(id,col); break;
- case XWEB.FieldType.Vline: XWEB.VLINE.setColor(id,col); break;
- case XWEB.FieldType.Line: XWEB.LINE.setColor(id,col); break;
- case XWEB.FieldType.Rect: XWEB.RECT.setColor(id,col); break;
- case XWEB.FieldType.Fill: XWEB.FILL.setColor(id,col); break;
- case XWEB.FieldType.Image: break;
- };
- };
-
- this.isTextVisible=function(type,id){};
- this.getFontSize=function(type,id){};
- this.getFontName=function(type,id){};
- this.getFontWeight=function(type,id){};
- this.getFontStyle=function(type,id){};
- this.getTextDecoration=function(type,id){};
-
- this.getForegroundColor=function(type,id){
- var ret;
- switch(type){
- case XWEB.FieldType.Label: ret=XWEB.TEXTFIELD.getForegroundColor(id); break;
- case XWEB.FieldType.Text: ret=XWEB.TEXTFIELD.getForegroundColor(id); break;
- case XWEB.FieldType.Number: ret=XWEB.TEXTFIELD.getForegroundColor(id); break;
- case XWEB.FieldType.Integer: ret=XWEB.TEXTFIELD.getForegroundColor(id); break;
- case XWEB.FieldType.TextArea: ret=XWEB.TEXTFIELD.getForegroundColor(id); break;
- case XWEB.FieldType.Password: ret=XWEB.TEXTFIELD.getForegroundColor(id); break;
- case XWEB.FieldType.Button: ret=XWEB.BUTTON.getForegroundColor(id); break;
- case XWEB.FieldType.RadioButton: break;
- case XWEB.FieldType.CheckBox: break;
- case XWEB.FieldType.ComboBox: ret=XWEB.COMBOBOX.getForegroundColor(id); break;
- case XWEB.FieldType.List: ret=XWEB.COMBOBOX.getForegroundColor(id); break;
- case XWEB.FieldType.Year: ret=XWEB.TEXTFIELD.getForegroundColor(id); break;
- case XWEB.FieldType.Month: ret=XWEB.TEXTFIELD.getForegroundColor(id); break;
- case XWEB.FieldType.Day: ret=XWEB.TEXTFIELD.getForegroundColor(id); break;
- case XWEB.FieldType.WeekDay: ret=XWEB.COMBOBOX.getForegroundColor(id); break;
- case XWEB.FieldType.DateTime: ret=XWEB.TEXTFIELD.getForegroundColor(id); break;
- case XWEB.FieldType.Stamp: ret=XWEB.STAMP.getForegroundColor(id); break;
- case XWEB.FieldType.Barcode: break;
- case XWEB.FieldType.Hidden: break;
- case XWEB.FieldType.Zipcode: ret=XWEB.TEXTFIELD.getForegroundColor(id); break;
- case XWEB.FieldType.Upload: ret=XWEB.TEXTFIELD.getForegroundColor(id); break;
- case XWEB.FieldType.Table: break;
-
- case XWEB.FieldType.Tree: break;
-
- case XWEB.FieldType.Hline: break;
- case XWEB.FieldType.Vline: break;
- case XWEB.FieldType.Line: break;
- case XWEB.FieldType.Rect: break;
- case XWEB.FieldType.Fill: break;
- case XWEB.FieldType.Image: break;
- };
- return ret;
- };
- this.getBackgroundColor=function(type,id){
- var ret;
- switch(type){
- case XWEB.FieldType.Label: ret=XWEB.TEXTFIELD.getBackgroundColor(id); break;
- case XWEB.FieldType.Text: ret=XWEB.TEXTFIELD.getBackgroundColor(id); break;
- case XWEB.FieldType.Number: ret=XWEB.TEXTFIELD.getBackgroundColor(id); break;
- case XWEB.FieldType.Integer: ret=XWEB.TEXTFIELD.getBackgroundColor(id); break;
- case XWEB.FieldType.TextArea: ret=XWEB.TEXTFIELD.getBackgroundColor(id); break;
- case XWEB.FieldType.Password: ret=XWEB.TEXTFIELD.getBackgroundColor(id); break;
- case XWEB.FieldType.Button: ret=XWEB.BUTTON.getBackgroundColor(id); break;
- case XWEB.FieldType.RadioButton: break;
- case XWEB.FieldType.CheckBox: break;
- case XWEB.FieldType.ComboBox: ret=XWEB.COMBOBOX.getBackgroundColor(id); break;
- case XWEB.FieldType.List: ret=XWEB.COMBOBOX.getBackgroundColor(id); break;
- case XWEB.FieldType.Year: ret=XWEB.TEXTFIELD.getBackgroundColor(id); break;
- case XWEB.FieldType.Month: ret=XWEB.TEXTFIELD.getBackgroundColor(id); break;
- case XWEB.FieldType.Day: ret=XWEB.TEXTFIELD.getBackgroundColor(id); break;
- case XWEB.FieldType.WeekDay: ret=XWEB.COMBOBOX.getBackgroundColor(id); break;
- case XWEB.FieldType.DateTime: ret=XWEB.TEXTFIELD.getBackgroundColor(id); break;
- case XWEB.FieldType.Stamp: ret=XWEB.STAMP.getBackgroundColor(id); break;
- case XWEB.FieldType.Barcode: break;
- case XWEB.FieldType.Hidden: break;
- case XWEB.FieldType.Zipcode: ret=XWEB.TEXTFIELD.getBackgroundColor(id); break;
- case XWEB.FieldType.Upload: ret=XWEB.TEXTFIELD.getBackgroundColor(id); break;
- case XWEB.FieldType.Table: break;
-
- case XWEB.FieldType.Tree: ret=XWEB.TREE.getBackgroundColor(id); break;
-
- case XWEB.FieldType.Hline: break;
- case XWEB.FieldType.Vline: break;
- case XWEB.FieldType.Line: break;
- case XWEB.FieldType.Rect: break;
- case XWEB.FieldType.Fill: break;
- case XWEB.FieldType.Image: break;
- };
- return ret;
- };
- this.getRectColor=function(type,id){
- var ret;
- switch(type){
- case XWEB.FieldType.Label: ret=XWEB.TEXTFIELD.getRectColor(id); break;
- case XWEB.FieldType.Text: ret=XWEB.TEXTFIELD.getRectColor(id); break;
- case XWEB.FieldType.Number: ret=XWEB.TEXTFIELD.getRectColor(id); break;
- case XWEB.FieldType.Integer: ret=XWEB.TEXTFIELD.getRectColor(id); break;
- case XWEB.FieldType.TextArea: ret=XWEB.TEXTFIELD.getRectColor(id); break;
- case XWEB.FieldType.Password: ret=XWEB.TEXTFIELD.getRectColor(id); break;
- case XWEB.FieldType.Button: ret=XWEB.BUTTON.getRectColor(id); break;
- case XWEB.FieldType.RadioButton: break;
- case XWEB.FieldType.CheckBox: break;
- case XWEB.FieldType.ComboBox: ret=XWEB.TEXTFIELD.getRectColor(id); break;
- case XWEB.FieldType.List: ret=XWEB.TEXTFIELD.getRectColor(id); break;
- case XWEB.FieldType.Year: ret=XWEB.TEXTFIELD.getRectColor(id); break;
- case XWEB.FieldType.Month: ret=XWEB.TEXTFIELD.getRectColor(id); break;
- case XWEB.FieldType.Day: ret=XWEB.TEXTFIELD.getRectColor(id); break;
- case XWEB.FieldType.WeekDay: ret=XWEB.TEXTFIELD.getRectColor(id); break;
- case XWEB.FieldType.DateTime: ret=XWEB.TEXTFIELD.getRectColor(id); break;
- case XWEB.FieldType.Stamp: ret=XWEB.STAMP.getRectColor(id); break;
- case XWEB.FieldType.Barcode: break;
- case XWEB.FieldType.Hidden: break;
- case XWEB.FieldType.Zipcode: ret=XWEB.TEXTFIELD.getRectColor(id); break;
- case XWEB.FieldType.Upload: ret=XWEB.TEXTFIELD.getRectColor(id); break;
- case XWEB.FieldType.Table: break;
-
- case XWEB.FieldType.Tree: ret=XWEB.TREE.getRectColor(id); break;
-
- case XWEB.FieldType.Hline: ret=XWEB.FILL.getColor(id); break;
- case XWEB.FieldType.Vline: ret=XWEB.FILL.getColor(id); break;
- case XWEB.FieldType.Line: ret=XWEB.LINE.getColor(id); break;
- case XWEB.FieldType.Rect: ret=XWEB.RECT.getColor(id); break;
- case XWEB.FieldType.Fill: ret=XWEB.FILL.getColor(id); break;
- case XWEB.FieldType.Image: break;
- };
- return ret;
- };
- this.getColor=function(type,id){
- var ret;
- switch(type){
- case XWEB.FieldType.Hline: ret=XWEB.FILL.getColor(id); break;
- case XWEB.FieldType.Vline: ret=XWEB.FILL.getColor(id); break;
- case XWEB.FieldType.Line: ret=XWEB.LINE.getColor(id); break;
- case XWEB.FieldType.Rect: ret=XWEB.RECT.getColor(id); break;
- case XWEB.FieldType.Fill: ret=XWEB.FILL.getColor(id); break;
- case XWEB.FieldType.Image: break;
- }
- return ret;
- };
-
- this.Value=function(type,id,arg_val,val2,val3){
- var val;
- if(type==XWEB.FieldType.Label) {
- val=arg_val;
- }else if(typeof(arg_val)=='string'){
- val=XWEB.ISO8859_1_Characters(arg_val);
- }else{
- val=arg_val;
- }
- var conv_flag=XWEB.Form.textconvert[id];
- if(conv_flag){
- if(conv_flag==1){ // toUpper.
- val=val.toUpperCase();
- }else if(conv_flag==2){ // toLower.
- val=val.toLowerCase();
- }
- }
-
- switch(type){
- case XWEB.FieldType.Label: XWEB.LABEL.Value(id,val); break;
- case XWEB.FieldType.Text: XWEB.TEXTFIELD.Value(id,val); break;
- case XWEB.FieldType.Number: XWEB.NUMBER.Value(id,val); break;
- case XWEB.FieldType.Integer: XWEB.INTEGER.Value(id,val); break;
- case XWEB.FieldType.TextArea: XWEB.TEXTAREA.Value(id,val); break;
- case XWEB.FieldType.Password: XWEB.PASSWORD.Value(id,val); break;
- case XWEB.FieldType.Button: XWEB.BUTTON.Value(id,val); break;
- case XWEB.FieldType.RadioButton: XWEB.RADIO.Value(id,val); break;
- case XWEB.FieldType.CheckBox: XWEB.CHECKBOX.Value(id,val); break;
- case XWEB.FieldType.ComboBox: XWEB.COMBOBOX.Value(id,val); break;
- case XWEB.FieldType.List: XWEB.LISTBOX.Value(id,val); break;
- case XWEB.FieldType.Year: XWEB.YEAR.Value(id,val); break;
- case XWEB.FieldType.Month: XWEB.MONTH.Value(id,val); break;
- case XWEB.FieldType.Day: XWEB.DAY.Value(id,val); break;
- case XWEB.FieldType.WeekDay: XWEB.WEEKDAY.Value(id,val); break;
- case XWEB.FieldType.DateTime: XWEB.DATETIME.Value(id,val); break;
- case XWEB.FieldType.Stamp: XWEB.STAMP.Value(id,val,val2,val3); break;
- case XWEB.FieldType.Barcode: XWEB.BARCODE.Value(id,val); break;
- case XWEB.FieldType.Hidden: XWEB.HIDDEN.Value(id,val); break;
- case XWEB.FieldType.Zipcode: XWEB.ZIPCODE.Value(id,val); break;
- case XWEB.FieldType.Upload: XWEB.UPLOAD.Value(id,val); break;
- case XWEB.FieldType.Table: XWEB.TABLE.Value(id,val,val2,val3); break;
-
- case XWEB.FieldType.Tree: XWEB.TREE.Value(id,val); break;
-
- case XWEB.FieldType.Image: XWEB.IMAGE.Value(id,val); break;
- }
-
- if(id!=undefined){
- XWEB.Mirror.CopyValue(id,arg_val,val2,val3); // check & set mirror value.
- }
- };
-
- this.setFocus=function(type,id,backTab){
- var fld=XWEB.getObject(id);
- if(fld){
- if(fld.isVisible()==false){
- var lno=XWEB.LAYERMANAGER.getBelongingLayerNumber(fld.id);
- if(isNaN(lno)==false){
- XWEB.Html.tabSelect(lno);
- XWEB.Html.PageView.OnChangeTabPage(lno,event);
- }
- }
- }
-
- switch(type){
- case XWEB.FieldType.Text: XWEB.TEXTFIELD.setFocus(id); break;
- case XWEB.FieldType.Number: XWEB.NUMBER.setFocus(id); break;
- case XWEB.FieldType.Integer: XWEB.INTEGER.setFocus(id); break;
- case XWEB.FieldType.TextArea: XWEB.TEXTAREA.setFocus(id); break;
- case XWEB.FieldType.Password: XWEB.PASSWORD.setFocus(id); break;
- case XWEB.FieldType.Button: XWEB.BUTTON.setFocus(id); break;
- case XWEB.FieldType.RadioButton: XWEB.RADIO.setFocus(id,backTab); break;
- case XWEB.FieldType.CheckBox: XWEB.CHECKBOX.setFocus(id); break;
- case XWEB.FieldType.ComboBox: XWEB.COMBOBOX.setFocus(id); break;
- case XWEB.FieldType.List: XWEB.LISTBOX.setFocus(id); break;
- case XWEB.FieldType.Year: XWEB.YEAR.setFocus(id); break;
- case XWEB.FieldType.Month: XWEB.MONTH.setFocus(id); break;
- case XWEB.FieldType.Day: XWEB.DAY.setFocus(id); break;
- case XWEB.FieldType.WeekDay: XWEB.WEEKDAY.setFocus(id); break;
- case XWEB.FieldType.DateTime: XWEB.DATETIME.setFocus(id); break;
- case XWEB.FieldType.Zipcode: XWEB.ZIPCODE.setFocus(id); break;
- case XWEB.FieldType.Upload: XWEB.UPLOAD.setFocus(id); break;
- }
- };
- this.getValue=function(type,id,rowno,fld_id){
- var val;
- switch(type){
- case XWEB.FieldType.Label: val=XWEB.LABEL.getValue(id,val); break;
- case XWEB.FieldType.Text: val=XWEB.TEXTFIELD.getValue(id); break;
- case XWEB.FieldType.Number: val=XWEB.NUMBER.getValue(id); break;
- case XWEB.FieldType.Integer: val=XWEB.INTEGER.getValue(id); break;
- case XWEB.FieldType.TextArea: val=XWEB.TEXTAREA.getValue(id); break;
- case XWEB.FieldType.Password: val=XWEB.PASSWORD.getValue(id); break;
- case XWEB.FieldType.Button: val=XWEB.BUTTON.getValue(id); break;
- case XWEB.FieldType.RadioButton: val=XWEB.RADIO.getValue(id); break;
- case XWEB.FieldType.CheckBox: val=XWEB.CHECKBOX.getValue(id); break;
- case XWEB.FieldType.ComboBox: val=XWEB.COMBOBOX.getValue(id); break;
- case XWEB.FieldType.List: val=XWEB.LISTBOX.getValue(id); break;
- case XWEB.FieldType.Year: val=XWEB.YEAR.getValue(id); break;
- case XWEB.FieldType.Month: val=XWEB.MONTH.getValue(id); break;
- case XWEB.FieldType.Day: val=XWEB.DAY.getValue(id); break;
- case XWEB.FieldType.WeekDay: val=XWEB.WEEKDAY.getValue(id); break;
- case XWEB.FieldType.DateTime: val=XWEB.DATETIME.getValue(id); break;
- case XWEB.FieldType.Zipcode: val=XWEB.ZIPCODE.getValue(id); break;
- case XWEB.FieldType.Upload: val=XWEB.UPLOAD.getValue(id); break;
- case XWEB.FieldType.Hidden: val=XWEB.HIDDEN.getValue(id); break;
- case XWEB.FieldType.Table: val=XWEB.TABLE.getValue(id,rowno,fld_id); break;
-
- case XWEB.FieldType.Tree: val=XWEB.TREE.getValue(id); break;
-
- case XWEB.FieldType.Image: val=XWEB.IMAGE.getValue(id); break;
- case XWEB.FieldType.Barcode: val=XWEB.IMAGE.getValue(id); break;
- }
- return val;
- };
-
- this.getTextValue=function(type,id,rowno,fld_id){
- var val;
- switch(type){
- case XWEB.FieldType.Number: val=XWEB.NUMBER.getTextValue(id); break;
- case XWEB.FieldType.Integer: val=XWEB.INTEGER.getTextValue(id); break;
- default: val=this.getValue(type,id,rowno,fld_id); break; // aw 000650 (No.3076)
- }
- return val;
- };
-
- this.getSerialValue=function(type,id){
- var val;
- switch(type){
- case XWEB.FieldType.DateTime:
- val=XWEB.DATETIME.getSerialValue(id); break;
- break;
- default:
- break;
- }
- return val;
- };
- this.setSerialValue=function(type,id,val){
- switch(type){
- case XWEB.FieldType.DateTime:
- XWEB.DATETIME.setSerialValue(id,val); break;
- break;
- default:
- break;
- }
- };
-
- this.getMultiValue=function(type,id){
- var val;
- switch(type){
- case XWEB.FieldType.List:
- val=XWEB.LISTBOX.getMultiValue(id); break;
- default:
- val=new Array();
- break;
- }
- return val;
- };
- this.getOptionLists=function(type,id,bSel){
- var val;
- switch(type){
- case XWEB.FieldType.List:
- val=XWEB.LISTBOX.getOptionLists(id,bSel);
- break;
- case XWEB.FieldType.ComboBox:
- val=XWEB.LISTBOX.getOptionLists(id);
- break;
- default:
- val=new Array();
- break;
- }
- return val;
- };
- this.optionListClear=function(type,id,empty_item){
- switch(type){
- case XWEB.FieldType.List:
- case XWEB.FieldType.ComboBox:
- XWEB.LISTBOX.optionListClear(id,empty_item);
- break;
- }
- };
- this.optionListAdd=function(type,id,text,value){
- switch(type){
- case XWEB.FieldType.List:
- case XWEB.FieldType.ComboBox:
- XWEB.LISTBOX.optionListAdd(id,text,value);
- break;
- }
- };
- this.optionListRemove=function(type,id,value){
- switch(type){
- case XWEB.FieldType.List:
- case XWEB.FieldType.ComboBox:
- XWEB.LISTBOX.optionListRemove(id,value);
- break;
- }
- };
- this.setMultiValue=function(type,id,value,bSelected){
- switch(type){
- case XWEB.FieldType.List:
- case XWEB.FieldType.ComboBox:
- XWEB.LISTBOX.setMultiValue(id,value,bSelected);
- break;
- }
- };
- this.isVisible=function(type,id){
- var vis;
- switch(type){
- case XWEB.FieldType.Label: vis=XWEB.LABEL.isVisible(id); break;
- case XWEB.FieldType.Text: vis=XWEB.TEXTFIELD.isVisible(id); break;
- case XWEB.FieldType.Number: vis=XWEB.NUMBER.isVisible(id); break;
- case XWEB.FieldType.Integer: vis=XWEB.INTEGER.isVisible(id); break;
- case XWEB.FieldType.TextArea: vis=XWEB.TEXTAREA.isVisible(id); break;
- case XWEB.FieldType.Password: vis=XWEB.PASSWORD.isVisible(id); break;
- case XWEB.FieldType.Button: vis=XWEB.BUTTON.isVisible(id); break;
- case XWEB.FieldType.RadioButton: vis=XWEB.RADIO.isVisible(id); break;
- case XWEB.FieldType.CheckBox: vis=XWEB.CHECKBOX.isVisible(id); break;
- case XWEB.FieldType.ComboBox: vis=XWEB.COMBOBOX.isVisible(id); break;
- case XWEB.FieldType.List: vis=XWEB.LISTBOX.isVisible(id); break;
- case XWEB.FieldType.Year: vis=XWEB.YEAR.isVisible(id); break;
- case XWEB.FieldType.Month: vis=XWEB.MONTH.isVisible(id); break;
- case XWEB.FieldType.Day: vis=XWEB.DAY.isVisible(id); break;
- case XWEB.FieldType.WeekDay: vis=XWEB.WEEKDAY.isVisible(id); break;
- case XWEB.FieldType.DateTime: vis=XWEB.DATETIME.isVisible(id); break;
- case XWEB.FieldType.Stamp: vis=XWEB.STAMP.isVisible(id); break;
- case XWEB.FieldType.Barcode: vis=XWEB.BARCODE.isVisible(id); break;
-
- case XWEB.FieldType.Zipcode: vis=XWEB.ZIPCODE.isVisible(id); break;
- case XWEB.FieldType.Upload: vis=XWEB.UPLOAD.isVisible(id); break;
-
- case XWEB.FieldType.Table: break;
-
- case XWEB.FieldType.Tree: vis=XWEB.TREE.isVisible(id); break;
-
- case XWEB.FieldType.Hline: vis=XWEB.HLINE.isVisible(id); break;
- case XWEB.FieldType.Vline: vis=XWEB.VLINE.isVisible(id); break;
- case XWEB.FieldType.Line: vis=XWEB.LINE.isVisible(id); break;
- case XWEB.FieldType.Rect: vis=XWEB.RECT.isVisible(id); break;
- case XWEB.FieldType.Fill: vis=XWEB.FILL.isVisible(id); break;
- case XWEB.FieldType.Image: vis=XWEB.IMAGE.isVisible(id); break;
- }
- return vis;
- };
- this.isVisibled=this.isVisible;
- this.isStampVisible=function(type,id){
- if(type==XWEB.FieldType.Stamp){
- return XWEB.STAMP.isStampVisible(id);
- }else{
- return false;
- }
- };
- this.isDisabled=function(type,id){
- var dis;
- switch(type){
- case XWEB.FieldType.Text: dis=XWEB.TEXTFIELD.isDisabled(id); break;
- case XWEB.FieldType.Number: dis=XWEB.NUMBER.isDisabled(id); break;
- case XWEB.FieldType.Integer: dis=XWEB.INTEGER.isDisabled(id); break;
- case XWEB.FieldType.TextArea: dis=XWEB.TEXTAREA.isDisabled(id); break;
- case XWEB.FieldType.Password: dis=XWEB.PASSWORD.isDisabled(id); break;
- case XWEB.FieldType.Button: dis=XWEB.BUTTON.isDisabled(id); break;
- case XWEB.FieldType.RadioButton: dis=XWEB.RADIO.isDisabled(id); break;
- case XWEB.FieldType.CheckBox: dis=XWEB.CHECKBOX.isDisabled(id); break;
- case XWEB.FieldType.ComboBox: dis=XWEB.COMBOBOX.isDisabled(id); break;
- case XWEB.FieldType.List: dis=XWEB.LISTBOX.isDisabled(id); break;
- case XWEB.FieldType.Year: dis=XWEB.YEAR.isDisabled(id); break;
- case XWEB.FieldType.Month: dis=XWEB.MONTH.isDisabled(id); break;
- case XWEB.FieldType.Day: dis=XWEB.DAY.isDisabled(id); break;
- case XWEB.FieldType.WeekDay: dis=XWEB.WEEKDAY.isDisabled(id); break;
- case XWEB.FieldType.DateTime: dis=XWEB.DATETIME.isDisabled(id); break;
- case XWEB.FieldType.Zipcode: dis=XWEB.ZIPCODE.isDisabled(id); break;
- case XWEB.FieldType.Upload: dis=XWEB.UPLOAD.isDisabled(id); break;
-
- case XWEB.FieldType.Tree: dis=XWEB.TREE.isDisabled(id); break;
-
- case XWEB.FieldType.Image: dis=XWEB.IMAGE.isDisabled(id); break;
- }
- return dis;
- };
- this.setStampVisible=function(type,id,b){
- if(type==XWEB.FieldType.Stamp){
- XWEB.STAMP.setStampVisible(id,b);
- }
- };
- this.setDisabled=function(type,id,b){
- switch(type){
- case XWEB.FieldType.Text: XWEB.TEXTFIELD.setDisabled(id,b); break;
- case XWEB.FieldType.Number: XWEB.TEXTFIELD.setDisabled(id,b); break;
- case XWEB.FieldType.Integer: XWEB.TEXTFIELD.setDisabled(id,b); break;
- case XWEB.FieldType.TextArea: XWEB.TEXTFIELD.setDisabled(id,b); break;
- case XWEB.FieldType.Password: XWEB.TEXTFIELD.setDisabled(id,b); break;
- case XWEB.FieldType.Button: XWEB.BUTTON.setDisabled(id,b); break;
- case XWEB.FieldType.RadioButton: XWEB.RADIO.setDisabled(id,b); break;
- case XWEB.FieldType.CheckBox: XWEB.CHECKBOX.setDisabled(id,b); break;
- case XWEB.FieldType.ComboBox: XWEB.COMBOBOX.setDisabled(id,b); break;
- case XWEB.FieldType.List: XWEB.LISTBOX.setDisabled(id,b); break;
- case XWEB.FieldType.Year: XWEB.TEXTFIELD.setDisabled(id,b); break;
- case XWEB.FieldType.Month: XWEB.TEXTFIELD.setDisabled(id,b); break;
- case XWEB.FieldType.Day: XWEB.TEXTFIELD.setDisabled(id,b); break;
- case XWEB.FieldType.WeekDay: XWEB.COMBOBOX.setDisabled(id,b); break;
- case XWEB.FieldType.DateTime: XWEB.TEXTFIELD.setDisabled(id,b); break;
- case XWEB.FieldType.Zipcode: XWEB.TEXTFIELD.setDisabled(id,b); break;
- case XWEB.FieldType.Upload: XWEB.TEXTFIELD.setDisabled(id,b); break;
-
- case XWEB.FieldType.Table: XWEB.TABLE.setDisabled(id,b); break;
- case XWEB.FieldType.Tree: XWEB.TREE.setDisabled(id,b); break;
- case XWEB.FieldType.Image: XWEB.IMAGE.setDisabled(id,b); break;
- }
- };
- this.setImeMode=function(type,id,b){
- if(XWEB.bIE){
- switch(type){
- case XWEB.FieldType.Text:
- case XWEB.FieldType.TextArea:
- var o=XWEB.getElementById(id);
- if(o){o.style.imeMode=b;}
- break;
- }
- }
- };
- this.setReadOnly=function(type,id,b){
- var val=typeof(b)=='boolean'?b:(b=='true');
- switch(type){
- case XWEB.FieldType.Text:
- case XWEB.FieldType.Number:
- case XWEB.FieldType.Integer:
- case XWEB.FieldType.TextArea:
- case XWEB.FieldType.Password:
- case XWEB.FieldType.Year:
- case XWEB.FieldType.Month:
- case XWEB.FieldType.Day:
- case XWEB.FieldType.DateTime:
- case XWEB.FieldType.Zipcode:
- case XWEB.FieldType.Upload:
- var o=XWEB.getElementById(id);
- if(o){o.readOnly=val;}
- break;
-
- case XWEB.FieldType.Button: XWEB.BUTTON.setDisabled(id,val); break;
- case XWEB.FieldType.RadioButton: XWEB.RADIO.setReadOnly(id,val); break;
- case XWEB.FieldType.CheckBox: XWEB.CHECKBOX.setReadOnly(id,val); break;
-
- case XWEB.FieldType.List:
- XWEB.LISTBOX.addReadOnly(id,val);
- XWEB.LISTBOX.setReadOnly(id,val); // T-002443
- break;
- case XWEB.FieldType.ComboBox:
- case XWEB.FieldType.WeekDay:
- XWEB.COMBOBOX.addReadOnly(id,val);
- XWEB.COMBOBOX.setReadOnly(id,val); // T-002443
- break;
-
- case XWEB.FieldType.Table: XWEB.TABLE.setReadOnly(id,val); break;
- }
- };
- this.isReadOnly=function(type,id){
- var bStatus=true;
- switch(type){
- case XWEB.FieldType.Text:
- case XWEB.FieldType.Number:
- case XWEB.FieldType.Integer:
- case XWEB.FieldType.TextArea:
- case XWEB.FieldType.Password:
- case XWEB.FieldType.Year:
- case XWEB.FieldType.Month:
- case XWEB.FieldType.Day:
- case XWEB.FieldType.DateTime:
- case XWEB.FieldType.Zipcode:
- case XWEB.FieldType.Upload:
- var o=XWEB.getElementById(id);
- if(o){bStatus=o.readOnly;}
- break;
-
- case XWEB.FieldType.ComboBox:
- case XWEB.FieldType.WeekDay:
- case XWEB.FieldType.List:
- var o=XWEB.getElementById(id);
- if(o){bStatus=o.disabled}
- break;
-
- case XWEB.FieldType.Button:
- break;
- case XWEB.FieldType.RadioButton:
- bStatus=XWEB.RADIO.isReadOnly(id);
- break;
- case XWEB.FieldType.CheckBox:
- bStatus=XWEB.CHECKBOX.isReadOnly(id);
- break;
-
-// case XWEB.FieldType.ComboBox:
-// case XWEB.FieldType.List:
-// case XWEB.FieldType.WeekDay:
-// bStatus=this.isDisabled();
-// break;
- }
- return bStatus;
- };
- this.setTooltipText=function(type,id,str){
- switch(type){
- case XWEB.FieldType.Label: XWEB.TEXTFIELD.setTooltipText(id,str); break;
- case XWEB.FieldType.Text: XWEB.TEXTFIELD.setTooltipText(id,str); break;
- case XWEB.FieldType.Number: XWEB.TEXTFIELD.setTooltipText(id,str); break;
- case XWEB.FieldType.Integer: XWEB.TEXTFIELD.setTooltipText(id,str); break;
- case XWEB.FieldType.TextArea: XWEB.TEXTFIELD.setTooltipText(id,str); break;
- case XWEB.FieldType.Password: XWEB.TEXTFIELD.setTooltipText(id,str); break;
- case XWEB.FieldType.Button: XWEB.BUTTON.setTooltipText(id,str); break;
- case XWEB.FieldType.RadioButton: XWEB.RADIO.setTooltipText(id,str); break;
- case XWEB.FieldType.CheckBox: XWEB.CHECKBOX.setTooltipText(id,str); break;
- case XWEB.FieldType.ComboBox: XWEB.COMBOBOX.setTooltipText(id,str); break;
- case XWEB.FieldType.List: XWEB.LISTBOX.setTooltipText(id,str); break;
- case XWEB.FieldType.Year: XWEB.TEXTFIELD.setTooltipText(id,str); break;
- case XWEB.FieldType.Month: XWEB.TEXTFIELD.setTooltipText(id,str); break;
- case XWEB.FieldType.Day: XWEB.TEXTFIELD.setTooltipText(id,str); break;
- case XWEB.FieldType.WeekDay: XWEB.COMBOBOX.setTooltipText(id,str); break;
- case XWEB.FieldType.DateTime: XWEB.DATETIME.setTooltipText(id,str); break;
- case XWEB.FieldType.Stamp: XWEB.STAMP.setTooltipText(id,str); break;
- case XWEB.FieldType.Barcode: break;
- case XWEB.FieldType.Hidden: break;
- case XWEB.FieldType.Zipcode: XWEB.TEXTFIELD.setTooltipText(id,str); break;
- case XWEB.FieldType.Upload: XWEB.TEXTFIELD.setTooltipText(id,str); break;
- case XWEB.FieldType.Table: break;
-
- case XWEB.FieldType.Tree: break;
-
- case XWEB.FieldType.Hline: break;
- case XWEB.FieldType.Vline: break;
- case XWEB.FieldType.Line: break;
- case XWEB.FieldType.Rect: break;
- case XWEB.FieldType.Fill: break;
- case XWEB.FieldType.Image: XWEB.IMAGE.setTooltipText(id,str); break;
- };
- };
-
- //--- field function & figure function.
- this.OnClick=function(id,o,ev,n){ this.event_exec(id,'OnClick',o,ev,n); };
- this.OnDblClick=function(id,o,ev,n){ this.event_exec(id,'OnDblClick',o,ev,n); };
- this.OnMouseOut=function(id,o,ev,n){ this.event_exec(id,'OnMouseOut',o,ev,n); };
- this.OnMouseOver=function(id,o,ev,n){ this.event_exec(id,'OnMouseOver',o,ev,n);};
- //--- only field function.
- this.OnChange=function(id,o,ev,n){ this.event_exec(id,'OnChange',o,ev,n); };
- this.OnKeyDown=function(id,o,ev,n){ this.event_exec(id,'OnKeyDown',o,ev,n); };
- this.OnKeyPress=function(id,o,ev,n){ this.event_exec(id,'OnKeyPress',o,ev,n); };
- this.OnKeyUp=function(id,o,ev,n){ this.event_exec(id,'OnKeyUp',o,ev,n); };
- this.OnFocus=function(id,o,ev,n){ this.event_exec(id,'OnFocus',o,ev,n); };
- this.OnBlur=function(id,o,ev,n){ this.event_exec(id,'OnBlur',o,ev,n); };
-
- this.event_exec=function(id,method,o,ev,n){
- var F_name='XWEVT.'+id;
- var bDefFunc=false;
- var f=XWEB.getObject(id);
- if(eval("typeof("+F_name+")=='function'")){
- bDefFunc=true;
- }else if(f){
- F_name='XWEVT.'+f.org_id;
- if(eval("typeof("+F_name+")=='function'")){
- bDefFunc=true;
- }
- }
- if(bDefFunc==true){
- if(o==undefined){ // T-000874
- o=document.getElementById(id);
- }
- if(ev==undefined && window.event){ // T-000874
- ev=window.event;
- }
- F_name=F_name+'.'+method;
- if(eval("typeof("+F_name+")=='function'")){
- eval(F_name+'(o,ev,n)');
- }
- }
- };
-
- this.isFigure=function(type){
- var b_figure=false;
- switch(type){
- //case XWEB.FieldType.Table:
- case XWEB.FieldType.Hidden:
- case XWEB.FieldType.Hline:
- case XWEB.FieldType.Vline:
- case XWEB.FieldType.Line:
- case XWEB.FieldType.Rect:
- case XWEB.FieldType.Fill:
- b_figure=true;
- break;
-
- default:
- break;
- };
- return b_figure;
- };
-
- this.initTree=function(id){
- var tree_bg=XWEB.getElementById(id+"_BG");
- if(tree_bg){
- if(tree_bg.innerHTML.length==0){//set init tree sample.
- XWEB.TreeMenu.Create(id,new Array(
- new XWEB.TreeNode.Folder('tree','Tree',new Array(
- new XWEB.TreeNode.Folder('colors','colors',new Array(),false),
- new XWEB.TreeNode.Folder('sports','sports',new Array(),false),
- new XWEB.TreeNode.Folder('food','food',new Array(),false)
- ),true))
- );
- }
- }
- };
-
- return this;
-};
-
-//----- Field Object.
-XWEB.FieldPropertiy=function(type,id,row_var,members,scroll,prm1,prm2){
- this.type=type;
- this.id=id.toLowerCase();
- this.org_id=id;
- this.row_var=row_var;
- this.members=members;
- this.scroll=scroll;
- this.prm1=prm1;
- if(type==XWEB.FieldType.Day){
- this.init_value=row_var;
- }
- // Padding Size(T-001651), form design size.
- this.paddingTop=0;
- this.paddingRight=0;
- this.paddingBottom=0;
- this.paddingLeft=0;
-
- this.width; // set only text area.
- this.height; // set only text area.
- this.fontSize; // set only text area.
- this.charSpacing; // set only text area.
- this.lineSpacing; // set only text area.
-
- this.init_visible=true;
- this.init_readonly=false;
- switch(type){
- case XWEB.FieldType.Label:
- case XWEB.FieldType.Day:
- if(members!=undefined && scroll!=undefined){
- this.init_visible=members;
- this.init_readonly=scroll;
- }
- break;
- case XWEB.FieldType.Image:
- if(row_var!=undefined){
- this.aspectratio=row_var;
- this.halign=members;
- this.valign=scroll;
- }else{
- this.aspectratio=false;
- this.halign=0;
- this.valign=0;
- }
- break;
- default:
-// if(row_var!=undefined && members!=undefined && scroll==undefined){
- if(type==XWEB.FieldType.Table){
- if(prm1!=undefined && prm2!=undefined) {
- this.scr_window=prm1; // scroll area size.
- this.scr_insize=prm2; // scroll window size.
- }
- }else{
- // visble, readonly, text_sysval
- if(type==XWEB.FieldType.TextArea){ // Deji.2167
- this.halign=row_var?row_var:0;
- this.valign=members?members:0;
- if(scroll!=undefined && prm1!=undefined && prm2!=undefined){
- this.init_visible=scroll;
- this.init_readonly=prm1;
- }
- } else {
- if(row_var!=undefined && members!=undefined && scroll!=undefined){
- this.init_visible=row_var;
- this.init_readonly=members;
- }
- }
- }
-// if(prm1!=undefined && prm2!=undefined) {
-// this.scr_window=prm1;
-// this.scr_insize=prm2;
-// }
- break;
- }
-
- this.next; // next field id. (table is escape field id)
- this.back; // back field id. (table is enter field id)
- this.taborder; // Tab OrderList on table.
-
- this.tooltip; // tooltip(XWEB.ToolTip) object.
- this.radiovalues; // radiobutton value array. type "XWEB.RadioParameter"Object
-
- this.font; // new XWEB.Font(family,size,weight);
-
- this.bComma; // true: set comma filed, undefined: noset comma.
-
- //this.toString=function(){
- // return ("XWEB.FieldPropertiy:"+type+","+id);
- //};
-
- this.input_format; // for datefield, input mask pattern.
- this.display_format; // for datefield, dispaly format.
-
- var b_figure=XWEB.FP.isFigure(type);
- if(b_figure==false){
- //--- field function & figure function.
- this.OnClick=function(o,ev,n){ XWEB.FP.OnClick(this.id,o,ev,n); };
- this.OnDblClick=function(o,ev,n){ XWEB.FP.OnDblClick(this.id,o,ev,n); };
- this.OnMouseOut=function(o,ev,n){ XWEB.FP.OnMouseOut(this.id,o,ev,n); };
- this.OnMouseOver=function(o,ev,n){ XWEB.FP.OnMouseOver(this.id,o,ev,n);};
- //--- only field function.
- if(type!=XWEB.FieldType.Image){
- this.OnChange=function(o,ev,n){ XWEB.FP.OnChange(this.id,o,ev,n); };
- this.OnKeyDown=function(o,ev,n){ XWEB.FP.OnKeyDown(this.id,o,ev,n); };
- this.OnKeyPress=function(o,ev,n){ XWEB.FP.OnKeyPress(this.id,o,ev,n); };
- this.OnKeyUp=function(o,ev,n){ XWEB.FP.OnKeyUp(this.id,o,ev,n); };
- this.OnFocus=function(o,ev,n){ XWEB.FP.OnFocus(this.id,o,ev,n); };
- this.OnBlur=function(o,ev,n){ XWEB.FP.OnBlur(this.id,o,ev,n); };
- }
- }
-
- if(type==XWEB.FieldType.Table){
- this.getRowVariable=function(){ return this.row_var; };
- this.getMaxrow=function(){ return XWEB.TABLE.getMaxrow(id); }
- this.getField=function(rowno,idname){ // T-001735
- var reg=new RegExp(idname,"i"); // ϐ̑召ʂɔrׁAK\p(T-002122)
- for(var n in this.members){
- if(this.members[n].match(reg)){ // T-002122
- return XWEB.getField(idname+'_'+rowno);
- }
- }
- };
- this.getObject=function(rowno,idname){ return XWEB.getObject(idname+'_'+rowno); };
- this.scroll2hidden=function(){ return XWEB.TABLE.scroll2hidden(id); };
- this.getItemNames=function(){ return this.members; };
- this.isScroll=function(){ return this.scroll; };
- this.clearAll=function(){ return XWEB.TABLE.clearAll(id); };
-
- this.getXPField=function(rowno,idname){ return XWEB.getXPField(idname+'_'+rowno); };
- }
-
- if(type==XWEB.FieldType.Label){
- this.getTextVertical=function(){ return this.row_var; };
- this.isTextVertical=this.getTextVertical;
- this.isInitVisble=function(){return this.members==undefined?false:this.members;};
- this.isInitReadonly=function(){return this.scroll==undefined?false:this.scroll;};
- this.isSysvalue=function(){return this.prm1==undefined?false:this.prm1;};
- }
-
- if(b_figure==false){
- this.nextField=function(){
- var next_fld=this.next;
- if(next_fld){
- var loop_check_id=new Array(); // agw#3193
- var fld=XWEB.getField(next_fld);
- while(fld.isVisible()==false||fld.isDisabled()==true){
- if(loop_check_id[fld.id]){
- XWEB.Html.setFocus();
- return;
- }else{
- loop_check_id[fld.id]=true;
- }
- if(typeof(fld.next)=='undefined'){return;}
- if(fld.next==this.id){return;}
- next_fld=fld.next;
- fld=XWEB.getField(next_fld);
- }
- }
- return next_fld;
- };
-
- this.backField=function(){
- var back_fld=this.back;
- if(back_fld){
- var fld=XWEB.getField(back_fld);
- while(fld.isVisible()==false||fld.isDisabled()==true){
- if(typeof(fld.back)=='undefined'){return;}
- if(fld.back==this.id){return;}
- back_fld=fld.back;
- fld=XWEB.getField(back_fld);
- }
- }
- return back_fld;
- };
- }
-
- //--- tree object.
- if(type==XWEB.FieldType.Tree){
- this.selectNodeType; // node,leaf,url
- this.selectNodeStatus; // open:true / close:false
-
- this.isNodeOpen=function(){
- return this.selectNodeStatus ? this.selectNodeStatus : false;
- };
-
- this.getSelectNodeType=function(){
- return this.selectNodeType ? this.selectNodeType : XWEB.TreeNode.Type.NODE;
- };
-
- this.initTree=function(){
- XWEB.FP.initTree(this.id);
- };
- }
-
- this.isTextLenZero = function(){
- var val_str = this.getTextValue();
- return XWEB.FP.isTextLenZero(val_str);
- }
-
- this.Visible=function(vis){
- XWEB.FP.Visible(this.type,this.id,vis);
- this.setStyleData('visible',vis?"true":"false");
- };
- this.setVisible=this.Visible;
- this.isVisible=function(){ return XWEB.FP.isVisible(this.type,this.id); };
-
- if(b_figure==false){
- this.setFocus=function(backTab){XWEB.FP.setFocus(this.type,this.id,backTab); };
- this.TextVisible=function(vis){ XWEB.FP.TextVisible(this.type,this.id,vis); };
- this.setTextVisible=this.TextVisible;
- this.setFontSize=function(n){ XWEB.FP.setFontSize(this.type,this.id,n); };
- this.setFontName=function(n){ XWEB.FP.setFontName(this.type,this.id,n); };
- this.setFontWeight=function(n){ XWEB.FP.setFontWeight(this.type,this.id,n); };
- this.setFontStyle=function(n){ XWEB.FP.setFontStyle(this.type,this.id,n); };
- this.setTextDecoration=function(n){ XWEB.FP.setTextDecoration(this.type,this.id,n); };
- this.setForegroundColor=function(col){
- XWEB.FP.setForegroundColor(this.type,this.id,col);
- this.setStyleData('fgcolor',col);
- };
- this.setBackgroundColor=function(col){
- XWEB.FP.setBackgroundColor(this.type,this.id,col);
- if(this.pdf_background==true){ // PDFɔwiFtw肪sĂ
- this.setStyleData('bgcolor',col);
- }
- };
-
- this.isTextVisible=function(){ return XWEB.FP.isTextVisible(this.type,this.id); };
-
- this.getFontSize=function(){ return XWEB.FP.getFontSize(this.type,this.id); };
- this.getFontName=function(){ return XWEB.FP.getFontName(this.type,this.id); };
- this.getFontWeight=function(){ return XWEB.FP.getFontWeight(this.type,this.id); };
- this.getFontStyle=function(){ return XWEB.FP.getFontStyle(this.type,this.id); };
- this.getTextDecoration=function(){ return XWEB.FP.getTextDecoration(this.type,this.id); };
-
- this.getForegroundColor=function(){ return XWEB.FP.getForegroundColor(this.type,this.id); };
- this.getBackgroundColor=function(){ return XWEB.FP.getBackgroundColor(this.type,this.id); };
- }
-
- this.setRectColor=function(col){
- XWEB.FP.setRectColor(this.type,this.id,col);
- this.setStyleData('rectcolor',col);
- };
- this.getRectColor=function(){ return XWEB.FP.getRectColor(this.type,this.id); };
-
- if(b_figure==true){
- this.setColor=function(col){
- XWEB.FP.setColor(this.type,this.id,col);
- this.setStyleData('color',col);
- };
- this.getColor=function(){ return XWEB.FP.getColor(this.type,this.id); };
- }
-
- this.Value=function(arg_val,val2,val3){
- XWEB.FP.Value(this.type,this.id,arg_val,val2,val3);
- };
- this.setValue=this.Value;
- this.getValue=function(rowno,fld_id){
- return XWEB.FP.getValue(this.type,this.id,rowno,fld_id);
- };
-
- this.getTextValue=function(rowno,fld_id){
- return XWEB.FP.getTextValue(this.type,this.id,rowno,fld_id);
- };
-
- if(type==XWEB.FieldType.DateTime){
- this.getSerialValue=function(){
- return XWEB.FP.getSerialValue(this.type,this.id);
- };
- this.setSerialValue=function(val){
- XWEB.FP.setSerialValue(this.type,this.id,val);
- };
- }
-
- if(type==XWEB.FieldType.List||type==XWEB.FieldType.ComboBox){
- this.getMultiValue=function(){
- return XWEB.FP.getMultiValue(this.type,this.id);
- };
- this.getOptionLists=function(bSel){
- return XWEB.FP.getOptionLists(this.type,this.id,bSel);
- };
-
- this.optionListClear=function(empty_item){
- return XWEB.FP.optionListClear(this.type,this.id,empty_item);
- };
- this.optionListAdd=function(text,val){
- return XWEB.FP.optionListAdd(this.type,this.id,text,val);
- };
- this.optionListRemove=function(val){
- return XWEB.FP.optionListRemove(this.type,this.id,val);
- };
- this.setMultiValue=function(val,bSelected){
- return XWEB.FP.setMultiValue(this.type,this.id,val,bSelected);
- };
- }
-
- if(type==XWEB.FieldType.Stamp){
- this.isStampVisible=function(){ return XWEB.FP.isStampVisible(this.type,this.id); };
- this.setStampVisible=function(b){ XWEB.FP.setStampVisible(this.type,this.id,b); };
-
- this.getTopText=function(){ return XWEB.STAMP.getTopText(this.id); };
- this.getCenterText=function(){ return XWEB.STAMP.getCenterText(this.id); };
- this.getBottomText=function(){ return XWEB.STAMP.getBottomText(this.id); };
- }
-
- this.setDisabled=function(b){
- if(this.org_background==undefined){
- this.org_background=XWEB.FP.getBackgroundColor(this.type,this.id);
- }
- XWEB.FP.setDisabled(this.type,this.id,b);
- if(XWEB.Form.disabledcolor){
- XWEB.FP.setBackgroundColor(this.type,this.id,b?XWEB.Form.disabledcolor:this.org_background);
- }
- };
- this.setEnabled=function(b){ this.setDisabled(b?false:true)};
- this.isDisabled=function(){ return XWEB.FP.isDisabled(this.type,this.id); };
- this.isEnabled=function(){ return this.isDisabled()?false:true; };
-
- if(b_figure==false){
- this.setImeMode=function(b){ XWEB.FP.setImeMode(this.type,this.id,b); };
- this.setReadOnly=function(b){
- if(this.org_background==undefined){
- this.org_background=XWEB.FP.getBackgroundColor(this.type,this.id);
- }
- XWEB.FP.setReadOnly(this.type,this.id,b);
- if(XWEB.Form.readonlycolor){
- XWEB.FP.setBackgroundColor(this.type,this.id,b?XWEB.Form.readonlycolor:this.org_background);
- }
- };
- this.isReadOnly=function(){ return XWEB.FP.isReadOnly(this.type,this.id); };
- }
-
- this.setTooltipData=function(str,fgCol,bgCol,rectCol){
- if(this.tooltip){
- this.tooltip.text=str;
- }else{
- this.tooltip=new XWEB.ToolTip(str);
- }
- //this.tooltip.foreColor=fgCol?(fgCol.length!=0?fgCol:undefined): undefined;
- //this.tooltip.backColor=bgCol?(bgCol.length!=0?bgCol:undefined): undefined;
- //this.tooltip.recrColor=rectCol?(rectCol.length!=0?rectCol:undefined): undefined;
- };
-
- this.getTooltipText=function(){
- return this.tooltip ? this.tooltip.text : "";
- };
-
- this.setTooltipText=function(str){
- this.setTooltipData(str);
- if(isIE() && this.tooltip.isNormalType()==true){
- XWEB.FP.setTooltipText(this.type,this.id,str);
- }
- };
-
- if(type==XWEB.FieldType.Number||type==XWEB.FieldType.Integer){
- this.isComma=function(){
- var ret_comma=false;
- switch(type){
- case XWEB.FieldType.Text:
- case XWEB.FieldType.Number:
- case XWEB.FieldType.Integer:
- //ret_comma=XWEB.NUMBER.isCommaField(id);
- ret_comma=this.bComma==true?true:false;
- break;
- }
- return ret_comma;
- };
-
- this.setComma=function(b){
- this.bComma=(b==true?true:undefined);
- };
-
- this.getRoundType=function(){
- return myform_round_type[id] ? myform_round_type[id] : 0;
- };
-
- this.getRoundPosition=function(){
- return myform_round_pos[id] ? myform_round_pos[id] : 0;
- };
-
- this.isZeroFill=function(){
- return XWEB.NUMBER.isZeroFill(id);
- };
-
- this.isRoundField=function(){
- return XWEB.NUMBER.isRoundField(this.id);
- };
-
- this.addRoundType=function(posi,type){
- return XWEB.NUMBER.addRoundType(this.id,posi,type);
- };
- this.setRoundType=this.addRoundType;
- this.setRoundFmt=function(){ // T-002452
- if(this.type==XWEB.FieldType.Number){
- XWEB.setRoundFmt(this.id);
- }
- }
-
- this.inc=function(){
- var wk_v=this.getValue();
- if(!isNaN(wk_v)){
- if(this.type==XWEB.FieldType.Number){
- this.setValue(wk_v+1.0);
- }else{
- this.setValue(wk_v+1);
- }
- }
- };
- this.dec=function(){
- var wk_v=this.getValue();
- if(!isNaN(wk_v)){
- if(this.type==XWEB.FieldType.Number){
- this.setValue(wk_v-1.0);
- }else{
- this.setValue(wk_v-1);
- }
- }
- };
- }
-
- if(type==XWEB.FieldType.RadioButton){
- this.addRadioValue=function(params){
- if(this.radiovalues==undefined){
- this.radiovalues=new Array();
- }
- //this.radiovalues[this.radiovalues.length]=params;
- this.radiovalues.push(params);
- };
- }
-
- this.setStyleData=function(attname,val){
- if(XWEB.Html.html_to_pdf_style==true){
- if(this.styledata==undefined){
- this.styledata=new Array();
- }
- this.styledata[attname]=val?val:"";
- this.toPdfStyle();
- }
- };
-
- this.toPdfStyle=function(){
- if(this.styledata){
- //var fmName=XWEB.Form.name?XWEB.Form.name:"myForm";
- var style_id="_xwf_style_"+this.id;
- var o_style=document.getElementById(style_id);
- if(o_style==undefined){
- o_style=document.createElement('input');
- o_style.id=style_id;
- o_style.name=style_id;
- o_style.type='hidden';
- document.forms[XWEB.Form.name].appendChild(o_style);
- }
- var p=new Array();
- for(var n in this.styledata){
- p.push(n+":"+this.styledata[n]);
- }
- o_style.value=p.join(';');
- }
- };
-
- return this;
-};
-// Padding size, Form Design.
-XWEB.setPadding=function(idname,p_top,p_right,p_bottm,p_left,ta_w,ta_h,ta_fs,ta_cspacing,ta_lspacing){
- var f=XWEB.getObject(idname);
- if(f){
- f.paddingTop=p_top;
- f.paddingRight=p_right;
- f.paddingBottom=p_bottm;
- f.paddingLeft=p_left;
- f.width=ta_w;
- f.height=ta_h;
- f.fontSize=ta_fs;
- f.charSpacing=ta_cspacing;
- f.lineSpacing=ta_lspacing;
- }
-};
-
-XWEB.Font=function(family,size,weight,color){
- this.fontfamily=family; // font family (0:MS SVbN,1:MS ,2:MS PSVbN,3:MS P)
- this.fontsize=size;
- this.fontweight=weight;
- this.fontcolor=color;
- this.toString=function(){
- return this.fontfamily+","+this.fontsize+","+this.fontweight+","+this.fontcolor;
- };
- return this;
-};
-
-XWEB.setFont=function(idname,family,size,weight,color){
- var fld=XWEB.getObject(idname);
- if(fld){
- if(fld.font){
- var f=fld.font;
- f.fontfamily=family;
- f.fontsize =size;
- f.fontweight=weight;
- f.forecolor=color;
- }else{
- fld.font=new XWEB.Font(family,size,weight,color);
- }
- }
-};
-XWEB.setFontList=function(family,size,weight,color){
- for(var n=4;n').replace(/\\n/g,' ');
- msg=msg.replace(/'/g,''');
- var t_x=isIE() && (isUntilIE8()) ?event.x:(event.clientX+window.pageXOffset);
- var t_y=isIE() && (isUntilIE8()) ?event.y:(event.clientY+window.pageYOffset);
- showTips(t_x,t_y,msg,ttip.backColor?ttip.backColor:'',ttip.recrColor?ttip.recrColor:'',ttip.foreColor?ttip.foreColor:'');
- }else{
- showTips(0,0,'');
- }
- }
- }else{
- //fld.setTooltipText('');
- }
- }
-};
-
-//--- escape charactor. (T-001763)
-XWEB.ISO8859_1_Escape=function(str){
- var retval=str.replace(/&/g,'&');
- retval=retval.replace(//g,'>');
- retval=retval.replace(/\"/g,'"');
-
- return retval;
-};
-
-//--- replace escape charactor (ISO8859-1 Charactor)
-XWEB.ISO8859_1_Characters=function(str){
- if(!str.match(/\&/)){
- return str; // not exist escape charactor.
- }
-
- var retval=str.replace(/\&/g,'&');
- retval=retval.replace(/\&/g,'&');
- retval=retval.replace(/ /g,' ');
- retval=retval.replace(/"/g,'"');
- retval=retval.replace(/'/g,'\''); //'
- retval=retval.replace(/</g,'<');
- retval=retval.replace(/>/g,'>');
- retval=retval.replace(/¡/g,'?');
- retval=retval.replace(/¢/g,'');
- retval=retval.replace(/£/g,'');
- //retval=retval.replace(/€/g,'?');
- retval=retval.replace(/¥/g,'\\');
- retval=retval.replace(/§/g,'');
- retval=retval.replace(/¨/g,'N');
- retval=retval.replace(/«/g,'');
- retval=retval.replace(/¬/g,'');
- retval=retval.replace(/¯/g,'P');
- retval=retval.replace(/°/g,'');
- retval=retval.replace(/±/g,'}');
- retval=retval.replace(/´/g,'L');
- retval=retval.replace(/µ/g,'');
- retval=retval.replace(/¶/g,'');
- retval=retval.replace(/·/g,'E');
- retval=retval.replace(/¸/g,'C');
- retval=retval.replace(/»/g,'');
- retval=retval.replace(/×/g,'~');
- retval=retval.replace(/÷/g,'');
-
- return retval;
-};
-
-//--- parent div section (TSpgXX) is hidden or visivle
-XWEB.isPageVisible=function(o){
- if(o==undefined){return false;} // not define object.
- var vis_status=true;
- try{
- var po=o.parentNode;
- while(typeof(po)!='undefined'&&po!=null){
- if(po.id){
- if(po.id.match(/^TSpg/)){
- if(po.style.visibility=='hidden'){
- vis_status=false;
- break;
- }
- break;
- }else if(po.id.match(/^xwf_vbody\d+$/)){
- if(po.style.visibility=='hidden'){
- vis_status=false;
- break;
- }
- var vpg=po.parentNode;
- if(vpg){ // 'xwf_vpage_'ׂ
- if(vpg.style.display=='none'){
- vis_status=false;
- break;
- }
- }
- break;
- }else if(po.id.match(/^TSsc/)){
- if(po.style.visibility=='hidden'){
- vis_status=false;
- }else{
- po=po.parentNode;
- continue;
- }
- break;
- }
- }
- po=po.parentNode;
- };
- }catch(e){
- // alert("ERR:"+e.discription);
- }
-
- return vis_status;
-};
-
-XWEB.preventDefault=function(event){
- if(event.preventDefault){
- event.preventDefault();
- }else{
- event.returnValue=false;
- }
-};
-XWEB.getCtrlKey=function(event){
- if(XWEB.bIE){
- return event.ctrlKey;
- }else{
- return event.ctrlKey;
- //return event.modifiers==2?true:false;
- }
-};
-
-XWEB.TABLE=function(id,items){
- this.id=id;
- this.items=items;
-};
-
-XWEB.TABLE.moveCell=function(group_id,field_id,_obj,event,rowno){
- if(XWEB.Html.enterkey==false&&event.keyCode==13){
- return; // disabled enter key.
- }
-
- var tbl=XWEB.getObject(group_id);
- if(tbl==undefined){ return; }
- var fld=tbl.getField(rowno,field_id);
- if(fld==undefined){ return; }
-
- var key_code=event.keyCode;
- var ctrl_key=XWEB.getCtrlKey(event);
-
- if(event.shiftKey && key_code!=9){
- return; // press shift key.
- }
-
- if(fld.type==XWEB.FieldType.TextArea){ // Deji.2167
- if(fld.valign>0){
- XWEB.TEXTAREA.setTextVAlign(_obj,fld.valign,event.keyCode);
- }
- }
-
- var bInputText=false;
- if(isIE()){
- if(XWEB.isInput(fld.type)){
- var selectText=XWEB.getSelectText(_obj);
- if(fld.getValue()){
- if(selectText.length==0 && fld.getValue().length!=0 &&
- !(ctrl_key==true&&key_code==13) &&
- !(key_code==13&&fld.type!=XWEB.FieldType.TextArea)&&
- key_code!=38 && key_code!=40){
- if(key_code!=9){
- return; // ͒
- }
- }
- if(selectText.length==0 && fld.getValue().length!=0){
- bInputText=true;
- }
- }
- }
- }else{ // not IE.
- if(XWEB.isInput(fld.type)){
- var val=fld.getValue();
- if(val.length>0){
- if(fld.type==XWEB.FieldType.TextArea){
- // T-000610 (No.3526)
- if(!(ctrl_key==true&&key_code==13) &&
- !(key_code==13&&fld.type!=XWEB.FieldType.TextArea)&&
- key_code!=38 && key_code!=40){
- if(key_code!=9){
- return; // ͒
- }
- }
- bInputText=true;
- }else if(
- !(ctrl_key==true&&key_code==13) &&
- !(key_code==13&&fld.type!=XWEB.FieldType.TextArea)&&
- key_code!=38 && key_code!=40){
- if(key_code!=9){
- return; // ͒
- }
- }
- }
- }
- }
-
- if(key_code==9){ // tab.
- // T-001946 (ړOɐltB[h̑ÓmF)
- if(fld.type==XWEB.FieldType.Integer||fld.type==XWEB.FieldType.Number){
- if(!_obj.readOnly){
- if(isNaN(TSCNE(_obj.value))){
- return; // ltB[hsȏꍇ͈ړ~߂B("TSCNIU"ɕ키)
- }
- }
- }
-
- if(fld.type==XWEB.FieldType.RadioButton){
- var rad_id=event.srcElement ? event.srcElement.id : event.target.id;
- var n=rad_id.lastIndexOf('_');
- if(n!=-1){
- var id_left=rad_id.substr(0,n);
- var id_sufix=Number(rad_id.substr(n+1));
- if(id_sufix==0 && event.shiftKey==true){
- return;
- }else{
- rad_id=id_left+"_"+(id_sufix+(event.shiftKey==false?1:-1));
- }
- if(document.getElementById(rad_id)){
- return;
- }
- }
- }
-
- key_code=event.shiftKey==false?39:37; // tab or backtab.
- XWEB.preventDefault(event);
- }
-
- if(fld.type==XWEB.FieldType.List||fld.type==XWEB.FieldType.ComboBox){ // listbox && (up or down).
- if(ctrl_key==false&&(key_code==38||key_code==40)){ // dn.
- return;
- }
- }else if(fld.type==XWEB.FieldType.TextArea){ //TextArea allow.
- if(bInputText==true&&ctrl_key==false){
- if(key_code==38||key_code==40){ // up allow(38),down allow(40)
- return;
- }
- }
- }else if(fld.type==XWEB.FieldType.Button){
- if(key_code==13){
- return;
- }
- }
-
- if(key_code==38){ // up allow(38)
- var up_fld=XWEB.TABLE.cellUpDown(tbl,rowno,field_id,true); // Deji.2839
- if(up_fld){ up_fld.setFocus(); }
-
- }else if(key_code==40){ // down allow(40)
- var dn_fld=XWEB.TABLE.cellUpDown(tbl,rowno,field_id,false); // Deji.2839
- if(dn_fld){ dn_fld.setFocus(); }
-
- }else if(key_code==13||key_code==37||key_code==39){ // enter key(13),left allow(37),right allow(39)
- var next_id=key_code==37?fld.backField():fld.nextField();
- if(next_id){
- var next_fld=XWEB.getField(next_id);
- if(next_fld){
- if(next_fld.type==XWEB.FieldType.Button){
- XWEB.preventDefault(event);
- next_fld.setFocus();
- } else if(next_fld.type==XWEB.FieldType.TextArea){
- next_fld.setFocus();
- if(key_code==13){ // enter key.
- XWEB.preventDefault(event); // ړAɉslj邱Ƃh
- }
- } else if(fld.type==XWEB.FieldType.TextArea){
- if(ctrl_key==true||fld.isReadOnly()==true){
- next_fld.setFocus();
- }else if(key_code==13){ // enter key.
- next_fld.setFocus(); // T-000615
- if(key_code==13){ // enter key.
- XWEB.preventDefault(event); // ړAɉslj邱Ƃh
- }
- }else if(event.keyCode==9){ // org key is tab.
- next_fld.setFocus();
- }else{
- if(XWEB.bIE==false&&(key_code==37||key_code==39)){
- //-- not IE and TextArea
- }else{
- XWEB.preventDefault(event);
- }
- }
- }else if(key_code==37&&next_fld.type==XWEB.FieldType.RadioButton){
- next_fld.setFocus(true); // T-001898, WI̍Ō̗vfɃtH[JXZbg
- }else{
- if(XWEB.bIE==false&&(key_code==37||key_code==39)){
- next_fld.setFocus();
- }else{
- next_fld.setFocus();
- }
- }
- }
- }
-
- }else if(key_code==107 && ctrl_key==true) { // '+'
- var up_fld=tbl.getField(rowno-1,field_id);
- if(fld&&up_fld){ fld.setValue(up_fld.getValue()); }
- }
-};
-
-/**
- * up/down cell (Deji.2839)
- * tab : table field object.
- * rowno : start row noumber
- * field_id: colum name.
- * upflg : up = true / down = false
- */
-XWEB.TABLE.cellUpDown=function(tbl,rowno,field_id,upflg){
- var n_ofst=upflg?-1:+1;
- var n_fld=tbl.getField(rowno+n_ofst,field_id);
- var loop_check_id=new Array();
- while(n_fld!=undefined && (n_fld.isVisible()==false||n_fld.isDisabled()==true)){
- if(loop_check_id[n_fld.id]){
- n_fld=undefined;
- break;
- }else{
- loop_check_id[n_fld.id]=true;
- }
- n_ofst+=(upflg?-1:+1);
- if ((rowno+n_ofst)<0){
- n_fld=undefined;
- }else{
- n_fld=tbl.getField(rowno+n_ofst,field_id);
- }
- }
- return n_fld;
-};
-
-XWEB.TABLE.getMaxrow=function(id){
- var tbdef=XWEB.getField(id);
- if(tbdef){
- var idname=tbdef.getRowVariable();
- var o=XWEB.getElementById(idname);
- if(o){ return o.value; }
- else { return 0; }
- }else{
- return 0;
- }
-};
-
-XWEB.TABLE.setMaxrow=function(id,value){
- var tbdef=XWEB.getField(id);
- if(tbdef){
- var idname=tbdef.getRowVariable();
- var o=XWEB.getElementById(idname);
- if(o){ o.value=value; }
- XWEB.TEXTFIELD.setValue(idname,value);
- }
-};
-
-XWEB.TABLE.Value=function(idname,rowno,fld_id,val){
- var tbdef=XWEB.getField(idname);
- if(tbdef){
- var fldname=fld_id+"_"+rowno;
- var fld=XWEB.getField(fldname);
- if(fld){
- if(val){
- fld.setValue(val);
- }else{
- return fld.getValue();
- }
- }else{
- window.status='Error: not found [' + fldname +"]";
- }
- }
-};
-XWEB.TABLE.clearAll=function(idname){
- var tbl=XWEB.getField(idname);
- if(tbl){
- var items=tbl.getItemNames();
- var maxrows=tbl.getMaxrow();
- for(var row=0;row");
- //-- change label text. (create hidden parameter)
- var lvname=id+'_lbl_val__';
- var lobj=document.getElementById(lvname);
- if(lobj==undefined){
- lobj=document.createElement('input');
- }
- lobj.id=lvname;
- lobj.name=lvname;
- lobj.type='hidden';
- lobj.value=value;
- document.forms[XWEB.Form.name].appendChild(lobj);
- }
- }else{
- if(typeof(value)=='undefined'){
- return o.value;
- }else{
- o.value=value;
- }
- }
- }
- }
-};
-XWEB.LABEL.Visible=function(id,vis){
- if(typeof(vis)=='undefined'){
- return XWEB.TEXTFIELD.Visible(id,vis);
- }else{
- if(XWEB.TEXTFIELD.Visible(id,vis)==false){
- XWEB.FILL.Visible(id+'_BFL',vis); //background fill
- XWEB.RECT.Visible(id,vis);
- }
- var lbl_o=XWEB.getField(id);
- if(lbl_o.isTextVertical()){ // vertical label.
-//alert('Vertical = '+lbl_o.id);
- var wk_vis=vis?'visible':'hidden';
- for(var no=0;no<255;++no){
- var o=XWEB.getElementById(id+'_V_'+no);
- if(o){
- o.style.visibility=wk_vis;
- }else{
- break;
- }
- }
- }
- }
-};
-XWEB.LABEL.setFocus=XWEB.TEXTFIELD.setFocus;
-XWEB.LABEL.getValue=function(id){
- var o=XWEB.getElementById(id);
- if(o){
- return XWEB.getDivText(o);
- }
-};
-XWEB.LABEL.isVisible=XWEB.TEXTFIELD.isVisible;
-XWEB.LABEL.isDisabled=XWEB.TEXTFIELD.isDisabled;
-XWEB.LABEL.setValue=XWEB.LABEL.Value;
-XWEB.LABEL.setVisible=XWEB.LABEL.Visible;
-XWEB.LABEL.setDisabled=XWEB.TEXTFIELD.setDisabled;
-XWEB.LABEL.setTooltipText=XWEB.TEXTFIELD.setTooltipText;
-
-XWEB.NUMBER=function(){};
-XWEB.NUMBER.Value=function(id,value){
- XWEB.TEXTFIELD.Value(id,value);
- if(XWEB.NUMBER.isRoundField(id)){
- setNumRound(id,myform_round_type[id],myform_round_pos[id]);
- }
- if(XWEB.NUMBER.isCommaField(id)){
- setCom(id);
- }
- XWEB.NUMBER.MinusColor(id,value);
-};
-XWEB.NUMBER.setRoundFmt=function(id){
- if(XWEB.NUMBER.isRoundField(id)){
- setNumRound(id,myform_round_type[id],myform_round_pos[id]);
- }
-};
-XWEB.NUMBER.MinusColor=function(id,value){
- var mcolor=XWEB.Form.getMinusFieldColor(id);
- if(mcolor==undefined){
- return;
- }
-
- if(value){
- var val=value;
- }else{
- if(XWEB.TEXTFIELD.getValue(id).length==0){
- XWEB.NUMBER.setForegroundColor(id,mcolor.fgColor);
- XWEB.NUMBER.setBackgroundColor(id,mcolor.bgColor);
- return;
- }
- var val=XWEB.NUMBER.getValue(id);
- if(myform_round_type[id]&&myform_round_pos[id]){ // dejipo.1191
- val=num_round(val,myform_round_type[id],myform_round_pos[id]);
- }
- }
-
- var bOutValue=false; // check, lowVal,hightVal
- //if(mcolor.lowVal){
- if(valmcolor.hightVal){ bOutValue=true; }
- }
-
- if(bOutValue){
- if(mcolor.mfgColor.length>0){
- XWEB.NUMBER.setForegroundColor(id,mcolor.mfgColor);
- }
- if(mcolor.mbgColor.length>0){
- XWEB.NUMBER.setBackgroundColor(id,mcolor.mbgColor);
- }
- }else{
- XWEB.NUMBER.setForegroundColor(id,mcolor.fgColor);
- XWEB.NUMBER.setBackgroundColor(id,mcolor.bgColor);
- }
-};
-XWEB.NUMBER.Visible=XWEB.TEXTFIELD.Visible;
-XWEB.NUMBER.setFocus=XWEB.TEXTFIELD.setFocus;
-XWEB.NUMBER.getValue=function(id){
- var val=XWEB.TEXTFIELD.getValue(id);
- var num=XWEB.NUMBER.isCommaField(id)==true ? delCom(val) : val;
- return num.length == 0 ? 0 : parseFloat(num);
-};
-XWEB.NUMBER.getTextValue=XWEB.TEXTFIELD.getValue;
-XWEB.NUMBER.isVisible=XWEB.TEXTFIELD.isVisible;
-XWEB.NUMBER.isDisabled=XWEB.TEXTFIELD.isDisabled;
-XWEB.NUMBER.setValue=XWEB.NUMBER.Value;
-XWEB.NUMBER.setVisible=XWEB.NUMBER.Visible;
-XWEB.NUMBER.setDisabled=XWEB.TEXTFIELD.setDisabled;
-XWEB.NUMBER.setTooltipText=XWEB.TEXTFIELD.setTooltipText;
-XWEB.NUMBER.setForegroundColor=XWEB.TEXTFIELD.setForegroundColor;
-XWEB.NUMBER.setBackgroundColor=XWEB.TEXTFIELD.setBackgroundColor;
-
-XWEB.NUMBER.isCommaField=function(fldname){
- var fld=XWEB.getField(fldname);
- if(fld){
- return fld.isComma();
- }
- var efm_len=myform_comma_fields.length;
- for(var i=0;i0; i--){
- hz+="0";
- }
- o.value=hz+str;
- }
-};
-
-XWEB.NUMBER.setCalcPermission=function(idname,func){
- if(idname==undefined){
- alert('Error: number filed id is not define!!');
- }else if(idname.length==0){
- alert('Error: number filed id is not define!!');
- }else if(typeof(func)!='function'){
- alert('Error: not define javascript function!!');
- }else{
- XWEB.Form.calc_permission_func[idname]=func;
- }
-};
-XWEB.NUMBER.isCalcPermission=function(idname,rowno){
- if(rowno==undefined){
- var pfunc=XWEB.Form.calc_permission_func[idname];
- }else{
- var pfunc=XWEB.Form.calc_permission_func[idname+"_"+rowno ];
- }
- if(pfunc){
- return pfunc(idname,rowno);
- }else{
- return true;
- }
-};
-
-XWEB.isRoundField =XWEB.NUMBER.isRoundField;
-XWEB.isZeroFill =XWEB.NUMBER.isZeroFill;
-XWEB.isCalcPermission =XWEB.NUMBER.isCalcPermission;
-XWEB.addCommaField =XWEB.NUMBER.addCommaField;
-XWEB.addFieldIdName =XWEB.NUMBER.addFieldIdName;
-XWEB.addRoundType =XWEB.NUMBER.addRoundType;
-XWEB.addZeroFill =XWEB.NUMBER.addZeroFill;
-XWEB.addPrefix =XWEB.NUMBER.addPrefix;
-XWEB.getPrefix =XWEB.NUMBER.getPrefix;
-XWEB.checkMinusColor =XWEB.NUMBER.MinusColor;
-XWEB.setRoundFmt =XWEB.NUMBER.setRoundFmt;
-
-_xwSetIntZeroFill =XWEB.NUMBER.setZeroFill.setFill;
-EFM_isCommaField =XWEB.NUMBER.isCommaField;
-EFM_isRoundField =XWEB.NUMBER.isRoundField;
-EFM_isZeroFill =XWEB.NUMBER.isZeroFill;
-EFM_addRoundType =XWEB.NUMBER.addRoundType;
-EFM_addZeroFill =XWEB.NUMBER.addZeroFill;
-EFM_addCommaField =XWEB.NUMBER.addCommaField;
-EFM_addFieldIdName =XWEB.NUMBER.addFieldIdName;
-EFM_setZeroFill =XWEB.NUMBER.setZeroFill;
-
-XWEB.INTEGER=function(){};
-XWEB.INTEGER.Value=function(id,value){
- XWEB.NUMBER.Value(id,value);
- XWEB.NUMBER.setZeroFill(id);
-};
-XWEB.INTEGER.Visible=XWEB.TEXTFIELD.Visible;
-XWEB.INTEGER.setFocus=XWEB.TEXTFIELD.setFocus;
-XWEB.INTEGER.getValue=XWEB.NUMBER.getValue;
-XWEB.INTEGER.getTextValue=XWEB.NUMBER.getTextValue;
-XWEB.INTEGER.isVisible=XWEB.TEXTFIELD.isVisible;
-XWEB.INTEGER.isDisabled=XWEB.TEXTFIELD.isDisabled;
-XWEB.INTEGER.setValue=XWEB.INTEGER.Value;
-XWEB.INTEGER.setVisible=XWEB.INTEGER.Visible;
-XWEB.INTEGER.setDisabled=XWEB.TEXTFIELD.setDisabled;
-XWEB.INTEGER.setTooltipText=XWEB.TEXTFIELD.setTooltipText;
-XWEB.INTEGER.setForegroundColor=XWEB.TEXTFIELD.setForegroundColor;
-XWEB.INTEGER.setBackgroundColor=XWEB.TEXTFIELD.setBackgroundColor;
-
-XWEB.TEXTAREA=function(){};
-XWEB.TEXTAREA.Value=function(id,value){
- XWEB.TEXTFIELD.Value(id,value);
-
- var o=XWEB.getElementById(id);
- var f=XWEB.getObject(id);
- if(o && f && f.valign>0){
- XWEB.TEXTAREA.setTextVAlign(o,f.valign,0);
- }
-};
-XWEB.TEXTAREA.Visible=XWEB.TEXTFIELD.Visible;
-XWEB.TEXTAREA.setFocus=XWEB.TEXTFIELD.setFocus;
-XWEB.TEXTAREA.getValue=XWEB.TEXTFIELD.getValue;
-XWEB.TEXTAREA.isVisible=XWEB.TEXTFIELD.isVisible;
-XWEB.TEXTAREA.isDisabled=XWEB.TEXTFIELD.isDisabled;
-XWEB.TEXTAREA.setValue=XWEB.TEXTAREA.Value;
-XWEB.TEXTAREA.setVisible=XWEB.TEXTAREA.Visible;
-XWEB.TEXTAREA.setDisabled=XWEB.TEXTFIELD.setDisabled;
-XWEB.TEXTAREA.setTooltipText=XWEB.TEXTFIELD.setTooltipText;
-
-XWEB.isZenkaku=function(value){
- if (value < 256 || (value >= 0xff61 && value <= 0xff9f)) {
- return false;
- } else {
- return true;
- }
-};
-
-XWEB.TEXTAREA.CONST=new function(){
- this.DISP_NORELOAD=0;
- this.DISP_RELOAD=1;
-};
-
-//eLXgGA̋Iȍĕ`悪Kvǂ(T-002877)
-XWEB.TEXTAREA.needDispReload=function(dispReload,fld){
- if(fld && (fld.type==XWEB.FieldType.TextArea)){
- return (XWEB.bIE9or10 && dispReload && (dispReload==XWEB.TEXTAREA.CONST.DISP_RELOAD));
- } else {
- return false;
- }
-};
-
-XWEB.TEXTAREA.setTextVAlign=function(_obj,fvalign,e_keyCode,dispReload){ // Deji.2167
- var f=XWEB.getObject(_obj.id);
- if(f){
- if (f.width==undefined||f.height==undefined||f.lineSpacing==undefined){
- return; // T-002601
- }
- // s𐔂
- var lines=_obj.value.split(/[\r\n]/);
- var maxLineCh = Math.floor(f.width / (f.font.fontsize+f.charSpacing) * 2); // Ps̍ő啶(p)
- var ln=lines.length + (e_keyCode==13?1:0);
- for(var i=0;i maxLineCh){
- ++show_lines;
- ncount=0;
- }
- }
- ln += show_lines;
- }
-
- var fsize=f.fontSize + f.lineSpacing;
- var fig_h=f.height + 2;
- var max_h=fig_h - f.paddingTop - f.paddingBottom;
- var max_l=(max_h / fsize);
- var line_count=ln < max_l ? ln : max_l;
- var ret=f.paddingTop;
- switch (fvalign){
- case 1:
- ret = Math.floor(f.paddingTop + (fig_h - f.paddingTop - f.paddingBottom - fsize * line_count) / 2);
- break;
- case 2:
- ret = fig_h - fsize * Math.floor(line_count) - f.paddingBottom;
- if(ln > Math.floor(max_l)){ // \\s葽ꍇ
- // max_l ̌vZŐ_ȉ̒lgďpfBOB
- ret += fsize - Math.floor((max_l-Math.floor(max_l))*fsize) - 2;
- }
- break;
- default:
- break;
- }
- if(isIPad()||isIPhone()){ // iPhone/iPad ̃YIɏC
- ret -= Math.floor(fsize / 3);
- }
- _obj.style.paddingTop=ret + "px";
-
- //T-002877
- //IE9,10łpaddingTopw肷邾ł͐ʒuωȂB
- //̂߁Avaluel邱ƂɂAeLXgGA̕`Iɓ삳B
- //(⑫:IE8,IE11,FF etc͏L̎ۂ͔Ȃ)
- if (XWEB.TEXTAREA.needDispReload(dispReload,f)) {
- _obj.value=_obj.value;
- }
-
- switch (fvalign){
- case 2: // i
- if(isSafari()||isChrome()){
- _obj.style.maxHeight=(fig_h - f.paddingBottom) + "px";
- }else if(isMZ()){
- _obj.style.maxHeight="";
- }else if(isIE()){
- _obj.style.maxHeight=(fig_h - f.paddingBottom - fsize) + "px";
- }else{
- _obj.style.maxHeight=(fig_h - f.paddingBottom) + "px";
- }
- break;
- case 1: // i
- default: // wȂ(s)
- if(isSafari()||isChrome()){
- _obj.style.maxHeight=(fig_h - ret) + "px";
- }else if(isMZ()){
- _obj.style.maxHeight="";
- }else if(isIE()){
- _obj.style.maxHeight=(fig_h - ret - f.paddingBottom * 2) + "px";
- }else{
- _obj.style.maxHeight=(fig_h - ret - f.paddingBottom) + "px";
- }
- break;
- }
- }
-};
-
-XWEB.PASSWORD=function(){};
-XWEB.PASSWORD.Value=XWEB.TEXTFIELD.Value;
-XWEB.PASSWORD.Visible=XWEB.TEXTFIELD.Visible;
-XWEB.PASSWORD.setFocus=XWEB.TEXTFIELD.setFocus;
-XWEB.PASSWORD.getValue=XWEB.TEXTFIELD.getValue;
-XWEB.PASSWORD.isVisible=XWEB.TEXTFIELD.isVisible;
-XWEB.PASSWORD.isDisabled=XWEB.TEXTFIELD.isDisabled;
-XWEB.PASSWORD.setValue=XWEB.PASSWORD.Value;
-XWEB.PASSWORD.setVisible=XWEB.PASSWORD.Visible;
-XWEB.PASSWORD.setDisabled=XWEB.TEXTFIELD.setDisabled;
-XWEB.PASSWORD.setTooltipText=XWEB.TEXTFIELD.setTooltipText;
-
-XWEB.RADIO=function(){};
-XWEB.RADIO.Value=function(id,value){
- if(typeof(value)!='undefined'){
- var bD=XWEB.RADIO.isDisabled(id);
- XWEB.RADIO.setDisabled(id,false);
- if(XWEB.bIE10before){
- XWEB.TEXTFIELD.Value(id,value);
- }else{ // T-001383
- //T-002467 IE11ȍ~onPropertyChange삵Ȃ߁AFirefoxn̏Œl̕ωɊÂs
- var cur_value=XWEB.TEXTFIELD.Value(id);
- XWEB.TEXTFIELD.Value(id,value);
- if(cur_value!=value){
- var robj=document.getElementById(id);
- var func_onchg=eval("XWEVT."+id+".OnChange");
- if(func_onchg){
- func_onchg(robj,window.event);
- }
- }
- }
- var fld=XWEB.getObject(id);
- if(fld.radiovalues){
- for(var n=0; n < fld.radiovalues.length ; ++n){
- var val=fld.radiovalues[n];
- var r=XWEB.getElementById(id+'_BG_'+n);
- if(r){
- r.innerHTML=value==val.value?val.checkmark:val.uncheckmark;
- }
- }
- }
- XWEB.RADIO.setDisabled(id,bD);
- }else{
- return XWEB.TEXTFIELD.Value(id,value);
- }
-};
-XWEB.RADIO.Visible=function(id,vis){
- var wk_vis=vis?'visible':'hidden';
- var o=XWEB.getElementById(id+'_BG_0');
- if(typeof(vis)=='undefined'){
- if(XWEB.isPageVisible(o)==false){
- return false;
- }
- if(o){
- return o.style.visibility=='hidden'?false:true;
- }else{
- return false;
- }
- }
- for(n=0;n<255;++n){
- var obg=XWEB.getElementById(id+'_BG_'+n);
- if(obg){
- obg.style.visibility=wk_vis;
- var on=XWEB.getElementById(id+'_'+n);
- if(on){ on.style.visibility=wk_vis; }
- }else{
- break;
- }
- }
-};
-
-/**
- * backTab: backtab sequence on XWEB.Form.enterkey()
-*/
-XWEB.RADIO.setFocus=function(id,backTab){
-// if( ! XWEB.bIE ) {
-// var o=XWEB.getElementById(id+'_BG_0');
-// if(o){o.focus();};
-// return;
-// }
- var fld=XWEB.getObject(id);
- var cur_val=fld.getValue();
-
- //set focus on current value element.
- var bnotonfocus=true;
- if(backTab==undefined&&cur_val.length>0){ //set focus on first element.
- for(var n=0; n < fld.radiovalues.length ; ++n){
- var val=fld.radiovalues[n];
- if(cur_val==val.value){
- var o=XWEB.getElementById(id+'_'+n);
- if(o){
- if(!o.disabled){
- o.focus();
- }
- bnotonfocus=false
- };
- break;
- }
- }
- }
-
- if(bnotonfocus){ // not select radiobutton.
- var bno=0;
- if(backTab){
- bno=fld.radiovalues.length-1;
- if(bno<0){bno=0;}
- }
- var o=XWEB.getElementById(id+'_'+bno);
- if(!o){
- o=XWEB.getElementById(id+'_0');
- }
- if(o){
- if(!o.disabled){o.focus();}
- };
- }
-//alert(document.activeElement.id);
-};
-XWEB.RADIO.getValue=XWEB.TEXTFIELD.getValue;
-XWEB.RADIO.isVisible=XWEB.RADIO.Visible;
-XWEB.RADIO.isDisabled=XWEB.TEXTFIELD.isDisabled;
-XWEB.RADIO.isReadOnly=function(id){
-// var o=XWEB.getElementById(id+'_0');
-// if(o){return o.disabled;}else{return true;}
- var o=XWEB.getElementById(id+'_BG_0');
- if(o){
- return (o.rad_readonly||o.readOnly)?o.rad_readonly:false;
- }
- return false;
-};
-XWEB.RADIO.setValue=XWEB.RADIO.Value;
-XWEB.RADIO.setVisible=XWEB.RADIO.Visible;
-XWEB.RADIO.setReadOnly=function(id,b){
-// for(var n=0;n<255;++n){
-// var o=XWEB.getElementById(id+'_'+n);
-// if(o){o.disabled=b;}else{break;}
-// }
- for(var n=0;n<255;++n){
- var o=XWEB.getElementById(id+'_BG_'+n);
- if(o){
- o.rad_readonly=b;
- o.readOnly=b;
- }
- }
-};
-XWEB.RADIO.setDisabled=function(id,b){
- XWEB.TEXTFIELD.setDisabled(id,b);
- for(var n=0;n<255;++n){
- var o=XWEB.getElementById(id+'_'+n);
- if(o){o.disabled=b;}else{break;}
- }
-};
-XWEB.RADIO.setTooltipText=function(id,str){
- for(var n=0;n<255;++n){
- var o=XWEB.getElementById(id+'_'+n);
- if(o){o.title=str.replace(/\\n/g,'\n');}else{break;}
- }
-};
-
-XWEB.CHECKBOX=function(){};
-XWEB.CHECKBOX.Value=function(id,value){
- if(typeof(value)=='undefined'){
- return XWEB.TEXTFIELD.Value(id,value);
- }
-
- var bD=XWEB.CHECKBOX.isDisabled(id);
- XWEB.CHECKBOX.setDisabled(id,false);
- if(XWEB.bIE10before){ // for IE10 ȑO
- XWEB.TEXTFIELD.Value(id,value);
- }else{ // for not IE (FireFox)
- //T-002467 IE11ȍ~onPropertyChange삵Ȃ߁AFirefoxn̏Œl̕ωɊÂs
- var cur_val=XWEB.TEXTFIELD.Value(id);
- if(cur_val!=value){
- var o=XWEB.getElementById(id+'_0');
- if(o){
- o.onclick();
- }
- }
- }
- XWEB.CHECKBOX.setDisabled(id,bD);
-};
-XWEB.CHECKBOX.Visible=function(id,vis){
- var o=XWEB.getElementById(id+'_BG');
- if(typeof(vis)=='undefined'){
- if(XWEB.isPageVisible(o)==false){
- return false;
- }
- if(o){
- return o.style.visibility=='hidden'?false:true;
- }else{
- return false;
- }
- }
- var o0=XWEB.getElementById(id+'_0');
-
- var wk_vis=vis?'visible':'hidden';
- if(o){o.style.visibility=wk_vis;}
- if(o0){o0.style.visibility=wk_vis;}
-};
-XWEB.CHECKBOX.setFocus=function(id){
- var o=XWEB.getElementById(id+'_0');
- if(o){o.focus();};
-};
-XWEB.CHECKBOX.getValue=XWEB.TEXTFIELD.getValue;
-XWEB.CHECKBOX.isVisible=XWEB.CHECKBOX.Visible;
-XWEB.CHECKBOX.isDisabled=XWEB.TEXTFIELD.isDisabled;
-XWEB.CHECKBOX.isReadOnly=function(id){
-// var o=XWEB.getElementById(id+'_0');
-// if(o){return o.disabled;}else{return true;}
- var o=XWEB.getElementById(id+'_BG');
- if(o){
- return (o.chk_readonly||o.readOnly)?o.chk_readonly:false;
- }
- return false;
-};
-XWEB.CHECKBOX.setValue=XWEB.CHECKBOX.Value;
-XWEB.CHECKBOX.setVisible=XWEB.CHECKBOX.Visible;
-XWEB.CHECKBOX.setReadOnly=function(id,b){
-// var o=XWEB.getElementById(id+'_0');
-// if(o){o.disabled=b;}
- var o=XWEB.getElementById(id+'_BG');
- if(o){
- o.chk_readonly=b;
- o.readOnly=b;
- }
- var o=XWEB.getElementById(id+'_0');
- if(o){
- o.readOnly=b;
- }
-};
-XWEB.CHECKBOX.setDisabled=function(id,b){
- XWEB.TEXTFIELD.setDisabled(id,b);
- var o=XWEB.getElementById(id+'_0');
- if(o){o.disabled=b;}
-};
-XWEB.CHECKBOX.setTooltipText=function(id,str){
- var o=XWEB.getElementById(id+'_0');
- if(o){o.title=str.replace(/\\n/g,'\n');}
-};
-
-XWEB.BUTTON=function(){};
-XWEB.BUTTON.Value=function(id,value){
- var o=XWEB.getElementById(id+"_BL");
- if(o){
- if(typeof(value)=='undefined'){
- return XWEB.getDivText(o);
- }else{
- XWEB.setDivText(o,value);
- }
- }
-};
-XWEB.BUTTON.Visible=function(id,vis){
- if(typeof(vis)=='undefined'){
- return XWEB.TEXTFIELD.Visible(id);
- }
- XWEB.TEXTFIELD.Visible(id,vis);
- var o=XWEB.getElementById(id+"_BG_IMG");
- if(o){
- var wk_vis=vis?'visible':'hidden';
- o.style.visibility=wk_vis;
- }
- o=XWEB.getElementById(id+"_FCS_"); // T-001744
- if(o){
- o.style.visibility=(vis?'visible':'hidden');
- }
-};
-XWEB.BUTTON.TextVisible=function(id,vis){
- var o=XWEB.getElementById(id+'_BL');
- var wk_vis=vis?'visible':'hidden';
- if(o){o.style.visibility=wk_vis;}
-};
-XWEB.BUTTON.setFocus=function(id){
- var o=XWEB.getElementById(id+'_BL');
- if(o){
- try{
- o.focus();
- }catch(e){
- XWEB.Exec.Exception(e, id);
- }
- };
-};
-XWEB.BUTTON.getValue=function(id){
- var o=XWEB.getElementById(id+'_BL');
- if(o){ return XWEB.getDivText(o); }
-};
-XWEB.BUTTON.isVisible=XWEB.TEXTFIELD.isVisible;
-XWEB.BUTTON.isDisabled=function(id){
- var o=XWEB.getElementById(id);
- if(o){
-// if(XWEB.bIE){
- return o.isEnable() ? false : true;
-// }else{
-// return eval(id+'_e')==1 ? false : true;
-// }
- }
-};
-XWEB.BUTTON.setValue=XWEB.BUTTON.Value;
-XWEB.BUTTON.setVisible=XWEB.BUTTON.Visible;
-XWEB.BUTTON.setDisabled=function(id,b){
- var fld=XWEB.getObject(id);
- if(fld){
- var orgid=fld.org_id;
- var cmds=orgid+(b?".setDisable()":".setEnable()")+";";
- try {
- eval(cmds);
- }catch(e){
- alert("Error: "+id+": "+e.toString()+"\n"+
- " "+cmds);
- }
- }else{
- var o=XWEB.getElementById(id);
- var cmds=id+(b?".setDisable()":".setEnable()")+";";
- if(o){
- try {
- eval(cmds);
- }catch(e){
- alert("Error: "+id+": "+e.toString()+"\n"+
- " "+cmds);
- }
- }
- }
-};
-XWEB.BUTTON.setTooltipText=function(id,str){
-// var o=XWEB.getElementById(id+'_BL');
-// if(o){o.title=str.replace(/\\n/g,'\n');}
- var f=XWEB.getObject(id);
- if(f){
-// if(f.tooltip){
- if(f.tooltip&&f.tooltip.isNormalType()==false){
- f.tooltip.text=str;
- }else{
- var o=XWEB.getElementById(id+'_BL');
- if(o){o.title=str.replace(/\\n/g,'\n');}
- }
- }
-};
-XWEB.BUTTON.setFontSize=function(id,n){
- var o=XWEB.getElementById(id+'_BL');
- if(o){o.style.fontSize=n<0?"":n;}
-};
-XWEB.BUTTON.setFontName=function(id,fontname){
- var o=XWEB.getElementById(id+'_BL');
- if(o){o.style.fontFamily=fontname;}
-};
-XWEB.BUTTON.setFontWeight=function(id,fweight){
- var o=XWEB.getElementById(id+'_BL');
- if(o){o.style.fontWeight=fweight;}
-};
-XWEB.BUTTON.setFontStyle=function(id,fstyle){
- var o=XWEB.getElementById(id+'_BL');
- if(o){o.style.fontStyle=fstyle;}
-};
-XWEB.BUTTON.setTextDecoration=function(id,tdeco){
- var o=XWEB.getElementById(id+'_BL');
- if(o){o.style.textDecoration=tdeco;}
-};
-XWEB.BUTTON.setForegroundColor=function(id,col){
- var o=XWEB.getElementById(id+'_BL');
- if(o){o.style.color=col;}
-};
-XWEB.BUTTON.getForegroundColor=function(id){
- var o=XWEB.getElementById(id+'_BL');
- if(o){ return o.style.color=col; }
-};
-XWEB.BUTTON.setBackgroundColor=function(id,col){
- var o=XWEB.getElementById(id+'_BL');
- if(o){o.style.backgroundColor=col;}
-
- var o_bfl=XWEB.getElementById(id+'_BFL'); // back fill.
- if(o_bfl){
- XWEB.FILL.setColor(o_bfl.id,col);
- }else{
- //o_bfl=XWEB.FILL.create(id+'_BFL',o.style.top,o.style.left,o.style.width,o.style.height,1);
- //XWEB.FILL.setColor(o_bfl.id,col);
- }
-};
-XWEB.BUTTON.getBackgroundColor=function(id){
- var o_bfl=XWEB.getElementById(id+'_BFL'); // back fill.
- if(o_bfl){
- return o_bfl.style.backgroundColor;
- }else{
- var o=XWEB.getElementById(id+'_BL');
- if(o){ return o.style.borderColor; }
- }
-};
-XWEB.BUTTON.setRectColor=function(id,col){
- var o=XWEB.getElementById(id+'_BT');
- if(o){o.style.borderColor=col;}
-};
-XWEB.BUTTON.getRectColor=function(id){
- var o=XWEB.getElementById(id+'_BT');
- if(o){ return o.style.borderColor; }
-};
-
-XWEB.COMBOBOX=function(){};
-XWEB.COMBOBOX.Value=function(id,value){
- XWEB.TEXTFIELD.Value(id,value);
- var cbo=XWEB.getElementById(id);
- if(XWEB.bIE){ // Generator, bug evasion
-
- if (XWEB.bIE11Later && cbo) {
- //T-002467 IE11ȍ~onPropertyChange삵ȂB
- // onPropertyChangeŏTSCMS̏Value\bhŏB
- // ȂAonPropertyChangeValuelύXɓ삷̂ŁA
- // IE11ɂĂAXWEB.TEXTFIELD.Value̒TSCMSsB
- TSCMS(cbo);
- }
-
- var bgo=XWEB.getElementById(id+'_BG');
- if(cbo&&bgo){
- if(cbo.selectedIndex>=0){
- bgo.innerHTML=cbo.options[cbo.selectedIndex].innerHTML;
- }else{
- bgo.innerHTML="";
-// if(value && cbo.disabled==true){
-// bgo.innerHTML=value; //Œlꍇ
-// }else{
-// bgo.innerHTML="";
-// }
- }
- }
- }else{
- var bgo=XWEB.getElementById(id+'_BG'); // T-002031
- if(cbo&&value==undefined){
- cbo.selectedIndex=-1;
- if(bgo){ // T-002031
- bgo.innerHTML="";
- }
- }else if(cbo&&value.length==0){
- cbo.selectedIndex=-1;
- if(bgo){ // T-002031
- bgo.innerHTML="";
- }
- }else if(!isIE()){ // T-001085
- // T-001758As̏ꍇvisibilityςȂwŎs
- var no_vis;
- if (bgo) {
- no_vis = (bgo.style.visibility=="hidden"?true:false);
- } else {
- no_vis = true;
- }
- TSCMB(cbo,1,1,1,no_vis);
- }
- }
-};
-XWEB.COMBOBOX.Visible=function(id,vis){
- var o=XWEB.getElementById(id+'_BG');
- if(typeof(vis)=='undefined'){
- if(o){
- if(XWEB.isPageVisible(o)==false){
- return false;
- }
- return o.style.visibility=='hidden'?false:true;
- }else{
- return false;
- }
- }
-
- var wk_vis=vis?'visible':'hidden';
- if(o){o.style.visibility=wk_vis;}
- XWEB.FILL.Visible(id+'_BFL',vis,id); //background fill
- XWEB.RECT.Visible(id,vis);
-};
-XWEB.COMBOBOX.TextVisible=function(id,vis){
- var o=XWEB.getElementById(id+'_BG');
- var wk_vis=vis?'visible':'hidden';
- if(o){o.style.visibility=wk_vis;}
-};
-XWEB.COMBOBOX.setFocus=function(id){
- var o=XWEB.getElementById(id+'_BG');
- if(o){o.focus();};
-};
-XWEB.COMBOBOX.getValue=function(id){
- var cbo=XWEB.getElementById(id);
- if(cbo){
- if(cbo.selectedIndex>=0){
- return cbo.options[cbo.selectedIndex].value;
- }
- }
-};
-XWEB.COMBOBOX.isVisible=XWEB.COMBOBOX.Visible
-XWEB.COMBOBOX.isDisabled=function(id){
- var o=XWEB.getElementById(id+'_BG');
- if(o){ return o.disabled; };
-};
-XWEB.COMBOBOX.setValue=XWEB.COMBOBOX.Value;
-XWEB.COMBOBOX.setVisible=XWEB.COMBOBOX.setVisible;
-XWEB.COMBOBOX.setDisabled=function(id,b){
- XWEB.TEXTFIELD.setDisabled(id,b);
- var o=XWEB.getElementById(id+'_BG');
- if(o){o.disabled=b;}
- XWEB.COMBOBOX.addDisabled(id,b);
-};
-XWEB.COMBOBOX.setTooltipText=function(id,str){
-// var o=XWEB.getElementById(id+'_BG');
-// if(o){o.title=str.replace(/\\n/g,'\n');}
- var f=XWEB.getObject(id);
- if(f){
-// if(f.tooltip){
- if(f.tooltip&&f.tooltip.isNormalType()==false){
- f.tooltip.text=str;
- }else{
- var o=XWEB.getElementById(id+'_BG');
- if(o){o.title=str.replace(/\\n/g,'\n');}
- }
- }
-};
-XWEB.COMBOBOX.setFontSize=function(id,n){
- var o=XWEB.getElementById(id);
- if(o){
- o.style.fontSize=n<0?"":n;
- var bg=XWEB.getElementById(id+'_BG');
- if(bg){ bg.style.fontSize=n; }
- }
-};
-XWEB.COMBOBOX.setFontName=function(id,fontname){
- var o=XWEB.getElementById(id);
- if(o){
- o.style.fontFamily=fontname;
- var bg=XWEB.getElementById(id+'_BG');
- if(bg){ bg.style.fontFamily=fontname; }
- }
-};
-XWEB.COMBOBOX.setFontWeight=function(id,fweight){
- var o=XWEB.getElementById(id);
- if(o){
- o.style.fontWeight=fweight;
- var bg=XWEB.getElementById(id+'_BG');
- if(bg){ bg.style.fontWeight=fweight; }
- }
-}
-XWEB.COMBOBOX.setFontStyle=function(id,fstyle){
- var o=XWEB.getElementById(id);
- if(o){
- o.style.fontStyle=fstyle;
- var bg=XWEB.getElementById(id+'_BG');
- if(bg){ bg.style.fontStyle=fstyle; }
- }
-}
-XWEB.COMBOBOX.setTextDecoration=function(id,tdeco){
- var o=XWEB.getElementById(id);
- if(o){
- o.style.textDecoration=tdeco;
- var bg=XWEB.getElementById(id+'_BG');
- if(bg){ bg.style.textDecoration=tdeco; }
- }
-}
-XWEB.COMBOBOX.setForegroundColor=function(id,col){
- var o=XWEB.getElementById(id);
- if(o){
- o.style.color=col;
- var bg=XWEB.getElementById(id+'_BG');
- if(bg){ bg.style.color=col; }
- }
-};
-XWEB.COMBOBOX.getForegroundColor=function(id){
- var o=XWEB.getElementById(id);
- if(o){
- return o.style.color;
- }
-};
-XWEB.COMBOBOX.setBackgroundColor=function(id,col){
- var o=XWEB.getElementById(id);
- if(o){
- o.style.backgroundColor=col;
- //T-002457 svȗ̈܂ŔwiFݒ肳邽߃RgAEg
- //var bg=XWEB.getElementById(id+'_BG');
- //if(bg){ bg.style.backgroundColor=col; }
- }
-
- var o_bfl=XWEB.getElementById(id+'_BFL'); // back fill.
- if(o_bfl){
- XWEB.FILL.setColor(o_bfl.id,col);
- }else{
- o_bfl=XWEB.FILL.createFromBackgroundInfo(id,1);
- if(o_bfl){
- XWEB.FILL.setColor(o_bfl.id,col);
- }
- }
-};
-XWEB.COMBOBOX.getBackgroundColor=function(id){
- var o_bfl=XWEB.getElementById(id+'_BFL'); // back fill.
- if(o_bfl){
- return o_bfl.style.backgroundColor;
- }else{
- var o=XWEB.getElementById(id);
- if(o){
- return o.style.backgroundColor;
- }
- }
-};
-XWEB.COMBOBOX.setRectColor=XWEB.TEXTFIELD.setRectColor;
-XWEB.COMBOBOX.setReadOnly=function(idname,b){
- XWEB.TEXTFIELD.setDisabled(idname,b);
- //var o=XWEB.getElementById(idname+'_BG');
- //if(o){o.disabled=b;}
-};
-
-XWEB.COMBOBOX.addReadOnly=function(idname,org_idname){
- if(XWEB.COMBOBOX.readonly==undefined){
- XWEB.COMBOBOX.readonly=new Array();
- }
- XWEB.COMBOBOX.readonly[idname]=true;
-};
-XWEB.addRO_CB=XWEB.COMBOBOX.addReadOnly;
-
-XWEB.COMBOBOX.addDisabled=function(idname,org_idname){
- if(XWEB.COMBOBOX.disabled==undefined){
- XWEB.COMBOBOX.disabled=new Array();
- }
- XWEB.COMBOBOX.disabled[idname]=true;
-};
-
-XWEB.LISTBOX=function(){};
-XWEB.LISTBOX.Value=function(id,value){
- XWEB.TEXTFIELD.Value(id,value);
- var cbo=XWEB.getElementById(id);
- if(cbo){
-
- if (XWEB.bIE11Later && cbo) {
- //T-002467 IE11ȍ~onPropertyChange삵ȂB
- // onPropertyChangeŏTSLSS̏Value\bhŏB
- // ȂAonPropertyChangeValuelύXɓ삷̂ŁA
- // IE11ɂĂAXWEB.TEXTFIELD.Value̒TSLSSsB
- TSLSS(cbo,0,cbo.size?cbo.size:4);
- }
-
- if(!XWEB.bIE){ // T-002031
- if(cbo&&value==undefined){
- cbo.selectedIndex=-1;
- }else if(cbo&&value.length==0){
- cbo.selectedIndex=-1;
- }
- }
- TSLSB(cbo,1,cbo.size?cbo.size:4);
- }
-};
-XWEB.LISTBOX.Visible=function(id,vis){
- // T-002028
- // Listbox JavaScriptŕsɂƁAs̏Ԃł
- // tB[hgi}EXd˂ƕ\Ԙgj\B
- var o=XWEB.getElementById('_'+id+'_FCS');
- if(typeof(vis)=="boolean"){
- var wk_vis=vis?'visible':'hidden';
- if(o){o.style.visibility=wk_vis;}
- }
- return XWEB.COMBOBOX.Visible(id,vis);
-};
-XWEB.LISTBOX.setFocus=XWEB.COMBOBOX.setFocus;
-XWEB.LISTBOX.getValue=XWEB.COMBOBOX.getValue;
-XWEB.LISTBOX.getMultiValue=function(id){
- var lis=XWEB.getElementById(id);
- var datas=new Array();
- if(lis){
- if(lis.tagName.toLowerCase()=="select"){
- for(var idx=0;idx0){
-//- XWEB.DATETIME.FORMAT.setFormat(_obj,undefined,fld.display_format,fld.input_format);
- XWEB.DATETIME.FORMAT.setFormat(_obj,undefined,fld.input_format,fld.display_format);
- }
- }
- }else{
- return XWEB.TEXTFIELD.Value(id,value);
- }
-};
-XWEB.DATETIME.Visible=XWEB.TEXTFIELD.Visible;
-XWEB.DATETIME.setFocus=XWEB.TEXTFIELD.setFocus;
-XWEB.DATETIME.getValue=XWEB.TEXTFIELD.getValue;
-XWEB.DATETIME.isVisible=XWEB.TEXTFIELD.isVisible;
-XWEB.DATETIME.isDisabled=XWEB.TEXTFIELD.isDisabled;
-XWEB.DATETIME.setValue=XWEB.DATETIME.Value;
-XWEB.DATETIME.setVisible=XWEB.DATETIME.Visible;
-XWEB.DATETIME.setDisabled=XWEB.TEXTFIELD.setDisabled;
-XWEB.DATETIME.setTooltipText=XWEB.TEXTFIELD.setTooltipText;
-XWEB.DATETIME.getSerialValue=function(id){
- var retval=0;
- var fld=XWEB.getField(id);
- if(fld){
- var imp_fmt=fld.input_format;
- var dsp_fmt=fld.display_format;
- var val=fld.getValue();
-
- if(XWEB.DATETIME.FORMAT.isImpTime(imp_fmt)){
- var hh, mm, ss;
- var ap=dsp_fmt.substr(dsp_fmt.length-1);
- var wk_str=val.split(" ");
- if(dsp_fmt.match(/ a$/)){ // "hh:mm:ss a" or "hh:mm a"
- var times=wk_str[0].replace(/[ _]/g,"").split(":");
- if(wk_str.length>1){
- var ampm=wk_str[1].toLowerCase();
- }else{
- var ampm='';
- }
- hh=Number(times[0]);
- mm=Number(times[1]);
- ss=Number(times[2]);
- if(!isNaN(hh)&&m=='pm'){hh+=12;};
- }else{ // "hh:mm:ss" or "hh:mn", "hhh:mm:ss", "hhh:mm"
- var times=val.replace(/[ _]/g,"").split(":");
- hh=Number(times[0]);
- mm=Number(times[1]);
- ss=Number(times[2]);
- }
- if(hh>24 && dsp_fmt.match(/^hh:/)){hh%=24;} //Deji.2731
- retval=hh*60+mm;
- if(!isNaN(ss)){
- retval+= (ss/60.0);
- }
- }
- else if(XWEB.DATETIME.FORMAT.isImpDate(imp_fmt)){
- var cur_date=XWEB.Date.getLocalDate();
- var dates=(val.indexOf("/")>0)?val.split("/"):val.split("-"); // T-000848
- var wk_str=(dsp_fmt.indexOf("/")>0)?dsp_fmt.split("/"):dsp_fmt.split("-"); // T-000848
- cur_date.setDate(1); // Deji.2168
- for(var n in wk_str){
- switch(wk_str[n]){
- case 'YYYY': cur_date.setYear(Number(dates[0])); break;
- case 'YY': cur_date.setYear(2000+Number(dates[0])); break;
- case 'MM': cur_date.setMonth(Number(dates[1])-1); break;
- case 'DD': cur_date.setDate(Number(dates[2])); break;
- }
- }
- // passed, UTC 1970,1,1
- var tz_offset=new Date().getTimezoneOffset() * 60 * 1000; // T-001343
- retval=Math.floor((cur_date.getTime()-tz_offset)/(24*3600*1000)); // millsec -> day.
- }
- return retval;
- }
-};
-XWEB.DATETIME.setSerialValue=function(id,dtime_val){
- var date_val=Math.abs(dtime_val);
- var retval="";
- var fld=XWEB.getField(id);
- if(fld){
- if(isNaN(date_val)){
- fld.setValue("");
- return;
- }
- var imp_fmt=fld.input_format;
- var dsp_fmt=fld.display_format;
- if(XWEB.DATETIME.FORMAT.isImpTime(imp_fmt)){
- var ap=dsp_fmt.substr(dsp_fmt.length-1);
- var wk_str=dsp_fmt.split(" ");
- var times;
- if(wk_str.length==2){ // "hh:mm:ss a" or "hh:mm a"
- times=wk_str[0].split(":");
- }else{ // "hh:mm:ss" or "hh:mn"
- times=dsp_fmt.split(":");
- }
-
- var hh=Math.floor(date_val/60);
- var mm=Math.floor(date_val-(hh*60));
- var ss;
- if(times.length==3){
-// ss=Math.floor((date_val-(hh*60+mm))*60);
- ss=Math.round((date_val-(hh*60+mm))*60);
- }
-
- if(ap=='a'&&(hh>=12)){
- retval=XWEB.DATETIME.FORMAT.format2n(hh-12);
- }else{
- retval=XWEB.DATETIME.FORMAT.format2n(hh);
- }
- retval+=':'+XWEB.DATETIME.FORMAT.format2n(mm);
- if(ss){
- retval+=':'+XWEB.DATETIME.FORMAT.format2n(ss);
- }
- if(ap=='a'){
- retval+=hh<12 ? ' AM' : ' PM';
- }
- }
- else if(XWEB.DATETIME.FORMAT.isImpDate(imp_fmt)){
- var time_val=date_val*(24*3600*1000);
- var new_date=new Date(time_val);
-// window.status=new_date.toLocaleDateString();
-
- retval="";
-// var wk_str=dsp_fmt.split("/");
- var wk_str=dsp_fmt.split(/[-\/]/); // T-001361
- var wk_spchr=dsp_fmt.match(/-/)?"-":"/";
-// alert(dsp_fmt);
- for(var n in wk_str){
- switch(wk_str[n]){
- case 'YYYY':
- retval=XWEB.DATETIME.FORMAT.formatFullYear(new_date.getFullYear());
- break;
- case 'YY':
- retval=XWEB.DATETIME.FORMAT.formatYear(new_date.getFullYear());
- break;
- case 'MM':
-// retval+='/'+XWEB.DATETIME.FORMAT.format2n(new_date.getMonth()+1);
- retval+=wk_spchr+XWEB.DATETIME.FORMAT.format2n(new_date.getMonth()+1);
- break;
- case 'DD':
-// retval+='/'+XWEB.DATETIME.FORMAT.format2n(new_date.getDate());
- retval+=wk_spchr+XWEB.DATETIME.FORMAT.format2n(new_date.getDate());
- break;
- }
- //alert(wk_str[n]+"="+retval);
- }
- }
- fld.setValue(retval);
- }
-};
-
-/**
- * Datetime format pattern.
-*/
-XWEB.DATETIME.InputFormat=function(fmt,reg,bDate,bTime,sep){
- this.format=fmt;
- this.regexp=reg;
- this.isDate=bDate;
- this.isTime=bTime;
- this.separatorDate=sep;
- this.splitFormat=fmt.split(sep);
- return this;
-};
-
-/*
- * input:
- * yy/mm/dd
- * yyyy/mm/dd
- * hh:mm
- * hh:mm:ss
- * display:
- * yy/mm/dd
- * yyyy/mm/dd
- * hh:mm
- * hh:mm:ss
- * hh:mm a
- * hh:mm:ss a
- * hhh:mm
- * hhh:mm:ss
-*/
-XWEB.DATETIME.FORMAT=new function(){
- this.input_fmt=new Array();
- this.input_fmt['YY/MM/DD' ]=new XWEB.DATETIME.InputFormat('__/__/__' ,'^\\d{2}\\/[_1]\\d\\/[_12]\\d$',true,false,'/');
- this.input_fmt['YY-MM-DD' ]=new XWEB.DATETIME.InputFormat('__-__-__' ,'^\\d{2}\\-[_1]\\d\\-[_12]\\d$',true,false,'-'); // R2.2 (T-000848)
- this.input_fmt['YYYY/MM/DD']=new XWEB.DATETIME.InputFormat('____/__/__','^\\d{4}\\/[_1]\\d\\/[_12]\\d$',true,false,'/');
- this.input_fmt['YYYY-MM-DD']=new XWEB.DATETIME.InputFormat('____-__-__','^\\d{4}\\-[_1]\\d\\-[_12]\\d$',true,false,'-'); // R2.2 (T-000848)
- this.input_fmt['hh:mm' ]=new XWEB.DATETIME.InputFormat('__:__' ,'^[_12]\\d:[_1-5]\\d$',false,true,':');
- this.input_fmt['hh:mm:ss' ]=new XWEB.DATETIME.InputFormat('__:__:__' ,'^[_12]\\d:[_1-5]\\d:[_1-5]\\d$',false,true,':');
- this.input_fmt['hh:mm a' ]=new XWEB.DATETIME.InputFormat('__:__' ,'^[_12]\\d:[_1-5]\\d$',false,true,':');
- this.input_fmt['hh:mm:ss a']=new XWEB.DATETIME.InputFormat('__:__:__' ,'^[_12]\\d:[_1-5]\\d:[_1-5]\\d$',false,true,':');
- this.input_fmt['hhh:mm' ]=new XWEB.DATETIME.InputFormat('___:__' ,'^\\d{1,3}+:[_1-5]\\d$',false,true,':');
- this.input_fmt['hhh:mm:ss' ]=new XWEB.DATETIME.InputFormat('___:__:__' ,'^\\d{1,3}+:[_1-5]\\d:[_1-5]\\d$',false,true,':');
-
- this.display_fmt=new Array();
- this.display_fmt['YY/MM/DD' ]='__/__/__';
- this.display_fmt['YY-MM-DD' ]='__-__-__'; // R2.2 (T-000848)
- this.display_fmt['YYYY/MM/DD']='____/__/__';
- this.display_fmt['YYYY-MM-DD']='____-__-__'; // R2.2 (T-000848)
- this.display_fmt['hh:mm' ]='__:__';
- this.display_fmt['hh:mm:ss' ]='__:__:__';
- this.display_fmt['hh:mm a' ]='__:__ AM';
- this.display_fmt['hh:mm:ss a']='__:__:__ AM';
- this.display_fmt['hhh:mm' ]='___:__';
- this.display_fmt['hhh:mm:ss' ]='___:__:__';
-
- this.isEmpty=function(sval){ // T-002016i^tB[h̖͏ԂA͓͕⏕̃LN^ł邩j
- var fmts=this.display_fmt;
- for(var fmt in fmts){
- if(fmts[fmt]==sval) return true;
- }
- return false;
- };
- this.isInputEmpty=function(fld){ // T-002668iJ_\A͒łtB[h̏Ԃw菑ł邩fj
- var sval=fld.getValue();
- if (fld.type!=XWEB.FieldType.DateTime || sval=="") { return true; } // ͖
- if (this.input_fmt[fld.input_format].format==sval) { return true; } // ͖
-
- // ͒łꍇׂB
- if (fld.input_format.match(/^Y/)) { // t^iYŎn܂j
- var ymdvals=sval.split(/[\/-]/); //t̏ꍇ͕KzRɂȂ
- if (typeof(ymdvals)=="object" && typeof(ymdvals.length)=="number") {
- if (ymdvals.length==3) { // YMDł
- var yy=ymdvals[0].length>0?Number(ymdvals[0]):0;
- var mm=ymdvals[1].length>0?Number(ymdvals[1]):0;
- var dd=ymdvals[2].length>0?Number(ymdvals[2]):0;
- if (fld.input_format.match(/^YYYY/)) {
- if (isNaN(yy)||yy<1900) { return true; } // slȂ̂empty
- }else{
- if (isNaN(yy)||yy<1||yy>99) { return true; } // slȂ̂empty
- }
- if (isNaN(mm)||mm<1||mm>12) { return true; } // slȂ̂empty
- if (isNaN(dd)||dd<1||dd>31) { return true; } // slȂ̂empty
- }
- } else { // tł邪t͂ĂԂł͖
- return true;
- }
- }else { // ^
- // onblur ŏς݂Ȃ̂Ŏ^͈ȂB
- }
- return false;
- }
- this.isDateFormat=function(fmt){ // T-002016itẢꂩʂꍇɗpj
- if(fmt.substring(0,1)=="h") return false;
- var fmts=this.display_fmt;
- for(var fmt in fmts){
- if(fmts[fmt]==fmt) return true;
- }
- return false;
- };
-
- this.onFocus=function(_obj,event){
- var fld=XWEB.getField(_obj.id);
- if(fld.isReadOnly()){
- return;
- }
- var fmt=fld.input_format;
- if(_obj.value.length>0){
-// var dspfmt=XWEB.getField(_obj.id).display_format;
- var dspfmt=fld.display_format;
- this.setFormat(_obj,event,dspfmt,fmt);
- }
- var bIsDate=this.isImpDate(fmt);
- var bIsTime=this.isImpTime(fmt);
- var wk_date=_obj.value.replace(/-/g,"/"); // T-001360
- if (wk_date.length==8){
- wk_date="20"+wk_date;
- }
- if(_obj.value.length==0){
- _obj.value=this.getImpFormat(fmt);
- }else if(bIsDate && isNaN(Date.parse(wk_date))){ // T-001360
- _obj.value=this.getImpFormat(fmt);
- }
- XWEB.Field.setCaretPosition(_obj,0);
- };
-
- this.onBlur=function(_obj,event){
- var fld=XWEB.getField(_obj.id);
- if(fld.isReadOnly()==false){
- var impfmt=fld.input_format;
- var dspfmt=fld.display_format;
- this.setFormat(_obj,event,impfmt,dspfmt);
- }
- };
-
- this.onKeyDown=function(_obj,event){
- if (isAndroid()) {
- //Andorid[ł̓L[{[h̎ނɂĂ͋L,pkeyCode̒l0Ƃ擾łȂꍇB
- //܂AKeyDownCxgł́AGgvaluelmɎ擾łȂꍇB
- //̂߁AAndorid[̏ꍇ́AkeyUpCxgŁAGgvaluelt͕sB
- return;
- }
-
- var fld=XWEB.getField(_obj.id);
- if(fld.isReadOnly()){
- return;
- }
-
- if((event.keyCode>=48&&event.keyCode<=57)||
- (event.keyCode>=96&&event.keyCode<=105) ){ // '0'->'9', tenkey '0'->'9'
- //KeyDowñLbg,value͓͊mO̒l̂߁A͂m莞̒lZo
- var pos1=XWEB.Field.getCaretPosition(_obj);
- var inp_ch=event.keyCode>=96?event.keyCode-48:event.keyCode;
- var val1 = _obj.value.substr(0,pos1) + String.fromCharCode(inp_ch) + _obj.value.substr(pos1);
- pos1++;
- this.convInputFormat(_obj,fld.input_format,val1,pos1,event);
- }else if(event.keyCode==9||event.keyCode==13){
- return; // tab or enter.
- }else if(event.keyCode==37||event.keyCode==39){//left allow(37),right allow(39)
- ;
- }else if(event.keyCode==8||event.keyCode==46){ // BS(8),DEL(46)
- if(XWEB.Field.isSelectedAll(_obj)==true||
- XWEB.Field.isSelectedPart(_obj)==true){
- _obj.value="";
- this.onFocus(_obj,event);
- XWEB.preventDefault(event); // T-002016, BS(8)͖薳ADEL(46)̏ꍇCANCELȂƕsB
- return;
- } else {
- this.convInputFormatBS(_obj,fld.input_format,event);
- }
- }else{
- XWEB.preventDefault(event);
- return;
- }
- };
- this.onKeyPress=function(_obj,event){};
- this.onKeyUp=function(_obj,event){
- if (!isAndroid() || !_obj) {
- return;
- }
- var fld=XWEB.getField(_obj.id);
- if(fld.isReadOnly()){
- return;
- }
- this.convInputFormat(_obj,fld.input_format,_obj.value,XWEB.Field.getCaretPosition(_obj),event);
- };
-
- /**
- * LbgƓ͏̕FtB[hŕ폜
- */
- this.convInputFormatBS=function(_obj,format,event){
- var fmt=this.input_fmt[format];
- if (!fmt) {return;}
-
- var cur_pos=XWEB.Field.getCaretPosition(_obj);
- var fmt_txt=fmt.format;
-
- if(cur_pos>0){
- cur_pos-=1;
- var cu_ch=fmt_txt.charAt(cur_pos);
- if(!this.isSeparator(cu_ch)){
- _obj.value=this.regenText(_obj.value,cur_pos,"_");
- }
- var ch=fmt_txt.charAt(cur_pos-1);
- cur_pos-=(this.isSeparator(ch) ? 1 : 0);
- XWEB.Field.setCaretPosition(_obj,cur_pos);
- }
- XWEB.preventDefault(event);
- };
-
- /**
- * LbgƓ͏̕FtB[h͎̓
- * {\bh́AR2.5.0Chrome for AndroidΉɂ킹Ēlj\bhłB
- * SuEU{\bhŏAʂR2.4.0ƓɂȂ܂B
- *
- * () ͏YYYY/MM/DDƂ(x:L[{[h͒l, |:Lbgʒu)
- * objValue20x|03/02/23̏ꍇA20x|3/02/23ݒ
- * objValue200x|3/02/23̏ꍇA200x/|02/23ݒ
- * objValue2003/02/23x|̏ꍇA2003/02/23|ݒ
- * objValue2003/x|̏ꍇA2003/x|_/__ݒ
- */
- this.convInputFormat=function(_obj,format,objValue,pos,event){
- //<-(37),->(39)͕Ȃ
- if(event.keyCode==37||event.keyCode==39){
- return;
- }
-
- var fmt=this.input_fmt[format];
- if (!fmt) {return;}
-
- var editValue=this.replaceCurrentToInput(objValue,pos,fmt);
- var setValue=this.applyFormat(editValue,fmt);
-
- //ubN̏I[ɃLbgʒuƂ́AubNɃLbgړ
- //2004|/12/23 2004/|12/23
- var setpos=pos;
- if (setValue.charAt(pos)==fmt.separatorDate) {
- setpos++;
- }
-
- _obj.value=setValue;
- XWEB.Field.setCaretPosition(_obj,setpos);
- XWEB.preventDefault(event);
- };
-
- /**
- * t͏̗(A_[XRA)͕ɒu
- */
- this.replaceCurrentToInput=function(objValue,pos,fmt){
- var ret=objValue;
- var inputNextValue=objValue.charAt(pos);
- var formatCaretValue=fmt.format.substr(pos-1,1);
-
- if((inputNextValue==fmt.separatorDate) && (formatCaretValue==fmt.separatorDate)){
- //͂ꏊZp[^̏ꍇ͓͂LZ
- ret=objValue.substr(0,pos-1) + objValue.substr(pos);
- } else if (!(inputNextValue==fmt.separatorDate)) {
- //͂ꏊZp[^Ȍꍇ͓͕Œu
- //2x013/12/23 2x13/12/23
- ret=objValue.substr(0,pos) + objValue.substr(pos+1);
- }
- return ret;
- };
-
- /**
- * t͏̓Kp
- */
- this.applyFormat=function(editValue,fmt){
- var splitValue=editValue.split(fmt.separatorDate);
- var splitValLen=splitValue.length;
- var splitFmtLen=fmt.splitFormat.length;
- var setValue='';
-
- for (var i = 0; i < splitValLen; i++) {
- if (i < splitFmtLen) {
- var addValue='';
- var blockVal=splitValue[i];
- var blockFmt=fmt.splitFormat[i];
- var blockValLen=blockVal.length;
- var blockFmtLen=blockFmt.length;
- if (blockValLenblockFmtLen) {
- //̓tH[}bgz̕
- //2013/12/23x 2013/12/23
- addValue=blockVal.substr(0,blockFmtLen);
- } else {
- addValue=blockVal;
- }
- setValue+=addValue+(i==splitFmtLen-1 ? '' : fmt.separatorDate);
- }
- }
-
- //ltH[}bĝ̕Ƃɕslj
- if (setValue.length9999){
- var fmt=String(val);
- return fmt.substr(fmt.length-1);
- }else{
- return String(val);
- }
- };
-
- this.regenText=function(val,cur_pos,repChar){
- var wk_l=val.substring(0,cur_pos);
- var wk_r=val.substring(cur_pos+1);
- return wk_l+repChar+wk_r;
- };
-
- this.setFormat=function(_obj,event,impfmt,dspfmt){
- _obj.value=this.getFormatValue(_obj.value,impfmt,dspfmt);
- };
-
- this.getFormatValue=function(val,impfmt,dspfmt){
- var ifmt=this.getImpFormat(impfmt);
- var regx=this.getImpRegexp(impfmt);
-
- var bIsDate=this.isImpDate(impfmt);
- var bIsTime=this.isImpTime(impfmt);
-
- if(bIsDate==true && bIsTime==true){
- ;
- } else if(bIsDate==true){
- var sep_chr=(impfmt.indexOf("/")>0)?true:false;
- var dates=(sep_chr==true)?val.split("/"):val.split("-"); // T-000848
- var yy=Number(dates[0]);
- var mm=Number(dates[1]);
- var dd=Number(dates[2]);
-
- if(isNaN(yy)||isNaN(mm)||isNaN(dd)){
- return "";
- }else{
- var cur_date=XWEB.Date.getLocalDate();
- if(impfmt.indexOf("YY/")==0||impfmt.indexOf("YY-")==0){
- cur_date.setYear(XWEB.Date.convYearAD(yy));
- }else{
- cur_date.setYear(yy);
- }
- cur_date.setDate(1);
- cur_date.setMonth(mm-1);
- cur_date.setDate(dd);
-
- var wk_date;
- if(dspfmt.indexOf("YY/")==0||dspfmt.indexOf("YY-")==0){ // T-000848
- wk_date=this.formatYear(cur_date.getFullYear());
- }else{
- wk_date=this.formatFullYear(cur_date.getFullYear());
- }
- sep_chr=(dspfmt.indexOf("/")>0)?true:false;
- if(sep_chr==true){ // T-000848
- wk_date+="/"+this.format2n(cur_date.getMonth()+1);
- wk_date+="/"+this.format2n(cur_date.getDate());
- }else{ // T-000848
- wk_date+="-"+this.format2n(cur_date.getMonth()+1);
- wk_date+="-"+this.format2n(cur_date.getDate());
- }
- return wk_date;
- }
- } else if(bIsTime==true){
- var hh,mm,ss;
- var ap=dspfmt.substr(dspfmt.length-1);
- var wk_str=val.split(" ");
- var times;
- if(impfmt.match(/ a$/)){ // "hh:mm:ss a" or "hh:mm a"
- times=wk_str[0].replace(/[ _].*/g,"").split(":");
- }else{ // "hh:mm:ss" or "hh:mn", "hhh:mm:ss", "hhh:mm"
- if(val.match(/^[ _][ _][0-9]/)){
- val=val.replace(/^[ _][ _]/,"00");
- }else if(val.match(/^[ _][0-9]/)){
- val=val.replace(/^[ _]/,"0");
- }
- times=val.replace(/[ _].*/g,"").split(":");
- }
- hh=Number(times[0]);
- mm=Number(times[1]);
- ss=Number(times[2]);
- var ampm="";
- if (wk_str.length > 1) {
- ampm=wk_str[1].toLowerCase();
- }
- if(!isNaN(hh)&&m=='pm'){hh+=12;};
-
- if(isNaN(hh)||isNaN(mm)){
- return "";
- }else{
- hh=isNaN(hh)?0:hh;
- mm=isNaN(mm)?0:mm;
- ss=isNaN(ss)?0:ss
- if(ss>59){
- ss-=60;
- mm+=1;
- }
- if(mm>59){
- mm-=60;
- hh+=1;
- }
- if(hh>999){
- hh=999;
- mm=59;
- ss=59;
- window.status=I18N.t("XWFRPC-W0001"); // 999Ԉȏ̓͂͂ł܂
- }
- var ti = XWEB.Date.getLocalDate();
- ti.setHours(hh);
- ti.setMinutes(mm);
- ti.setSeconds(ss);
- var wk_time;
- if(ap=='a'){
- wk_time=this.format2n(ti.getHours()<12?ti.getHours():ti.getHours()-12);
- }else{
- //wk_time=this.format2n(ti.getHours());
- if(mm>59){ ++hh; }
- if(dspfmt.match(/^hhh:/)){
- wk_time=this.format3n(hh);
- }else{
- wk_time=this.format2n(hh);
- }
- }
- wk_time+=":"+this.format2n(ti.getMinutes());
- //window.status=impfmt+","+dspfmt+" === "+ifmt + ","+regx+" === "+val + ","+wk_str;
- if(dspfmt.match(/:ss/)){ // b܂܂ꍇ̂
- if(!isNaN(ss)){
- wk_time+=":"+this.format2n(ti.getSeconds());
- }
- }
- if(ap=='a'){
- wk_time+=ti.getHours()<12 ? " AM" : " PM";
- }
- return wk_time;
- }
- }
- };
-
- return this;
-};
-
-XWEB.ZIPCODE=function(){};
-XWEB.ZIPCODE.Value=function(id,value){XWEB.TEXTFIELD.Value(id,value);};
-XWEB.ZIPCODE.Visible=XWEB.TEXTFIELD.Visible;
-XWEB.ZIPCODE.setFocus=XWEB.TEXTFIELD.setFocus;
-XWEB.ZIPCODE.getValue=XWEB.TEXTFIELD.getValue;
-XWEB.ZIPCODE.isVisible=XWEB.TEXTFIELD.isVisible;
-XWEB.ZIPCODE.isDisabled=XWEB.TEXTFIELD.isDisabled;
-XWEB.ZIPCODE.setValue=XWEB.ZIPCODE.Value;
-XWEB.ZIPCODE.setVisible=XWEB.ZIPCODE.Visible;
-XWEB.ZIPCODE.setDisabled=XWEB.TEXTFIELD.setDisabled;
-XWEB.ZIPCODE.setTooltipText=XWEB.TEXTFIELD.setTooltipText;
-
-XWEB.UPLOAD=function(){};
-XWEB.UPLOAD.Value=function(id,value){
- alert('Error: '+id+': cannot be set because of the security limitation.');
-};
-XWEB.UPLOAD.Visible=function(id,vis){
- var o=XWEB.getElementById(id+'_BG');
- if(typeof(vis)=='undefined'){
- if(o){
- if(XWEB.isPageVisible(o)==false){
- return false;
- }
- return o.style.visibility=='hidden'?false:true;
- }else{
- o=XWEB.getElementById(id);
- if(XWEB.isPageVisible(o)==false){
- return false;
- }
- return o.style.visibility=='hidden'?false:true;
- }
- }
- if(o){
- var wk_vis=vis?'visible':'hidden';
- o.style.visibility=wk_vis;
- }
-
- XWEB.TEXTFIELD.Visible(id,vis);
-};
-XWEB.UPLOAD.TextVisible=function(id,vis){
- var o=XWEB.getElementById(id);
- var wk_vis=vis?'visible':'hidden';
- if(o){o.style.visibility=wk_vis;}
-};
-XWEB.UPLOAD.setFocus=XWEB.TEXTFIELD.setFocus;
-XWEB.UPLOAD.getValue=XWEB.TEXTFIELD.getValue;
-XWEB.UPLOAD.isVisible=XWEB.UPLOAD.Visible;
-XWEB.UPLOAD.isDisabled=XWEB.TEXTFIELD.isDisabled;
-//XWEB.UPLOAD.setValue=XWEB.UPLOAD.Value;
-XWEB.UPLOAD.setVisible=XWEB.UPLOAD.Visible;
-XWEB.UPLOAD.setDisabled=XWEB.TEXTFIELD.setDisabled;
-XWEB.UPLOAD.setTooltipText=XWEB.TEXTFIELD.setTooltipText;
-
-XWEB.HIDDEN=function(){};
-XWEB.HIDDEN.Value=XWEB.TEXTFIELD.Value;
-XWEB.HIDDEN.getValue=XWEB.TEXTFIELD.getValue;
-XWEB.HIDDEN.setValue=XWEB.TEXTFIELD.setValue;
-
-XWEB.IMAGE=function(){};
-XWEB.IMAGE.Value=function(id,value){
- var o=XWEB.getElementById(id);
- if(o){
- var img_url;
- if(typeof(XWEB.Rpc.contextpath)=='undefined'){
- img_url=value;
- }else if(value.match(/^http:/)||value.match(/^https:/)){
- img_url=value;
- }else if(value.match(/^\//)){
- img_url=XWEB.Rpc.contextpath+'/'+value;
- }else{
- img_url=value;
- }
- o.src=img_url;
- var ifld=XWEB.getFigure(id);
- if(ifld){
- if(ifld.aspectratio==true){
- XWEB.IMAGE.setAspectAndAlign(ifld,o,img_url);
- }
- }
- //--- for pdf.
- var o_bg_url=XWEB.getElementById(id+'_img_url_');
- if(o_bg_url){
- o_bg_url.value=value;
- }
- };
-};
-
-XWEB.IMAGE.new_img=new Array(); // temporary image area.
-XWEB.IMAGE.imgTimerID=new Array();
-
-XWEB.IMAGE.setAspectAndAlign=function(ifld,o,img_url){
- if (ifld.rectangle==undefined){
- ifld.rectangle=new XWEB.Rectangle(parseInt(o.style.left,10),parseInt(o.style.top,10),o.width,o.height);
- } else if (ifld.rectangle.width==0 && ifld.rectangle.height==0) {
- ifld.rectangle=new XWEB.Rectangle(parseInt(o.style.left,10),parseInt(o.style.top,10),o.width,o.height);
- }
- XWEB.IMAGE.new_img[ifld.id]=document.createElement('img');
- XWEB.IMAGE.new_img[ifld.id].src=img_url;
-
- XWEB.IMAGE.setAspectAndAlignSub(ifld.id,img_url);
-};
-
-XWEB.IMAGE.setAspectAndAlignSub=function(idname,img_url){
- var new_img=XWEB.IMAGE.new_img[idname];
-
- if(new_img.complete){ // load check.
- clearInterval(XWEB.IMAGE.imgTimerID[idname]);
- }else{
- clearInterval(XWEB.IMAGE.imgTimerID[idname]);
- XWEB.IMAGE.imgTimerID[idname]=setInterval("XWEB.IMAGE.setAspectAndAlignSub('"+idname+"','"+img_url+"')",100);
- return;
- }
-
- var ifld=XWEB.getFigure(idname);
- var o=XWEB.getElementById(idname);
- var lm,tm;
- var iw,ih;
-
- if(ifld.rectangle.width > new_img.width && ifld.rectangle.height > new_img.height){ //
- iw=new_img.width;
- ih=new_img.height;
- lm=ifld.rectangle.width-new_img.width;
- tm=ifld.rectangle.height-new_img.height;
- }
- else if(ifld.rectangle.width < new_img.width && ifld.rectangle.height < new_img.height){ // EƂɑ傫
- var w_ratio=ifld.rectangle.width /new_img.width;
- var h_ratio=ifld.rectangle.height/new_img.height;
- if(w_ratio0 && ww0 && hh0){
- url += "&qz_l="+barval.qzone_l;
- }
- if(barval.qzone_r>0){
- url += "&qz_r=" + barval.qzone_r;
- }
-
- if(barval.option){
- var opt=barval.option;
- switch(barval.type){
- case XWEB.BARCODE.TYPE.CODE39Ex: // code39 full ascii mode.
- break;
- case XWEB.BARCODE.TYPE.ITF:
- url+="&itf_barler_bar="+opt.barler_bar;
- break;
- case XWEB.BARCODE.TYPE.POSTNET:
- url+="&postnet_digits="+opt.number_of_digits;
- break;
- case XWEB.BARCODE.TYPE.NW_7:
- url+="&nw7_start_char="+opt.start_charactor+"&nw7_stop_char="+opt.stop_charctor;
- break;
- case XWEB.BARCODE.TYPE.UPC_A:
- case XWEB.BARCODE.TYPE.UPC_E:
- break;
- case XWEB.BARCODE.TYPE.UPC_EADD:
- url+="&upc_addtype="+opt.addtype+"&upc_addval="+opt.addval;
- break;
- case XWEB.BARCODE.TYPE.PDF417:
- url+="&pdf417_type="+opt.type+
- "&pdf417_columns="+opt.columns+"&pdf417_rows="+opt.rows+
- "&pdf417_errorlevel="+opt.errorlevel;
- break;
- case XWEB.BARCODE.TYPE.QR_CODE:
- url+="&qr_model="+opt.model+"&qr_mask="+opt.mask+"&qr_error="+opt.error;
- break;
- }
- }
-
- var bar=getElementById_XP(barval.target);
- if(bar){
- bar.src=url;
- }else{
- //alert('can not refresh, barcode image'); // T-000748
- }
-}
-
-//-- refresh barcode by refarence field data.
-//function _xwf_barcode_refresh(_obj,reference){
-XWEB.BARCODE.Refresh=function(_obj,reference){
- for(var i in reference) {
- XWEB.BARCODE.Redraw(reference[i],_obj.value);
- }
-}
-
-//---- rollover on/off function.
-XWEB.RolloverOrgBackcolor=undefined; // this varable is onfocus color.
-XWEB.Rollover_on=function(obj,color){
- XWEB.RolloverOrgBackcolor=obj.style.backgroundColor;
- obj.style.backgroundColor=color;
-};
-XWEB.Rollover_off=function(obj){
- obj.style.backgroundColor=XWEB.RolloverOrgBackcolor;
-};
-
-XWEB.RECT=function(){};
-XWEB.RECT.Visible=function(id,vis){
- var ul=XWEB.getElementById(id+'_U');
- if(typeof(vis)=='undefined'){
- if(XWEB.isPageVisible(ul)==false){
- return false;
- }
- return ul.style.visibility=='hidden'?false:true;
- }
-
- var dl=XWEB.getElementById(id+'_D');
- if(dl){
- var ll=XWEB.getElementById(id+'_L');
- var rl=XWEB.getElementById(id+'_R');
-
- var wk_vis=vis?'visible':'hidden';
- if(ul){ul.style.visibility=wk_vis;}
- if(dl){dl.style.visibility=wk_vis;}
- if(ll){ll.style.visibility=wk_vis;}
- if(rl){rl.style.visibility=wk_vis;}
-
- var arc1=XWEB.getElementById(id+'_R1');
- if(arc1){
- arc1.style.visibility=wk_vis;
- var arc2=XWEB.getElementById(id+'_R2');
- var arc3=XWEB.getElementById(id+'_R3');
- var arc4=XWEB.getElementById(id+'_R4');
- if(arc2){arc2.style.visibility=wk_vis;}
- if(arc3){arc3.style.visibility=wk_vis;}
- if(arc4){arc4.style.visibility=wk_vis;}
- }
- }
-};
-XWEB.RECT.isVisible=XWEB.RECT.Visible;
-XWEB.RECT.setColor=function(id,col){
- var ul=XWEB.getElementById(id+'_U');
- var dl=XWEB.getElementById(id+'_D');
- var ll=XWEB.getElementById(id+'_L');
- var rl=XWEB.getElementById(id+'_R');
-
- if(ul){
- ul.style.backgroundColor=col;ul.style.borderColor=col;
- if(dl){dl.style.backgroundColor=col;dl.style.borderColor=col;}
- if(ll){ll.style.backgroundColor=col;ll.style.borderColor=col;}
- if(rl){rl.style.backgroundColor=col;rl.style.borderColor=col;}
-
- var arc1=XWEB.getElementById(id+'_R1');
- if(arc1){
- arc1.style.backgroundColor=col;arc1.style.borderColor=col;
- var arc2=XWEB.getElementById(id+'_R2');
- var arc3=XWEB.getElementById(id+'_R3');
- var arc4=XWEB.getElementById(id+'_R4');
- if(arc2){arc2.style.backgroundColor=col;arc2.style.borderColor=col;}
- if(arc3){arc3.style.backgroundColor=col;arc3.style.borderColor=col;}
- if(arc4){arc4.style.backgroundColor=col;arc4.style.borderColor=col;}
- }
- }
-};
-XWEB.RECT.getColor=function(id){
- var o=XWEB.getElementById(id+'_U');
- if(o){ return o.style.backgroundColor; }
-};
-
-XWEB.FILL=function(){};
-XWEB.FILL.Visible=function(id,vis,base_id){
- var o=XWEB.getElementById(id);
- if(o){
- if(typeof(vis)=='undefined'){
- if(XWEB.isPageVisible(o)==false){
- return false;
- }
- return o.style.visibility=='hidden'?false:true;
- }
- var wk_vis=vis?'visible':'hidden';
- o.style.visibility=wk_vis;
- }else if(base_id){ // Not Defined "_BFL", and create BFL.
- o=XWEB.getElementById(base_id);
- if(o){
- var o_bfl=XWEB.FILL.create(id,o.style.left,o.style.top,o.style.width,o.style.height,0,o.parentNode,o.style.visibility);
- if(o_bfl){
- XWEB.FILL.setColor(o_bfl.id,o.style.backgroundColor);
- var wk_vis=vis?'visible':'hidden';
- o_bfl.style.visibility=wk_vis;
- }
- }
- }
-};
-XWEB.FILL.isVisible=XWEB.FILL.Visible;
-XWEB.FILL.setColor=function(id,col){
- var o=XWEB.getElementById(id);
- if(o){
- o.style.backgroundColor=col;
- o.style.borderColor=col;
- }
-};
-XWEB.FILL.getColor=function(id){
- var o=XWEB.getElementById(id);
- if(o){ return o.style.backgroundColor; }
-};
-
-XWEB.FILL.createFromBackgroundInfo=function(id,rect_w){
- var o=XWEB.getElementById(id);
- var bk=XWEB.Html.xwf_background_info[id+'_BFL'];
- var o_bfl=null;
-
- if (bk) {
- //T-002457 wiKɐ
- o_bfl=XWEB.FILL.create(id+'_BFL',String(bk.x),String(bk.y),String(bk.width),String(bk.height),rect_w,o.parentNode,o.style.visibility);
- } else {
- o_bfl=XWEB.FILL.create(id+'_BFL',o.style.left,o.style.top,o.style.width,o.style.height,rect_w,o.parentNode,o.style.visibility);
- }
- return o_bfl;
-}
-
-XWEB.FILL.create=function(id,px,py,w,h,rect_w,parent_node,b_visibility){
- var wk_lw=Number(rect_w==undefined?1:rect_w); // focus rect width.
- var wk_px=parseInt(px.replace("px",""),10)-wk_lw;
- var wk_py=parseInt(py.replace("px",""),10)-wk_lw;
- var wk_w =parseInt(w.replace("px",""),10)+wk_lw*2;
- var wk_h =parseInt(h.replace("px",""),10)+wk_lw*2;
-
- try {
- var o=document.createElement('DIV');
- o.id=id;
- o.style.position='absolute';
- o.style.top=wk_py+'px';
- o.style.left=wk_px+'px';
- o.style.width=wk_w+'px';
- o.style.height=wk_h+'px';
- o.style.visibility='visible';
- o.style.zIndex=-998;
- o.style.overflow='hidden';
- o.className=isIE() ? "XWGCMN XWGCMN_IES" : "XWGCMN XWGCMN_GEKKOS"; // T-001649
- if(b_visibility){
- o.style.visibility=b_visibility;
- }
- if(parent_node){
- parent_node.appendChild(o);
- if(XWEB.elm_notfound[id]){
- XWEB.elm_notfound[id]=false;
- }
- }else{
- var pg_obj=XWEB.getElementById('TSpg1');
- pg_obj.insertBefore(o,null);
- }
- }catch(e){
- }
- return o;
-};
-
-XWEB.HLINE=function(){};
-XWEB.HLINE.Visible=function(id,vis){
- var wk_vis=vis?'visible':'hidden';
- var o=XWEB.getElementById(id);
- if(o){
- if(typeof(vis)=='undefined'){
- if(XWEB.isPageVisible(o)==false){
- return false;
- }
- return o.style.visibility=='hidden'?false:true;
- }
- o.style.visibility=wk_vis;
-
- var a1=XWEB.getElementById(id+'_A1');
- var a2=XWEB.getElementById(id+'_A2');
- if(a1){a1.style.visibility=wk_vis;}
- if(a2){a2.style.visibility=wk_vis;}
- }
-};
-XWEB.HLINE.isVisible=XWEB.FILL.isVisible;
-XWEB.HLINE.setColor=XWEB.FILL.setColor;
-
-XWEB.VLINE=function(){};
-XWEB.VLINE.Visible=XWEB.HLINE.Visible;
-XWEB.VLINE.isVisible=XWEB.HLINE.isVisible;
-XWEB.VLINE.setColor=XWEB.FILL.setColor;
-
-XWEB.LINE=function(){};
-XWEB.LINE.Visible=XWEB.HLINE.Visible;
-XWEB.LINE.isVisible=XWEB.HLINE.isVisible;
-XWEB.LINE.setColor=function(id,col){
- var o=XWEB.getElementById(id);
- for(var cur=o.firstChild;cur;cur=cur.nextSibling){
- cur.style.backgroundColor=col;
- cur.style.borderColor=col;
- }
-};
-XWEB.LINE.getColor=function(id){
- var o=XWEB.getElementById(id);
- if(o){
- if(o.firstChild){
- return o.firstChild.style.backgroundColor;
- }
- }
-};
-
-//--- layer config.
-XWEB.LAYER=function(layerno,member,required){
- this.layerno=layerno; // layer no.
- this.member=member; // layer member list(array)
- this.required=required?required:false; // common layer?
- this.bVisible;
-
- this.toString=function(){
- return ("XWEB.LAYER: "+layerno+","+member.length);
- }
-
- this.isVisible=function(){
- return this.bVisible;
- };
-
- this.Visible=function(vis){
- if(required) return; // required layer is return.
- if(this.bVisible!=undefined){
- if(this.bVisible==vis){
- return;
- }
- }
-
- this.bVisible = vis;
- for(var i in this.member){
- var idname=this.member[i];
- var fld=XWEB.getObject(idname);
- if(fld){
- //alert(fld.id+": this.Visible: "+vis+" (init="+fld.init_visible+")");
- if(fld.init_visible==true){
- fld.setVisible(vis);
- } else if(fld.init_visible==false && vis==false) {
- fld.setVisible(vis);
- }
- }
- }
- }
-
- this.exists=function(idname){
- for(var n in this.member){
- if(this.member[n]==idname){
- return true;
- }
- }
- return false;
- };
- return this;
-};
-
-//--- layer manager
-XWEB.LAYERMANAGER=new function(){
- this.currentLayer;
- this.layer_list=new Array(); // Layer Data. [new XWEB.LAYER(....)]
-
- this.getLayer=function(no){
- return this.layer_list[no];
- };
-
- this.getFirstField=function(no){
- var c_layer=this.layer_list[no];
- if(c_layer){
- if(c_layer.member.length>0){
- return XWEB.getObject(c_layer.member[0]);
- }
- }
- };
-
- this.addLayer=function(config){
- this.layer_list[config.layerno]=config;
- };
-
- this.getLayerNo=function(idname){
- for(var n in this.layer_list){
- var lst=this.layer_list[n];
- if(lst){
- if(lst.exists(idname)){
- return lst.layerno;
- }
- }
- }
- return -1;
- };
-
- this.getRequiredLayer=function(){
- for(var i in this.layer_list) {
- var layer=this.layer_list[i];
- if(layer.required){
- return Number(layer.layerno);
- }
- }
- return -1;
- };
-
- this.getBelongingLayerNumber=function(idname){
- for(var n in this.layer_list){
- var members=this.layer_list[n].member;
- for(var m in members){
- if(members[m]==idname){
- return n;
- }
- }
- }
- return;
- };
-
- this.isVisble=function(no){
- var layer=this.layer_list[no];
- if(layer){
- return layer.isVisible();
- }else{
- return false;
- }
- };
-
- this.isCommonLayer=function(layerno){
- if(this.currentLayer[layerno]){
- return this.currentLayer[layerno].required;
- }
- return false;
- };
-
- this.timer_id; // mw.1216
- this.delay_time=0; // mw.1216
- this.select_sub=function(no){ // mw.1216
- clearTimeout(this.timer_id);
- for(var i in this.layer_list) {
- var layer=this.layer_list[i];
- if(!layer.required){
- if(layer.layerno!=no){
- layer.Visible(false);
- }
- }
- }
- };
-
- this.select=function(no){ // show required layer & specified layer
- for(var i in this.layer_list) { // mw.1216
- var layer=this.layer_list[i];
- if(!layer.required){
- if(layer.layerno==no){
- layer.Visible(true);
- this.currentLayer=no;
- XWEB.Html.setFocus();
- }
- }
- }
-
- clearTimeout(this.timer_id); // mw.1216
- this.timer_id=setTimeout("XWEB.LAYERMANAGER.select_sub("+no+");",XWEB.LAYERMANAGER.delay_time);
-
- var layers=XWEB.Html.layerorder;
- var idnames=XWEB.Navigator.idnames;
- if(layers==undefined){
- ;
- } else if(no==layers[0]){ // top.
- XWEB.Navigator.setButtonDisabled(idnames['first_page'],true);
- XWEB.Navigator.setButtonDisabled(idnames['prev_page'],true);
- XWEB.Navigator.setButtonDisabled(idnames['next_page'],false);
- XWEB.Navigator.setButtonDisabled(idnames['last_page'],false);
- } else if(no==layers[layers.length-1]){ // last
- XWEB.Navigator.setButtonDisabled(idnames['first_page'],false);
- XWEB.Navigator.setButtonDisabled(idnames['prev_page'],false);
- XWEB.Navigator.setButtonDisabled(idnames['next_page'],true);
- XWEB.Navigator.setButtonDisabled(idnames['last_page'],true);
- } else {
- XWEB.Navigator.setButtonDisabled(idnames['first_page'],false);
- XWEB.Navigator.setButtonDisabled(idnames['prev_page'],false);
- XWEB.Navigator.setButtonDisabled(idnames['next_page'],false);
- XWEB.Navigator.setButtonDisabled(idnames['last_page'],false);
- }
- };
-
- this.layerCount=function(){
- return this.layer_list.length;
- };
- this.getPageCount=function(){
- return XWEB.Html.layerorder.length;
- };
-
- this.orderNumber=function(pgno){
- var lay_no=Number(pgno)-1;
- var layers=XWEB.Html.layerorder;
- if(this.currentLayer!=undefined && layers!=undefined){
- if(layers.length>0){
- var cnt=0;
- for(var n in layers){
- if(cnt==lay_no){
- this.select(layers[n]);
- break;
- }
- cnt++;
- }
- }
- }
- };
-
- /**
- * show first layer.
- */
- this.firstLayer=function(){
- var wk_cupg=XWEB.Html.cur_tab;
- XWEB.Html.tabSelectFirst();
- if (wk_cupg!=XWEB.Html.cur_tab){
- XWEB.Html.PageView.OnChangeTabPage(XWEB.Html.cur_tab); // T-000147
- }
- };
-
- /**
- * show last layer.
- */
- this.lastLayer=function(){
- var wk_cupg=XWEB.Html.cur_tab;
- XWEB.Html.tabSelectLast();
- if (wk_cupg!=XWEB.Html.cur_tab){
- XWEB.Html.PageView.OnChangeTabPage(XWEB.Html.cur_tab); // T-000147
- }
- };
-
- this.prevLayer=function(){
- var wk_cupg=XWEB.Html.cur_tab;
- XWEB.Html.tabSelectPrev();
- if (wk_cupg!=XWEB.Html.cur_tab){
- XWEB.Html.PageView.OnChangeTabPage(XWEB.Html.cur_tab); // T-000147
- }
- return true;
- };
-
- this.nextLayer=function(){
- var wk_cupg=XWEB.Html.cur_tab;
- XWEB.Html.tabSelectNext();
- if (wk_cupg!=XWEB.Html.cur_tab){
- XWEB.Html.PageView.OnChangeTabPage(XWEB.Html.cur_tab); // T-000147
- }
- return true;
- };
-
- return this;
-};
-
-//----- required fields.
-XWEB.addRequiredField=function(group_id,fields,keys,rownum){
- XWEB.Html.xwf_required_list.push(new _xwf_required_field(group_id,fields,keys,rownum));
-};
-
-//-----
-XWEB.BetweenDate=function(mindate,maxdate){
- this.mindate=mindate;
- this.maxdate=maxdate;
- return this;
-};
-XWEB.addBetweenDate=function(idname,mindate,maxdate){
- XWEB.Html.xwf_date_range[idname]=new XWEB.BetweenDate(mindate,maxdate);
-};
-
-XWEB.isBetweenDate=function(o,msg){
- if(o.value.length==0){
- return true;
- }
-
- var mindate=XWEB.Html.xwf_date_range[o.id].mindate;
- var maxdate=XWEB.Html.xwf_date_range[o.id].maxdate;
-
- var dstr=getDateString(o.value,"Y-M-D".replace("-","/")) // yyyy/mm/dd
- if(dstr.length==0){
- o.focus();
- return true;
- }
- var dmin=mindate.substring(0,4)+"/"+mindate.substring(4,6)+"/"+mindate.substring(6);
- var dmax=maxdate.substring(0,4)+"/"+maxdate.substring(4,6)+"/"+maxdate.substring(6);
-
- try{
- var dval=new Date(dstr);
- var dmin=new Date(dmin);
- var dmax=new Date(dmax);
- if(mindate=="00000000" && dval.getTime()<=dmax.getTime() ) {
- return true;
- }else if(maxdate=="00000000" && dmin.getTime()<=dval.getTime()) {
- return true;
- }else if(dmin.getTime()<=dval.getTime() && dval.getTime()<=dmax.getTime() ) {
- return true;
- }
- }catch(e){
- alert(e.discription);
- }
-
- o.focus();
-
- if(msg){
- alert(msg);
- }else {
- var fmt_min=dmin.getFullYear()+"/"+(dmin.getMonth()+1)+"/"+dmin.getDate();
- var fmt_max=dmax.getFullYear()+"/"+(dmax.getMonth()+1)+"/"+dmax.getDate();
- var caldiv=document.getElementById(XWEB.Calendar.idname);
- if(caldiv){
- if(caldiv.style.visibility!="hidden"){
- o.value="";
- }
- }
- alert(I18N.t("XWFRPC-W0002", fmt_min, fmt_max)); // fmt_min+'`'+fmt_max+'̊ԂŎw肵ĉ');
- }
-
- return false;
-};
-
-//----- popup window attribute.
-XWEB.PopupWinAttribute=function(ro_cal,ro_mwin){
- this.ro_cal=ro_cal;
- this.ro_mwin=ro_mwin;
- return this;
-};
-XWEB.addPopupWinAttr=function(idname,ro_cal,ro_mwin){
- XWEB.Html.xwf_popup_win_attr[idname]=new XWEB.PopupWinAttribute(ro_cal,ro_mwin);
-};
-XWEB.isRoPopCalc=function(idname){
- var attr=XWEB.Html.xwf_popup_win_attr[idname];
- if(attr){
- return attr.ro_cal;
- }else{
- return true;
- }
-};
-XWEB.isRoPopMwin=function(idname){
- var attr=XWEB.Html.xwf_popup_win_attr[idname];
- if(attr){
- return attr.ro_mwin;
- }else{
- return true;
- }
-};
-
-//----- calender set objects.
-XWEB.defDateFormat=function(idname,fmt){
- myform_dformat[idname]=fmt;
-};
-XWEB.defDateTimeFormat=XWEB.DATETIME.FORMAT.defFormat; // Redefine.
-
-XWEB.setDateFormat=function(o){
- if(o.value.length==0){
- return;
- }
- var dval=myform_dformat[o.id];
- if(dval){
- var n=o.value-0;
- switch(dval){
- case 'yyyy':
- if(n<1900){o.value=XWEB.Date.get().getFullYear();}
- else{o.value=n;}
- break;
- case 'yy':
- case 'mm':
- case 'dd':
- if(n<10){o.value="0"+n;}
- break;
- }
- }
-}
-//_xwSetDateFormat=XWEB.setDateFormat;
-
-XWEB.addCalenderSet=function(yy,mm,dd,ww){
- var yyobj =XWEB.getObject(yy);
- var mmobj =XWEB.getObject(mm);
- var ddobj =XWEB.getObject(dd);
- var weekobj=XWEB.getObject(ww);
- if (yyobj!=null && yyobj.type != XWEB.FieldType.Year){ // T-000857
- alert(I18N.t("XWFRPC-E0001",yy)); //Error: tZbgŐɎw肳ĂtB[h[%1$s]͐tB[hł͂܂
- return false;
- }
- if (mmobj!=null && mmobj.type != XWEB.FieldType.Month){ // T-000857
- alert(I18N.t("XWFRPC-E0002",mm)); //Error: tZbgŌɎw肳ĂtB[h[%1$s]͌tB[hł͂܂
- return false;
- }
- if (ddobj!=null && ddobj.type != XWEB.FieldType.Day){ // T-000857
- alert(I18N.t("XWFRPC-E0003",dd)); //Error: tZbgœɎw肳ĂtB[h[%1$s]͓tB[hł͂܂
- return false;
- }
- if (weekobj!=null && weekobj.type != XWEB.FieldType.WeekDay){ // T-000857
- alert(I18N.t("XWFRPC-E0004",ww)); //Error: tZbgŗjɎw肳ĂtB[h[%1$s]͗jtB[hł͂܂
- return false;
- }
- XWEB.Html.xwf_calender_set[ww]=eval("new Array('"+yy+"','"+mm+"','"+dd+"','"+ww+"');");
-};
-
-/**
- * jtB[h̊֘AɊÂAjĐݒ肷B
- */
-XWEB.refreshCalenderSet=function(){
- for(var i in XWEB.Html.xwf_field_type){
- var fld=XWEB.Html.xwf_field_type[i];
- if(fld.type==XWEB.FieldType.WeekDay){
- XWEB.refreshCalenderSetById(fld.id);
- }
- }
-};
-XWEB.refreshCalenderSetById=function(week_fld){
- var cal_set=XWEB.Html.xwf_calender_set[week_fld];
- if(cal_set){
- XWEB.setCalender(cal_set[0],cal_set[1],cal_set[2],cal_set[3]);
- };
-};
-XWEB.getCalElement=function(idname){
- if(idname==null) {
- return null;
- }else{
- var obj=XWEB.getElementById(idname);
- return obj ? obj : null;
- }
-};
-
-XWEB.isFmtMMDD=function(fmt){
- var retval=false;
- switch(fmt){
- case "M/D":
- case "m/d":
- case "MD":
- case "md":
- retval=true;
- break;
- }
- return retval;
-};
-XWEB.isLeapDayMMDD=function(s){
- var retval=false;
- switch(s){
- case "2/29":
- case "02/29":
- case "229":
- case "0229":
- retval=true;
- break;
- }
- return retval;
-};
-XWEB.getLeapDayMMDDString=function(s,fmt){
- var retval=s;
- switch(fmt){
- case "M/D": retval="02/29"; break;
- case "m/d": retval="2/29"; break;
- case "MD": retval="0229"; break;
- case "md": retval="229"; break;
- }
- return retval;
-};
-XWEB.getNearLeepYearDate=function(){
- var dd=XWEB.Date.get();
- dd.setMonth(2);
- dd.setDate(0);
- for(var n=0;dd.getDate()!=29&&n<10;++n){
- dd.setFullYear(dd.getFullYear()+1);
- dd.setMonth(2);
- dd.setDate(0);
- }
- return dd;
-};
-
-XWEB.isRwField=function(idname){
- var fld=XWEB.getObject(idname);
- if(fld){
- return !fld.isReadOnly();
- }else{
- return false;
- }
-};
-
-XWEB.calendarOpen=function(idname,yymmdd_id,yy_id, mm_id, dd_id,week_id,opt,fmt){
- if(isEditMode()==false||
- XWEB.User.Enabled.isCalenderEnabled()==false||
- XWEB.User.Enabled.isCalenderEnabledById(idname)==false){
- return;
- }
-
- var obj =XWEB.getCalElement(idname);
- var yymmdd =XWEB.getCalElement(yymmdd_id);
- var yyobj =XWEB.getCalElement(yy_id);
- var mmobj =XWEB.getCalElement(mm_id);
- var ddobj =XWEB.getCalElement(dd_id);
- var weekobj=XWEB.getCalElement(week_id);
-
- setStartDate(null);
- setEndDate(null);
-
- if(obj){ // T-001110
- XWEB.Mirror.onChangeCopy(obj);
- }
-
- XWEB.setDateFormat(obj); // T-002449
- calendarOpen(obj,yymmdd,yyobj,mmobj,ddobj,weekobj,opt,fmt);
-};
-
-XWEB.setCalender=function(yy_id,mm_id,dd_id,week_id){
-// var yyobj =XWEB.getCalElement(yy_id);
- var mmobj =XWEB.getCalElement(mm_id);
- var ddobj =XWEB.getCalElement(dd_id);
- var weekobj=XWEB.getCalElement(week_id);
-
- var mmTB=false,ddTB=false,wwTB=false;
- if(mmobj==undefined && mm_id!=null){
- mmTB=XWEB.setCalender.isOnTable(mm_id);
- }
- if(ddobj==undefined && dd_id!=null){
- ddTB=XWEB.setCalender.isOnTable(dd_id);
- }
- if(weekobj==undefined && week_id!=null){
- wwTB=XWEB.setCalender.isOnTable(week_id);
- }
-
- var retval=true;
- if(mmTB==false && ddTB==false && wwTB==false){
- retval=XWEB.setCalender.Update(yy_id,mm_id,dd_id,week_id);
- }else{
- var base_date=1;
- if(ddTB==true){
- var dd_fld0=XWEB.getField(dd_id+"_0");
- base_date=parseInt(dd_fld0.init_value);
- }
- var wk_mm=mm_id;
- var wk_dd=dd_id;
- var wk_ww=week_id;
- var maxrows=XWEB.setCalender.getMaxRows();
- for(var rowno=0;rowno 0)) {
- yymmdd.setFullYear(yyobj.getValue());
- chk++;
- yy_val=true;
- }
- if ((mmobj != null) && (mmobj.getValue().length > 0)) {
- yymmdd.setMonth(mmobj.getValue()-1);
- chk++;
- mm_val=true;
- }
- if ((ddobj != null) && (ddobj.getValue().length > 0)) {
- yymmdd.setDate(ddobj.getValue());
- var date_error=false;
- if(yy_val==true&&mm_val==true){ // "yy-mm-dd"
- var yy=yymmdd.getFullYear();
- var mm=yymmdd.getMonth()+1;
- var dd=yymmdd.getDate();
-
- if(yy!=yyobj.getValue()){date_error=true;}
- if(mm!=mmobj.getValue()){date_error=true;}
- if(dd!=ddobj.getValue()){
- date_error=true;
- switch(parseInt(mmobj.getValue())){
- case 2:
- var wk_yymmdd=new Date(yy,1,29); // [
- ddobj.setValue(wk_yymmdd.getMonth()==1?29:28);
- break;
- case 4: case 6: case 9: case 11:
- ddobj.setValue(30);
- break;
- }
- }
-
- }else if(yy_val==false&&mm_val==true){ // "mm-dd"
- var mm=mmobj.getValue();
- var dd=ddobj.getValue();
- switch(mm){
- case 2:
- if(dd>29){
- date_error=true;
- dd.setValue(29);
- }
- break;
- case 4: case 6: case 9: case 11: //Deji.2758
- if(dd>30){
- date_error=true;
- dd.setValue(30);
- }
- break;
- }
- }
- if(date_error==true){
- alert(I18N.t("XWFCMN-W0007")); // t̎wɌ肪܂
- ddobj.setFocus();
- return false;
- }
- chk++;
- }
-
- // --- set day of the week
- if (weekobj != null){
- if(chk == 3) {
- weekobj.setValue(yymmdd.getDay())
- }
- if(yyobj!=null&&mmobj!=null&&ddobj!=null){
- if(yyobj.getValue().length==0&&mmobj.getValue().length==0&&ddobj.getValue().length==0){
- weekobj.setValue("");
- }
- if(yyobj.getValue().length==0||mmobj.getValue().length==0||ddobj.getValue().length==0){
- weekobj.setValue("");
- }
- }
- else if(mmobj!=null&&ddobj!=null&&mm!=undefined&&dd!=undefined){
- ; // MM/DD -- jςꍇ́AYearsɂ邱
- }
- }
- return true;
-};
-
-//---- window function.
-XWEB.window=new function(){
- this.WINDOW_FULLSCREEN=0; //starts by the maximum size.
- this.WINDOW_NORMAL =1; //starts by the size usually.
-
- // Window arrangement when starting
- this.WINDOW_CENTER =10;
- this.WINDOW_UPPER_LEFT =11;
- this.WINDOW_LOWER_LEFT =12;
- this.WINDOW_UPPER_RIGHT=13;
- this.WINDOW_LOWER_RIGHT=14;
-
- this.WINDOW_CENTER_LEFT=15;
- this.WINDOW_CENTER_RIGHT=16;
- this.WINDOW_UPPER_CENTER=17;
- this.WINDOW_LOWER_CENTER=18;
-
- this.resize=false; // true: fit document.body, false: Size of fixed form
-
- this.moveTo=function(x,y,target){
- if( isNaN(x) || isNaN(y) ) { return; }
- try{
- if(typeof(target)=='undefined'){
- window.moveTo(x,y);
- }else{
- var hnd=XWEB.getWindowHandle(target);
- if(hnd){ hnd.moveTo(x,y); }
- }
- }catch(ex){
-// XWEB.Exec.Exception(ex,"move window position");
- }
- };
-
- this.resizeTo=function(w,h,target){
- if( isNaN(w) || isNaN(h) ) { return; }
- var n_width = Number(w);
- var n_hight = Number(h);
- n_width = n_width < 100 ? 100 : n_width;
- n_hight = n_hight < 100 ? 100 : n_hight;
-
- if(typeof(target)=='undefined'){
- top.window.resizeTo(n_width,n_hight);
- }else{
- var hnd=XWEB.getWindowHandle(target);
- if(hnd) { hnd.resizeTo(n_width,n_hight); }
- }
- };
-
- this.resizeToForm=function(target){
- var n_width = XWEB.Form.width+XWEB.Form.left*2;
- var n_hight = XWEB.Form.height+XWEB.Form.top*2;
- if(XWEB.bIE){
- n_width+=24;
- n_hight+=128+24;
- }else{
- n_width+=(outerWidth-innerWidth);
- n_hight+=(outerHeight-innerHeight);
- }
-
- if(XWEB.Navigator.name!=undefined){
- if(XWEB.Navigator.name.length>0){
- var navi_o=document.getElementById(XWEB.Navigator.name);
- n_width += (parseInt(navi_o.style.width,10) + XWEB.Form.left);
- }
- }
-
- n_width = n_width < 100 ? 100 : n_width;
- n_hight = n_hight < 100 ? 100 : n_hight;
-
- if(typeof(target)=='undefined'){
- top.window.resizeTo(n_width,n_hight);
- }else{
- var hnd=XWEB.getWindowHandle(target);
- if(hnd) { hnd.resizeTo(n_width,n_hight); }
- }
- XWEB.window.resizeForm();
- };
-
- this.resizeForm=function(){
- if(XWEB.Form.formResize==undefined){ return; }
- if(XWEB.Form.formResize==false){ return; };
-
- var width =XWEB.getWindowWidth()-(XWEB.Form.left*2);
- var height=XWEB.getWindowHeight()-(XWEB.Form.top*2);
-
- if(XWEB.Navigator.name!=undefined){
- if(XWEB.Navigator.name.length>0){
- var navi_o=document.getElementById(XWEB.Navigator.name);
- width -= (parseInt(navi_o.style.width,10) + XWEB.Form.left);
- if(width>=XWEB.Form.width){
- navi_o.style.left=(width+(XWEB.Form.left*2))+"px";
- }
- }
- }
-
- for(var no=1;no<255;++no){
- var pg=document.getElementById('TSpg'+no);
- if(pg==undefined)return;
- var b1=document.getElementById('TSb1'+no);
- var b2=document.getElementById('TSb2'+no);
- var b3=document.getElementById('TSb3'+no);
-
- if(width>=XWEB.Form.width){
- pg.style.width=(width+1)+"px";
- b1.style.width=(width+3)+"px";
- b2.style.width=(2)+"px";
- b3.style.width=(width+3)+"px";//4;
- b2.style.left=(width+XWEB.Form.left+2)+"px";
- }
-
- if(height>=XWEB.Form.height){
- pg.style.height=(height+1)+"px";
- b1.style.height=(height+3)+"px";
- b2.style.height=(height+3)+"px";//4;
- b3.style.height=(2)+"px";
- b3.style.top=(height+XWEB.Form.top+2)+"px";
- }
- }
- };
-
- this.fullScreen=function(target){
- var hnd;
- if(typeof(target)=='undefined'){
- window.moveTo(0,0);
- hnd=top.window;
- }else{
- hnd=XWEB.getWindowHandle(target);
- if(hnd){ hnd.moveTo(0,0); }
- }
-
- if(hnd){
- if (XWEB.bIE) { // IE
- hnd.resizeTo(screen.availWidth,screen.availHeight);
- } else if (document.layers||document.getElementById) { // FireFox.
- if (hnd.outerHeight < screen.availHeight ||
- hnd.outerWidth < screen.availWidth) {
- hnd.outerHeight = screen.availHeight;
- hnd.outerWidth = screen.availWidth;
- }
- }
- }
- };
-
- this.locationTo=function(pos_str){
- switch(pos_str){
- case 'lu': XWEB.window.location(XWEB.window.WINDOW_UPPER_LEFT); break;
- case 'ld': XWEB.window.location(XWEB.window.WINDOW_LOWER_LEFT); break;
- case 'ru': XWEB.window.location(XWEB.window.WINDOW_UPPER_RIGHT); break;
- case 'rd': XWEB.window.location(XWEB.window.WINDOW_LOWER_RIGHT); break;
- case 'center':XWEB.window.location(XWEB.window.WINDOW_CENTER); break;
- case 'lc': XWEB.window.location(XWEB.window.WINDOW_CENTER_LEFT); break;
- case 'rc': XWEB.window.location(XWEB.window.WINDOW_CENTER_RIGHT); break;
- case 'cu': XWEB.window.location(XWEB.window.WINDOW_UPPER_CENTER); break;
- case 'cd': XWEB.window.location(XWEB.window.WINDOW_LOWER_CENTER); break;
- break;
- case 'position': XWEB.window.moveTo(XWEB.Form.bzleft,XWEB.Form.bztop); break;
- case 'normal':
- default:
- break;
- }
- };
-
- // set window location.
- // 1.WINDOW_UPPER_LEFT
- // 2.WINDOW_LOWER_LEFT
- // 3.WINDOW_UPPER_RIGHT
- // 4.WINDOW_LOWER_RIGHT
- // 5.WINDOW_CENTER
- this.location=function(position){
- var x=0;
- var y=0;
- switch(position){
- case XWEB.window.WINDOW_UPPER_LEFT: // left up corner.
- break;
- case XWEB.window.WINDOW_LOWER_LEFT: // left down corner.
- y=screen.availHeight-XWEB.getWindowTop();
- break;
- case XWEB.window.WINDOW_UPPER_RIGHT: // right up corner.
- x=screen.width-XWEB.getWindowLeft();
- break;
- case XWEB.window.WINDOW_LOWER_RIGHT: // right down corner.
- x=screen.width-XWEB.getWindowLeft();
- y=screen.availHeight-XWEB.getWindowTop();
- break;
- case XWEB.window.WINDOW_CENTER: // center.
- if(XWEB.bIE){
- out_w=document.body.clientWidth+24;
- out_h=document.body.clientHeight+128;
- }else{
- out_w=outerWidth;
- out_h=outerHeight;
- }
- x=(screen.availWidth-out_w)/2;
- y=(screen.availHeight-out_h)/2;
- break;
- case XWEB.window.WINDOW_CENTER_LEFT:
- case XWEB.window.WINDOW_CENTER_RIGHT:
- if(position==XWEB.window.WINDOW_CENTER_RIGHT){
- x=screen.width-XWEB.getWindowLeft();
- }
- if(XWEB.bIE){
- out_h=document.body.clientHeight+128;
- }else{
- out_h=outerHeight;
- }
- y=(screen.availHeight-out_h)/2;
- break;
- case XWEB.window.WINDOW_UPPER_CENTER:
- case XWEB.window.WINDOW_LOWER_CENTER:
- if(XWEB.bIE){
- out_w=document.body.clientWidth+24;
- }else{
- out_w=outerWidth;
- }
- x=(screen.availWidth-out_w)/2;
- if(position==XWEB.window.WINDOW_LOWER_CENTER){
- y=screen.availHeight-XWEB.getWindowTop();
- }
- break;
- }
- XWEB.window.moveTo(x,y);
- };
-
- this.open=function(waction,wtarget,wstyle,bhistory){
- var whnd;
- if(wtarget){
- if(wstyle){
- hnd=window.open(waction,waction,wstyle);
- }else{
- hnd=window.open(waction,wtarget);
- }
- XWEB.addWindowHandle(hnd,wtarget);
- }else{
- hnd=window.open(waction);
- }
- return hnd;
- };
-
- this.getHandle=function(win_name){
- return XWEB.getWindowHandle(win_name);
- }
-
- this.isWindowOpen=function(win_name){
- return XWEB.isWindowOpen(win_name);
- }
-
- this.close=function(target){
- if(typeof(target)=='undefined'){
- window.top.close();
- }else{
- var hnd=XWEB.getWindowHandle(target);
- if(hnd){ hnd.close(); }
- }
- };
-
- return this;
-};
-
-XWEB.addWindowHandle=function(win_handle,target){
- if(win_handle&&target){
- XWEB.Html.xwf_window_handles[target]=win_handle;
- }
-};
-XWEB.getWindowHandle=function(target){
- if(target){
- var hnd=XWEB.Html.xwf_window_handles[target];
- if(hnd){
- if(hnd.closed==false){
- return hnd;
- }
- }
- }
- return undefined;
-};
-XWEB.isWindowOpen=function(target){
- if(target){
- var hnd=XWEB.Html.xwf_window_handles[target];
- if(hnd){
- return hnd.closed?false:true;
- }
- }
- return false;
-};
-
-//--- check, form comminucation parameter
-XWEB.isFormComminucation=function(){
- if(typeof(xweb_form_comminucation)=='undefined'){
- return false;
- } else {
- return xweb_form_comminucation;
- }
-};
-
-//--- send form data to java session.
-XWEB.getFormData=function(){
- if(XWEB.isFormComminucation()==false){
- return;
- }
-
- var clear_windows=new Array();
- var new_handles=new Array();
- for(var n in XWEB.Html.xwf_window_handles){
- var hnd=XWEB.Html.xwf_window_handles[n];
- if(hnd.closed){
- clear_windows[clear_windows.length]=n;
- }else{
- hnd.XWEB.sendFormData();
- new_handles[n]=hnd;
- }
- }
- if(clear_windows.length>0){
- XWEB.removeFormData(clear_windows);
- }
- XWEB.Html.xwf_window_handles=new_handles; // reset open window handle.
-};
-
-//--- recive form data from java session.
-XWEB.setFormData=function(){
- if(XWEB.isFormComminucation()==false){
- return;
- }
-
- for(var n in XWEB.Html.xwf_window_handles){
- var hnd=XWEB.Html.xwf_window_handles[n];
- if(hnd.closed==false){
- if(hnd.XWEB){
- hnd.XWEB.reciveFormData();
- }
- }
- }
-};
-
-//--- remove form data, java session.
-XWEB.removeFormData=function(clear_windows){
- XWEB.sendValidator('datasend',XWEB.Form.id,null,null,clear_windows,-1);
-};
-
-//--- send my window data. (sync mode only.)
-XWEB.sendFormData=function(){
- XWEB.sendValidator('datasend',XWEB.Form.id,window.name,null,new Array(),-1);
-};
-//--- revice my window data (sync mode only)
-XWEB.reciveFormData=function(){
- XWEB.sendValidator('datarecive',XWEB.Form.id,window.name,null,new Array(),-1);
-};
-
-//--- Form Tab Order.
-XWEB.TabOrder=function(idname,items,maxrows){
- this.id=idname; // null: top level, id:group-id
- this.items=items; // field array,
- this.maxrows=maxrows; // group maxrows
- this.toString=function(){
- return ("XWEB.TabOrder:"+this.id+": "+this.items+": "+this.maxrows);
- };
-};
-
-XWEB.TabOrder.addOrderList=function(order_list){
- if(XWEB.Html.pg_orderlist==undefined){
- XWEB.Html.pg_orderlist=new Array();
- XWEB.Html.pg_tabindex=new Array();
- }
-
- var cu_pno=typeof(TScp)=='undefined'?0:(TScp-1);
-
- if(XWEB.Html.pg_orderlist[cu_pno]==undefined){
- XWEB.Html.pg_orderlist[cu_pno]=order_list;
- }else{
- XWEB.Html.pg_orderlist[cu_pno].items=XWEB.Html.pg_orderlist[cu_pno].items.concat(order_list.items);
- }
- if(cu_pno==0){
- XWEB.Html.taborder=XWEB.Html.pg_orderlist[cu_pno];
- }
-};
-
-//-- check id, (convert inner table field, not convert out table field)
-XWEB.TabOrder.getRealFieldId=function(id){
- for(var n in XWEB.Html.pg_orderlist){
- var list=XWEB.TabOrder.getRealFieldInPage(id,XWEB.Html.pg_orderlist[n]);
- if(list!=null){
- return list;
- }
- }
- return new Array(id);
-};
-
-XWEB.TabOrder.getRealFieldInPage=function(id,page_list){
- for(var n in page_list.items){
- var idname=page_list.items[n];
- if(typeof(idname)!='string'){
- var ls=XWEB.TabOrder.getRealFieldInPage(id,idname);
- if(ls!=null){
- var maxrows=idname.maxrows;
- if(maxrows<0){
- }else{
- var ret_list=new Array();
- for(var row=0;row=0){
- next_item+='_'+cur_rowno;
- }
- }
- if(cur_rowno>=0){
- cur_item+='_'+cur_rowno;
- }
-
- if(typeof(cur_item)=='string'){
- var obj=XWEB.getObject(cur_item);
- if(typeof(obj)=='undefined'){
- alert('undefined: ' + cur_item);
- }else{
- obj.back=back_item;
- obj.next=next_item;
- }
- back_item=cur_item;
- }else{
- var save_n=n;
- var tbl=XWEB.getObject(cur_item.id);
- var maxrow=cur_item.maxrows;
-
- // reset table counter.
- XWEB.TABLE.setMaxrow(tbl.id,maxrow);
-
- for(var rowno=0;rownocaption
- if(_obj.tagName=='A') {
- var o=_obj;
- }else if(_obj.parentNode){
- var o=_obj.parentNode.nextSibling;
- }else{
- return;
- }
- if(o){
- if(isover){
- o.style.color='blue';
- o.style.textDecoration='underline';
- }else{
- o.style.color=forecolor;
- o.style.textDecoration='none';
- }
- }
-};
-
-XWEB.TreeMenu.SubTree=function(idname,root_obj,items,nodename,level,forecolor){
- for(var n in items){
- var item=items[n];
- var o_div=document.createElement('div');
- o_div.style.cursor='auto';
- var a_href=document.createElement('a');
- o_div.appendChild(a_href);
- o_div.style.paddingLeft=(level*10);
- var cur_nodename=nodename+item.id;
- o_div.currentNodeName=cur_nodename;
-
- if(item.childNode){
- var func_open="XWEB.TreeMenu.NodeOpen(this,'"+cur_nodename+"','"+idname+"',true,"+item.onclick + "," + item.server + ")";
- var func_close="XWEB.TreeMenu.NodeOpen(this,'"+cur_nodename+"','"+idname+"',false,"+item.onclick + "," + item.server + ")";
- var o_img=document.createElement('img');
- if(item.childOpen){
- o_img.src=XWEB.Rpc.contextpath + XWEB.TreeMenu.TreeOpen;
- }else{
- o_img.src=XWEB.Rpc.contextpath + XWEB.TreeMenu.TreeClose;
- }
- o_img.onmouseover=new Function("XWEB.TreeMenu.NodeOver(this,true,true,'"+forecolor+"');");
- o_img.onmouseout=new Function("XWEB.TreeMenu.NodeOver(this,true,false,'"+forecolor+"');");
- a_href.appendChild(o_img);
- a_href.onclick=new Function("XWEB.TreeMenu.Ok(this,true);");
- a_href.title=item.tooltip?item.tooltip:"";
- a_href.onNodeOpen=new Function(func_open);
- a_href.onNodeClose=new Function(func_close);
-
- var a_href=document.createElement('a');
- a_href.style.cursor='default';
- a_href.style.color=forecolor;
- XWEB.setDivText(a_href,item.caption);
- a_href.onmouseover=new Function("XWEB.TreeMenu.NodeOver(this,true,true,'"+forecolor+"');");
- a_href.onmouseout=new Function("XWEB.TreeMenu.NodeOver(this,true,false,'"+forecolor+"');");
- a_href.onclick=new Function("XWEB.TreeMenu.Ok(this,false);");
- a_href.title=item.tooltip?item.tooltip:"";
- a_href.onNodeOpen=new Function(func_open);
- a_href.onNodeClose=new Function(func_close);
- o_div.appendChild(a_href);
-
- var sub_div=document.createElement('div');
- sub_div.style.cursor='auto';
- sub_div.style.display=item.childOpen?'block':'none';
- o_div.appendChild(sub_div);
- XWEB.TreeMenu.SubTree(idname,sub_div,item.childNode,cur_nodename+"/",level+1,forecolor);
- }else{
- var event_onclick="";
- var event_ondblclick="";
- if(item.url){
- event_onclick+="window.open('"+item.url+"','" + item.target + "');";
- event_onclick+="XWEB.TreeMenu.LeafClick(this,'"+cur_nodename+"','"+idname+"',true,"+item.onclick + "," + item.server + ")";
- }else{
- event_onclick+="XWEB.TreeMenu.LeafClick(this,'"+cur_nodename+"','"+idname+"',false,"+item.onclick + "," + item.server + ")";
- }
-
- var o_img=document.createElement('img');
- o_img.src=XWEB.Rpc.contextpath + XWEB.TreeMenu.TreeItem;
- o_img.onmouseover=new Function("XWEB.TreeMenu.NodeOver(this,false,true,'"+forecolor+"')");
- o_img.onmouseout=new Function("XWEB.TreeMenu.NodeOver(this,false,false,'"+forecolor+"')");
- a_href.appendChild(o_img);
- a_href.onclick=new Function(event_onclick);
- a_href.ondblclick=new Function(event_ondblclick);
- a_href.title=item.tooltip?item.tooltip:"";
-
- var a_href=document.createElement('a');
- a_href.style.cursor='default';
- a_href.style.color=forecolor;
- XWEB.setDivText(a_href,item.caption);
- a_href.onmouseover=new Function("XWEB.TreeMenu.NodeOver(this,false,true,'"+forecolor+"')");
- a_href.onmouseout=new Function("XWEB.TreeMenu.NodeOver(this,false,false,'"+forecolor+"')");
- a_href.onclick=new Function(event_onclick);
- a_href.ondblclick=new Function(event_ondblclick);
- a_href.title=item.tooltip?item.tooltip:"";
- o_div.appendChild(a_href);
- }
- root_obj.appendChild(o_div);
- }
-
- root_obj.style.borderWidth="0px";
-};
-
-XWEB.TreeMenu.ReconfigTreeData=function(idname,nodes){
- var root=XWEB.TreeMenu.MakeTreeData(nodes);
- XWEB.TreeMenu.Create(idname,root);
-};
-
-XWEB.TreeMenu.MakeTreeData=function(nodes){
- var list=new Array();
- for(var n in nodes){
- var node=nodes[n];
- switch(node.type){
- case 'node':
- if(node.child==undefined){
- var childs=new Array();
- }else{
- var childs=XWEB.TreeMenu.MakeTreeData(node.child.node);
- }
- list.push(new XWEB.TreeNode.Item(node.id,node.caption,
- childs,eval(node.open),
- null,null,node.tooltip,false,false));
- break;
- case 'leaf':
- list.push(new XWEB.TreeNode.Item(node.id,node.caption,
- null,false,
- null,null,node.tooltip,false,true));
- break;
- case 'url':
- list.push(new XWEB.TreeNode.Item(node.id,node.caption,
- null,false,
- node.url,node.target,node.tooltip,false,false));
- break;
- case 'nop':
- break;
- }
- }
- return list;
-};
-
-//--- popup menu.
-XWEB.PopupMenu=function(){};
-XWEB.PopupMenu.idname="popupId";
-XWEB.PopupMenu.bordercolor="#909090";//"silver";//"#C0C0C0"
-XWEB.PopupMenu.backgroundColor="white";//"#FFFFFF"
-XWEB.PopupMenu.fontColor="black"; //"#000000"
-XWEB.PopupMenu.rolloverBackgroundColor="silver";//"#C0C0C0"
-XWEB.PopupMenu.rolloverFontColor="black"; //"#000000"
-XWEB.PopupMenu.width=120;
-
-XWEB.PopupMenu.Item=function(idname,caption,onclick,target){
- this.id=idname;
- this.caption=caption;
- this.onclick=onclick;
- this.target=target;
- this.tooltip;
- return this;
-};
-
-XWEB.PopupMenu.Hide=function(){
- var popup=XWEB.getElementById(XWEB.PopupMenu.idname);
- if(popup){
- popup.style.visibility="hidden";
- }
-};
-XWEB.PopupMenu.Visible=function(event){
- var popup=XWEB.getElementById(XWEB.PopupMenu.idname);
- if(popup){
- if(XWEB.bIE){
- popup.style.top=(document.body.scrollTop+window.event.clientY)+"px";
- popup.style.left=(document.body.scrollLeft+window.event.clientX)+"px";
- }else if(document.getElementById){
- popup.style.top=(event.pageY)+"px";
- popup.style.left=(event.pageX)+"px";
- }
-//window.status='(W,H)=('+popup.style.width+','+popup.style.height+')';
- popup.style.visibility='visible';
- popup.style.zIndex=XWEB.Const.PopupZIndex;
- return false;
- }
-};
-XWEB.PopupMenu.setColor=function(obj,flg){
- if(flg){
- obj.style.backgroundColor=XWEB.PopupMenu.rolloverBackgroundColor;
- obj.style.color=XWEB.PopupMenu.rolloverFontColor;
- }else{
- obj.style.backgroundColor=XWEB.PopupMenu.backgroundColor;
- obj.style.color=XWEB.PopupMenu.fontColor;
- }
-};
-
-XWEB.PopupMenu.Create=function(menu_items){
- var o_tbl=document.createElement('table');
- o_tbl.border=1;
- o_tbl.cellSpacing=0;
- o_tbl.cellPadding=3;
- o_tbl.valign="center";
- o_tbl.borderColor=XWEB.PopupMenu.bordercolor;
- o_tbl.bgColor=XWEB.PopupMenu.backgroundColor;
- o_tbl.width=XWEB.PopupMenu.width+"px";
-
- var tbody=document.createElement("TBODY");
- o_tbl.insertBefore(tbody, null);
-
- var items=menu_items?menu_items:new Array();
- for(var n in items){
- var item=items[n];
- var o_tr=document.createElement('tr');
- var o_td=document.createElement('td');
- if(item.id.length>0){
- o_td.id=item.id;
- }
- var o_font=document.createElement('font');
- if(isNaN(XWEB.Navigator.fontsize)){
- o_font.size=-1;
- }else{
- o_font.size=2;//XWEB.Navigator.fontsize+'pt';
- }
-
- if(item.target){
- var jsc="window.open(\""+item.onclick+"\",\""+item.target+"\")";
- o_td.onclick=new Function(jsc);
-// alert(jsc);
- }else{
- if(item.onclick.length==0){
- o_td.disabled=true;
- }else{
- o_td.onclick=new Function(item.onclick);
- }
- }
- if(item.tooltip){
- o_td.title=item.tooltip;
- }
- o_td.onmouseover=new Function("XWEB.PopupMenu.setColor(this,true)");
- o_td.onmouseout=new Function("XWEB.PopupMenu.setColor(this,false)");
- XWEB.setDivText(o_font,item.caption);
-
- o_td.appendChild(o_font);
- o_tr.appendChild(o_td);
- tbody.appendChild(o_tr);
- }
-
- var o_pop=document.createElement('DIV');
- o_pop.appendChild(o_tbl);
-
- o_pop.id=XWEB.PopupMenu.idname;
- o_pop.style.position='absolute';
- o_pop.style.visibility='hidden';
- o_pop.style.cursor='pointer';
-
- o_pop.style.width=XWEB.Navigator.buttonWidth+"px";
- o_pop.style.height=(XWEB.Navigator.rows*XWEB.Navigator.fontsize)+"px";
-
- document.body.appendChild(o_pop);
-};
-
-XWEB.PopupMenu.MakeNavigator=function(){
- XWEB.Navigator.initNavidata();
-
- var items=new Array();
- for(var n in XWEB.Navigator.titles){
- var capion =XWEB.Navigator.titles[n];
- var tooltip=XWEB.Navigator.buttons[n];
- var handler=XWEB.Navigator.eventHandler[n];
- var active =XWEB.Navigator.activeButton[n];
- if(active!=-1){
- if(handler.length==0){
- if(XWEB.Navigator.backupEventHandler[n]){
- handler=XWEB.Navigator.backupEventHandler[n];
- }
- }
- var member=new XWEB.PopupMenu.Item(XWEB.PopupMenu.idname+"_NAVI_BTN_"+n,capion,handler);
- if(tooltip){
- member.tooltip=tooltip;
- }
- items.push(member);
- }
- }
-
- XWEB.PopupMenu.Create(items);
-};
-
-//--- X-WebForm Custom Panel Interface.
-XWEB.Panel=new function(){
- this.Load=function(panel_id){
- this.Action(panel_id,'load');
- //XWEB.sendValidator('panel-load',XWEB.Form.id,panel_id,null,new Array(),-1);
- };
-
- this.Reload=function(panel_id){
- //this.Action(panel_id,'reload');
- XWEB.sendValidator('panel-reload',XWEB.Form.id,panel_id,null,new Array(),-1);
- };
-
- this.Action=function(panel_id,action){
- var params=new Array();
- params.push("_action=panel");
- params.push("_panel="+action);
- params.push("_idname="+panel_id);
- params.push("_formid="+XWEB.Form.id);
- params.push("_fieldid="+panel_id);
- params.push("___xwf_page_id="+XWEB.Html.page_id);
-
- var ajax_args=encodeURI(params.join("&"));
- try {
- var http = new JKL.ParseXML(XWEB.getRpcLocation(),ajax_args,"POST");
- }catch(e){
- var http = new JKL.ParseXML("/"+_xweb_rpc_uri+"/xwebform_rpc",ajax_args,"POST");
- }
-
- var data=http.parse();
- if(data){
- if(action=='load'){
- this.LoadPanel(data.panel);
- }
- }else{
- alert("Error: "+panel_id+": undefined rpc response.");
- }
- };
-
- this.getOverflowType=function(typeno){
- var typename='hidden';
- switch(typeno){
- case '0': typename='hidden'; break;
- case '1': typename='visible'; break;
- case '2': typename='scroll'; break;
- case '3': typename='auto'; break;
- }
- return typename;
- };
-
- this.LoadPanel=function(panel){
- var pobj=document.getElementById(panel.idname);
- if(pobj){
- pobj.style.overflowX=this.getOverflowType(panel.overflowx);
- pobj.style.overflowY=this.getOverflowType(panel.overflowy);
- pobj.style.borderWidth=panel.rectwidth+'px';
- if(panel.rectcolor){
- pobj.style.borderColor=panel.rectcolor;
- }
- if(panel.backgroundcolor){
- pobj.style.backgroundColor=panel.backgroundcolor;
- }
- if(panel.html){
- pobj.innerHTML=panel.html;
- }else{
- pobj.innerHTML="";
- }
- }
- };
-
- return this;
-};
-
-//--- Form Submit Action.
-XWEB.Submit=function(fm,action_url){
- var ifname='__xweb_iframe_submit__';
- var dv_id=ifname+"_BG";
- var dv=document.getElementById(dv_id);
- if(dv==undefined){
- dv=document.createElement('div');
- dv.style.display='none';
- dv.setAttribute('id', 'upcontainer');
- dv.innerHTML='';
- document.body.appendChild(dv);
- var iframe=document.getElementById(ifname);
- if (XWEB.bIE10before){
- iframe.onreadystatechange=function(){
- if (this.readyState=="complete") {
- this.onreadystatechange=null;
- }
- };
- }else{
- iframe.onload=function () {};
- }
- }
-
- var ret_val=true;
- var old_action=fm.action;
- var old_target=fm.target;
- fm.action=action_url;
- fm.target=ifname;
- try{
- fm.submit();
- }catch(e){
- ret_val=false;
- XWEB.Exec.Exception(e);
- }
- fm.action=old_action;
- fm.target=old_target;
-
- document.body.removeChild(dv);
- return ret_val;
-};
-
-XWEB.FileUpload=new function(){
- this.ifname="__upload_frame"; // submit frame.
- this.icon_div;
- this.dialog_title;
- this.up_formname="__upload_files"; // page based upload form.
-
- this.createDiv=function(){
- var file_obj=document.getElementById(this.ifname);
- if(file_obj==undefined){
- file_obj=document.createElement('div');
- file_obj.id=this.idname;
- file_obj.style.visibility='hidden';
- file_obj.style.position='absolute';
- file_obj.style.zIndex=XWEB.Const.MessageLayer;
- document.body.appendChild(file_obj);
- }
- return file_obj;
- };
-
- //-- open "file upload dialog", and form disabled (clear panel)
- this.ShowDialog=function(idname,caption,multi){
- if(this.icon_div==undefined){
- this.icon_div=this.createDiv();
- }
- this.dialog_title=caption==undefined ? "File Upload" : caption;
- XWEB.FileUpload.Show(idname,this.dialog_title);
- var fm=document.forms[this.ifname];
- if(fm){
- fm.FILE_A.focus();
- }
-
- XWEB.Form.Disabled(true); // hidden backpanel screen.
- };
-
- //-- exec file upload action,
- this.Exec=function(idname){
- XWEB.Form.Disabled(true); // hidden backpanel screen.
- var fm=document.forms[this.ifname];
- if(fm){
- if(fm.FILE_A.value.length==0){
- alert(I18N.t("XWFRPC-W0003")); // t@Cw肵ĉ
- fm.FILE_A.focus();
- return;
- }
- this.icon_div.style.cursor="wait";
- XWEB.FileUpload.initUploadStatus();
- if(idname){
- var stat=XWEB.Submit(fm,this.UploadURL()+"&idname="+idname);
- }else{
- var stat=XWEB.Submit(fm,this.UploadURL());
- }
- if(stat){
- XWEB.FileUpload.ExecFin(idname); // I܂ő҂
- }else{
- alert(I18N.t("XWFRPC-W0004")); // t@C𐳂w肵ĉ
- fm.FILE_A.focus();
- return;
- }
- }
- };
-
- this.timer_id;
- this.delay_time=1000;
- this.ExecFin=function(idname){
- if(this.timer_id){
- clearTimeout(this.timer_id);
- }
- var upstatus=XWEB.FileUpload.getUploadStatus(idname);
-
- var close_dialog=false;
- var upload_error=false;
- var message="";
- switch(upstatus){
- case 'start': break;
- case 'fin':
- message=I18N.t("js.rpc.message.2"); // Abv[h܂
- close_dialog=true;
- break;
- case 'uploding': break;
- case 'notfound':
- upload_error=true;
- message=XWEB.FileUpload.server_message;
- break;
- case 'exception':
- upload_error=true;
- message=XWEB.FileUpload.server_message;
- break;
- default: break;
- }
-
- if(close_dialog==true){
- XWEB.FileUpload.Close(); // close upload window.
- XWEB.Form.Disabled(false);// hidden backpanel screen.
- XWEB.MessageBox.Show(message, this.dialog_title,
- MessageBoxButtons.OK, MessageBoxIcon.Information);
- }else if(upload_error==true){
- XWEB.MessageBox.Show(message, this.dialog_title,
- MessageBoxButtons.OK, MessageBoxIcon.Error);
- }else{
- if(idname){
- this.timer_id=setTimeout('XWEB.FileUpload.ExecFin(\"'+idname+'\");',XWEB.FileUpload.delay_time);
- }else{
- this.timer_id=setTimeout('XWEB.FileUpload.ExecFin();',XWEB.FileUpload.delay_time);
- }
- }
- };
-
- //-- create file upload action.
- this.UploadURL=function(){
- var params=new Array();
- params.push("_action=fileupload");
- params.push("_formid="+XWEB.Form.id);
- params.push("_browser="+(XWEB.bIE?"ie":"mz"));
- params.push("___xwf_page_id="+XWEB.Html.page_id);
- return XWEB.getRpcLocation()+"?"+params.join("&");
- };
-
- this.initUploadStatus=function(){
- var params=new Array();
- params.push("_action=initUploadStatus");
- params.push("_formid="+XWEB.Form.id);
- params.push("_browser="+(XWEB.bIE?"ie":"mz"));
- params.push("___xwf_page_id="+XWEB.Html.page_id);
- var http = new JKL.ParseXML(XWEB.getRpcLocation(),encodeURI(params.join("&")),"POST");
- var data=http.parse();
-// if(data){
-// }else{
-// }
- };
-
- this.server_message;
- this.getUploadStatus=function(idname){
- var params=new Array();
- params.push("_action=uploadstatus");
- params.push("_formid="+XWEB.Form.id);
- params.push("_browser="+(XWEB.bIE?"ie":"mz"));
- params.push("___xwf_page_id="+XWEB.Html.page_id);
- if(idname){
- params.push("idname="+idname);
- }
-
- var results="unkwon";
- var http = new JKL.ParseXML(XWEB.getRpcLocation(),encodeURI(params.join("&")),"POST");
- var data=http.parse();
- if(data){
- var retval=data.xwebform_rpc;
- if(retval.fields){
- var img_fld=XWEB.getObject(retval.fields.name);
- if(img_fld){
- if(img_fld.type==XWEB.FieldType.Image){
- img_fld.setValue(retval.fields.value);
- }
- }
- results=retval.status;
- XWEB.FileUpload.server_message=new String(retval.message);
- }else if(retval.fieldcount==0){ // ߂l̏ꍇ
- results=retval.status;
- XWEB.FileUpload.server_message=new String(retval.message);
- }else{
- results="exception";
- XWEB.FileUpload.server_message=I18N.t("js.rpc.message.3"); // Abv[hɎs܂
- }
- }else{
- results="exception";
- XWEB.FileUpload.server_message=I18N.t("js.rpc.message.4"); // Abv[hT[oɐڑł܂ł
- }
-
- return results;
- };
-
- this.up_file_divname='___up_div____';
-
- this.CreatePageBaseUploadFormTag=function(){
- var up_form=document.createElement('form');
- up_form.id=this.up_formname;
- up_form.name=this.up_formname;
-
- up_form.method='post';
- up_form.enctype='multipart/form-data';
- up_form.encoding='multipart/form-data';
-
- //--
- var up_div=document.createElement('div');
- up_div.appendChild(up_form);
- up_div.id=this.up_file_divname;
-// up_div.style.left='0px';
-// up_div.style.top='0px';
- up_div.style.left=(XWEB.Form.left?XWEB.Form.left:TSmx)+"px";
- up_div.style.top=(XWEB.Form.top?XWEB.Form.top:TSmy)+"px";
- up_div.style.width='0px';
- up_div.style.height='0px';
- //up_div.style.overflow='hidden';
- up_div.style.position='absolute';
- up_div.style.visibility='visible';
-
- document.body.appendChild(up_div);
-
- var ups=XWEB.Form.upload_list;
- for(var n in ups){
- var o=document.getElementById(ups[n]);
- if(o){
- var po=o.parentNode;
- po.removeChild(o);
- up_form.appendChild(o);
- }
- }
- };
-
- this.ExecFormSubmit=function(){
- if(XWEB.Form.upload_list.length>0){
- var up_form=document.forms[XWEB.FileUpload.up_formname];
- if(up_form){
- XWEB.FileUpload.initUploadStatus();
- var rval=XWEB.Submit(up_form,XWEB.FileUpload.UploadURL());
- up_form.action="";
- up_form.target="";
- //XWEB.FileUpload.ExecFormSubmit_wait_for();
- if(rval){
- while(XWEB.FileUpload.ExecFormSubmit_wait_for()==false){
- };
- }
- }
- }
- return this.upload_stat;
- };
-
- this.upload_stat=true;
-
- this.ExecFormSubmit_wait_for=function(){
- this.upload_stat=false;
- var up_form=document.getElementById(XWEB.FileUpload.up_formname);
- if(up_form){
- var upstatus=XWEB.FileUpload.getUploadStatus();
-
- var upload_fin=false;
- var message="";
- var upload_error=false;
- switch(upstatus){
- case 'start': break;
- case 'fin':
- message="Abv[h܂";
- this.upload_stat=true;
- upload_fin=true;
- break;
- case 'uploding': break;
- case 'notfound':
- upload_error=true;
- message=XWEB.FileUpload.server_message;
- break;
- case 'exception':
- upload_error=true;
- message=XWEB.FileUpload.server_message;
- break;
- default: break;
- }
-
- if(upload_fin==true){
- window.status='';
- }else if(upload_error==true){
- alert(message);
- window.status=message;
- upload_fin=true;
- }else{
-// setTimeout('XWEB.FileUpload.ExecFormSubmit_wait_for();',XWEB.FileUpload.delay_time);
- }
- return upload_fin;
- }
- return true;
- };
-
- //-- create update dialog html,
- this.Show=function(idname,caption){
- if(idname){
- var upload_func="XWEB.FileUpload.Exec('"+idname+"');"
- }else{
- var upload_func='XWEB.FileUpload.Exec();'
- }
- var drag_func ='XWEB.FileUpload.DragStart';
- var close_func ='XWEB.FileUpload.Close';
-
- var fm=new Array();
- fm.push("");
- XWEB.Frame.createDialog(this.icon_div,caption,drag_func,close_func,fm.join(""));
-
-// this.icon_div.style.visibility='visible';
-// this.icon_div.style.left=XWEB.Form.left+50;//+(XWEB.Form.width /2);
-// this.icon_div.style.top =XWEB.Form.top +50;// +(XWEB.Form.height/2);
-
- var obj=document.getElementById(idname);
- var obj_pos=XWEB.getObjectPosition(obj);
- if(XWEB.Html.enabled_vertical_view){
- var lno=XWEB.LAYERMANAGER.getLayerNo(obj.id);
- if(lno>0){
- var pbody0=document.getElementById('xwf_vbody0');
- var pbodyn=document.getElementById('xwf_vbody'+lno);
- if(pbodyn){
- obj_pos.y+=(parseInt(pbodyn.style.top)+parseInt(pbody0.style.top));
- }
- }
- }
- this.icon_div.style.visibility='visible';
- this.icon_div.style.left=(XWEB.Form.left+50)+"px";
- this.icon_div.style.top =(obj_pos.y)+"px";
- };
-
- this.DragStart=function(event){
- if(this.icon_div){
- XWEB.Drag.Start(this.icon_div,event);
- }
- };
-
- this.Close=function(){
- if(this.icon_div){
- this.icon_div.style.visibility='hidden';
- this.icon_div.innerHTML="";
- document.body.removeChild(this.icon_div);
- this.icon_div=undefined;
- }
- XWEB.Form.Disabled(false); // hidden backpanel screen.
-
- var up_div=document.getElementById(this.up_file_divname);
- if(up_div){
- up_div.innerHTML="";
- document.body.removeChild(up_div);
- }
- };
-
- return this;
-};
-
-//--- Field Server Events.
-XWEB.Server_click=function(_id,_obj,myform,myform_array,rownum,asynchronous){
- XWEB.getFormData();
- XWEB.sendValidator('click',myform,_id,_obj,myform_array,rownum);
- XWEB.setFormData();
-};
-XWEB.Server_doubleclick=function(_id,_obj,myform,myform_array,rownum,asynchronous){
- XWEB.getFormData();
- XWEB.sendValidator('doubleclick',myform,_id,_obj,myform_array,rownum);
- XWEB.setFormData();
-};
-XWEB.Server_gotfocus=function(_id,_obj,myform,myform_array,rownum,asynchronous){
- XWEB.sendValidator('gotfocus',myform,_id,_obj,myform_array,rownum);
-};
-XWEB.Server_lostfocus=function(_id,_obj,myform,myform_array,rownum,asynchronous){
- XWEB.sendValidator('lostfocus',myform,_id,_obj,myform_array,rownum);
-};
-XWEB.Server_change=function(_id,_obj,myform,myform_array,rownum,asynchronous){
- XWEB.sendValidator('change',myform,_id,_obj,myform_array,rownum);
-};
-XWEB.Server_keydown=function(_id,_obj,myform,myform_array,rownum,asynchronous){
- XWEB.sendValidator('keydown',myform,_id,_obj,myform_array,rownum);
-};
-XWEB.Server_keyup=function(_id,_obj,myform,myform_array,rownum,asynchronous){
- XWEB.sendValidator('keyup',myform,_id,_obj,myform_array,rownum);
-};
-XWEB.Server_mouseover=function(_id,_obj,myform,myform_array,rownum,asynchronous){
- XWEB.sendValidator('mouseover',myform,_id,_obj,myform_array,rownum);
-};
-XWEB.Server_mouseout=function(_id,_obj,myform,myform_array,rownum,asynchronous){
- XWEB.sendValidator('mouseout',myform,_id,_obj,myform_array,rownum);
-};
-XWEB.Server_onload=function(myform,myform_array,asynchronous){
- if(XWEB.bIE){
- XWEB.sendValidator('onload',myform,null,null,myform_array,-1);
- }else if(XWEB.bFF){ // firefox
- if(XWEB.FF_VER>="2.0.0.3"||XWEB.FF_VER>="2.0.0.10"){
- XWEB.sendValidator('onload',myform,null,null,myform_array,-1);
- }else{
- alert('Error: Server OnLoad Event, FireFox 2.0.03 Later.');
- }
- }else{ // mozilla, netscape, etc...
- XWEB.sendValidator('onload',myform,null,null,myform_array,-1);
- }
-}
-XWEB.Server_unload=function(myform,myform_array,asynchronous){
- XWEB.sendValidator('unload',myform,null,null,myform_array,-1);
-};
-XWEB.Server_OnViewChange=function(myform,vmode,myform_array,asynchronous){
- XWEB.sendValidator('onchangeviewmode',myform,vmode,null,myform_array,-1);
-};
-XWEB.Server_OnTabChange=function(myform,pgno,myform_array,asynchronous){
- XWEB.sendValidator('onchangetabpage',myform,pgno,null,myform_array,-1);
-};
-
-XWEB.Server_initvalue=function(myform){
- if(XWEB.bFF && XWEB.FF_VER<"2.0.0.3"){ return; }
- if(XWEB.HiddenValue){
-// XWEB.sendValidator('initvalue',myform,null,null,new Array(),-1);
- XWEB.sendValidator('initvalue',myform,null,null,null,-1);
- }
-};
-XWEB.Server_timer=function(myform,myform_array,asynchronous){
- XWEB.getFormData();
- XWEB.sendValidator('timer',myform,null,null,myform_array,-1);
- XWEB.setFormData();
-};
-XWEB.Server_resize=function(myform,myform_array,asynchronous){
- XWEB.getFormData();
- XWEB.sendValidator('resize',myform,null,null,myform_array,-1);
- XWEB.setFormData();
-};
-XWEB.Server_move=function(myform,myform_array,asynchronous){
- XWEB.getFormData();
- XWEB.sendValidator('move',myform,null,null,myform_array,-1);
- XWEB.setFormData();
-};
-XWEB.Server_keyevent=function(keyno,myform,myform_array,asynchronous){
- //event.ctrlKey,event.altKey,event.shiftKey
-
- //--- check disabled "F" keys.
- var bkHandler=XWEB.Navigator.backupEventHandler;
- for(var n=0;n=0){
- var myNavi_sEventHandler=eval("__"+this.name+".sEventHandler");
- if (myNavi_sEventHandler){
- if(myNavi_sEventHandler[n].length==0){
- return;
- }
- } else if (myNavigator_sEventHandler[n].length==0){
- return;
- }
- }
- }
-
- XWEB.getFormData();
- XWEB.sendValidator('keyevent',myform,keyno,null,myform_array,-1);
- XWEB.setFormData();
-};
-XWEB.Server_navigator=function(btn_no,myform,myform_array,asynchronous){
- XWEB.getFormData();
- XWEB.sendValidator('naviclick',myform,btn_no,null,myform_array,-1);
- XWEB.setFormData();
-};
-
-_xwf_keyevent=XWEB.Server_keyevent; // for old version.
-
-//--- for agileworks.
-XWEB.AgileConfig=function(aw_url,callback_args,element_args,callback_func,error_callback_func){
- this.aw_url=aw_url;
- this.callback_args=callback_args;
- this.element_args=element_args;
- this.callback_func=callback_func;
- this.error_callback_func=error_callback_func;
- this.getArgments=function(){
- var prm=this.callback_args ? this.callback_args : new Array();
- var elm=this.element_args ? this.element_args : new Array();
- for(var i=0;i 0){ wk_ids=wk_ids+","; }
- wk_ids=wk_ids+tbl_rows_id+":"+maxrows.value;
- }
- }
- if( wk_ids.length > 0 ) {
- params.push("_tbl_ids="+wk_ids);
- }
- }
-
- //--- form parameter values.
- var fields;
- if(myform_array==null){
- fields=new Array();
- }else if(myform_array.length==0) {
- fields=myform_field_ids; // All Item.
- } else {
- //fields=myform_array; // Specified item
- fields=new Array();
- for(var i in myform_array){
- //var list=XWEB.TabOrder.getRealFieldId(myform_array[i]);
- var list=XWEB.checkTable(myform_array[i]);
- fields=fields.concat(list);
- }
- }
-
- //-- main form.(not table item)
- var hasUpload=new Array();
- for(var i in fields) {
- var fld=XWEB.getObject(fields[i]);
- if(fld){
- if(fld.type==XWEB.FieldType.Barcode){
- continue;
- }
- if(fld.type==XWEB.FieldType.Upload){
- if(fld.getValue().length>0){
- hasUpload.push(fld);
- }
- }
- if(fld.type==XWEB.FieldType.List){
- var list=fld.getMultiValue();
- for(var n in list){
- var wk_str=encodeURI(list[n]).replace(/\&/g, "%26").replace(/\+/g, "%2B");
- params.push(fld.id+"="+wk_str);
- }
- var list=fld.getOptionLists();
- for(var n in list){
- var wk_str=encodeURI(list[n]).replace(/\&/g, "%26").replace(/\+/g, "%2B");
- params.push("_xwf_list_"+fld.id+"="+wk_str);
- }
- }else if(fld.type==XWEB.FieldType.Tree){
- var wk_str=fld.getValue();
- params.push(fld.id+"="+wk_str);
- if(wk_str.length>0){
- var isOpen=fld.isNodeOpen();
- var nodeType=fld.getSelectNodeType();
- params.push(fld.id+"_isopen="+isOpen);
- params.push(fld.id+"_nodetype="+nodeType);
- }
- }else{
- var wk_str=fld.getValue();
- if (fld.type==XWEB.FieldType.DateTime){ // ^
- if (XWEB.DATETIME.FORMAT.isInputEmpty(fld) && XWEB.Calendar.isShowCalendar(fld)) {
- wk_str = ""; // J_\A͒łtB[h͋őMiT-002668j
- }else if(XWEB.Calendar.isShowCalendar(fld)){ // ͂ĂJ_\BiT-002668j
- var calo=XWEB.getElementById(fld.id);
- if(calo){
- XWEB.DATETIME.FORMAT.onBlur(calo,event);
- wk_str=calo.value; // 𐮂
- }
- }
- }else if (fld.type==XWEB.FieldType.Text && fld.display_format) {
- var t1=trim(fld.getValue()); // tB[h̓ttœ͒łt͋őMB
- wk_str=getDateString(t1,fld.display_format);
- fld.setValue(wk_str); // ͒̕wtɕϊʂZbgBiT-002668j
- }
- if(typeof(wk_str)=='undefined'){
- params.push(fld.id+"=");
- }else if(wk_str.length==0){
- params.push(fld.id+"=");
- }else if(typeof(wk_str)!='number'){
- wk_str=encodeURI(wk_str).replace(/\&/g, "%26").replace(/\+/g, "%2B");
- params.push(fld.id+"="+wk_str);
- }else{
- params.push(fld.id+"="+wk_str);
- }
- }
- }else{
- // table row counter.
- o=XWEB.getElementById(fields[i]);
- if(o){
- str=encodeURI(getFieldValue(o));
- params.push(o.id+"="+str);
- }else{
-// alert('>>>>> not found = '+fields[i]);
- }
- }
- }
-
- // event trigger filed on inner table.
- if(Number(rownum)>=0 && myform_array.length>0){
- var ileng=fields.length;
- for(var i=0;i0){
- var fm=document.forms[XWEB.Form.name];
- var url =XWEB.Rpc.contextpath+"/xwebform_rpc?_action=fileupload&___xwf_page_id="+XWEB.Html.page_id;
- XWEB.Submit(fm,url);
- }
-
- if(action.match(/^panel-.*$/)){ //'panel-load' or 'panel-reload'
- params.push("_panel=reload");
- params.push("_idname="+_id);
- //alert(params.join("&"));
- }
-
- if(aw_cfg){
- try{
- var p=params.concat(params,aw_cfg.getArgments());
- var http=new JKL.ParseXML(aw_cfg.aw_url,encodeURI(p.join("&")),"POST");
-
- var p=params.concat(params,aw_cfg.getArgments());
- var http=new JKL.ParseXML.JSON(aw_cfg.aw_url,encodeURI(p.join("&")),"POST");
- var data = http.parse();
- if(aw_cfg.callback_func && typeof aw_cfg.callback_func == "function"){
- aw_cfg.callback_func.call(this, data);
- }
- }catch(e){
- if(aw_cfg.error_callback_func && typeof aw_cfg.error_callback_func == "function"){
- aw_cfg.error_callback_func.call(this, e);
- } else {
- XWEB.Exec.Exception(e,"AgileWorks: ");
- }
- }
- return;
- }
-
- try {
- var http = new JKL.ParseXML(XWEB.getRpcLocation(),encodeURI(params.join("&")),"POST");
- }catch(e){
- var http = new JKL.ParseXML("/"+_xweb_rpc_uri+"/xwebform_rpc",encodeURI(params.join("&")),"POST");
- }
- //http.setOutputArrayElements(["fields"]);
- //http.setOutputArrayElements(["name","value"]);
-
-//--- async mode
-// var func = function(data) {
-// XWEB.onLoaded_xrpc(data);
-// }
-// http.async(func);
-// http.parse();
-
-//--- sync mode
- var data=http.parse();
- if(action.match(/^panel-.*$/)){ //'panel-load' or 'panel-reload'
- if(data){
- XWEB.Panel.LoadPanel(data.panel);
- }
- }else if(action=='unload'){
- window.status=""; // not revice response data.
- }else if(action=='datasend'){
- window.status=""; // not recive response data.
- }else if(data) {
- XWEB.onLoaded_xrpc(data);
- window.status="";
- }else{
- window.status="Error: "+_id+": undefined rpc response. [" + action + "]";
- }
-}
-
-XWEB.checkTable=function(idname){
- for(var tbid in XWEB.Form.table_id_list){
- var tbl=XWEB.getField(tbid);
- if(tbl){
- for(var n in tbl.members){
- if(tbl.members[n]==idname){
- var lists=new Array();
- var maxrow=tbl.getMaxrow();
- for(var row=0;row";
- if(clear_func){
- var cln_img=" ";
- }
- var fn_drag="onmousedown='"+drag_start_func+"(event);'";
-
- var s = new Array();
- // out border line.
- if(isIE9STD()){
- s.push("");
- }else{
- s.push("");
- }
- // inner.
- s.push("");
- s.push("");
- s.push("");
- //s.push("" + caption + "
");
- s.push("" + caption + "
");
- s.push("");
- s.push("");
- s.push("");
- s.push("");
- if(clear_func){
- s.push(""+cln_img+" ");
- }
- s.push(""+cls_img+" ");
- s.push(" ");
- s.push("
");
- s.push(" ");
- s.push(" ");
- s.push("");
- s.push(" "+
- ""+inner_html+"
"+
-// " " +
- "
");
- s.push(" ");
- s.push(" ");
- s.push("
");
-
- s.push("
");
- obj.innerHTML=s.join("");
- };
-
- return this;
-};
-
-//--
-XWEB.getObjectPosition=function(obj){
- var inScrollArea=false;
- var sc_left=0;
- var sc_top =0;
- var sc_scrollTop=0;
- var sc_scrollLeft=0;
- try {
- var po=obj.parentNode;
- while(typeof(po)!='undefined'&&po!=null){
-if(po.id){
- if(po.id.match(/^TSsc/)){
- inScrollArea=true;
- sc_left=parseInt(po.style.left);
- sc_top =parseInt(po.style.top);
- if(XWEB.bIE){
- sc_scrollLeft=po.scrollLeft;
- sc_scrollTop=po.scrollTop;
- }
- break;
- }else if(po.id.match(/^TSpg/)){
- break;
- }
-}
- po=po.parentNode;
- }
- }catch(e){}
-
- var pos_x=parseInt(obj.style.left);
- var pos_y=parseInt(obj.style.top);
- if(inScrollArea==true){ // allowonce set.
- pos_x+=(sc_left-sc_scrollLeft);
- pos_y+=(sc_top -sc_scrollTop);
- }else{
- pos_x+=XWEB.Form.left;
- pos_y+=XWEB.Form.top;
- }
-
- return new XWEB.Point2d(pos_x,pos_y);
-};
-
-//-- drag object.
-XWEB.Drag=new function(){
- this.drag_object=undefined;
- this.drag_flag=false;
- this.org_x;
- this.org_y;
- this.click_x;
- this.click_y;
- this.d_x;
- this.d_y;
- this.yoffset=0;
-
- document.onmousemove=new Function("event","XWEB.Drag.Drag(event)");
- document.onmouseup=new Function("event","XWEB.Drag.End()");
-
- this.Start=function(obj,event){
- if(XWEB.bIE){
- mou_x=event.x;
- mou_y=event.y;
- }else{
- mou_x=window.scrollX+event.clientX;
- mou_y=window.scrollY+event.clientY;
- }
- if(obj){
- this.drag_object=obj;
- this.click_x=mou_x;
- this.click_y=mou_y;
- this.org_x=parseInt(this.drag_object.style.left);
- this.org_y=parseInt(this.drag_object.style.top);;
- this.drag_flag=true;
-
- this.d_x=this.org_x-this.click_x;
- this.d_y=this.org_y-this.click_y;
- }
-
- this.yoffset=0;
- if(XWEB.Html.enabled_vertical_view){
- //alert(this.drag_object.id+": "+lno);
- for(var lno=0;true;++lno){
- var pbodyn=document.getElementById('xwf_vbody'+lno);
- if(!pbodyn){
- break;
- }
- if(pbodyn.style.display!='none'){
- this.yoffset=parseInt(pbodyn.style.height)+20;
- }
- }
- }
- };
-
- this.End=function(){
- this.drag_flag=false;
- this.drag_object=undefined;
- this.yoffset=0;
- };
-
- this.Drag=function(event){
- if(!this.drag_flag){ return; }
- if(XWEB.bIE){
- mou_x=window.event.x;
- mou_y=window.event.y;
- mou_b=window.event.button;
- }else{
- mou_x=window.scrollX+event.clientX;
- mou_y=window.scrollY+event.clientY;
- mou_b=event.which;
- }
-
- if(this.drag_flag && mou_b==1){
- if(this.drag_object){
- var wk_top=(mou_y+this.d_y);
- var wk_left=(mou_x+this.d_x);
-// if( wk_top > (XWEB.Form.height+20) ){
- if( wk_top > (XWEB.Form.height+20+this.yoffset) ){
- this.drag_object.style.top=(XWEB.Form.height+20)+"px";
- }else if(wk_top >0){
- this.drag_object.style.top=wk_top+"px";
- }
- if( wk_left>(XWEB.Form.width+20) ){
- this.drag_object.style.left=(XWEB.Form.width+20)+"px";
- }else if(wk_left>0){
- this.drag_object.style.left=wk_left+"px";
- }
- }
- }else{
- this.End();
- }
- };
-
- return this;
-};
-
-//--- X-WebForm RPC Servlet URL.
-XWEB.getRpcLocation=function(){
-// var rpc_loc="/"+xweb_rpc_uri+"/xwebform_rpc";
- var rpc_loc=XWEB.Rpc.contextpath+"/xwebform_rpc";
- try{
- if(_xweb_rpc_type){
- rpc_loc=window.location.pathname;
- }
- }catch(e){}
- return rpc_loc;
-}
-
-XWEB.onLoaded_xrpc=function(xml,list_sel_value) {
- if(xml.xwebform_rpc.type == "error") {
- alert(xml.xwebform_rpc.message);
- return false;
- } else if(xml.xwebform_rpc.type == "onLoad") {
- if(xml.xwebform_rpc.message) {
- _xwf_onload_message=xml.xwebform_rpc.message;
- }else{
- _xwf_onload_message="";
- }
- } else if(xml.xwebform_rpc.type == "unLoad") {
- if(xml.xwebform_rpc.message) {
- alert(xml.xwebform_rpc.message);
- }
- } else if(xml.xwebform_rpc.type == "click") {
- if(xml.xwebform_rpc.message) {
- alert(xml.xwebform_rpc.message);
- }
- } else if(xml.xwebform_rpc.type == "doubleclick") {
- if(xml.xwebform_rpc.message) {
- alert(xml.xwebform_rpc.message);
- }
- } else if(xml.xwebform_rpc.type == "gotfocus") {
- if(xml.xwebform_rpc.message) {
- alert(xml.xwebform_rpc.message);
- }
- } else if(xml.xwebform_rpc.type == "lostfocus") {
- if(xml.xwebform_rpc.message) {
- alert(xml.xwebform_rpc.message);
- }
- if(xml.xwebform_rpc.validate=="false") {
- var o=XWEB.getElementById(xml.xwebform_rpc.id);
- if(o){o.focus();}
- return false; // focus position is lock.
- }
- } else if(xml.xwebform_rpc.type == "change") {
- if(xml.xwebform_rpc.message) {
- alert(xml.xwebform_rpc.message);
- }
- } else if(xml.xwebform_rpc.type == "keydown") {
- if(xml.xwebform_rpc.message) {
- alert(xml.xwebform_rpc.message);
- }
- } else if(xml.xwebform_rpc.type == "keyup") {
- if(xml.xwebform_rpc.message) {
- alert(xml.xwebform_rpc.message);
- }
- } else if(xml.xwebform_rpc.type == "mouseover") {
- if(xml.xwebform_rpc.message) {
- alert(xml.xwebform_rpc.message);
- }
- } else if(xml.xwebform_rpc.type == "mouseout") {
- if(xml.xwebform_rpc.message) {
- alert(xml.xwebform_rpc.message);
- }
- } else if(xml.xwebform_rpc.type == "resize") {
- if(xml.xwebform_rpc.message) {
- alert(xml.xwebform_rpc.message);
- }
- } else if(xml.xwebform_rpc.type == "move") {
- if(xml.xwebform_rpc.message) {
- alert(xml.xwebform_rpc.message);
- }
- } else if(xml.xwebform_rpc.type == "selectlist") {
- if(xml.xwebform_rpc.message) {
- alert(xml.xwebform_rpc.message);
- }
- } else if(xml.xwebform_rpc.type == "keyevent") {
- if(xml.xwebform_rpc.message) {
- alert(xml.xwebform_rpc.message);
- }
- } else if(xml.xwebform_rpc.type == "naviclick") {
- if(xml.xwebform_rpc.message) {
- alert(xml.xwebform_rpc.message);
- }
- }
-
- //--- select list for combobox,listbox.
- if(xml.xwebform_rpc.select_list){
- if(typeof(xml.xwebform_rpc.select_list.options.length)=='undefined'){
- var sel_list=new Array(xml.xwebform_rpc.select_list.options);
- }else{
- var sel_list=xml.xwebform_rpc.select_list.options;
- }
-
- for(var n in sel_list){
- var options=sel_list[n];
- if(options.target_id){
- var list_id=XWEB.getElementById(options.target_id);
- }else{
- var list_id=XWEB.getElementById(xml.xwebform_rpc.id);
- }
- if(list_id==undefined){ continue; }
-
- var single_list=options.optiontype;
- list_id.options.length=0;
- if(eval(options.empty_item)){
- list_id.options.add(new Option("","",false,false));
- }
- if(typeof(options.option)!='undefined'){
- if(typeof(options.option.length)=='undefined'){
- var opts=new Array(options.option);
- }else{
- var opts=options.option;
- }
- for(var i in opts){
- var n=opts[i].name;
- var v=opts[i].value;
- var bSel=(v==list_sel_value?true:false);
- list_id.options.add(new Option(n==undefined?"":n,v==undefined?"":v,false,bSel));
- }
- }
- try{
- list_id.onblur(); // repaint div panel.
- }catch(e){}
- }
- }
-
- //--- clear values field.
- if(xml.xwebform_rpc.clears) {
- var cnt = xml.xwebform_rpc.clearcount;
- if(Number(cnt)==1){
- var names =new Array(xml.xwebform_rpc.clears.name);
- }else{
- var names=xml.xwebform_rpc.clears.name;
- }
- for(var i in names){
- var fld=XWEB.getObject(names[i]);
- if(fld){
- fld.setValue("");
- }else{
- _xwf_setFieldvalue(names[i],"");
- }
- }
- }
-
- //--- set values field.
- if(xml.xwebform_rpc.fields) {
- var cnt = xml.xwebform_rpc.fieldcount;
- if(Number(cnt)==1){
- var names =new Array(xml.xwebform_rpc.fields.name);
- var values=new Array(xml.xwebform_rpc.fields.value);
- }else{
- var names =xml.xwebform_rpc.fields.name;
- var values=xml.xwebform_rpc.fields.value;
- }
- for(var i in names){
- var fld=XWEB.getObject(names[i]);
- if(fld){
-// fld.setValue(values[i]);
- var ss=XWEB.ISO8859_1_Characters(values[i]).
- replace(/
/g,'\r').replace(/
/g,'\n')
- fld.setValue(ss);
- }else{
- _xwf_setFieldvalue(names[i],values[i]);
- }
- }
- }
-
- //--- Tree Object datas.
- if(xml.xwebform_rpc.tree_data) {
- var cnt = xml.xwebform_rpc.tree_datacount;
- if(Number(cnt)==1){
- var names =new Array(xml.xwebform_rpc.tree_data.name);
- var values=new Array(xml.xwebform_rpc.tree_data.value);
- }else{
- var names =xml.xwebform_rpc.tree_data.name;
- var values=xml.xwebform_rpc.tree_data.value;
- }
- for(var i in names){
- XWEB.TreeMenu.ReconfigTreeData(names[i],values[i].node);
- }
- }
-
- //--- Navigator Object.
- if(xml.xwebform_rpc.navigator){ // visible or hidden.
- XWEB.Navigator.setVisibled(xml.xwebform_rpc.navigator=='true');
- }
- if(xml.xwebform_rpc.navibutton){
- var cnt = xml.xwebform_rpc.navibuttoncount;
- if(Number(cnt)==1){
- var names =new Array(xml.xwebform_rpc.navibutton.name);
- var values=new Array(xml.xwebform_rpc.navibutton.value);
- }else{
- var names =xml.xwebform_rpc.navibutton.name;
- var values=xml.xwebform_rpc.navibutton.value;
- }
- for(var i in names){
- var btn_no=Number(names[i]);
- var b_dis=values[i];
- if(isNaN(btn_no)){
- alert('Error: undefined navibutton number , number='+names[i]);
- }else if(btn_no<0){ // set navigator
- XWEB.Navigator.setDisabled(b_dis=='true');
- }else{ // set navi button.
- XWEB.Navigator.setButtonDisabled(btn_no,b_dis=='true');
- }
- }
- }
-
- // ---
- var reload_custom=new Array();
- if(xml.xwebform_rpc.custompanel){ // reload custompanel
- var cnt = xml.xwebform_rpc.custompanelcount;
- if(Number(cnt)==1){
- var names =new Array(xml.xwebform_rpc.custompanel.name);
- var values=new Array(xml.xwebform_rpc.custompanel.value);
- }else{
- var names =xml.xwebform_rpc.custompanel.name;
- var values=xml.xwebform_rpc.custompanel.value;
- }
- for(var i in names){
- var fld=XWEB.getObject(names[i]);
- if(fld){
- if(values[i]=='true'){
- switch(fld.type){
- case XWEB.FieldType.Fill:
- reload_custom.push("XWEB.Panel.Reload('"+names[i]+"')");
- break;
- case XWEB.FieldType.WebCharts:
- reload_custom.push("XWEB.IMAGE.Reload('"+names[i]+"')");
- break;
- case XWEB.FieldType.Image:
- reload_custom.push("XWEB.IMAGE.Reload('"+names[i]+"')");
- break;
- }
- }
- }
- }
- }
-
- //--- listbox multi select/deselect/remove.
- if(xml.xwebform_rpc.listbox) {
- var mitems=xml.xwebform_rpc.listbox;
- if(mitems.option){
- if(typeof(mitems.option)=='string'){
- var items=new Array(mitems.option);
- var texts=new Array(mitems.text);
- }else{
- var items=mitems.option;
- var texts=mitems.text;
- }
- for(var n in items){
- var wk_args=items[n].split(':',3);
- var lst_typ=wk_args[0];
- var lst_id =wk_args[1];
- var lst_val=wk_args[2];
- var lst_obj=XWEB.getElementById(lst_id);
- if(lst_typ=='append'){
- if(lst_obj.options.length==1){
- var str=lst_obj.options[0].value.replace(/^ */,'');
- if(str.length==0){
- lst_obj.options.length=0;
- }
- }
- lst_obj.options[lst_obj.options.length]=new Option(texts[n],lst_val);
- lst_obj.onblur();
- }else{
- for(var op=0;op0){
- params.push("_caption"+i+"="+encodeURI(flds[i].caption.replace(/\&/g,"%26")));
- }
- }
- if(flds[i].formid.length>0){
- params.push("_formid"+i+"="+flds[i].formid+suffix);
- }
- if(flds[i].linkid.length>0){
- var link_name=flds[i].linkid+suffix;
- if(!XWEB.getElementById(link_name)){ // check table item.
- link_name=flds[i].linkid; // field is not in table.
- }
- params.push("_linkid"+i+"="+link_name);
- var wk_str=XWEB.MWIN.getValue(link_name);
- if(wk_str.length>0){
- params.push("_linkval"+i+"="+encodeURI(wk_str.replace(/\&/g,"%26")));
- }else{
- params.push("_linkval"+i+"=");
- }
- if(mseek==true){ mseek_filter=true; }
- }
-
- //if(mseek==true&&flds[i].wenabled){
- if(mseek==true&&flds[i].searched){
- var fld=XWEB.getField(flds[i].formid+suffix);
- if(fld){
- var wk_val;
- if(fld.type==XWEB.FieldType.Integer){
- wk_val=XWEB.NUMBER.setZeroFill(fld.id);
- }
- if(wk_val==undefined){
- wk_val=fld.getValue();
- }
- if(typeof(wk_val)!='string'){
- wk_val=String(wk_val);
- }
- if(wk_val.length>0){
- wk_val=wk_val.replace(/\%/g,"%25").replace(/\&/g,"%26");
- wk_val=wk_val.replace(/\+/g,"%2b");
- params.push("_wtoken"+i+"="+encodeURI(wk_val));
- mseek_filter=true;
- }
- }
- }
- else if(flds[i].wtoken.length>0){
- params.push("_wtoken"+i+"="+flds[i].wtoken);
- }else{
- params.push("_wtoken"+i+"=");
- }
- params.push("_etoken"+i+"="+flds[i].etoken);
- params.push("_wempty"+i+"="+flds[i].wempty);
- params.push("_wenabled"+i+"="+flds[i].wenabled);
- params.push("_wexpr"+i+"="+flds[i].wh_expr);
- params.push("_searched"+i+"="+flds[i].searched);
- if(flds[i].wenabled==true){
- mwin_condition=true;
- }
- }
-
- if(mseek==true){ // seek master.
- if(mseek_filter==false){
-// window.status="L[ڂݒłׁA͍s܂B";
- XWEB.MSeek.ClearField(_obj.id,flds,n);
- window.status="";
- }else if(XWEB.MSeek){
- XWEB.MSeek.GetRecord(_obj,XWEB.Form.id,params.join("&"),flds,suffix);
- }else{
- alert('this version is not support search function');
- }
- }else{ // open master window.
- if(document.charset){
- params.push("_xw_charset="+document.charset);
- }else if(document.characterSet){
- params.push("_xw_charset="+document.characterSet);
- }
- if(XWEB.MWindow){
- var bInitList=true;//mwin_condition==true?false:true; // Xg\
- if(XWEB.isAgileWorks()){
- bInitList=mwin_condition==true?false:true;
- }
- XWEB.MWindow.Show(_obj,XWEB.Form.id,params.join("&"),bInitList,n);
- XWEB.MWindow.setFocus();
- }else{
- var xw_style="titlebar=no,menubar=no,width=1px,height=1px";
- var xw_name="mwin_"+XWEB.Form.id;
- var xw_url=XWEB.Rpc.contextpath+"/xwebform_mwin?"+params.join("&");
- //_xw_mwin=window.open(xw_url,xw_name,xw_style);
- //_xw_mwin=window.open("",xw_name,xw_style);
- var _xw_mwin=window.open("",xw_name,xw_style);
- document.forms[0].action=xw_url;
- document.forms[0].target=xw_name;
- document.forms[0].submit();
- try{
- _xw_mwin.focus();
- }catch(e){
- alert('Cannot Open Window ['+xw_name+':'+xw_url+ ']');
- }
- }
- }
-}
-
-//---- update option list. (combobox/listbox)
-XWEB.SELECT=function(){};
-XWEB.SELECT.LoadData=function(idname,_no){
- if(_no==undefined){
- var funcname='xwsellist_'+idname;
- var object=idname;
- }else{
- var funcname='xwsellist_'+idname+'_'+_no;
- var object=idname+'_'+_no;
- }
- var func=eval(funcname);
- var obj=getElementById_XP(object);
- if(func && obj) {
- func(obj,_no);
- } else {
- alert('Error: '+idname+': option list can not update!');
- }
-};
-
-//---- X-WebForm ComboBox/ListBox option list.
-XWEB.SELECT.Field=function(visibled,valued,dbfield,orderby,tokentype,tokencode,groupid){
- this.visibled=visibled;
- this.valued=valued;
- this.dbfield=dbfield;
- this.orderby=orderby;
- this.tokentype=tokentype;
- this.tokencode=tokencode;
- this.groupid=groupid;
- this.toString=function(){
- return ("XWSelectField:"+this.visibled+","+this.valued+","+
- this.dbfield+","+this.orderby+","+
- this.tokentype+","+this.tokencode+","+this.groupid);
- }
- return this;
-}
-
-XWEB.SELECT.List=function(_obj,_orgid,sel_type,scm,tbl,flds,emptyItem,maxrow,n){
- if(isNaN(n)){ n=0; }
-
- var cur_value=_obj.value;
-
- var args="_action=selectlist&";
- args+="_formid="+XWEB.Form.id+"&_fieldid="+_obj.id+"&";
- args+="_type="+sel_type+"&_schema="+scm+"&_table="+tbl+"&";
- args+="_rownum="+n+"&_orgid="+_orgid+"&";
- args+="_emptyitem="+emptyItem+"&";
-
- if(isNaN(maxrow)){
- args+="_maxrow=100&";
- }else if(maxrow){
- args+="_maxrow="+maxrow+"&";
- }else if(eval(maxrow)==0){
- args+="_maxrow=0&";
- }else{
- args+="_maxrow=100&";
- }
-
- var suffix="";
- if(!isNaN(n)){ suffix="_"+n; }
-
- for(var i in flds){
- var fld = flds[i];
- args+="visibled"+i+"="+fld.visibled+"&";
- args+="valued"+i+"="+fld.valued+"&";
- args+="dbfield"+i+"="+fld.dbfield+"&";
- args+="orderby"+i+"="+fld.orderby+"&";
- args+="tokentype"+i+"="+fld.tokentype+"&";
- args+="tokencode"+i+"="+fld.tokencode+"&";
- args+="groupid"+i+"="+fld.groupid+"&";
-
- if(fld.tokentype=="2"&&fld.tokencode.length>0){ //Form Field Value.
- if(fld.groupid.length>0){ // in group
- var o=XWEB.getElementById(fld.tokencode+suffix);
- }else{
- var o=XWEB.getElementById(fld.tokencode);
- }
- if(o){
- args+=o.id+"="+encodeURIComponent(o.value)+"&"; // T-000370,T-001504
- }
- }
- }
-
- if(typeof(AgileWorks)!='undefined'){
- if(AgileWorks.getCriterionDate){
- var params=AgileWorks.getCriterionDate();
- for(pname in params){
- var val=params[pname];
- args+=pname+"="+(val?encodeURI(val):"")+"&";
- }
- }
- }
-
- try {
- //_xwf_rpc_location -> XWEB.getRpcLocation()
- var http = new JKL.ParseXML(XWEB.getRpcLocation(),encodeURI(args),"POST");
- }catch(e){
- var http = new JKL.ParseXML("/"+_xweb_rpc_uri+"/xwebform_rpc",encodeURI(args),"POST");
- }
-
-//--- sync mode
- var data=http.parse();
- if(data) {
- XWEB.onLoaded_xrpc(data,cur_value);
- window.status="";
- }else{
- window.status="Error: undefined rpc response. [selectlist]";
- }
-}
-
-//-- copy options list. (combobox/listbox)
-XWEB.SELECT.ListCopy=function(_obj,src_id){
- var cur_value=_obj.value;
- var src_o=getElementById_XP(src_id);
- if(src_o){
- _obj.options.length=0;
- for(var i=0;iopsmax?ops1:opsmax;
- opsmax=ops2>opsmax?ops2:opsmax;
- ope1=ope1.divide(ope2,opsmax,MathContext.prototype.ROUND_HALF_UP);
- if(ope1.scale()>0 && (ops11){
- for(var n=1; n0 ? true : false;
- };
-
- this.clearChar=function(_obj,mask){
- };
-
- return this;
-};
-
-// [ex]
-// var path=XWEB.Resource.Image("images/markup/down_arrow.gif");
-//
-XWEB.Resource=new function(){
- this.Image=function(pathname){
- return XWEB.Rpc.contextpath+"/xwebform_rpc?_image="+pathname;
- }
-
- return this;
-};
-
-//--- http response code to message.
-XWEB.responseMessage=function(msg_no){
- var msg="";
- switch(msg_no){
- case 300: msg="Multiple Choices"; break;
- case 301: msg="Moved Permanently"; break;
- case 302: msg="Found"; break;
- case 303: msg="See Other"; break;
- case 304: msg="Not Modified"; break;
- case 305: msg="Use Proxy"; break;
- case 307: msg="Temporary Redirect"; break;
-
- case 400: msg="Bad Request"; break;
- case 401: msg="Unauthorized"; break;
- case 403: msg="Forbidden"; break;
- case 404: msg="Not Found"; break;
- case 405: msg="Method Not Allowed"; break;
- case 406: msg="Not Acceptable"; break;
- case 407: msg="Proxy Authentication Required"; break;
- case 408: msg="Request Timeout"; break;
- case 409: msg="Conflic"; break;
- case 410: msg="Gone"; break;
- case 411: msg="Length Required"; break;
- case 412: msg="Precondition Failed"; break;
- case 413: msg="Request Entity Too Large"; break;
- case 414: msg="Request-URI Too Long"; break;
- case 415: msg="Unsupported Media Type"; break;
- case 416: msg="Requested Range Not Satisfiable"; break;
- case 417: msg="Expectation Failed"; break;
- case 418: msg="I'm a teapot"; break;
- case 422: msg="Unprocessable Entity"; break;
- case 423: msg="Locked"; break;
- case 424: msg="Failed Dependency"; break;
- case 426: msg="Upgrade Required"; break;
-
- case 500: msg="Internal Server Error"; break;
- case 501: msg="Not Implemented"; break;
- case 502: msg="Bad Gateway"; break;
- case 503: msg="Service Unavailable"; break;
- case 504: msg="Gateway Timeout"; break;
- case 505: msg="HTTP Version Not Supported"; break;
- case 506: msg="Variant Also Negotiates"; break;
- case 507: msg="Insufficient Storage"; break;
- case 510: msg="Not Extended"; break;
- }
- return msg;
-};
-
-//-- for debug.
-XWEB.Debug=new function(){
- this.tttt=new Array();
- this.st_time=XWEB.Date.getLocalDate();
- this.w=this.st_time;
-
- this.Start=function(label_string){
- if(label_string){
- alert(label_string);
- }
- this.tttt=new Array();
- this.st_time=XWEB.Date.getLocalDate();
- this.w=this.st_time;
- };
-
- this.Time=function(label_string){
- var t=(XWEB.Date.getLocalDate().getTime()-this.w.getTime())/1000;
- var tt=(XWEB.Date.getLocalDate().getTime()-this.st_time.getTime())/1000;
- this.tttt.push('>> '+label_string+'='+t+'[sec], '+tt+'[sec]');
- this.w=XWEB.Date.getLocalDate();
- };
-
- this.TimePrint=function(label_string){
- this.Time(label_string);
- alert(this.tttt.join('\n'));
- };
-};
-
-//-- end of file.
diff --git a/AgileWorks/WebContent/WEB-INF/.gitignore b/AgileWorks/WebContent/WEB-INF/.gitignore
deleted file mode 100644
index ef238298ac7ab4bb721e335d09086331e8de8075..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/.gitignore
+++ /dev/null
@@ -1,5 +0,0 @@
-/mst
-/forms
-/pdfoption.properties
-/weblogic.xml
-/_xwf_barcode
diff --git a/AgileWorks/WebContent/WEB-INF/file/FlowEditor.xls b/AgileWorks/WebContent/WEB-INF/file/FlowEditor.xls
deleted file mode 100644
index 1656417d756bebc0b4e788fbf7f642e1a68b1572..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/file/FlowEditor.xls and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/file/Rule_Cnv.ini b/AgileWorks/WebContent/WEB-INF/file/Rule_Cnv.ini
deleted file mode 100644
index 1d8e0bedc248e2781d4d17cc72572a0095f93ada..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/file/Rule_Cnv.ini
+++ /dev/null
@@ -1,30 +0,0 @@
-[URL]
-LLAP_URL="http://localhost:8080/AgileWorks/Broker/LLAP"
-
-[t[R[h]
-MAX_LENGTH=10
-
-[t[]
-MAX_LENGTH=60
-
-[tH[R[h]
-MAX_LENGTH=255
-
-[ƖJeSR[h]
-MAX_LENGTH=255
-
-[e]
-MAX_LENGTH=255
-
-[tH[]
-MAX_LENGTH=255
-
-[҃[]
-MAX_LENGTH=255
-
-[ҕ]
-MAX_LENGTH=255
-
-[҃R[h]
-MAX_LENGTH=255
-
diff --git a/AgileWorks/WebContent/WEB-INF/file/Rule_Cnv_20080901-02.xls b/AgileWorks/WebContent/WEB-INF/file/Rule_Cnv_20080901-02.xls
deleted file mode 100644
index 01db4f4d881e6fe51ac87d7c483169cc8e4b5d56..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/file/Rule_Cnv_20080901-02.xls and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/html/AMC/job/Console.html b/AgileWorks/WebContent/WEB-INF/html/AMC/job/Console.html
deleted file mode 100644
index f4139e3a1b9480a5fc3fa608e79e82c10ac78c30..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/AMC/job/Console.html
+++ /dev/null
@@ -1,310 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
21
コンソールログ
2
batchlog.detaildialog#downloadConsoleLog
export
false
-
22
拡張情報
2
batchlog.detaildialog#downloadStorageFile
export
false
-
3
停止
0
batchlog.detaildialog#stopJob
abort
false
-
-
-
-
-
-
-
1
loading
/images/common/icon/etc/loading.gif?build31956
relative
-
2
go-sign
/images/common/icon/object/go-sign20.gif?build31956
relative
-
3
stop-sign
/images/common/icon/object/stop-sign20.gif?build31956
relative
-
4
warning
/images/common/icon/object/warning20.gif?build31956
relative
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- コード
-
-
-
-
- 名称
-
-
-
-
-
-
-
-
-
-
- ステータス
-
-
-
-
-
- 投入日時
-
-
-
-
- 開始日時
-
-
-
-
- 終了日時
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/Component/CommonPage.html b/AgileWorks/WebContent/WEB-INF/html/Component/CommonPage.html
deleted file mode 100644
index 0a7e1f4e2b87fb3acaff838867062884ba87df46..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/Component/CommonPage.html
+++ /dev/null
@@ -1,41 +0,0 @@
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/Component/DelegationAssign.html b/AgileWorks/WebContent/WEB-INF/html/Component/DelegationAssign.html
deleted file mode 100644
index 3460c107ebe2894a2357b86c68d6ac93f41abdb1..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/Component/DelegationAssign.html
+++ /dev/null
@@ -1,529 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{ValiditySpan}
-
-
-
- $RESOURCE{DelegationAssign.1}
-
-
-
-
-
- $RESOURCE{TargetUser}
-
-
-
-
-
-
- $RESOURCE{DelegationUser}*
-
-
-
-
-
-
-
- $RESOURCE{TaskUnitPolicy}*
-
-
-
-
-
-
-
-
- $RESOURCE{ForEmpowering}
-
-
- $RESOURCE{Unit}
-
-
-
-
-
- $RESOURCE{Form}
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{Rule}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/Component/DocProperty.html b/AgileWorks/WebContent/WEB-INF/html/Component/DocProperty.html
deleted file mode 100644
index 4e1f2e4082fc9e4142da7f97347345da088a0a44..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/Component/DocProperty.html
+++ /dev/null
@@ -1,607 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
1
$RESOURCE{DocumentPassHistory}
Journal
-
2
$RESOURCE{DocumentElectJournal}
ElectJournal
-
-
-
-
-
-
-
-
-
-
1
apply
/images/common/icon/action/apply.gif?build31956
relative
-
2
save
/images/common/icon/action/save.gif?build31956
relative
-
3
saveconf
/images/common/icon/action/save.gif?build31956
relative
-
4
approve
/images/common/icon/action/approve.gif?build31956
relative
-
5
decline
/images/common/icon/action/decline.gif?build31956
relative
-
6
passback
/images/common/icon/action/passback.gif?build31956
relative
-
7
takeback
/images/common/icon/action/takeback.gif?build31956
relative
-
8
cancel
/images/common/icon/action/cancel.gif?build31956
relative
-
9
print
/images/common/icon/action/print.gif?build31956
relative
-
10
copy
/images/common/icon/action/copy.gif?build31956
relative
-
11
reference
/images/common/icon/object/reference20.gif?build31956
relative
-
12
edit
/images/common/icon/action/edit.gif?build31956
relative
-
13
confirm
/images/common/icon/action/approve.gif?build31956
relative
-
-
-
-
-
-
-
1
USER
/images/common/icon/object/user20.gif?build31956
relative
-
2
ORG_UNIT
/images/common/icon/object/unit20.gif?build31956
relative
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{DocumentOwner}
-
-
-
-
-
-
-
-
-
$RESOURCE{Viewer}
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/Component/FindDoc.html b/AgileWorks/WebContent/WEB-INF/html/Component/FindDoc.html
deleted file mode 100644
index 83a31635430e0a036bba70fb94a09aa7b0bc11ae..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/Component/FindDoc.html
+++ /dev/null
@@ -1,2839 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
1
$RESOURCE{SearchTypeEquals}
-
2
$RESOURCE{SearchTypeNotEquals}
-
14
$RESOURCE{SearchTypeEmpty}
-
15
$RESOURCE{SearchTypeNotEmpty}
-
3
$RESOURCE{SearchTypeInclude}
-
4
$RESOURCE{SearchTypeNotInclude}
-
5
$RESOURCE{SearchTypeStartsWith}
-
-
-
-
-
-
-
-
-
1
$RESOURCE{SearchTypeEquals}
-
2
$RESOURCE{SearchTypeNotEquals}
-
14
$RESOURCE{SearchTypeEmpty}
-
15
$RESOURCE{SearchTypeNotEmpty}
-
7
$RESOURCE{SearchTypeLarger}
-
8
$RESOURCE{SearchTypeMore}
-
9
$RESOURCE{SearchTypeSmaller}
-
10
$RESOURCE{SearchTypeFollowing}
-
11
$RESOURCE{RangeSpecification}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
1
$RESOURCE{Select}
0
docexplorer#doSelectRequestedUser
approve
-
2
$RESOURCE{MenuClose}
0
docexplorer#cancelSelectRequestedUser
close
-
-
-
-
-
-
-
1
$RESOURCE{MenuSave}
0
docexplorer#doEditSearch
save
-
2
$RESOURCE{MenuClose}
0
docexplorer#cancelEditSearch
close
-
-
-
-
-
-
-
1
$RESOURCE{MenuFileOutput}
0
export
false
-
11
$RESOURCE{MenuCsvOutput}
1
docexplorer#exportCsv
export
true
-
12
$RESOURCE{MenuXlsOutput}
1
docexplorer#exportXls
export
true
-
3
$RESOURCE{MenuClose}
0
docexplorer#closeExportLayer
close
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- document.getElementById("docexplorer-search-detail-requesttype").style.display = "none";
-
-
-
-
- document.getElementById("docexplorer-search-detail-leadtime").style.display = "none";
-
-
-
-
-
-
- document.getElementById("docexplorer-search-detail-requesttype").style.display = "none";
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- var o = document.getElementById('docexplorer-search-button');
- if (o && o.disabled == true) {
- $return_value = false;
- }
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{ViewDocumentAppliesToSearchResults}:
-
-
-
-
-
-
-
-
-
- $RESOURCE{ViewTheResultsAppliedToTheDrillThroughDocuments}:
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{FromBasicInformation}
-
-
-
-
-
-
-
-
-
- $RESOURCE{DocId}:
-
-
- $RESOURCE{ExternalKey}:
-
-
-
-
-
-
- $RESOURCE{DocAdminNo}:
-
-
-
-
-
- $RESOURCE{DocStatus}:
-
-
-
-
-
-
- $RESOURCE{RequestStatus}:
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{ProcessedDate}:
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{LeadTime}:
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{Users}
-
-
-
- $RESOURCE{CriterionDate}:
-
-
-
-
-
-
-
-
-
- $RESOURCE{User}
- $RESOURCE{Detail}
-
-
-
-
-
-
-
-
-
- $RESOURCE{FullTextSearch}
-
-
-
-
- $RESOURCE{DocumentsContent}:
-
-
-
-
-
- $RESOURCE{Attachment}:
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{DocumentsFromTheContent}
-
-
-
-
- $RESOURCE{Form}:
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{Items}
- $RESOURCE{Condition}/$RESOURCE{Value}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{FindDoc.2}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{SearchCriteriaName}:
-
-
-
-
-
-
- $RESOURCE{SaveTo}:
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{FindDoc.3}
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/Component/JobSubmitter.html b/AgileWorks/WebContent/WEB-INF/html/Component/JobSubmitter.html
deleted file mode 100644
index b85ba573ea0b3cfaf1e726c16a74c423c61ecfed..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/Component/JobSubmitter.html
+++ /dev/null
@@ -1,83 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/Component/LicenseUpdate.html b/AgileWorks/WebContent/WEB-INF/html/Component/LicenseUpdate.html
deleted file mode 100644
index 0495b2debdf65c91379d09256a7c3becdf1b35f1..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/Component/LicenseUpdate.html
+++ /dev/null
@@ -1,134 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- var el = document.getElementById("licenseupdate-layer-licensekey-textarea");
- if(el) el.focus();
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
ライセンスキーを入力してください
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/Component/NotifyFilter.html b/AgileWorks/WebContent/WEB-INF/html/Component/NotifyFilter.html
deleted file mode 100644
index 18c493c96d484e4cc9a4aac0bef5a98c9099f6bf..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/Component/NotifyFilter.html
+++ /dev/null
@@ -1,759 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
1
ACCEPT
/images/common/icon/object/go-sign20.gif?build31956
relative
-
2
REJECT
/images/common/icon/object/stop-sign20.gif?build31956
relative
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{Name}*
-
-
-
-
-
- $RESOURCE{Type}
-
-
-
-
-
-
- $RESOURCE{Target}
-
-
-
-
-
-
-
-
-
- $RESOURCE{Condition}
-
-
- $RESOURCE{Form}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{NotificationType}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
$RESOURCE{RequestApplication}
-
-
-
$RESOURCE{RequestApproval}
-
-
-
-
-
$RESOURCE{RequestRemand}
-
-
-
$RESOURCE{RequestCheck}
-
-
-
-
-
$RESOURCE{NoticeCompleteApproval}
-
-
-
$RESOURCE{NoticeRemand}
-
-
-
-
-
$RESOURCE{NoticeRejection}
-
-
-
$RESOURCE{NoticeWithdrawal}
-
-
-
-
-
$RESOURCE{NoticeRetract}
-
-
-
$RESOURCE{ProxyReport}
-
-
-
-
-
$RESOURCE{ProxyRequestApproval}
-
-
-
$RESOURCE{NoticeComment}
-
-
-
-
-
-
-
-
-
- $RESOURCE{DocSubject}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{Name}*
-
-
-
-
-
- $RESOURCE{Type}
-
-
-
-
-
-
- $RESOURCE{Target}
-
-
-
-
-
-
-
- $RESOURCE{Form}
-
-
-
-
-
- $RESOURCE{NotificationType}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{SubjectField}*
-
-
-
-
-
- $RESOURCE{Condition}/$RESOURCE{Value}*
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{NotifyFilter.1}
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/Component/PrivateRoleAppointment.html b/AgileWorks/WebContent/WEB-INF/html/Component/PrivateRoleAppointment.html
deleted file mode 100644
index f52b22bc74a458bd512a94e40309b7ddcb54e03f..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/Component/PrivateRoleAppointment.html
+++ /dev/null
@@ -1,286 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{ValiditySpan}
-
-
-
- $RESOURCE{privateroleappointment.1}
-
-
-
-
-
- $RESOURCE{PrivateRole}*
-
-
-
-
-
-
-
- $RESOURCE{TargetUser}*
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/Component/ProxyAssign.html b/AgileWorks/WebContent/WEB-INF/html/Component/ProxyAssign.html
deleted file mode 100644
index 9934a4281a137c9e7f84799a485b7597b23618e0..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/Component/ProxyAssign.html
+++ /dev/null
@@ -1,600 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{ValiditySpan}
-
-
-
- $RESOURCE{ProxyAssign.1}
-
-
-
-
-
- $RESOURCE{TargetUser}
-
-
-
-
-
-
- $RESOURCE{ProxyUser}*
-
-
-
-
-
-
-
- $RESOURCE{ProxyNotification}
-
-
-
-
-
-
- $RESOURCE{DisplayTodoMenu}
-
-
-
-
-
-
- $RESOURCE{DisplayOrder}
-
-
$RESOURCE{DisplayOrderDescription}
-
-
-
-
-
-
- $RESOURCE{ForEmpowering}
-
-
- $RESOURCE{Unit}
-
-
-
-
-
- $RESOURCE{Form}
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{Rule}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceAccessUniversalRoleSingle.html b/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceAccessUniversalRoleSingle.html
deleted file mode 100644
index 1997d979dce519e45edbd9c2c542259ddf1ee730..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceAccessUniversalRoleSingle.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-
-
-
1
$RESOURCE{Select}
0
referenceaccessunivrolesingle#doSave
approve
false
-
2
$RESOURCE{MenuClose}
0
referenceaccessunivrolesingle#closeLayer
close
false
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceArchiveReceptionSingle.html b/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceArchiveReceptionSingle.html
deleted file mode 100644
index 14a1bae30edbcddbd4f6a3f2b6dee92ae75c3198..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceArchiveReceptionSingle.html
+++ /dev/null
@@ -1,78 +0,0 @@
-
-
-
-
-
-
-
-
1
$RESOURCE{Select}
0
referencearchivereceptionsingle#doSave
approve
false
-
2
$RESOURCE{MenuClose}
0
referencearchivereceptionsingle#closeLayer
close
false
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceBothRoleSingle.html b/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceBothRoleSingle.html
deleted file mode 100644
index 59e96f35d4f0f86192ed1de28c2a04e6b7b78448..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceBothRoleSingle.html
+++ /dev/null
@@ -1,175 +0,0 @@
-
-
-
-
-
-
-
-
1
$RESOURCE{Select}
0
referencebothrolesingle#doSave
approve
false
-
2
$RESOURCE{MenuClose}
0
referencebothrolesingle#closeLayer
close
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceBrickletSingle.html b/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceBrickletSingle.html
deleted file mode 100644
index 672e21593d29a04b4ee4552238f2ab717b4b1f0b..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceBrickletSingle.html
+++ /dev/null
@@ -1,86 +0,0 @@
-
-
-
-
-
-
-
-
1
$RESOURCE{Select}
0
referencebrickletsingle#doSave
approve
false
-
2
$RESOURCE{MenuClose}
0
referencebrickletsingle#closeLayer
close
false
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceBuiltinRoleMultiple.html b/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceBuiltinRoleMultiple.html
deleted file mode 100644
index 318c26a9c19b892a3a09a42dccc710b8ab13794b..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceBuiltinRoleMultiple.html
+++ /dev/null
@@ -1,146 +0,0 @@
-
-
-
-
-
-
-
-
1
$RESOURCE{Select}
0
referencebuiltinrolemultiple#doSave
approve
false
-
2
$RESOURCE{MenuClose}
0
referencebuiltinrolemultiple#closeLayer
close
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceBuiltinRoleSingle.html b/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceBuiltinRoleSingle.html
deleted file mode 100644
index 1cac44c6ab2bbcd728eef01b32ac69ecd9f2a808..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceBuiltinRoleSingle.html
+++ /dev/null
@@ -1,124 +0,0 @@
-
-
-
-
-
-
-
-
1
$RESOURCE{Select}
0
referencebuiltinrolesingle#doSave
approve
false
-
2
$RESOURCE{MenuClose}
0
referencebuiltinrolesingle#closeLayer
close
false
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceCandidateMultiple.html b/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceCandidateMultiple.html
deleted file mode 100644
index 32c9aa936dd83167778053bde8b4f081a6557f5b..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceCandidateMultiple.html
+++ /dev/null
@@ -1,428 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
1
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
UserCode
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{ReferenceCandidateMultiple.1}
$RESOURCE{ReferenceCandidateMultiple.2}
- /
-
-
-
- $RESOURCE{CriterionDate}:
-
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{ReferenceCandidateMultiple.3} $RESOURCE{AvailableChoices}
-
-
-
-
-
- $RESOURCE{ReferenceCandidateMultiple.3} $RESOURCE{SelectedUser}
-
-
-
-
$RESOURCE{YouCanSelectMoreThanOneMouseLeftClick}
-
-
-
-
-
-
-
-
- $RESOURCE{SearchTarget}:
-
-
-
-
-
-
-
- $RESOURCE{SearchValue}:
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{ReferenceCandidateMultiple.3} $RESOURCE{AvailableChoices}
-
-
-
-
-
- $RESOURCE{ReferenceCandidateMultiple.3} $RESOURCE{SelectedUser}
-
-
-
-
$RESOURCE{YouCanSelectMoreThanOneMouseLeftClick}
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceCandidateSingle.html b/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceCandidateSingle.html
deleted file mode 100644
index ab5f4288ba818329df0e81c9d2c110cf977f4098..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceCandidateSingle.html
+++ /dev/null
@@ -1,297 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
1
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
UserCode
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{ReferenceCandidateSingle.1}
$RESOURCE{ReferenceCandidateSingle.2}
-
-
- $RESOURCE{CriterionDate}:
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{ReferenceCandidateSingle.3} $RESOURCE{AvailableChoices}
-
-
-
-
-
-
-
-
-
- $RESOURCE{SearchTarget}:
-
-
-
-
-
-
-
- $RESOURCE{SearchValue}:
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{ReferenceCandidateSingle.3} $RESOURCE{AvailableChoices}
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceContentsMultiple.html b/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceContentsMultiple.html
deleted file mode 100644
index 010e0b857ad83339d4218cfa661683d052ad44d6..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceContentsMultiple.html
+++ /dev/null
@@ -1,124 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceFederationSingle.html b/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceFederationSingle.html
deleted file mode 100644
index 7a7a1013755c6e48b805335940f195ee02c89269..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceFederationSingle.html
+++ /dev/null
@@ -1,78 +0,0 @@
-
-
-
-
-
-
-
-
1
$RESOURCE{Select}
0
referencefederationsingle#doSave
approve
false
-
2
$RESOURCE{MenuClose}
0
referencefederationsingle#closeLayer
close
false
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceFormMultiple.html b/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceFormMultiple.html
deleted file mode 100644
index 6e1bdbc16b366834d6c2621ae83db0994564ba0c..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceFormMultiple.html
+++ /dev/null
@@ -1,200 +0,0 @@
-
-
-
-
-
-
-
-
1
$RESOURCE{Select}
0
referenceformmultiple#doSave
approve
false
-
2
$RESOURCE{MenuClose}
0
referenceformmultiple#closeLayer
close
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{CriterionDate}:
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceFormSingle.html b/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceFormSingle.html
deleted file mode 100644
index f25e1383c6e12628920fcf2803d43ac6db484ac4..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceFormSingle.html
+++ /dev/null
@@ -1,195 +0,0 @@
-
-
-
-
-
-
-
-
-
1
-
$RESOURCE{Select}
-
0
-
referenceformsingle#doSave
-
approve
-
false
-
-
-
2
-
$RESOURCE{MenuClose}
-
0
-
referenceformsingle#closeLayer
-
close
-
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{CriterionDate}:
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceFormWithAclSingle.html b/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceFormWithAclSingle.html
deleted file mode 100644
index e5988f1db8e79d3d5089a228c27e77ad927750e7..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceFormWithAclSingle.html
+++ /dev/null
@@ -1,186 +0,0 @@
-
-
-
-
-
-
-
-
-
1
-
$RESOURCE{Select}
-
0
-
referenceformwithaclsingle#doSave
-
approve
-
false
-
-
-
2
-
$RESOURCE{MenuClose}
-
0
-
referenceformwithaclsingle#closeLayer
-
close
-
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceOrgUnitMultiple.html b/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceOrgUnitMultiple.html
deleted file mode 100644
index 2932fc048d9b8fa65e1f279eff951fcaa558c640..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceOrgUnitMultiple.html
+++ /dev/null
@@ -1,172 +0,0 @@
-
-
-
-
-
-
-
-
1
$RESOURCE{Select}
0
referenceorgunitmultiple#doSave
approve
false
-
2
$RESOURCE{MenuClose}
0
referenceorgunitmultiple#closeLayer
close
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceOrgUnitSingle.html b/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceOrgUnitSingle.html
deleted file mode 100644
index 2510f230a6e49c7f13a1303c25e8fd28232d5c4b..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceOrgUnitSingle.html
+++ /dev/null
@@ -1,195 +0,0 @@
-
-
-
-
-
-
-
-
-
1
-
$RESOURCE{Select}
-
0
-
referenceorgunitsingle#doSave
-
approve
-
false
-
-
-
2
-
$RESOURCE{MenuClose}
-
0
-
referenceorgunitsingle#closeLayer
-
close
-
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/Component/ReferencePrivateRoleCandidateSingle.html b/AgileWorks/WebContent/WEB-INF/html/Component/ReferencePrivateRoleCandidateSingle.html
deleted file mode 100644
index 464fb1222007f20df44813f67997c439b9fba3df..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/Component/ReferencePrivateRoleCandidateSingle.html
+++ /dev/null
@@ -1,235 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
1
-
-
-
-
-
-
UserCode
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{CriterionDate}:
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{ReferencePrivateRoleCandidateSingle.3} $RESOURCE{AvailableChoices}
-
-
-
-
-
-
-
-
-
- $RESOURCE{SearchTarget}:
-
-
-
-
-
-
-
- $RESOURCE{SearchValue}:
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{ReferencePrivateRoleCandidateSingle.3} $RESOURCE{AvailableChoices}
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/Component/ReferencePrivateRoleGroupSingle.html b/AgileWorks/WebContent/WEB-INF/html/Component/ReferencePrivateRoleGroupSingle.html
deleted file mode 100644
index 4ffbc9c66a0e7a69abcf110545a5ddd633bbb814..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/Component/ReferencePrivateRoleGroupSingle.html
+++ /dev/null
@@ -1,103 +0,0 @@
-
-
-
-
-
-
-
-
1
$RESOURCE{Select}
0
referenceprivaterolegroupsingle#doSave
approve
false
-
2
$RESOURCE{MenuClose}
0
referenceprivaterolegroupsingle#closeLayer
close
false
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/Component/ReferencePrivateRoleSingle.html b/AgileWorks/WebContent/WEB-INF/html/Component/ReferencePrivateRoleSingle.html
deleted file mode 100644
index 1e9a8b5c4a90a1e887049faa1a6fc3828d17409d..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/Component/ReferencePrivateRoleSingle.html
+++ /dev/null
@@ -1,191 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceProjectMultiple.html b/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceProjectMultiple.html
deleted file mode 100644
index 1085354c8e287fed901304003710bbc1d9292707..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceProjectMultiple.html
+++ /dev/null
@@ -1,123 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceProjectSingle.html b/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceProjectSingle.html
deleted file mode 100644
index bf2ca206dfa95f584d77e4edf9c69dd878d230ac..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceProjectSingle.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-
-
-
1
$RESOURCE{Select}
0
referenceprojectsingle#doSave
approve
false
-
2
$RESOURCE{MenuClose}
0
referenceprojectsingle#closeLayer
close
false
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/Component/ReferencePublicFolderSingle.html b/AgileWorks/WebContent/WEB-INF/html/Component/ReferencePublicFolderSingle.html
deleted file mode 100644
index 21cd6b1db94eac7de8014e2d47a15d91c4ba93cc..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/Component/ReferencePublicFolderSingle.html
+++ /dev/null
@@ -1,110 +0,0 @@
-
-
-
-
-
-
-
-
1
$RESOURCE{Select}
0
referencepublicfoldersingle#doSave
approve
false
-
2
$RESOURCE{MenuClose}
0
referencepublicfoldersingle#closeLayer
close
false
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/Component/ReferencePublicFormAndRuleSingle.html b/AgileWorks/WebContent/WEB-INF/html/Component/ReferencePublicFormAndRuleSingle.html
deleted file mode 100644
index d9eed18c89847a3ff12a8c63003bd365ad9b8e06..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/Component/ReferencePublicFormAndRuleSingle.html
+++ /dev/null
@@ -1,175 +0,0 @@
-
-
-
-
-
-
-
-
1
$RESOURCE{Select}
0
referencepublicformrulesingle#doSave
approve
false
-
2
$RESOURCE{MenuClose}
0
referencepublicformrulesingle#closeLayer
close
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{CriterionDate}:
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/Component/ReferencePublicFormMultiple.html b/AgileWorks/WebContent/WEB-INF/html/Component/ReferencePublicFormMultiple.html
deleted file mode 100644
index b8d215973b2364398a06847ea213417e95f8d600..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/Component/ReferencePublicFormMultiple.html
+++ /dev/null
@@ -1,205 +0,0 @@
-
-
-
-
-
-
-
-
1
$RESOURCE{Select}
0
referencepublicformmultiple#doSave
approve
false
-
2
$RESOURCE{MenuClose}
0
referencepublicformmultiple#closeLayer
close
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{CriterionDate}:
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/Component/ReferencePublicFormMultipleByProject.html b/AgileWorks/WebContent/WEB-INF/html/Component/ReferencePublicFormMultipleByProject.html
deleted file mode 100644
index 219db8c4e0caacbcb1fafe7e732b5e73344238cf..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/Component/ReferencePublicFormMultipleByProject.html
+++ /dev/null
@@ -1,210 +0,0 @@
-
-
-
-
-
-
-
-
1
$RESOURCE{Select}
0
referencepublicformmultiplebyproject#doSave
approve
false
-
2
$RESOURCE{MenuClose}
0
referencepublicformmultiplebyproject#closeLayer
close
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{CriterionDate}:
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/Component/ReferencePublicFormSingle.html b/AgileWorks/WebContent/WEB-INF/html/Component/ReferencePublicFormSingle.html
deleted file mode 100644
index c151f9ac18b96d88ef10395060d5f3996b9c0977..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/Component/ReferencePublicFormSingle.html
+++ /dev/null
@@ -1,175 +0,0 @@
-
-
-
-
-
-
-
-
1
$RESOURCE{Select}
0
referencepublicformsingle#doSave
approve
false
-
2
$RESOURCE{MenuClose}
0
referencepublicformsingle#closeLayer
close
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{CriterionDate}:
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/Component/ReferencePublicRuleSingle.html b/AgileWorks/WebContent/WEB-INF/html/Component/ReferencePublicRuleSingle.html
deleted file mode 100644
index 03f1b27d52ab9b2fd9e031c1dc3784452f04642d..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/Component/ReferencePublicRuleSingle.html
+++ /dev/null
@@ -1,174 +0,0 @@
-
-
-
-
-
-
-
-
1
$RESOURCE{Select}
0
referencepublicrulesingle#doSave
approve
false
-
2
$RESOURCE{MenuClose}
0
referencepublicrulesingle#closeLayer
close
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{CriterionDate}:
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceResourceMultiple.html b/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceResourceMultiple.html
deleted file mode 100644
index 979f00c8ae97f8e96c174cfcc27e4b8f72234c6e..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceResourceMultiple.html
+++ /dev/null
@@ -1,582 +0,0 @@
-
-
-
-
-
-
-
-
1
$RESOURCE{Select}
0
referenceresourcemultiple#doSave
approve
false
-
2
$RESOURCE{MenuClose}
0
referenceresourcemultiple#closeLayer
close
false
-
-
-
-
-
-
-
1
$RESOURCE{Organization}
OrgUnitTab
-
2
$RESOURCE{UniversalRole}
UniversalRoleTab
-
3
$RESOURCE{SectionRole}
SectionRoleTab
-
4
$RESOURCE{SectionRoleClass}
SectionRoleGroupTab
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{CriterionDate}:
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{CriterionDate}
-
-
-
- $RESOURCE{SearchCriteria}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceRuleCandidateSingle.html b/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceRuleCandidateSingle.html
deleted file mode 100644
index 2552cf44b84184935d6cf4b96b590f0bc5f80fdf..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceRuleCandidateSingle.html
+++ /dev/null
@@ -1,1087 +0,0 @@
-
-
-
-
-
-
-
-
1
$RESOURCE{Select}
0
referencerulecandidatesingle#doSave
approve
false
-
2
$RESOURCE{MenuClose}
0
referencerulecandidatesingle#closeLayer
close
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
1
$RESOURCE{Unit}
OrgUnitTab
-
2
$RESOURCE{UniversalRole}
UniversalRoleTab
-
3
$RESOURCE{SectionRole}
SectionRoleTab
-
4
$RESOURCE{SectionRoleClass}
SectionRoleGroupTab
-
-
6
$RESOURCE{Relative}
RelativeTab
-
-
-
-
-
-
-
-
1
$RESOURCE{UniversalRole}
UniversalRoleTab
-
2
$RESOURCE{SectionRole}
SectionRoleTab
-
3
$RESOURCE{SectionRoleClass}
SectionRoleGroupTab
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{CriterionDate}:
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{Select}
-
-
-
-
-
-
- $RESOURCE{SpecifyUnit}
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{Key}
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{SpecifyUpperAndLower}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{Select}
-
-
-
-
-
-
- $RESOURCE{UniversalRole}
-
-
-
-
-
-
- $RESOURCE{SpecifyUnit}
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{Key}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{SpecifyUpperAndLower}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{Select}
-
-
-
-
-
-
- $RESOURCE{SectionRole}
-
-
-
-
-
-
- $RESOURCE{SpecifyUnit}
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{Key}
-
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{SpecifyUpperAndLower}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{Select}
-
-
-
-
-
-
- $RESOURCE{SectionRoleClass}
-
-
-
-
-
- $RESOURCE{SpecifyUnit}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{Key}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{SpecifyUpperAndLower}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{Select}
-
-
-
-
-
-
- $RESOURCE{User}
-
-
-
-
-
- $RESOURCE{CriterionDate}
-
-
-
- $RESOURCE{SearchCriteria}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{Select}
-
-
-
-
-
-
- $RESOURCE{Relative}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceRuleMultiple.html b/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceRuleMultiple.html
deleted file mode 100644
index 2ec8fda14f43f263adaf568e7b7929b346b76161..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceRuleMultiple.html
+++ /dev/null
@@ -1,202 +0,0 @@
-
-
-
-
-
-
-
-
1
$RESOURCE{Select}
0
referencerulemultiple#doSave
approve
false
-
2
$RESOURCE{MenuClose}
0
referencerulemultiple#closeLayer
close
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{CriterionDate}:
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceRuleNodeSingle.html b/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceRuleNodeSingle.html
deleted file mode 100644
index f1ea26c721ef7f6530c245ef20ba13cd33cb8fc4..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceRuleNodeSingle.html
+++ /dev/null
@@ -1,161 +0,0 @@
-
-
-
-
-
-
-
-
1
$RESOURCE{Select}
0
referencerulenodesingle#doSave
approve
false
-
2
$RESOURCE{MenuClose}
0
referencerulenodesingle#closeLayer
close
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{CriterionDate}:
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceRuleSingle.html b/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceRuleSingle.html
deleted file mode 100644
index da9740b005d64526cbac56ba5f97312e9786fe7f..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceRuleSingle.html
+++ /dev/null
@@ -1,153 +0,0 @@
-
-
-
-
-
-
-
-
1
$RESOURCE{Select}
0
referencerulesingle#doSave
approve
false
-
2
$RESOURCE{MenuClose}
0
referencerulesingle#closeLayer
close
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{CriterionDate}:
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceSectionRoleClassSingle.html b/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceSectionRoleClassSingle.html
deleted file mode 100644
index c61ff02991da77c28852dd253af73f4732af5c61..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceSectionRoleClassSingle.html
+++ /dev/null
@@ -1,92 +0,0 @@
-
-
-
-
-
-
-
-
1
$RESOURCE{Select}
0
referencesectionroleclasssingle#doSave
approve
false
-
2
$RESOURCE{MenuClose}
0
referencesectionroleclasssingle#closeLayer
close
false
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceSectionRoleGroupSingle.html b/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceSectionRoleGroupSingle.html
deleted file mode 100644
index 83724a373d768c7009e9a8bf35feddb415b968d6..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceSectionRoleGroupSingle.html
+++ /dev/null
@@ -1,127 +0,0 @@
-
-
-
-
-
-
-
-
1
$RESOURCE{Select}
0
referencesectionrolegroupsingle#doSave
approve
false
-
2
$RESOURCE{MenuClose}
0
referencesectionrolegroupsingle#closeLayer
close
false
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceSectionRoleMultiple.html b/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceSectionRoleMultiple.html
deleted file mode 100644
index d186708af8167727acad68fdb8fb41dad70ea2ed..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceSectionRoleMultiple.html
+++ /dev/null
@@ -1,174 +0,0 @@
-
-
-
-
-
-
-
-
1
$RESOURCE{Select}
0
referencesectionrolemultiple#doSave
approve
false
-
2
$RESOURCE{MenuClose}
0
referencesectionrolemultiple#closeLayer
close
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceSectionRoleSingle.html b/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceSectionRoleSingle.html
deleted file mode 100644
index 6ff5252f53af37e57495a3123584bb0544849a3c..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceSectionRoleSingle.html
+++ /dev/null
@@ -1,159 +0,0 @@
-
-
-
-
-
-
-
-
1
$RESOURCE{Select}
0
referencesectionrolesingle#doSave
approve
false
-
2
$RESOURCE{MenuClose}
0
referencesectionrolesingle#closeLayer
close
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceSecurityRoleGroupSingle.html b/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceSecurityRoleGroupSingle.html
deleted file mode 100644
index 36decb1cf027baad8508bbe356a1f77c56bf05bf..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceSecurityRoleGroupSingle.html
+++ /dev/null
@@ -1,116 +0,0 @@
-
-
-
-
-
-
-
-
1
$RESOURCE{Select}
0
referencesecrolegroupsingle#doSave
approve
false
-
2
$RESOURCE{MenuClose}
0
referencesecrolegroupsingle#closeLayer
close
false
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceSecurityRoleMultiple.html b/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceSecurityRoleMultiple.html
deleted file mode 100644
index ab0f936317986865a5f4ea81df08cd2105d944b2..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceSecurityRoleMultiple.html
+++ /dev/null
@@ -1,146 +0,0 @@
-
-
-
-
-
-
-
-
1
$RESOURCE{Select}
0
referencesecurityrolemultiple#doSave
approve
false
-
2
$RESOURCE{MenuClose}
0
referencesecurityrolemultiple#closeLayer
close
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceSecurityRoleSingle.html b/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceSecurityRoleSingle.html
deleted file mode 100644
index c39ab5d3343deff0fde0e58b33809f1b1a86e2d6..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceSecurityRoleSingle.html
+++ /dev/null
@@ -1,160 +0,0 @@
-
-
-
-
-
-
-
-
1
$RESOURCE{Select}
0
referencesecrolesingle#doSave
approve
false
-
2
$RESOURCE{MenuClose}
0
referencesecrolesingle#closeLayer
close
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceUnitAppointMultiple.html b/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceUnitAppointMultiple.html
deleted file mode 100644
index 87c471093b818c3766ec3188064281670ee665dc..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceUnitAppointMultiple.html
+++ /dev/null
@@ -1,303 +0,0 @@
-
-
-
-
-
-
-
-
1
$RESOURCE{Select}
0
referenceunitappointsingle#doSave
approve
false
-
2
$RESOURCE{MenuClose}
0
referenceunitappointsingle#closeLayer
close
false
-
-
-
-
-
-
1
$RESOURCE{ChooseFromTheTree}
Tree
-
2
$RESOURCE{MenuSearch}
Search
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{EMPTY.ReferenceUnitAppointMultiple.1} $RESOURCE{AvailableChoices}
-
-
-
-
-
- $RESOURCE{EMPTY.ReferenceUnitAppointMultiple.1} $RESOURCE{SelectedUser}
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceUnitAppointSingle.html b/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceUnitAppointSingle.html
deleted file mode 100644
index 6d9580cbce422ee4309bdb4b8d7aab8fffd0a658..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceUnitAppointSingle.html
+++ /dev/null
@@ -1,254 +0,0 @@
-
-
-
-
-
-
-
-
1
$RESOURCE{Select}
0
referenceunitappointsingle#doSave
approve
false
-
2
$RESOURCE{MenuClose}
0
referenceunitappointsingle#closeLayer
close
false
-
-
-
-
-
-
1
$RESOURCE{ChooseFromTheTree}
Tree
-
2
$RESOURCE{MenuSearch}
Search
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{EMPTY.ReferenceUnitAppointSingle.3} $RESOURCE{AvailableChoices}
-
-
-
-
-
-
-
-
-
- $RESOURCE{SearchTarget}:
-
-
-
-
-
-
-
- $RESOURCE{SearchValue}:
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{EMPTY.ReferenceUnitAppointSingle.3} $RESOURCE{AvailableChoices}
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceUniversalRoleGroupSingle.html b/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceUniversalRoleGroupSingle.html
deleted file mode 100644
index 458c70fcdf8a011bc67e0d094dff7cb0ace7213a..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceUniversalRoleGroupSingle.html
+++ /dev/null
@@ -1,116 +0,0 @@
-
-
-
-
-
-
-
-
1
$RESOURCE{Select}
0
referenceunivrolegroupsingle#doSave
approve
false
-
2
$RESOURCE{MenuClose}
0
referenceunivrolegroupsingle#closeLayer
close
false
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceUniversalRoleMultiple.html b/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceUniversalRoleMultiple.html
deleted file mode 100644
index a969c9a43fdb6cd7e2ed72a5d0bcd21446e7870d..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceUniversalRoleMultiple.html
+++ /dev/null
@@ -1,167 +0,0 @@
-
-
-
-
-
-
-
-
-
1
$RESOURCE{Select}
0
referenceunivrolemultiple#doSave
approve
false
-
2
$RESOURCE{MenuClose}
0
referenceunivrolemultiple#closeLayer
close
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceUniversalRoleSingle.html b/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceUniversalRoleSingle.html
deleted file mode 100644
index d8e348e837c1f27de895a8be6fe1983e3dc721af..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceUniversalRoleSingle.html
+++ /dev/null
@@ -1,159 +0,0 @@
-
-
-
-
-
-
-
-
1
$RESOURCE{Select}
0
referenceunivrolesingle#doSave
approve
false
-
2
$RESOURCE{MenuClose}
0
referenceunivrolesingle#closeLayer
close
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceUserMasterSingle.html b/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceUserMasterSingle.html
deleted file mode 100644
index 40344872d902efe7f009945c4ca3b675e224b8f0..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceUserMasterSingle.html
+++ /dev/null
@@ -1,81 +0,0 @@
-
-
-
-
-
-
-
-
1
$RESOURCE{Select}
0
referenceusrmstsingle#doSave
approve
false
-
2
$RESOURCE{MenuClose}
0
referenceusrmstsingle#closeLayer
close
false
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceUserMultiple.html b/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceUserMultiple.html
deleted file mode 100644
index e6c38e23662914414450af55ef0658709ba8da12..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceUserMultiple.html
+++ /dev/null
@@ -1,223 +0,0 @@
-
-
-
-
-
-
-
-
1
$RESOURCE{Select}
0
referenceusermultiple#doSave
approve
false
-
2
$RESOURCE{MenuClose}
0
referenceusermultiple#closeLayer
close
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{CriterionDate}
-
-
-
- $RESOURCE{SearchCriteria}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceUserSingle.html b/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceUserSingle.html
deleted file mode 100644
index 048f8c90bf1c3395b37525985f3d4047e03de15f..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/Component/ReferenceUserSingle.html
+++ /dev/null
@@ -1,182 +0,0 @@
-
-
-
-
-
-
-
-
1
$RESOURCE{Select}
0
referenceusersingle#doSave
approve
false
-
2
$RESOURCE{MenuClose}
0
referenceusersingle#closeLayer
close
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{CriterionDate}
-
-
-
- $RESOURCE{SearchCriteria}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/AccountManager/AccountMan.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/AccountManager/AccountMan.html
deleted file mode 100644
index aeb458e1a73ef68af8070ccdd7c7b7d8a92ecd5c..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/AccountManager/AccountMan.html
+++ /dev/null
@@ -1,2518 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
1
新規
0
accountman#showUserAddLayer
new
-
-
2
編集
0
accountman#showUserEditLayer
edit
true
-
-
3
削除
0
accountman#deleteCurrentUser
delete
true
-
-
-
41
一括削除
4
accountman#deleteSelectedUser
delete
true
-
42
アカウントロック
4
accountman#lockSelectedUser
stop-sign
true
-
43
アカウントロック解除
4
accountman#unlockSelectedUser
go-sign
true
-
44
パスワード変更履歴を削除
4
accountman#deletePasswordHistorySelectedUser
delete
true
-
-
5
ログイン
0
accountman#loginAs
login
true
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
1
保存
0
accountman#doSaveUserUnitsOrder
save
-
2
閉じる
0
accountman#cancelSaveUserUnitsOrder
close
-
-
-
-
-
-
-
-
-
-
-
-
-
-
1
保存
0
accountman#doChangeUnitAppointmentValidityDate
save
-
2
閉じる
0
accountman#cancelAccountmanChangeValidityDateMenu
close
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
1
新規
0
accountman#referenceSecurityRoleMultiple
new
-
2
削除
0
accountman#deleteSecurityRoleAppoint
delete
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
1
新規
0
accountman#showAddProxyAssignLayer
new
-
2
編集
0
accountman#showEditProxyAssignLayer
edit
-
3
削除
0
accountman#deleteCurrentProxyAssign
delete
-
-
-
-
-
-
-
-
-
-
-
-
-
-
1
新規履歴
0
accountman#doAskNewVersionValidityDateFm
new
-
2
削除
0
accountman#doDeleteUserVersion
delete
-
-
-
-
-
-
-
1
保存
0
accountman#doAddUserVersion
save
-
2
閉じる
0
accountman#cancelNewVersionValidityDateFm
close
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ユーザーコード*
-
-
-
-
-
-
- インポートコード
-
-
-
-
-
-
- ユーザー名称*
-
-
-
-
-
- 表示言語
-
-
-
-
-
- ローカル名称
-
-
-
-
-
-
- カナ名称
-
-
-
-
-
- ログインID*
-
-
-
-
-
- パスワード*
-
-
-
-
-
-
-
-
-
-
-
- メールアドレス
-
-
-
-
-
-
- 印影上の表示名称
-
-
-
-
-
-
- 印影画像
-
-
-
-
-
-
-
- 有効期間
-
-
- ~
-
-
-
-
- (
)
-
-
-
- アカウントロック
-
-
-
-
-
-
- (自動ロック中)
-
-
-
-
- 拡張項目
-
-
-
-
-
- 備考
-
-
-
-
-
-
- 登録
-
-
-
-
-
-
- 更新
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 適用開始日
-
-
-
-
-
- (
-
- ~
-
- )
-
-
-
- ※適用開始日に指定した日から履歴を開始します。
-
-
-
-
-
-
-
-
-
-
-
- 適用開始日
-
-
-
-
-
-
- 適用終了日
-
-
-
-
-
-
- 現在の適用期間
-
-
- ~
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/AccountManager/AccountMan/StampImageUpload.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/AccountManager/AccountMan/StampImageUpload.html
deleted file mode 100644
index ea780ffb147d4d4df024ffa96f7f506f0645dea2..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/AccountManager/AccountMan/StampImageUpload.html
+++ /dev/null
@@ -1,125 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
1
アップロード
0
accountman.stampimage.upload#upload
save
false
-
2
削除
0
accountman.stampimage.upload#delete
delete
false
-
3
閉じる
0
accountman.stampimage.upload#closeLayer
close
false
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/AccountManager/BuiltinRoleMan.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/AccountManager/BuiltinRoleMan.html
deleted file mode 100644
index 0ca7a9c747d6f93506bf0eb9f5c3e1b592f5d1d7..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/AccountManager/BuiltinRoleMan.html
+++ /dev/null
@@ -1,379 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
11
ロールを所有するユーザーを追加
1
builtinroleman#showBuiltinRoleAppointmentAddLayer
user
ture
-
3
削除
0
builtinroleman#deleteCurrentObject
delete
ture
-
-
41
一括削除
4
builtinroleman#deleteSelectedObject
delete
ture
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/AccountManager/PrivateRoleMan.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/AccountManager/PrivateRoleMan.html
deleted file mode 100644
index 4eea28ba1f5e8cab7dce9efc641bda0cbeb1942d..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/AccountManager/PrivateRoleMan.html
+++ /dev/null
@@ -1,1842 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
99
上へ
0
privateroleman#moveUp
moveup
-
-
11
新しいロールフォルダ
1
privateroleman#showPrivateRoleGroupAddLayer
folder_close
-
12
新しいロール
1
privateroleman#showPrivateRoleAddLayer
private_role
true
-
2
編集
0
privateroleman#showObjectUpdateLayer
edit
false
-
3
削除
0
privateroleman#deleteCurrentObject
delete
true
-
-
41
一括削除
4
privateroleman#deleteSelectedObject
delete
-
42
移動
4
privateroleman#moveSelectedObject
cut
-
43
エクスポート
4
privateroleman#export
export
-
-
51
ロールフォルダ
5
privateroleman#showPrivateRoleGroupOrderLayer
folder_close
-
52
ロール
5
privateroleman#showPrivateRoleOrderLayer
private_role
-
6
インポート
0
privateroleman#showImportLayer
import
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
1
新規
0
privateroleman#showPrivateRoleGroupAccessorLayer
new
false
-
11
編集権限を追加
1
privateroleman#showPrivateRoleGroupAccessorLayer
new
false
-
12
全ての組織を設定
1
privateroleman#setAccessorAllUnits
new
false
-
2
削除
0
privateroleman#deletePrivateRoleGroupAccessor
delete
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
1
保存
0
privateroleman#doSavePrivateRoleGroupOrder
save
-
2
閉じる
0
privateroleman#cancelSavePrivateRoleGroupOrder
close
-
-
-
-
-
-
-
-
1
保存
0
privateroleman#doSavePrivateRoleOrder
save
-
2
閉じる
0
privateroleman#cancelSavePrivateRoleOrder
close
-
-
-
-
-
-
-
-
-
-
1
インポート
0
privateroleman#importPrivateRole
save
-
2
閉じる
0
privateroleman#cancelImportPrivateRole
close
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- コード*
-
-
-
-
-
- 名称*
-
-
-
-
-
- 親フォルダ
-
-
-
-
-
- 備考
-
-
-
-
-
- 登録
-
-
-
-
-
-
- 更新
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- コード*
-
-
-
-
-
- インポートコード
-
-
-
-
-
- 名称*
-
-
-
-
-
- 警告表示
-
- 対象ユーザー未指定時
-
-
-
-
-
-
-
- 親ロールフォルダ
-
-
-
-
-
- 備考
-
-
-
-
-
- 登録
-
-
-
-
-
-
- 更新
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 件名
-
-
-
-
-
- 説明文
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/AccountManager/ProxyAssign.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/AccountManager/ProxyAssign.html
deleted file mode 100644
index f35486b0e92609d826e6c3061240188df848fbb1..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/AccountManager/ProxyAssign.html
+++ /dev/null
@@ -1,150 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
1
新規
0
proxyassign#new
new
-
-
2
編集
0
proxyassign#edit
edit
-
-
3
削除
0
proxyassign#delete
delete
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 対象者
-
-
-
- 権限を与える組織
-
-
-
- 権限を与えるフォーム
-
-
-
-
-
-
-
-
- 与える権限
-
-
-
-
- 代理者
-
-
-
- 期間
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/AccountManager/SecurityRoleMan.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/AccountManager/SecurityRoleMan.html
deleted file mode 100644
index 7e7cc6e694a0cebe0c4cadb8d3aaf20d472e31f3..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/AccountManager/SecurityRoleMan.html
+++ /dev/null
@@ -1,1653 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
99
上へ
0
securityroleman#moveUp
moveup
-
-
11
新しいロールフォルダ
1
securityroleman#showSecurityRoleGroupAddLayer
folder_close
-
12
新しいロール
1
securityroleman#showSecurityRoleAddLayer
security_role
true
-
13
ロールを所有するユーザーを追加
1
securityroleman#showSecurityRoleAppointmentAddLayer
-
user
-
2
編集
0
securityroleman#showObjectUpdateLayer
edit
false
-
3
削除
0
securityroleman#deleteCurrentObject
delete
true
-
-
41
一括削除
4
securityroleman#deleteSelectedObject
delete
-
43
移動
4
securityroleman#moveSelectedObject
cut
-
-
51
ロールフォルダ
5
securityroleman#showSecurityRoleGroupOrderLayer
folder_close
-
52
ロール
5
securityroleman#showSecurityRoleOrderLayer
security_role
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
1
保存
0
securityroleman#doSaveSecurityRoleGroupOrder
save
-
2
閉じる
0
securityroleman#cancelSaveSecurityRoleGroupOrder
close
-
-
-
-
-
-
-
-
1
保存
0
securityroleman#doSaveSecurityRoleOrder
save
-
2
閉じる
0
securityroleman#cancelSaveSecurityRoleOrder
close
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- コード*
-
-
-
-
-
- 名称*
-
-
-
-
-
- 親フォルダ
-
-
-
-
-
- 備考
-
-
-
-
-
- 登録
-
-
-
-
-
-
-
- 更新
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- コード*
-
-
-
-
-
- 名称*
-
-
-
-
-
- 親ロールフォルダ
-
-
-
-
-
- 備考
-
-
-
-
-
- 登録
-
-
-
-
-
-
- 更新
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- コンテンツ
-
-
-
-
-
-
- 業務カテゴリ
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/AddonManager/AddonMan.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/AddonManager/AddonMan.html
deleted file mode 100644
index b8e058fa643fe391a3266b237d91844950f591dd..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/AddonManager/AddonMan.html
+++ /dev/null
@@ -1,46 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/AddonManager/Bricklet.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/AddonManager/Bricklet.html
deleted file mode 100644
index 22f39a2d531548b7e2cebda13ad8505f10fc6bee..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/AddonManager/Bricklet.html
+++ /dev/null
@@ -1,937 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
1
デプロイ
0
bricklet#showUploadLayer
new
false
-
2
編集
0
bricklet#showBrickletEditLayer
edit
false
-
3
削除
0
bricklet#deleteCurrent
delete
false
-
-
41
有効
4
bricklet#activateSelect
go-sign
false
-
42
無効
4
bricklet#deactivateSelect
stop-sign
false
-
43
一括削除
4
bricklet#deleteSelect
delete
false
-
-
51
イベント設定
5
bricklet#showImportLayer
import
false
-
-
61
イベント設定
6
bricklet#exportFlowActivity
export
true
-
-
-
-
-
-
-
-
-
-
1
保存
0
bricklet#doSaveBricklet
save
-
2
閉じる
0
bricklet#cancelSaveBricklet
close
-
-
-
-
-
-
-
1
新規
0
bricklet#showFlowActivityAddLayer
new
-
2
編集
0
bricklet#showFlowActivityEditLayer
edit
-
3
削除
0
bricklet#deleteFlowActivityCurrent
delete
-
-
41
一括削除
4
bricklet#deleteFlowActivitySelect
delete
-
-
-
-
-
-
-
1
保存
0
bricklet#doSaveFlowActivity
save
-
2
閉じる
0
bricklet#cancelSaveFlowActivity
close
-
-
-
-
-
-
-
1
デプロイ
0
bricklet#doUpload
new
-
2
閉じる
0
bricklet#cancelUpload
close
-
-
-
-
-
-
-
1
インポート
0
bricklet#doImportFlowActivity
import
-
2
閉じる
0
bricklet#cancelImportFlowActivity
close
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 見出し*
-
-
-
-
-
- クラス名
-
-
-
-
-
- ベンダー
-
-
-
-
-
- バージョン
-
-
-
-
-
- 登録
-
-
-
-
-
-
- 更新
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Bricklet:
-
-
-
-
-
- ステップ:*
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- イベント:*
-
-
-
-
-
- 書類操作:
-
-
-
-
-
- プロシージャ:*
-
-
-
-
-
- 登録
-
-
-
-
-
-
- 更新
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- CSVファイル*
-
-
-
-
-
- 先頭行
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/AddonManager/EsbConf.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/AddonManager/EsbConf.html
deleted file mode 100644
index 4cf0fcc35e5811a10f36b34e6a011c2325bdd977..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/AddonManager/EsbConf.html
+++ /dev/null
@@ -1,386 +0,0 @@
-
-
-
-
-
-
-
-
1
再表示
0
esbconf#reloadByMenu
reload
false
-
-
-
-
11
新規アップロード
2
esbconf#addEsb
import
false
-
-
-
-
21
修正アップロード
3
esbconf#updateEsb
import
false
-
-
-
23
起動
3
esbconf#startEsb
go-sign
false
-
-
-
24
停止
3
esbconf#stopEsb
stop-sign
false
-
-
-
4
削除
0
esbconf#deleteEsb
delete
false
-
-
-
5
ダウンロード
0
esbconf#downloadEsb
export
true
-
-
-
-
-
-
-
-
-
-
1
アップロード
0
esbconf#doAddEsb
formupload
-
-
-
2
閉じる
0
esbconf#cancelAddEsb
close
-
-
-
-
-
-
-
-
-
-
1
アップロード
0
esbconf#doUpdateEsb
formupload
-
-
-
2
閉じる
0
esbconf#cancelUpdateEsb
close
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- コード
-
-
-
-
-
- 名称
-
-
-
-
-
- ZIPファイル*
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/AddonManager/EsbServerConf.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/AddonManager/EsbServerConf.html
deleted file mode 100644
index 918828d043e7a2f99b4e90f40c60a4c4076885ef..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/AddonManager/EsbServerConf.html
+++ /dev/null
@@ -1,98 +0,0 @@
-
-
-
-
-
-
-
-
1
保存
0
esbserverconf#update
save
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- サーバーアドレス*
-
-
-
- ポート番号*
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/AddonManager/ExtLib.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/AddonManager/ExtLib.html
deleted file mode 100644
index ce7126c9365f5e25ddf963de2379cc95c780a54f..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/AddonManager/ExtLib.html
+++ /dev/null
@@ -1,173 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
1
再読み込み
0
extlib#reload
reload
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/DocManager/ArchiveConf.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/DocManager/ArchiveConf.html
deleted file mode 100644
index c3ead5107339a78ffa23e3a40cf04fd4f6d06826..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/DocManager/ArchiveConf.html
+++ /dev/null
@@ -1,889 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
2
新規
0
archiveconf#showAddLayer
new
-
3
編集
0
archiveconf#showEditLayer
edit
-
4
削除
0
archiveconf#deleteCurrent
delete
-
-
51
一括削除
5
archiveconf#deleteSelected
delete
-
-
61
リハーサル実行
6
archiveconf#showSubmitRehearsalJobLayer
exec
-
62
本番実行
6
archiveconf#submitRealpartJob
exec
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- document.getElementById("archiveconf-edit-output-condition").style.display = "";
- document.getElementById("archiveconf-edit-path-federation-foldercode").style.display = "none";
- document.getElementById("archiveconf-edit-path-federation-url").style.display = "none";
- document.getElementById("archiveconf-edit-path-file").style.display = "none";
-
-
-
-
-
- document.getElementById("archiveconf-edit-output-condition").style.display = "none";
-
-
-
-
-
-
-
- document.getElementById("archiveconf-edit-path-federation-foldercode").style.display = "";
- document.getElementById("archiveconf-edit-path-federation-url").style.display = "";
-
-
-
-
- document.getElementById("archiveconf-edit-path-file").style.display = "";
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 基本設定
-
- コード*
-
-
-
-
-
- 名称*
-
-
-
-
-
- モード*
-
-
-
-
-
-
-
- 状態
-
-
-
-
-
-
- 対象*
-
-
-
-
-
- 日経過した書類。
-
-
-
-
-
-
-
-
-
-
-
- アーカイブ設定
-
-
- URL
-
-
-
-
-
-
- 受信フォルダ
-
-
-
-
-
-
- パス*
-
-
-
-
-
- 出力対象
-
-
-
-
-
-
-
-
- その他
-
- 備考
-
-
-
-
-
- 登録
-
-
-
-
-
-
- 更新
-
-
-
-
-
-
-
-
-
-
-
-
-
- 対象
-
-
-
-
-
-
- フォーム
-
-
-
-
-
-
-
-
-
-
-
-
-
- 対象
-
-
-
-
-
-
- 回付ルール
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/DocManager/DocMan.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/DocManager/DocMan.html
deleted file mode 100644
index 05650abb3fb957e02ba16a141d9b69e86531b8f8..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/DocManager/DocMan.html
+++ /dev/null
@@ -1,1130 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
1
folder
/images/common/icon/object/folder_close20.gif?build31956
relative
-
2
search
/images/common/icon/action/search.gif?build31956
relative
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
11
フォルダ
1
docexplorer#showFolderEntryLayer
folder_close
-
12
検索条件
1
docexplorer#showFindDetailEntryLayer
search
-
2
編集
0
docexplorer#showTreeObjectEditLayer
edit
-
3
整理
0
docexplorer#showOrganizeLayer
list
-
-
-
-
-
-
-
1
保存
0
docexplorer#doEditFolder
save
-
2
閉じる
0
docexplorer#cancelEditFolder
close
-
-
-
-
-
-
-
1
保存
0
docexplorer#doPromptFolder
save
-
2
閉じる
0
docexplorer#cancelPromptFolder
close
-
-
-
-
-
-
-
1
保存
0
docexplorer#doMoveObject
save
-
2
閉じる
0
docexplorer#cancelMoveObject
close
-
-
-
-
-
-
-
1
新しいフォルダ
0
docexplorer#showPromptLayer
folder_close
-
2
移動
0
docexplorer#showMoveLayer
cut
-
3
削除
0
docexplorer#deleteObject
delete
-
4
閉じる
0
docexplorer#closeOrganizeLayer
close
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 保存先:
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 移動先:
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/DocManager/DocTrans.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/DocManager/DocTrans.html
deleted file mode 100644
index 26330d361f830e33d8728dc74ed1d2cb34404888..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/DocManager/DocTrans.html
+++ /dev/null
@@ -1,2400 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
1
検索
0
doctrans#search
search
false
-
2
クリア
0
doctrans#clearSearchDetail
restore
false
-
3
閉じる
0
doctrans#cancelSearchDetail
close
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
1
実行
0
doctrans#doUnitTrans
save
false
-
2
閉じる
0
doctrans#closeUnitTransLayer
close
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
11
編集権限付与
1
doctrans#doAddEditableReferenceObjects
edit
false
-
-
21
編集権限のみ削除
2
doctrans#doDeleteEditableReferenceObjects
delete
false
-
22
削除
2
doctrans#doDeleteReferenceObjects
delete
false
-
3
閉じる
0
doctrans#closeUpdateReferenceLayer
close
false
-
-
-
-
-
-
-
-
-
2
ロール
AddReferenceRoleTab
-
3
ユーザー
AddReferenceUserTab
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 基準日:
-
-
-
- 表示単位:
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{DocId}:
-
-
- $RESOURCE{ExternalKey}:
-
-
-
-
-
-
- 書類管理番号:
-
-
-
-
-
- $RESOURCE{DocStatus}:
-
-
-
-
-
- 処理日付:
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 件名:
-
-
-
-
-
- フォーム:
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 変更前組織
-
-
-
-
-
-
-
-
-
-
-
-
-
- 変更後組織
-
-
-
-
- 基準日:
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 組織
-
-
-
-
-
-
-
- 上位/下位
-
-
-
-
-
- ロール
-
-
-
-
-
-
-
-
- 編集権限
-
-
-
-
-
-
-
-
-
- ▼ 選択された閲覧者
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ロール
-
-
-
-
-
-
-
-
- 編集権限
-
-
-
-
-
-
-
-
-
- ▼ 選択された閲覧者
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ユーザー
-
-
-
-
-
-
-
- 上位/下位
-
-
-
-
-
- ロール
-
-
-
-
-
-
-
-
- 編集権限
-
-
-
-
-
-
-
-
-
- ▼ 選択された閲覧者
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/EMMA.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/EMMA.html
deleted file mode 100644
index 3c8feaf883e5cb0cd2bfb6ad578994ff26b702bc..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/EMMA.html
+++ /dev/null
@@ -1,290 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/FlowManager/FlowMan.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/FlowManager/FlowMan.html
deleted file mode 100644
index d178396be90c134a210e39bb0fac5f9334fe155c..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/FlowManager/FlowMan.html
+++ /dev/null
@@ -1,701 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
1
編集
0
flowman#flowEditorClientEditVersion
edit
-
2
適用日変更
0
flowman#showRuleValidityDateEditLayer
edit
-
3
削除
0
flowman#deleteRuleVersion
delete
-
4
閉じる
0
flowman#closeRuleVersionLayer
close
-
-
-
-
-
-
1
保存
0
flowman#saveRuleVersionValidityDate
save
-
2
閉じる
0
flowman#closeRuleVersionValidityDate
close
-
-
-
-
-
-
-
1
コピー
0
flowman#copyRule
copynew
-
2
閉じる
0
flowman#closeRuleCopyLayer
close
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- バージョン
-
-
-
-
-
- 適用開始日
-
-
-
-
-
-
- 適用終了日
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 業務カテゴリ
-
-
-
-
-
-
- コード
-
-
-
-
-
- 名称
-
-
-
-
-
- 最新バージョン
-
-
-
-
-
- 適用開始日*
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/FormManager/ComponentMan.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/FormManager/ComponentMan.html
deleted file mode 100644
index 947cca9b842fbd73c465f362ea0bbc25b5eb8cb0..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/FormManager/ComponentMan.html
+++ /dev/null
@@ -1,54 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/FormManager/FormMan.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/FormManager/FormMan.html
deleted file mode 100644
index 3b8b4a36f71be9e95fa2be755d7ffae835e90eb9..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/FormManager/FormMan.html
+++ /dev/null
@@ -1,5428 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
1
アップロード
0
formman#doAddForm
formupload
-
2
閉じる
0
formman#cancelAddForm
close
-
-
-
-
-
-
-
1
アップロード
0
formman#doUpdateForm
formupload
-
2
閉じる
0
formman#cancelUpdateForm
close
-
-
-
-
-
-
-
-
-
3
Table
false
TEMPLATE:WEBFORM
テーブル定義
-
4
Rule
false
TEMPLATE:WEBFORM,SUB:WEBFORM,MAIN:ARCHIVE,SUB:ARCHIVE
回付ルール
-
5
FormReference
false
TEMPLATE:WEBFORM,SUB:WEBFORM,MAIN:ARCHIVE,SUB:ARCHIVE
関連フォーム
-
6
DovView
false
TEMPLATE:WEBFORM,SUB:WEBFORM,SUB:ARCHIVE
書類ビュー
-
7
MobileView
false
TEMPLATE:WEBFORM,SUB:WEBFORM,MAIN:ARCHIVE,SUB:ARCHIVE
モバイルビュー
-
8
Pdf
false
TEMPLATE:WEBFORM,SUB:WEBFORM,MAIN:ARCHIVE,SUB:ARCHIVE
PDF
-
-
-
-
-
-
-
1
保存
0
formman#doSaveForm
save
-
2
閉じる
0
formman#cancelSaveForm
close
-
-
-
-
-
-
-
1
設定
0
formman#doUpdateListNameLayer
save
-
2
閉じる
0
formman#closeListNameLayer
close
-
-
-
-
-
-
-
1
保存
0
formman#saveFormVersionValidityDate
save
-
2
閉じる
0
formman#closeFormVersionValidityDate
close
-
-
-
-
-
-
-
-
11
回付ルールを追加
1
formman#showRuleRelationLayer
rule
-
-
-
-
3
削除
0
formman#deleteFormRule
delete
true
-
-
-
-
-
-
-
1
新規
0
formman#showSourceFormLayer
new
false
-
2
編集
0
formman#editSourceFormLayer
edit
false
-
3
削除
0
formman#deleteSourceForm
delete
true
-
4
並び順設定
0
formman#showSourceFormOrderLayer
sortconfig
-
-
-
-
-
-
-
1
保存
0
formman#doUpdateSourceForm
save
-
2
閉じる
0
formman#cancelUpdateSourceForm
close
-
-
-
-
-
-
-
1
追加
0
formman#createItemMap
new
-
2
削除
0
formman#deleteItemMap
delete
-
-
-
-
-
-
-
-
11
一覧ビュー
1
formman#showAddFormViewLayer
new
false
-
12
サマリビュー
1
formman#showSummaryViewAddLayer
new
false
-
2
編集
0
formman#showUpdateFormView
edit
false
-
3
削除
0
formman#showDeleteFormView
delete
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
11
-
公開先を追加
-
1
-
formman#showPublicFolderAccessorLayer
-
user
-
-
-
12
-
全ての組織を設定
-
1
-
formman#setAccessorAllUnits
-
allunit
-
-
-
2
-
削除
-
0
-
formman#doDeleteFormViewDetailAccessControl
-
delete
-
-
-
-
-
-
-
-
-
1
-
設定
-
0
-
formman#doSaveFormViewList
-
save
-
-
-
2
-
閉じる
-
0
-
formman#closeFormViewEditLayer
-
close
-
-
-
-
-
-
-
-
1
保存
0
formman#doSaveSummaryView
save
-
2
閉じる
0
formman#closeSummaryViewLayer
close
-
-
-
-
-
-
-
-
-
1
追加
0
formman#showSummaryViewGroupAddLayer
new
-
2
編集
0
formman#showSummaryViewGroupEditLayer
edit
-
3
削除
0
formman#deleteSummaryViewGroup
delete
-
5
上へ
0
formman#orderupSummaryViewGroup
order_up
-
6
下へ
0
formman#orderdownSummaryViewGroup
order_down
-
-
-
-
-
-
-
1
追加
0
formman#showSummaryViewItemAddLayer
new
-
2
編集
0
formman#showSummaryViewItemEditLayer
edit
-
3
削除
0
formman#deleteSummaryViewItem
delete
-
5
上へ
0
formman#orderupSummaryViewItem
order_up
-
6
下へ
0
formman#orderdownSummaryViewItem
order_down
-
-
-
-
-
-
-
1
設定
0
formman#doSaveSummaryViewGroup
save
-
2
閉じる
0
formman#closeSummaryViewGroupLayer
close
-
-
-
-
-
-
-
1
設定
0
formman#doSaveSummaryViewItem
save
-
2
閉じる
0
formman#closeSummaryViewItemLayer
close
-
-
-
-
-
-
-
-
-
-
1
保存
0
formman#doSavePdf
save
false
-
-
-
-
-
-
-
-
1
保存
0
formman#doSaveMobileView
save
false
-
2
項目追加・削除
0
formman#showEditLayer
edit
true
-
-
-
-
-
-
-
-
-
2
閉じる
0
formman#closeEditLayer
close
-
-
-
-
-
-
-
-
1
保存
0
formman#doSortForm
save
-
2
閉じる
0
formman#cancelSortForm
close
-
-
-
-
-
-
-
-
1
保存
0
formman#doSortSourceForm
save
-
2
閉じる
0
formman#cancelSortSourceForm
close
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- document.getElementById("formman-form-add-type-td").style.display = "none";
-
-
-
-
-
-
-
-
- document.getElementById("formman-form-add-type-td").style.display = "";
-
-
-
-
-
- document.getElementById("formman-form-add-type-td").style.display = "none";
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- document.getElementById("formman-form-config-detail-listsetting").style.display = "";
- document.getElementById("formman-form-config-detail-docowner").style.display = "";
- document.getElementById("formman-form-config-detail-windowsize").style.display = "";
- document.getElementById("formman-form-config-detail-code").style.display = "";
- document.getElementById("formman-form-config-detail-form-action-setting").style.display = "";
-
-
-
-
-
-
- document.getElementById("formman-form-config-detail-listsetting").style.display = "none";
- document.getElementById("formman-form-config-detail-docowner").style.display = "none";
- document.getElementById("formman-form-config-detail-windowsize").style.display = "none";
- document.getElementById("formman-form-config-detail-form-action-setting").style.display = "none";
-
-
-
-
-
- document.getElementById("formman-form-config-detail-listsetting").style.display = "none";
- document.getElementById("formman-form-config-detail-docowner").style.display = "none";
- document.getElementById("formman-form-config-detail-code").style.display = "none";
- document.getElementById("formman-form-config-detail-form-action-setting").style.display = "none";
-
-
-
-
-
- document.getElementById("formman-form-config-detail-docowner").style.display = "none";
-
-
-
-
-
-
-
-
-
.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 業務カテゴリ
-
-
-
-
-
-
- ZIPファイル*
-
-
-
-
-
- 用途
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- フォーム名
-
-
-
-
-
-
- ZIPファイル*
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 基本設定
-
-
- コード*
-
-
-
-
-
- 名称*
-
-
-
-
-
- 書類オーナー
-
-
-
-
-
-
- ウィンドウサイズ
-
-
- ×
-
-
-
-
- 備考
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- その他
-
-
- バージョン
-
-
- (最新バージョン:
)
-
-
-
- 用途
-
-
-
-
-
- 適用日
-
-
- ~
-
-
-
-
- 登録
-
-
-
-
-
-
- 更新
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- バージョン選択 :
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 利用テンプレート*
-
-
-
-
-
- 挿入する位置
-
-
-
-
-
-
- 挿入するタイミング
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 表示項目
-
-
-
-
-
- 見出し*
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- バージョン
-
-
-
-
-
- 適用開始日
-
-
-
-
-
-
- 適用終了日
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 名称*
-
-
-
-
-
- フォーム名
-
-
-
-
-
-
-
-
-
- 引用フィールド設定
-
-
-
-
-
-
-
-
-
-
- 引用元:
-
-
-
-
-
- 引用先:
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- コード*
-
-
-
-
-
- 名称*
-
-
-
-
-
- 利用箇所*
-
-
-
-
-
-
-
-
-
- 表明細
-
-
-
-
- 一括承認の許可
-
-
-
-
-
-
-
-
-
-
- 一覧表示項目
-
-
-
-
-
-
-
-
-
-
- 表示項目
-
-
-
-
-
- 見出し*
-
-
-
-
-
- 幅*
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- コード*
-
-
-
-
-
-
- 名称*
-
-
-
-
-
- 利用箇所*
-
-
-
-
-
-
-
- 表明細
-
-
-
-
-
- 総計行の挿入
-
-
-
-
-
- グルーピングキー項目*
-
-
-
-
-
-
- 列項目*
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 見出し*
-
-
-
-
-
- 表示項目*
-
-
-
-
-
- 小計行の挿入
-
-
-
-
-
- 列幅*
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 見出し*
-
-
-
-
-
- 計算種別*
-
-
-
-
-
- 表示項目*
-
-
- (件数)
-
-
-
- フィルター
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 列幅*
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/FormManager/MasterDataSource.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/FormManager/MasterDataSource.html
deleted file mode 100644
index 0a40ee63346123320915d815bd6018e333a59d49..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/FormManager/MasterDataSource.html
+++ /dev/null
@@ -1,2046 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
11
外部マスタ(標準)をマスタデータとして定義
1
masterdatasource#showAddDataSourceLayer
new
-
12
フォームをマスタデータとして定義
1
masterdatasource#showAddFormDataSourceLayer
new
-
13
組織系マスタをマスタデータとして定義
1
masterdatasource#showAddSystemDataSourceLayer
new
-
14
外部マスタ(拡張)をマスタデータとして定義
1
masterdatasource#showAddUserDataSourceLayer
new
-
2
編集
0
masterdatasource#showEditLayer
edit
-
3
削除
0
masterdatasource#deleteCurrent
delete
-
-
41
マスタデータ定義XMLのインポート
4
masterdatasource#showXmlImportLayer
import
-
-
51
マスタデータ定義XMLのエクスポート
5
masterdatasource#exportXml
export
-
-
-
-
-
-
-
-
-
-
-
1
インポート
0
masterdatasource#doImportMasterDataDefinition
import
-
2
閉じる
0
masterdatasource#cancelImportMasterDataDefinition
close
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 業務カテゴリ
-
-
-
-
-
-
-
- コード*
-
-
-
-
-
-
- 名称*
-
-
-
-
-
- 利用コンポーネント数
-
-
-
-
-
- 登録
-
-
-
-
-
-
- 更新
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 業務カテゴリ
-
-
-
-
-
-
-
- コード*
-
-
-
-
-
- 名称*
-
-
-
-
-
- テーブル名*
-
-
-
-
-
-
- 利用コンポーネント数
-
-
-
-
-
- 登録
-
-
-
-
-
-
- 更新
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 業務カテゴリ
-
-
-
-
-
-
- コード*
-
-
-
-
-
- 名称*
-
-
-
-
-
- フォーム*
-
-
-
-
-
-
- 表明細
-
-
-
-
-
-
- 閲覧範囲
-
-
-
-
-
-
- 書類状態
-
-
-
-
-
-
- 利用コンポーネント数
-
-
-
-
-
- 登録
-
-
-
-
-
-
- 更新
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 業務カテゴリ
-
-
-
-
-
-
-
- コード*
-
-
-
-
-
- 名称*
-
-
-
-
-
- 対象マスタ*
-
-
-
-
-
-
- 利用コンポーネント数
-
-
-
-
-
- 登録
-
-
-
-
-
-
- 更新
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- コード*
-
-
-
-
-
- 名称*
-
-
-
-
-
- 型*
-
-
-
-
-
-
- 桁数
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- コード
-
-
-
-
-
- 名称
-
-
-
-
-
- CSVファイル*
-
-
-
-
-
- 取込形式*
-
-
-
-
-
-
- 実行モード*
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/FormManager/MasterWindow.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/FormManager/MasterWindow.html
deleted file mode 100644
index 8b88124cb5b9271ff6a7f81936cbc2c6555b4519..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/FormManager/MasterWindow.html
+++ /dev/null
@@ -1,412 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
1
編集
0
masterwindow#showEditLayer
edit
-
2
削除
0
masterwindow#deleteCurrent
delete
-
-
31
コンポーネント定義XMLのインポート
3
masterwindow#showXmlImportLayer
import
-
-
41
コンポーネント定義XMLのエクスポート
4
masterwindow#exportXml
export
-
-
-
-
-
-
-
-
-
1
保存
0
masterwindow#doSaveMasterWindow
save
-
2
閉じる
0
masterwindow#cancelSaveMasterWindow
close
-
-
-
-
-
-
-
1
インポート
0
masterwindow#doImportMasterComponentDefinition
import
-
2
閉じる
0
masterwindow#cancelImportMasterComponentDefinition
close
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- コード*
-
-
-
-
-
- 名称*
-
-
-
-
-
- マスタデータ
-
-
-
-
-
-
- 説明
-
-
-
-
-
- 登録
-
-
-
-
-
-
-
- 更新
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/FormManager/Numbering.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/FormManager/Numbering.html
deleted file mode 100644
index cc1dec861330885dc44bb74570ef667569a1211b..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/FormManager/Numbering.html
+++ /dev/null
@@ -1,1326 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
1
新規
0
numbering#showAddLayer
new
-
2
編集
0
numbering#showEditLayer
edit
-
3
削除
0
numbering#deleteCurrent
delete
-
-
41
一括削除
4
numbering#deleteSelected
delete
-
-
51
自動採番定義XMLのインポート
5
numbering#showXmlImportLayer
import
-
-
61
自動採番定義XMLのエクスポート
6
numbering#exportXml
export
-
-
-
-
-
-
-
-
-
-
-
-
2
テキスト追加
1
numbering#showTextAddLayer
numbering
-
3
予約語追加
1
numbering#showReserveAddLayer
numbering
-
4
連番追加
1
numbering#showSequentialAddLayer
numbering
-
5
削除
0
numbering#deleteRule
delete
-
6
上へ
0
numbering#upRule
order_up
-
7
下へ
0
numbering#downRule
order_down
-
-
-
-
-
-
-
1
追加
0
numbering#doAddText
save
-
2
閉じる
0
numbering#cancelAddText
close
-
-
-
-
-
-
-
1
追加
0
numbering#doAddReserve
save
-
2
閉じる
0
numbering#cancelAddReserve
close
-
-
-
-
-
-
-
1
追加
0
numbering#doAddSequential
save
-
2
閉じる
0
numbering#cancelAddSequential
close
-
-
-
-
-
-
1
現在番号変更
0
numbering#showChangeNumberLayer
numbering
-
-
-
-
-
-
-
1
保存
0
numbering#doChangeNumber
save
-
2
閉じる
0
numbering#cancelChangeNumber
close
-
-
-
-
-
-
-
1
インポート
0
numbering#doImportNumberingDefinition
import
-
2
閉じる
0
numbering#cancelImportNumberingDefinition
close
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- コード*
-
-
-
-
-
- 名称*
-
-
-
-
-
- 採番ルール設定
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 桁数溢れ時
-
-
-
-
-
-
- 備考
-
-
-
-
-
- 登録
-
-
-
-
-
-
-
- 更新
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 予約語
-
-
-
-
-
-
-
- フォーマット
-
-
-
-
-
-
-
- 参照日付
-
-
-
-
-
-
- 開始日
-
-
-
-
-
-
-
-
-
-
-
-
-
- 連番
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 桁
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 現在採番値
-
-
-
-
-
- 現在番号*
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/OrgManager/OrgMan.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/OrgManager/OrgMan.html
deleted file mode 100644
index b1c662d1f2f7e6f47b1e109d1ca719934db02751..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/OrgManager/OrgMan.html
+++ /dev/null
@@ -1,2505 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
1
保存
0
orgman#doSaveSubUnitOrder
save
-
2
閉じる
0
orgman#cancelSaveSubUnitOrder
close
-
-
-
-
-
-
-
1
保存
0
orgman#doSaveUnitAppointmentOrder
save
-
2
閉じる
0
orgman#cancelSaveUnitAppointmentOrder
close
-
-
-
-
-
-
-
-
-
1
保存
0
orgman#doAddUnitVersion
save
-
2
閉じる
0
orgman#cancelNewVersionValidityDateFm
close
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 組織コード*
-
-
-
-
-
- インポートコード
-
-
-
-
-
- 組織名称*
-
-
-
-
-
- 画面表示名称
-
-
-
-
-
- ローカル表示名称
-
-
-
-
-
-
- 親組織
-
-
-
-
-
- 全体適用開始日
-
-
-
-
-
- 全体適用終了日
-
-
-
-
-
-
- 履歴適用開始日
-
-
-
-
-
- 履歴適用終了日
-
-
-
-
-
-
- 拡張項目
-
-
-
-
-
- 備考
-
-
-
-
-
- 登録
-
-
-
-
-
-
-
- 更新
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 適用開始日
-
-
-
-
-
-
-
-
- ※適用開始日に指定した日から履歴を開始します。
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/OrgManager/SectionRoleGroupMan.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/OrgManager/SectionRoleGroupMan.html
deleted file mode 100644
index 290bf8abcf7a9e464df9a9a0b42dc559fb76cefb..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/OrgManager/SectionRoleGroupMan.html
+++ /dev/null
@@ -1,948 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
11
新しいセクションロールグループ
1
sectionrolegroupman#showSectionRoleGroupAddLayer
section_class
-
12
ロールをグループに追加
1
sectionrolegroupman#showSectionRoleAddLayer
section_role
true
-
2
編集
0
sectionrolegroupman#showObjectUpdateLayer
edit
false
-
3
削除
0
sectionrolegroupman#deleteCurrentObject
delete
true
-
-
41
一括削除
4
sectionrolegroupman#deleteSelectedObject
delete
-
42
移動
4
sectionrolegroupman#moveSelectedObject
cut
-
-
51
ロールグループ
5
sectionrolegroupman#showSectionRoleGroupOrderLayer
section_class
-
52
ロール
5
sectionrolegroupman#showSectionRoleOrderLayer
section_role
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
1
保存
0
sectionrolegroupman#sectionrolegroupman#doSaveSectionRoleGroupOrder
save
-
2
閉じる
0
sectionrolegroupman#cancelSaveSectionRoleGroupOrder
close
-
-
-
-
-
-
-
-
1
保存
0
sectionrolegroupman#doSaveSectionRoleOrder
save
-
2
閉じる
0
sectionrolegroupman#cancelSaveSectionRoleOrder
close
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- コード*
-
-
-
-
-
- 名称*
-
-
-
-
-
- 備考
-
-
-
-
-
- 登録
-
-
-
-
-
-
- 更新
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/OrgManager/SectionRoleMan.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/OrgManager/SectionRoleMan.html
deleted file mode 100644
index 2342ebd9850fda66a3b1f0edc1b8095c4486d670..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/OrgManager/SectionRoleMan.html
+++ /dev/null
@@ -1,1327 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
99
上へ
0
sectionroleman#moveUp
moveup
-
-
11
新しいロールフォルダ
1
sectionroleman#showSectionRoleGroupAddLayer
folder_close
-
12
新しいロール
1
sectionroleman#showSectionRoleAddLayer
section_role
true
-
2
編集
0
sectionroleman#showObjectUpdateLayer
edit
false
-
3
削除
0
sectionroleman#deleteCurrentObject
delete
true
-
-
41
一括削除
4
sectionroleman#deleteSelectedObject
delete
-
42
移動
4
sectionroleman#moveSelectedObject
cut
-
-
51
ロールフォルダ
5
sectionroleman#showSectionRoleGroupOrderLayer
folder_close
-
52
ロール
5
sectionroleman#showSectionRoleOrderLayer
section_role
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
1
保存
0
sectionroleman#sectionroleman#doSaveSectionRoleGroupOrder
save
-
2
閉じる
0
sectionroleman#cancelSaveSectionRoleGroupOrder
close
-
-
-
-
-
-
-
-
1
保存
0
sectionroleman#doSaveSectionRoleOrder
save
-
2
閉じる
0
sectionroleman#cancelSaveSectionRoleOrder
close
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- コード*
-
-
-
-
-
- 名称*
-
-
-
-
-
- 親ロールフォルダ
-
-
-
-
-
- 備考
-
-
-
-
-
- 登録
-
-
-
-
-
-
- 更新
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- コード*
-
-
-
-
-
- インポートコード
-
-
-
-
-
- 名称*
-
-
-
-
-
- ランク
-
-
- ※小数点数は切り捨てで登録されます
-
-
-
- 親ロールフォルダ
-
-
-
-
-
- 備考
-
-
-
-
-
- 登録
-
-
-
-
-
-
- 更新
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/OrgManager/UnitTransMan.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/OrgManager/UnitTransMan.html
deleted file mode 100644
index ef86e994300577ff2ca46301269abee6b115f068..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/OrgManager/UnitTransMan.html
+++ /dev/null
@@ -1,520 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
1
新規
0
unittransman#addUnitTrans
new
false
-
-
-
2
チェック行操作
0
check
false
-
-
-
3
一括削除
2
unittransman#deleteUnitTrans
delete
false
-
-
-
-
-
-
-
-
-
-
1
保存
0
unittransman.conf#transfer
save
false
-
-
-
2
閉じる
0
unittransman.conf#close
close
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 適用期間
-
-
-
-
-
-
-
-
-
-
-
-
- ~
-
-
-
-
-
-
-
-
-
-
-
-
- 処理状態
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 旧組織
-
-
-
-
-
-
-
-
-
-
-
-
- ※適用日前日
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/OrgManager/UniversalRoleMan.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/OrgManager/UniversalRoleMan.html
deleted file mode 100644
index 84f12693ede247c3cb3fab66a08f8efec0edec4c..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/OrgManager/UniversalRoleMan.html
+++ /dev/null
@@ -1,1680 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
1
新規
0
universalroleman#showUniversalRoleGroupAccessorLayer
new
false
-
2
削除
0
universalroleman#deleteUniversalRoleGroupAccessor
delete
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
1
保存
0
universalroleman#doSaveUniversalRoleGroupOrder
save
-
2
閉じる
0
universalroleman#cancelSaveUniversalRoleGroupOrder
close
-
-
-
-
-
-
-
-
1
保存
0
universalroleman#doSaveUniversalRoleOrder
save
-
2
閉じる
0
universalroleman#cancelSaveUniversalRoleOrder
close
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- コード*
-
-
-
-
-
- 名称*
-
-
-
-
-
- 親フォルダ
-
-
-
-
-
- 備考
-
-
-
-
-
- 登録
-
-
-
-
-
-
- 更新
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- コード*
-
-
-
-
-
- インポートコード
-
-
-
-
-
- 名称*
-
-
-
-
-
- ランク
-
-
- ※小数点数は切り捨てで登録されます
-
-
- 親ロールフォルダ
-
-
-
-
-
- 備考
-
-
-
-
-
- 登録
-
-
-
-
-
-
- 更新
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/PublicManager/ArchiveReception.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/PublicManager/ArchiveReception.html
deleted file mode 100644
index 94a48b05902897eaa2bace84cf57b30eb9e53bd8..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/PublicManager/ArchiveReception.html
+++ /dev/null
@@ -1,669 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
2
新規
0
archiveman#showConfigAddLayer
new
-
3
編集
0
archiveman#showConfigEditLayer
edit
-
4
削除
0
archiveman#deleteCurrent
delete
-
-
51
一括削除
5
archiveman#deleteSelected
delete
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- コード*
-
-
-
-
-
- 名称*
-
-
-
-
-
-
- 備考
-
-
-
-
-
- 登録
-
-
-
-
-
-
- 更新
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/PublicManager/PublicMan.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/PublicManager/PublicMan.html
deleted file mode 100644
index b4dd1acff3ab4cd090bbcd3fb66dcb20e6d2d705..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/PublicManager/PublicMan.html
+++ /dev/null
@@ -1,1507 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
9999
再表示
0
publicman#reload
reload
-
-
11
新しい公開フォルダ
1
publicman#showpublicfolderAddLayer
pubfolder
-
12
公開フォルダにフォームを追加
1
publicman#showPublicFormAddLayer
form
-
-
2
編集
0
publicman#showEditLayer
edit
-
-
3
削除
0
publicman#deleteCurrent
delete
-
-
-
41
一括削除
4
publicman#deleteSelected
delete
-
-
43
移動
4
publicman#moveSelected
cut
-
44
エクスポート
4
publicman#showExportLayer
export
-
-
-
51
公開フォルダ
5
publicman#showPublicFolderOrderLayer
pubfolder
-
52
公開フォーム
5
publicman#showPublicFormOrderLayer
form
-
-
6
プレビュー
0
publicman#previewForm
formpreview
-
-
7
インポート
0
publicman#showImportLayer
import
-
-
-
-
-
-
-
-
-
-
-
-
2
公開先を追加
1
publicman#showpublicfolderAccessorLayer
user
-
3
全ての組織を設定
1
publicman#setAccessorAllUnits
allunit
-
4
削除
0
publicman#deleteAccessor
delete
-
-
-
-
-
-
-
1
保存
0
publicman#doSortPublicFolder
save
-
2
閉じる
0
publicman#cancelSortPublicFolder
close
-
-
-
-
-
-
-
1
保存
0
publicman#doSortPublicForm
save
-
2
閉じる
0
publicman#cancelSortPublicForm
close
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- コード*
-
-
-
-
-
- 名称*
-
-
-
-
-
-
- 備考
-
-
-
-
-
- 登録
-
-
-
-
-
-
- 更新
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/PublicManager/PublicMan/PublicFormDataExport.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/PublicManager/PublicMan/PublicFormDataExport.html
deleted file mode 100644
index b1cda2d7cec5667e055d9e3801f210fe5b81136a..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/PublicManager/PublicMan/PublicFormDataExport.html
+++ /dev/null
@@ -1,148 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
1
エクスポート
0
publicman.dataexport#exportData
export
false
-
2
チェックリスト出力
0
publicman.dataexport#exportReport
export
false
-
3
閉じる
0
publicman.dataexport#closeLayer
close
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- チェックした公開フォーム関連データをエクスポートします。
- 事前にエクスポート対象データの確認・エラーチェックを行うには
- [チェックリスト出力]を実行してください。
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/PublicManager/PublicMan/PublicFormDataImport.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/PublicManager/PublicMan/PublicFormDataImport.html
deleted file mode 100644
index 5dfad8fbbf41fccae4f52ce3f8b56f49c4773603..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/PublicManager/PublicMan/PublicFormDataImport.html
+++ /dev/null
@@ -1,138 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
1
インポート
0
publicman.dataimport#importData
import
false
-
2
閉じる
0
publicman.dataimport#closeLayer
close
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ZIPファイル*
-
-
-
-
-
- 実行モード*
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/PublicManager/PublicSearchConditionMan.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/PublicManager/PublicSearchConditionMan.html
deleted file mode 100644
index 0aefc869cd88cfb7eee0a2ae53550097da33bd86..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/PublicManager/PublicSearchConditionMan.html
+++ /dev/null
@@ -1,1036 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
11
新しい検索フォルダ
1
publicsearchconditionman#showPublicSearchFolderAddLayer
folder_close
-
12
新しい検索条件
1
publicsearchconditionman#showPublicSearchConditionAddLayer
search
-
13
検索条件をコピーして新規作成
1
publicsearchconditionman#showPublicSearchConditionAddLayeCopyNew
search
-
2
編集
0
publicsearchconditionman#showTreeObjectEditLayer
edit
-
3
削除
0
publicsearchconditionman#deleteCurrent
delete
-
-
41
一括削除
4
publicsearchconditionman#deleteSelected
delete
-
42
移動
4
publicsearchconditionman#moveSelected
cut
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
2
公開先を追加
1
publicsearchconditionman#showPublicFolderAccessorLayer
user
-
3
全ての組織を設定
1
publicsearchconditionman#setAccessorAllUnits
allunit
-
4
削除
0
publicsearchconditionman#deleteAccessor
delete
-
-
-
-
-
-
-
-
1
保存
0
publicsearchconditionman#doMoveSave
save
false
-
2
閉じる
0
publicsearchconditionman#closeMoveLayer
close
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- コード*
-
-
-
-
-
- 名称*
-
-
-
-
-
- 親フォルダ名称
-
-
-
-
-
-
- 備考
-
-
-
-
-
- 登録
-
-
-
-
-
-
- 更新
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config.html
deleted file mode 100644
index d9223fb2c62a966165db06c343e2828b87633f15..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config.html
+++ /dev/null
@@ -1,48 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Debug/Federation.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Debug/Federation.html
deleted file mode 100644
index 3b1fe6ddc773060be9359b4733fc3816b0ab33a4..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Debug/Federation.html
+++ /dev/null
@@ -1,381 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
1
新規
0
federation#showAddProviderLayer
new
-
2
編集
0
federation#showEditLayer
edit
-
3
削除
0
federation#deleteCurrent
delete
-
-
-
-
-
-
-
1
保存
0
federation#doSave
save
-
2
閉じる
0
federation#cancelSave
close
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- URL:*
-
-
-
-
-
- ログインID:*
-
-
-
-
-
- パスワード:*
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- URL:
-
-
-
-
-
- 名称:
-
-
-
-
-
- 説明:
-
-
-
-
-
- 対応機能:
-
-
-
-
-
- 公開キー:
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Debug/MailQueue.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Debug/MailQueue.html
deleted file mode 100644
index e6d3772c491bd4647ab6d62ad30c484d4c6f8efa..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Debug/MailQueue.html
+++ /dev/null
@@ -1,224 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
1
再表示
0
mailqueue#reloadByMenu
reload
-
2
削除
0
mailqueue#deleteCurrentObject
delete
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 送信元
-
-
-
-
-
- 送信先
-
-
-
-
-
- 登録日時
-
-
-
-
-
- 件名
-
-
-
-
-
- 本文
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Debug/RegEditor.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Debug/RegEditor.html
deleted file mode 100644
index 7957a1efe3bc79a20d120f5501289dc4eccdaa79..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Debug/RegEditor.html
+++ /dev/null
@@ -1,485 +0,0 @@
-
-
-
-
-
-
-
-
1
新規
0
regEditor#showAddLayer
new
-
2
編集
0
regEditor#clickEditParent
edit
-
21
カスタム値の編集
2
regEditor#clickEditCustom
edit
-
22
初期値の編集
2
regEditor#clickEditDefault
edit
-
3
削除
0
regEditor#clickDelParent
delete
-
31
レコードの削除
3
regEditor#clickDelRec
delete
-
32
ディレクトリ(ツリー)の削除
3
regEditor#clickDelDir
delete
-
4
初期値に戻す
0
regEditor#clickDelCustom
restore
-
-
-
-
-
-
-
-
1
保存
0
regEditor#clickLSaveCustom
save
-
2
閉じる
0
regEditor#closeEditCustomLayer
close
-
-
-
-
-
-
-
-
1
保存
0
regEditor#clickLsave
save
-
2
閉じる
0
regEditor#closeEditLayer
close
-
-
-
-
-
-
-
-
1
保存
0
regEditor#clickAdd
save
-
2
閉じる
0
regEditor#closeAddLayer
close
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Path
-
-
-
-
-
- key
-
-
-
-
-
- value
-
-
-
-
-
-
-
-
-
-
-
-
-
- key
-
-
-
-
-
- value (カスタム値)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- key
-
-
-
-
-
- value (初期値)
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Job/BrickletJob.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Job/BrickletJob.html
deleted file mode 100644
index 27ce129877bc70379d342bc6ed0877bae5cfa92a..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Job/BrickletJob.html
+++ /dev/null
@@ -1,92 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
12
ジョブ設定(Bricklet)
1
batchconf#showAddLayer
new
true
-
13
ジョブ設定XMLからインポート
1
batchconf#showXmlImportLayer
import
true
-
-
22
ジョブ設定
2
batchconf#showUpdateLayer
edit
true
-
23
ジョブスケジュール設定
2
batchconf#showScheduleLayer
edit
true
-
24
ジョブ通知メール設定
2
batchconf#showNotifyMailLayer
edit
true
-
3
削除
0
batchconf#delete
delete
true
-
5
実行
0
batchconf#executeJob
exec
true
-
-
61
ジョブ設定XMLのエクスポート
6
batchconf#exportXml
export
true
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Job/BrickletJobDetail.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Job/BrickletJobDetail.html
deleted file mode 100644
index 844dfc58b795f86e5203cc2bc6ddafde44cd2b82..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Job/BrickletJobDetail.html
+++ /dev/null
@@ -1,287 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
1
保存
0
batchconf.brickletdialog#save
save
false
-
2
閉じる
0
batchconf.brickletdialog#cancel
close
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- コード*
-
-
-
-
-
- 名称*
-
-
-
-
-
- タイムアウト(時:分:秒)*
-
-
-
-
-
- 実行制御*
-
-
-
-
-
-
-
- スケジュール状態
-
-
-
-
-
-
-
-
-
- Bricklet*
-
-
-
-
-
- プロシージャ*
-
-
-
-
-
- 引数
-
-
- 入力例)
- -D code=0001
- -D name="yamada taro"
- ...
-
- ※引数を複数指定する場合は、引数毎に改行を入れてください
- ※引数の値に空白スペースを含める場合は、値をダブルクオーテーションで囲んでください
-
-
-
-
-
-
- 登録
-
-
-
-
-
-
- 更新
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Job/BulkApplyJob.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Job/BulkApplyJob.html
deleted file mode 100644
index 89b5a68dba6e9f89a8ec9e879bc290f69a3ca4c4..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Job/BulkApplyJob.html
+++ /dev/null
@@ -1,99 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
11
ジョブ設定(一括申請)
1
batchconf#showAddLayer
new
true
-
13
ジョブ設定XMLからインポート
1
batchconf#showXmlImportLayer
import
true
-
-
22
ジョブ設定
2
batchconf#showUpdateLayer
edit
true
-
23
ジョブスケジュール設定
2
batchconf#showScheduleLayer
edit
true
-
24
ジョブ通知メール設定
2
batchconf#showNotifyMailLayer
edit
true
-
3
削除
0
batchconf#delete
delete
true
-
5
実行
0
batchconf#executeJob
exec
true
-
-
61
ジョブ設定XMLのエクスポート
6
batchconf#exportXml
export
true
-
62
一括申請用CSVのエクスポート
6
batchconf#exportCsv
export
true
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Job/BulkApplyJobDetail.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Job/BulkApplyJobDetail.html
deleted file mode 100644
index 7b6c13c9dee03c4cd349754bf4a8ed7a87b3c945..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Job/BulkApplyJobDetail.html
+++ /dev/null
@@ -1,672 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
1
保存
0
batchconf.bulkapply#save
save
false
-
-
21
アップロード済みのジョブ実行待ちCSVダウンロード
2
batchconf.bulkapply#downloadImportFile
export
false
-
3
閉じる
0
batchconf.bulkapply#cancel
close
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- コード*
-
-
-
-
-
- 名称*
-
-
-
-
-
- タイムアウト(時:分:秒)*
-
-
-
-
-
- スケジュール状態
-
-
-
-
-
-
-
-
-
- フォーム*
-
-
-
-
-
- 回付ルール*
-
-
-
-
-
- 表明細
-
-
-
-
-
- 申請時の動作
-
-
-
-
-
-
- エラー発生時
-
-
-
-
- 文字コード*
-
-
-
-
-
-
- ヘッダー行有無
-
-
-
-
-
-
-
-
-
- 登録
-
-
-
-
-
-
- 更新
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Job/BulkApplyJobSubmit.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Job/BulkApplyJobSubmit.html
deleted file mode 100644
index 9c5cf7172a52408c5206997bc3a7fe3d529478fd..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Job/BulkApplyJobSubmit.html
+++ /dev/null
@@ -1,155 +0,0 @@
-
-
-
-
-
-
-
-
-
-
1
実行
0
batchconf.bulkapplysubmitdialog#submit
exec
false
-
2
閉じる
0
batchconf.bulkapplysubmitdialog#cancel
close
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- コード
-
-
-
-
-
- 名称
-
-
-
-
-
- CSVファイル*
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Job/JobBase.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Job/JobBase.html
deleted file mode 100644
index 9d5f7b9cb220d1bb21cd23e2baa4f325b94e40ef..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Job/JobBase.html
+++ /dev/null
@@ -1,353 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Job/JobDetailImport.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Job/JobDetailImport.html
deleted file mode 100644
index fb5b84951aa902bdc4798eb59724caa4cbbc02a7..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Job/JobDetailImport.html
+++ /dev/null
@@ -1,121 +0,0 @@
-
-
-
-
-
-
-
-
-
-
1
インポート
0
batchconf.jobdetailimpdialog#import
import
false
-
2
閉じる
0
batchconf.jobdetailimpdialog#cancel
close
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Job/JobManager.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Job/JobManager.html
deleted file mode 100644
index b77ffd69eae12b0a6b8301b1845437d78d205305..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Job/JobManager.html
+++ /dev/null
@@ -1,126 +0,0 @@
-
-
-
-
-
-
-
-
1
保存
0
jobmanager#update
save
-
2
初期設定に戻す
0
jobmanager#usedefault
restore
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
ジョブマネージャー
-
-
-
組織インポート
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Job/NotifyMailConf.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Job/NotifyMailConf.html
deleted file mode 100644
index 998e4461c976f10fc9bb9d878e4efc1275863fe6..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Job/NotifyMailConf.html
+++ /dev/null
@@ -1,110 +0,0 @@
-
-
-
-
-
-
-
1
保存
0
batchconf.notifymail#save
save
false
-
2
閉じる
0
batchconf.notifymail#close
close
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 送信タイミング
-
-
-
-
-
- 通知メール送信先
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Job/OrgImportJob.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Job/OrgImportJob.html
deleted file mode 100644
index 08294022869480bda48710e2f07a6fd2f9e6442a..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Job/OrgImportJob.html
+++ /dev/null
@@ -1,201 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
11
ジョブ設定(組織関連インポート)
1
batchconf#showAddLayer
new
true
-
13
ジョブ設定XMLからインポート
1
batchconf#showXmlImportLayer
import
true
-
-
22
ジョブ設定
2
batchconf#showUpdateLayer
edit
true
-
23
ジョブスケジュール設定
2
batchconf#showScheduleLayer
edit
true
-
24
ジョブ通知メール設定
2
batchconf#showNotifyMailLayer
edit
true
-
3
削除
0
batchconf#delete
delete
true
-
5
実行
0
batchconf#executeJob
exec
true
-
-
61
ジョブ設定XMLのエクスポート
6
batchconf#exportXml
export
true
-
62
組織インポート用CSVのエクスポート
6
batchconf#showCsvExportLayer
export
true
-
-
-
-
-
-
-
-
-
-
1
実行
0
batchconf#exportCsv
export
false
-
2
閉じる
0
batchconf#closeCsvExportLayer
close
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Job/OrgImportJobDetail.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Job/OrgImportJobDetail.html
deleted file mode 100644
index fbc53baf16cf8dae00fb0f10bca7c37015a9311e..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Job/OrgImportJobDetail.html
+++ /dev/null
@@ -1,352 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
21
アップロード済みのジョブ実行待ちCSVダウンロード
2
orgimp#downloadImportFile
export
false
-
3
閉じる
0
orgimp#cancel
close
false
-
-
-
-
-
-
-
-
1
編集
0
orgimp.loader#showLayer
edit
false
-
-
21
有効
2
orgimp#activateSelect
go-sign
false
-
22
無効
2
orgimp#deactivateSelect
stop-sign
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- コード*
-
-
-
-
-
- 名称*
-
-
-
-
-
- タイムアウト(時:分:秒)*
-
-
-
-
-
- 登録
-
-
-
-
-
-
- 更新
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Job/OrgImportJobLoader.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Job/OrgImportJobLoader.html
deleted file mode 100644
index a52bda9eace7c783de2ee18437bf09dbd7a21618..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Job/OrgImportJobLoader.html
+++ /dev/null
@@ -1,674 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
1
設定
0
orgimp.loader#save
save
false
-
3
閉じる
0
orgimp.loader#close
close
false
-
-
-
-
-
-
-
-
2
項目追加・削除
0
orgimp.loader#showColumnEditLayer
edit
false
-
-
-
-
-
-
-
-
1
設定
0
orgimp.loader#saveColumnEdit
save
false
-
2
空項目を追加
0
orgimp.loader#addNoMappedColumn
edit
false
-
3
閉じる
0
orgimp.loader#closeColumnEditLayer
close
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
2
項目レイアウト
ColumnLayoutConfigTab
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 状態
-
-
-
-
-
-
- ファイル名称*
-
-
-
-
-
- 取込形式
-
-
-
-
-
-
- 文字コード
-
-
-
-
-
-
- ヘッダー行有無
-
-
-
-
-
-
- エラー発生時
-
-
-
-
-
-
-
- 日付フォーマット
-
-
-
-
-
-
-
- 適用終了日設定
-
-
- を無期限とみなす
- (※)空文字やNullも無期限の扱いとなります。
-
-
-
- パスワード項目
-
-
-
-
-
- (登録時にパスワードを暗号化して保存)
-
-
- (登録時に下記エンコードタイプと認識して保存)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Job/OrgImportJobSubmit.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Job/OrgImportJobSubmit.html
deleted file mode 100644
index 7eec41fd76e830176ecc74fcce38f8657ca827aa..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Job/OrgImportJobSubmit.html
+++ /dev/null
@@ -1,191 +0,0 @@
-
-
-
-
-
-
-
-
-
-
1
実行
0
batchconf.orgimpsubmitdialog#submit
exec
false
-
2
閉じる
0
batchconf.orgimpsubmitdialog#cancel
close
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- コード
-
-
-
-
-
- 名称
-
-
-
-
-
- ZIPファイル*
-
-
-
-
-
- 実行モード*
-
-
-
-
-
-
- 基準日*
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Job/ScheduleConf.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Job/ScheduleConf.html
deleted file mode 100644
index 5376e6f05be0e121eaf86f88c3680344234edef5..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Job/ScheduleConf.html
+++ /dev/null
@@ -1,295 +0,0 @@
-
-
-
-
-
-
-
1
保存
0
batchconf.schedule#save
save
false
-
2
閉じる
0
batchconf.schedule#close
close
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 状態
-
-
-
-
-
- ジョブ実行スケジュール
-
-
-
- 月
-
-
-
-
-
-
- 日
-
-
-
-
-
-
- 時
-
-
-
-
-
-
-
- 分
-
-
-
-
-
-
-
- 曜日
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Job/SystemJob.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Job/SystemJob.html
deleted file mode 100644
index 51011d68f789754f76ec72b7c6a598bfaedb54c6..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Job/SystemJob.html
+++ /dev/null
@@ -1,70 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
22
ジョブ設定
2
batchconf#showUpdateLayer
edit
true
-
23
ジョブスケジュール設定
2
batchconf#showScheduleLayer
edit
true
-
24
ジョブ通知メール設定
2
batchconf#showNotifyMailLayer
edit
true
-
5
実行
0
batchconf#executeJob
exec
true
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Job/SystemJobDetail.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Job/SystemJobDetail.html
deleted file mode 100644
index 6aeb6ce2434c974ed4f10140ec03f4d7e653278c..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Job/SystemJobDetail.html
+++ /dev/null
@@ -1,239 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
1
保存
0
batchconf.systemdialog#save
save
false
-
2
閉じる
0
batchconf.systemdialog#cancel
close
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- コード*
-
-
-
-
-
- 名称*
-
-
-
-
-
- スケジュール状態
-
-
-
-
-
- タイムアウト(時:分:秒)*
-
-
-
-
-
-
-
-
-
- 登録
-
-
-
-
-
-
- 更新
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Job/UserMasterImportJob.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Job/UserMasterImportJob.html
deleted file mode 100644
index ee9a99267bfd4b64e8fe930d380c726e8e3759af..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Job/UserMasterImportJob.html
+++ /dev/null
@@ -1,101 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
11
ジョブ設定(外部マスタ(拡張)インポート)
1
batchconf#showAddLayer
new
true
-
13
ジョブ設定XMLからインポート
1
batchconf#showXmlImportLayer
import
true
-
-
22
ジョブ設定
2
batchconf#showUpdateLayer
edit
true
-
23
ジョブスケジュール設定
2
batchconf#showScheduleLayer
edit
true
-
24
ジョブ通知メール設定
2
batchconf#showNotifyMailLayer
edit
true
-
3
削除
0
batchconf#delete
delete
true
-
5
実行
0
batchconf#executeJob
exec
true
-
-
61
ジョブ設定XMLのエクスポート
6
batchconf#exportXml
export
true
-
62
外部マスタ(拡張)インポート用CSVのエクスポート
6
batchconf#exportCsv
export
true
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Job/UserMasterImportJobDetail.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Job/UserMasterImportJobDetail.html
deleted file mode 100644
index 212d0673d2ce0920d92f415441e664cd7d0ff02f..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Job/UserMasterImportJobDetail.html
+++ /dev/null
@@ -1,266 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
1
保存
0
batchconf.usrmstimp#save
save
false
-
-
21
アップロード済みのジョブ実行待ちCSVダウンロード
2
batchconf.usrmstimp#downloadImportFile
export
false
-
3
閉じる
0
batchconf.usrmstimp#cancel
close
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- コード*
-
-
-
-
-
- 名称*
-
-
-
-
-
- タイムアウト(時:分:秒)*
-
-
-
-
-
- スケジュール状態
-
-
-
-
-
-
-
-
-
- テーブル名*
-
-
-
-
-
- 文字コード*
-
-
-
-
-
-
-
-
-
- 登録
-
-
-
-
-
-
- 更新
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Job/UserMasterImportJobSubmit.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Job/UserMasterImportJobSubmit.html
deleted file mode 100644
index 11f30e4c67289523931e81e1489453644b810053..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Job/UserMasterImportJobSubmit.html
+++ /dev/null
@@ -1,152 +0,0 @@
-
-
-
-
-
-
-
-
-
-
1
実行
0
batchconf.usrmstimpsubmitdialog#submit
exec
false
-
2
閉じる
0
batchconf.usrmstimpsubmitdialog#cancel
close
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- コード
-
-
-
-
-
- 名称
-
-
-
-
-
- CSVファイル*
-
-
-
-
-
- 実行モード*
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Log/BrickletLog.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Log/BrickletLog.html
deleted file mode 100644
index bf58a8d10912ea2bc4363721f116bfb44611177f..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Log/BrickletLog.html
+++ /dev/null
@@ -1,284 +0,0 @@
-
-
-
-
-
-
-
-
1
新規
0
brickletlog#showAddDialog
new
false
-
2
編集
0
brickletlog#showEditDialog
edit
false
-
3
削除
0
brickletlog#delete
delete
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Javaパッケージ名*
-
-
-
-
-
- ログレベル
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Log/DebugLog.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Log/DebugLog.html
deleted file mode 100644
index ab13d913f455bcfc82acb7cc1d24e3ab35c0b37f..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Log/DebugLog.html
+++ /dev/null
@@ -1,107 +0,0 @@
-
-
-
-
-
-
-
-
1
保存
0
debuglog#save
save
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
ログ設定
-
-
- ※通常運用時は無効とし、調査など必要な時のみ有効にして下さい
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Mail/MailConfig.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Mail/MailConfig.html
deleted file mode 100644
index b583979e60df1066345a142db62c437d2d0f507b..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Mail/MailConfig.html
+++ /dev/null
@@ -1,296 +0,0 @@
-
-
-
-
-
-
-
-
1
保存
0
mailserver#update
save
-
2
初期設定に戻す
0
mailserver#restore
restore
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
基本設定
-
-
- 送信メールアドレス*
-
-
-
- 送信者名
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Mail/MailServer.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Mail/MailServer.html
deleted file mode 100644
index d3c62dad3ce64040edb6af7c20a2f3c5b3b59323..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Mail/MailServer.html
+++ /dev/null
@@ -1,413 +0,0 @@
-
-
-
-
-
-
-
-
1
保存
0
mailserver#update
save
-
2
初期設定に戻す
0
mailserver#restore
restore
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
基本設定
-
-
- 送信メールサーバー(SMTP)*
-
-
-
- ポート番号*
-
-
-
-
-
-
-
-
認証
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 受信メールサーバー(POP)*
-
-
-
- 受信メールサーバーポート番号*
-
-
-
-
- 受信用アカウント*
-
-
-
- 受信用パスワード
-
-
-
- 受信用パスワード(再入力)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 送信用アカウント
-
-
-
- 送信用パスワード
-
-
-
- 送信用パスワード(再入力)
-
-
-
- 保護された接続を使用する
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Mail/MailTemplate.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Mail/MailTemplate.html
deleted file mode 100644
index 80fbc2590e7c97e178ba6985dfb629d36cecdc7f..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Mail/MailTemplate.html
+++ /dev/null
@@ -1,681 +0,0 @@
-
-
-
-
-
-
-
-
1
保存
0
mailtemplate#save
save
-
2
初期設定に戻す
0
mailtemplate#restore
restore
-
-
31
全テンプレートのインポート
3
mailtemplate#showImportLayer
import
true
-
-
41
全テンプレートのエクスポート
4
mailtemplate#exportXml
export
true
-
-
-
-
-
-
-
-
1
保存
0
mailtemplate-textform#save
save
-
2
キャンセル
0
mailtemplate-textform#cancel
close
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
1
インポート
0
mailtemplate#doImportMailtemplate
import
-
2
閉じる
0
mailtemplate#cancelImportMailTemplate
close
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
通知メール種類
-
-
-
-
-
-
- 件名
-
-
-
- 本文
-
-
- ヘッダ部
-
-
-
-
-
-
-
- 詳細部
-
-
-
-
-
-
-
- フッタ部
-
-
-
-
-
-
-
-
-
- 置換変数一覧
-
変数の詳細については画面ヘルプ
を参照
-
-
-
-
-
-
-
-
-
- 件名
-
-
-
- 本文
-
-
-
- 置換変数一覧
-
変数の詳細については画面ヘルプ
を参照
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Mobile/DocListTemplate.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Mobile/DocListTemplate.html
deleted file mode 100644
index d2be018382df72fcf26ea99b32423fa3e89a9ea7..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Mobile/DocListTemplate.html
+++ /dev/null
@@ -1,347 +0,0 @@
-
-
-
-
-
-
-
-
1
保存
0
doclisttemplate#save
save
-
2
初期設定に戻す
0
doclisttemplate#restore
restore
-
-
-
-
-
-
-
-
1
保存
0
doclisttemplate-textform#save
save
-
2
キャンセル
0
doclisttemplate-textform#cancel
close
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 本文
-
-
- タイトル部
-
-
-
-
-
-
-
- サブタイトル部
-
-
-
-
-
-
-
- コンテンツ部
-
-
-
-
-
-
-
-
-
- 置換変数一覧
-
変数の詳細については画面ヘルプ
を参照
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Mobile/Mobile.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Mobile/Mobile.html
deleted file mode 100644
index a6001ba4def5e00f7a71814425e44dc4ab853370..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Mobile/Mobile.html
+++ /dev/null
@@ -1,126 +0,0 @@
-
-
-
-
-
-
-
-
1
-
保存
-
0
-
mobile#update
-
save
-
-
-
2
-
初期設定に戻す
-
0
-
mobile#usedefault
-
restore
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
自動ログイン
-
-
-
※自動ログインについては画面ヘルプ
を参照
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Org/OrgReserveItemCaption.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Org/OrgReserveItemCaption.html
deleted file mode 100644
index ec0dc3fa62b390e14bca495822c010bf4a316700..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Org/OrgReserveItemCaption.html
+++ /dev/null
@@ -1,269 +0,0 @@
-
-
-
-
-
-
-
-
1
保存
0
orgreserveitemcaption#update
save
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 項目名設定
-
-
- 項目名の言語:
-
-
-
-
-
-
-
-
-
-
- 拡張項目1
-
-
-
-
- 拡張項目2
-
-
-
-
- 拡張項目3
-
-
-
-
- 拡張項目4
-
-
-
-
- 拡張項目5
-
-
-
-
- 拡張項目6
-
-
-
-
- 拡張項目7
-
-
-
-
- 拡張項目8
-
-
-
-
- 拡張項目9
-
-
-
-
- 拡張項目10
-
-
-
-
- 拡張項目11
-
-
-
-
- 拡張項目12
-
-
-
-
- 拡張項目13
-
-
-
-
- 拡張項目14
-
-
-
-
- 拡張項目15
-
-
-
-
- 拡張項目16
-
-
-
-
- 拡張項目17
-
-
-
-
- 拡張項目18
-
-
-
-
- 拡張項目19
-
-
-
-
- 拡張項目20
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Other/LinkMenu.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Other/LinkMenu.html
deleted file mode 100644
index b38909589bbcdfa53304af9ee4feb61eab01a7ee..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Other/LinkMenu.html
+++ /dev/null
@@ -1,646 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
1
保存
0
linkmenu#doSaveLinkMenuOrder
save
-
2
閉じる
0
linkmenu#cancelSaveLinkMenuOrder
close
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 名称*
-
-
-
-
-
- URL*
-
-
-
-
-
- 遷移先*
-
-
-
-
-
- 登録
-
-
-
-
-
-
- 更新
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Security/AuthRepository.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Security/AuthRepository.html
deleted file mode 100644
index a937f8855b489de1e517921e51882bc1448865b7..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Security/AuthRepository.html
+++ /dev/null
@@ -1,505 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
11
LDAP認証リポジトリ
1
authrepos#showLdapAddLayer
new
-
2
編集
0
authrepos#showUpdateLayer
edit
-
3
削除
0
authrepos#deleteCurrentObject
delete
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- コード*
-
-
-
-
-
- 名称*
-
-
-
-
-
- 登録
-
-
-
-
-
-
- 更新
-
-
-
-
-
-
-
-
-
-
- 接続先
-
-
- サーバーアドレス*
-
-
-
-
-
- ポート番号*
-
-
-
-
-
- ベースDN(検索基点)*
-
-
-
-
-
- 検索範囲
-
-
-
-
-
-
-
-
-
-
- 認証方法
-
-
- 接続ユーザーDN*
-
-
-
-
-
- 接続パスワード*
-
-
-
-
-
- 接続パスワード(確認用)*
-
-
-
-
-
- 保護された接続
-
-
-
-
-
-
-
-
-
-
- AgileWorks ユーザー引当方式
-
-
- 対象項目*
-
-
-
-
-
- LDAP属性名/クエリー*
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Security/ExtConn.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Security/ExtConn.html
deleted file mode 100644
index 77168b529193df695b0a47e263b403fd28705c42..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Security/ExtConn.html
+++ /dev/null
@@ -1,648 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
100510
新規
0
extconn#showExtConnConfAddLayer
new
false
-
-
-
100521
制限ポリシー
100520
extconn#showExtConnPolicyUpdateLayer
edit
-
100522
外部接続制限
100520
extconn#showExtConnConfUpdateLayer
edit
-
-
100530
削除
0
extconn#deleteExtConnConf
delete
false
-
-
-
100550
優先度設定
0
extconn#showOrderLayer
sortconfig
false
-
-
-
-
-
-
-
-
100810
保存
0
extconn#doSaveExtConnPolicy
save
false
-
-
-
100820
閉じる
0
extconn#closeExtConnPolicyUpdateLayer
close
false
-
-
-
-
-
-
-
-
-
-
100710
保存
0
extconn#doSaveOrder
save
false
-
-
-
100720
閉じる
0
extconn#closeOrderLayer
close
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 名称*
-
-
-
-
-
-
- 制限タイプ*
-
-
-
-
-
-
- 制限するIPアドレス*
-
-
-
-
- ※複数登録は改行、またはスペース区切りで指定してください。
- ※末尾にワイルドカード「*」の指定をすることができます。
-
-
-
-
-
-
- 制限する機能
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Security/LoginAuth.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Security/LoginAuth.html
deleted file mode 100644
index a66eab8a4700d8e0f89b43247374fe9a4e3902d6..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Security/LoginAuth.html
+++ /dev/null
@@ -1,170 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Security/LoginAuthDtl.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Security/LoginAuthDtl.html
deleted file mode 100644
index 3587e96a3d3092552cc77fcdae5f7f44232f396d..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Security/LoginAuthDtl.html
+++ /dev/null
@@ -1,1255 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
2
公開先を追加
1
loginauth.dtl#showAccessPrivilegeLayer
user
-
3
全てのユーザーを指定
1
loginauth.dtl#setAccessorForAnyone
allunit
-
4
削除
0
loginauth.dtl#deleteAccessPrivilege
delete
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- コード*
-
-
-
-
-
- 名称*
-
-
-
-
-
- 対象アプリケーション*
-
-
-
-
-
- 利用状態
-
-
-
-
-
-
- URL
-
-
-
-
-
- 登録
-
-
-
-
-
-
- 更新
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ログアウトリンク表示
-
-
-
-
-
-
-
- 遷移元URLの限定
-
-
-
-
-
-
-
-
- 認証成功時
-
-
-
-
-
-
-
-
- 認証失敗時
-
-
-
-
-
-
-
-
- ログアウト時
-
-
-
-
-
-
-
-
- セッションタイムアウト時
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ID Provider連携設定
-
-
- リダイレクト認証URL
-
-
-
-
-
- 公開鍵証明書ファイル
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Google 設定
-
-
- ドメイン*
-
-
-
-
-
-
-
-
-
-
- Google API Credentials
-
-
- Client ID*
-
-
-
-
-
- Client secret*
-
-
-
-
-
- Redirect URI
-
-
-
-
-
-
-
-
-
-
- AgileWorksユーザーとの引当方法
-
-
- 対象*
-
-
-
- ※ Google Appsユーザーのメールアドレスと引き当てるAgileWorksユーザーの項目を指定します。
-
-
-
-
-
-
-
-
-
-
-
- サイボウズガルーン連携
-
-
- Cookie名*
-
-
-
- サイボウズ製品が出力したCookie情報を読み出す際に利用します。
- サイボウズ製品側「セッション認証設定」と同じ値を指定してください。
-
-
-
-
- 認証パスワード*
-
-
-
- サイボウズ製品が出力したCookie情報を読み出す際の妥当性検証キーとして利用します。
- サイボウズ製品側「セッション認証設定」と同じ値を指定してください。
-
-
-
-
- 認証パスワード(再入力)*
-
-
-
-
-
-
-
-
-
- AgileWorksユーザーとの引当方法
-
-
- 対象*
-
-
-
- サイボウズ製品のユーザーの「ログイン名」と引き当てるAgileWorksユーザーの項目を指定します。
-
-
-
-
-
-
-
-
-
-
-
-
-
- 認証リポジトリ*
-
-
-
-
-
- 指定方法*
-
-
-
-
-
-
-
-
-
-
- AgileWorksユーザーとの引当方法
-
-
- 対象*
-
-
-
-
-
- 値*
-
-
-
-
-
-
-
-
-
-
-
-
- 外部認証リポジトリとの引当方法
-
-
- 属性名*
-
-
-
-
-
-
-
-
-
-
-
- 外部認証リポジトリとの引当方法
-
-
- 属性名*
-
-
-
-
-
- 値*
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Security/LoginAuthSamlUpload.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Security/LoginAuthSamlUpload.html
deleted file mode 100644
index e5af108dc5d231a887971442138a08c908e3f910..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Security/LoginAuthSamlUpload.html
+++ /dev/null
@@ -1,133 +0,0 @@
-
-
-
-
-
-
-
-
-
-
1
アップロード
0
loginauth#uploadFile
new
-
2
閉じる
0
loginauth#cancelUpload
close
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Security/PasswordPolicy.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Security/PasswordPolicy.html
deleted file mode 100644
index 224360c58238d0a97427cfec5baac4761fb7ecde..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Security/PasswordPolicy.html
+++ /dev/null
@@ -1,362 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
1
保存
0
passwordpolicy#save
save
-
-
21
初期設定に戻す
2
passwordpolicy#restore
restore
-
22
パスワード最終更新日時の再設定
2
passwordpolicy#resetPasswordLastModified
edit
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
3
高 - 英字(大文字)、英字(小文字)、数値、記号(-,@*)を混在させる
-
2
中 - 英字(大文字)、英字(小文字)、数値を混在させる
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
パスワード変更
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 変更履歴を保持する回数
-
-
-
-
-
-
-
パスワード文字列の制限
-
-
-
-
-
-
-
-
-
- ~
-
-
- 文字
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
パスワード有効期間の制限
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
ログイン失敗時の制限
-
-
-
-
-
-
-
-
- 分以内に
-
-
- 回失敗したらアカウントをロックする
-
-
-
-
-
- アカウントロックの自動解除
-
-
-
-
-
-
- アカウントロックの自動解除(Administratorユーザー)
-
-
-
-
-
-
ログインアクセスの許可
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Security/SAML2Man.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Security/SAML2Man.html
deleted file mode 100644
index c25e9fb25bf55e422f370875c7c6b595c65eca41..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Security/SAML2Man.html
+++ /dev/null
@@ -1,64 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Staging/DeployConf.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Staging/DeployConf.html
deleted file mode 100644
index 9e7809e40a2d64af77ad3d8f4d0fe7d1a3e2beec..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Staging/DeployConf.html
+++ /dev/null
@@ -1,180 +0,0 @@
-
-
-
-
-
1
実行
0
staging.deploy#exec
exec
-
2
閉じる
0
staging.deploy#closeLayer
close
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 運用環境の管理ユーザー
-
-
- ログインID
-
-
-
-
- パスワード
-
-
-
-
-
-
- 実行内容の指示
-
-
-
-
- ステージング環境マスタ情報を、運用環境にデプロイします。
-
-
-
-
- 実行モード:
-
-
-
-
-
-
-
- 開始までの待ち時間:
-
-
-
-
-
-
-
- 完了時に指定アドレスにメール送信:
-
-
-
-
-
-
-
-
-
-
-
-
-
- 注意事項
-
-
-
-
- 「本番実行」で処理を実行すると、運用環境/ステージング環境の全ユーザーが強制的にログアウトされ、処理が完了するまでログインできません。
- (この処理を実行したユーザーもログアウトされます)
-
- 処理完了後は「サイト管理」→「サイト状況」→「ジョブ」から実行履歴とログを確認してください。
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Staging/Staging.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Staging/Staging.html
deleted file mode 100644
index 3f1ce1677bcb48595e0554223820a56d82dd65f0..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Staging/Staging.html
+++ /dev/null
@@ -1,168 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
2
同期化
0
staging#showSyncLayer
export
-
3
デプロイ
0
staging#showDeployLayer
import
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
システム環境
-
-
- 基準日*
-
-
-
- (ここで指定した日付時点の組織情報で各種メンテナンスが可能となります)
-
-
-
- ユーザーサイトへのログイン
-
-
-
-
- (この場合、ログインIDのみ入力する事でユーザーサイトへのログインが可能となります。)
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Staging/StagingServer.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Staging/StagingServer.html
deleted file mode 100644
index 5d5f3592c081a1060b28abb965bc438bbd45c313..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Staging/StagingServer.html
+++ /dev/null
@@ -1,98 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Staging/SyncConf.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Staging/SyncConf.html
deleted file mode 100644
index eba561a3ced28025c92c5e6b516a8df24a6026ac..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Staging/SyncConf.html
+++ /dev/null
@@ -1,117 +0,0 @@
-
-
-
-
-
1
実行
0
staging.sync#exec
exec
-
2
閉じる
0
staging.sync#closeLayer
close
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 運用環境の管理ユーザー
-
-
- ログインID
-
-
-
-
- パスワード
-
-
-
-
-
-
- 実行内容の指示
-
-
-
-
- 運用環境のマスタ情報を、ステージング環境に同期化します。
-
-
-
-
-
- 完了時に指定アドレスにメール送信:
-
-
-
-
-
-
-
-
-
-
-
-
-
- 注意事項
-
-
-
-
- 処理を実行すると、ステージング環境の全ユーザーが強制的にログアウトされ、処理が完了するまでログインできません。
- (この処理を実行したユーザーもログアウトされます)
-
- 処理完了後は「サイト管理」→「サイト状況」→「ジョブ」から実行履歴とログを確認してください。
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/System/Backup.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/System/Backup.html
deleted file mode 100644
index f7732ea3668068a78ded77011eb88d3ab52a008e..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/System/Backup.html
+++ /dev/null
@@ -1,222 +0,0 @@
-
-
-
-
-
-
-
1
保存
0
backupconf#update
save
false
-
2
初期設定に戻す
0
backupconf#usedefault
restore
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
バックアップ
-
-
-
- バックアップ機能
-
-
-
-
-
-
-
-
-
-
-
-
-
- 監視対象ディレクトリ
-
-
-
-
-
-
- 監視対象拡張子
-
-
-
-
-
-
- 最大保存件数
-
-
-
-
-
-
- 表示件数
-
-
-
-
-
-
- 容量制限対象件数
-
-
-
-
-
-
- ダウンロード制限回数
-
-
-
-
-
-
- ダウンロード制限監視日数
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/System/Content.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/System/Content.html
deleted file mode 100644
index fc0b3ef17d7b5c7ab245f3a3a303383ec19809cb..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/System/Content.html
+++ /dev/null
@@ -1,262 +0,0 @@
-
-
-
-
-
-
-
-
1
初期設定に戻す
0
content#revertAllContent
restore
-
2
インポート
0
content#showImportLayer
export
false
-
3
エクスポート
0
content#exportZip
export
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
1
インポート
0
content#doImportcontent
import
-
2
閉じる
0
content#cancelImportcontent
close
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/System/IdentityProvider.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/System/IdentityProvider.html
deleted file mode 100644
index eaf7491b4b75866158d31ba2e9eb4e40d4043e42..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/System/IdentityProvider.html
+++ /dev/null
@@ -1,243 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
ID管理サーバー
-
-
-
-
-
- クライアントアクセスURL
-
-
- ※iceBergからの接続URLと、クライアントからの接続URLが異なる場合(例:ロードバランサ、リバースプロキシ等)に設定します。
-
-
-
-
-
-
連携設定
-
-
-
-
-
-
-
-
-
-
-
-
-
- URL:*
-
-
-
-
-
- ログインID:*
-
-
-
-
-
- パスワード:*
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/System/Locale.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/System/Locale.html
deleted file mode 100644
index 23fd2415c947b5adca744833d118ec0187f49b37..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/System/Locale.html
+++ /dev/null
@@ -1,562 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
21
言語設定
2
locale#showEditLayer
edit
-
22
既定の言語にする
2
locale#setCurrentToDefault
check
-
-
-
-
4
インポート
0
locale#showImportLayer
import
-
-
6
並び順設定
0
locale#showOrderLayer
sortconfig
-
-
-
-
-
-
-
-
-
1
保存
0
locale#doSaveProjectOrder
save
-
2
閉じる
0
locale#cancelSaveProjectOrder
close
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- コード*
-
-
-
-
-
- 名称*
-
-
-
-
-
- 有効/無効
-
-
-
-
-
-
- 登録
-
-
-
-
-
-
- 更新
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/System/Locale/LocaleImport.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/System/Locale/LocaleImport.html
deleted file mode 100644
index c8aa038bab0f56fc027fdef30589702ebbd0a1dd..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/System/Locale/LocaleImport.html
+++ /dev/null
@@ -1,119 +0,0 @@
-
-
-
-
-
-
-
-
-
-
1
インポート
0
locale.importdialog#import
import
false
-
2
閉じる
0
locale.importdialog#cancel
close
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/System/Message.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/System/Message.html
deleted file mode 100644
index e5140fb638650ab20ec50072571c58a9c0b2d660..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/System/Message.html
+++ /dev/null
@@ -1,250 +0,0 @@
-
-
-
-
-
-
-
-
-
2
初期設定に戻す
0
message#revertAllMessage
restore
-
3
インポート
0
message#showImportLayer
export
false
-
4
エクスポート
0
message#exportZip
export
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
1
インポート
0
message#doImportmessage
import
-
2
閉じる
0
message#cancelImportmessage
close
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 名称
-
-
-
-
-
- 言語コード
-
-
-
-
-
- メッセージ
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/System/Other.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/System/Other.html
deleted file mode 100644
index 60da0a04dd6572f97b18a865fecffce34a76244a..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/System/Other.html
+++ /dev/null
@@ -1,209 +0,0 @@
-
-
-
-
-
-
-
-
1
-
保存
-
0
-
other#update
-
save
-
-
-
2
-
初期設定に戻す
-
0
-
other#usedefault
-
restore
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
ファイル
-
-
- アップロード制限
-
-
-
-
-
-
-
-
-
-
- (添付ファイル、X-WebFormのフォームファイル等が対象となります)
-
-
-
-
-
-
-
-
セッション
-
-
-
ログイン認証
-
-
- 外部連携パスワード認証
-
-
-
- ※必須にすると「パスワード認証を行う」に設定されていない全ての外部連携認証設定が無効になり、該当する外部連携設定を利用しているユーザーが全て強制ログアウトさせられます。
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/System/Project.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/System/Project.html
deleted file mode 100644
index 0dea63464f6873555411242287ab915f1401f090..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/System/Project.html
+++ /dev/null
@@ -1,464 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
1
新規
0
project#showAddLayer
new
-
2
編集
0
project#showEditLayer
edit
-
3
削除
0
project#deleteCurrent
delete
-
4
並び順設定
0
project#showOrderLayer
sortconfig
-
-
-
-
-
-
-
-
-
1
保存
0
project#doSaveProjectOrder
save
-
2
閉じる
0
project#cancelSaveProjectOrder
close
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- コード:*
-
-
-
-
-
- 名称:*
-
-
-
-
-
- 登録
-
-
-
-
-
-
- 更新
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/System/SiteInfo.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/System/SiteInfo.html
deleted file mode 100644
index 29a0d9e1c864f1e53af9b39ccc99afae86477cd5..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/System/SiteInfo.html
+++ /dev/null
@@ -1,400 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
サイト情報
-
-
- お客様名*
-
-
-
-
-
- システム名*
-
-
-
-
-
-
-
-
ロゴ設定
-
-
- ユーザーサイトロゴURL*
-
-
-
-
-
-
-
-
-
-
-
履歴化
-
-
- 履歴モード
-
-
-
- ※履歴モードを一度有効にすると無効へ戻すことはできません。
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ユーザー名
-
-
-
-
-
- 現在のパスワード*
-
-
-
-
-
- 新しいパスワード*
-
-
-
-
-
- 新しいパスワード(再入力)*
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/System/UserMaster.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/System/UserMaster.html
deleted file mode 100644
index 51bc715cbf0ca6bda8cbc949dfe8401f0bdab584..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/System/UserMaster.html
+++ /dev/null
@@ -1,707 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
1
新規
0
usermaster#showAddLayer
new
false
-
2
編集
0
usermaster#showEditLayer
edit
false
-
3
削除
0
usermaster#deleteCurrent
delete
false
-
-
41
テーブル定義XMLのインポート
4
usermaster#showXmlImportLayer
import
false
-
-
51
テーブル定義XMLのエクスポート
5
usermaster#exportXml
export
true
-
-
-
-
-
-
-
-
-
1
保存
0
usermaster#doSaveUserMaster
save
-
2
閉じる
0
usermaster#cancelSaveUserMaster
close
-
-
-
-
-
-
-
1
追加
0
usermaster#addColumn
new
-
2
削除
0
usermaster#deleteColumn
delete
-
-
-
-
-
-
-
1
インポート
0
usermaster#doImportUserMaster
import
-
2
閉じる
0
usermaster#cancelImportUserMaster
close
-
-
-
-
-
-
-
1
インポート
0
usermaster#doImportUserMasterDefinition
import
-
2
閉じる
0
usermaster#cancelImportUserMasterDefinition
close
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- スキーマ名
-
-
-
-
-
- テーブル名*
-
-
-
-
-
-
-
-
-
-
- テーブル定義
-
-
-
-
-
-
-
-
-
- カラム名*
-
-
-
-
-
- 型*
-
-
-
-
-
- 主キー
-
-
-
-
-
- ユニーク
-
-
-
-
-
- NULL禁止
-
-
-
-
-
- インデックス
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- テーブル名
-
-
.
-
-
-
- CSVファイル*
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Workflow/ArchiveServer.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Workflow/ArchiveServer.html
deleted file mode 100644
index c9f67c01a5d75c227e4bdabe31541244ca2c77f1..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Workflow/ArchiveServer.html
+++ /dev/null
@@ -1,185 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- URL:*
-
-
-
-
-
- ログインID:*
-
-
-
-
-
- パスワード:*
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Workflow/Attachment.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Workflow/Attachment.html
deleted file mode 100644
index c41ad090638a4833a24b6b5f0f26a0ac86ea645f..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Workflow/Attachment.html
+++ /dev/null
@@ -1,230 +0,0 @@
-
-
-
-
-
-
-
-
1
-
保存
-
0
-
attachment#update
-
save
-
-
-
2
-
初期設定に戻す
-
0
-
attachment#usedefault
-
restore
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
添付ファイルの制限
-
-
- 1ファイルあたりの最大サイズ
-
-
-
-
-
- 1書類あたりの最大サイズ
-
-
-
-
-
- ファイルの拡張子
-
-
-
-
-
-
-
-
-
- ※改行、または、スペース区切りで指定してください。
- 例:
zip pdf txt
-xls doc ppt
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Workflow/CommonDocView.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Workflow/CommonDocView.html
deleted file mode 100644
index c6f819d631c0d96c437890174e0841972c8289bc..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Workflow/CommonDocView.html
+++ /dev/null
@@ -1,534 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
1
保存
0
commondocview#update
save
true
-
-
21
表示項目を初期値に戻す
2
commondocview#systemDefault
restore
true
-
22
表示項目の見出し・幅のみを戻す
2
commondocview#userDefault
restore
true
-
3
項目追加・削除
0
commondocview#showEditLayer
edit
true
-
-
41
全共通一覧ビューのインポート
4
commondocview#showImportLayer
import
false
-
-
51
全共通一覧ビューのエクスポート
5
commondocview#exportXml
export
false
-
-
-
-
-
-
-
-
1
設定
0
commondocview#setItem
save
-
2
閉じる
0
commondocview#closeEditLayer
close
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
1
インポート
0
commondocview#doImportCommonDocView
import
-
2
閉じる
0
commondocview#cancelImportCommonDocView
close
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 一覧ビュー:
-
-
-
-
-
- 見出しの言語:
-
-
-
-
-
-
-
-
-
-
-
-
- 表示項目
-
-
-
-
-
- 見出し*
-
-
-
-
-
- 幅*
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Workflow/CsvExport.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Workflow/CsvExport.html
deleted file mode 100644
index 36c035922f227eb0a4deb00e2fd9c771e831f869..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Workflow/CsvExport.html
+++ /dev/null
@@ -1,117 +0,0 @@
-
-
-
-
-
-
-
-
1
保存
0
csvexport#update
save
false
-
2
初期設定に戻す
0
csvexport#usedefault
restore
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Workflow/ListNameCaption.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Workflow/ListNameCaption.html
deleted file mode 100644
index 78a8da643067dae6d99b9fd2ae02a59b38fe117d..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Workflow/ListNameCaption.html
+++ /dev/null
@@ -1,345 +0,0 @@
-
-
-
-
-
-
-
-
-
1
保存
0
listnamecaption#update
save
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 項目名/型設定
-
-
- 項目名の言語:
-
-
-
-
-
-
-
-
-
-
- 件名1
-
-
-
-
-
-
-
-
- 件名2
-
-
-
-
-
-
-
-
- 件名3
-
-
-
-
-
-
-
-
- 件名4
-
-
-
-
-
-
-
-
- 件名5
-
-
-
-
-
-
-
-
- 件名6
-
-
-
-
-
-
-
-
- 件名7
-
-
-
-
-
-
-
-
- 件名8
-
-
-
-
-
-
-
-
- 件名9
-
-
-
-
-
-
-
-
- 件名10
-
-
-
-
-
-
-
-
- 件名11
-
-
-
-
-
-
-
-
- 件名12
-
-
-
-
-
-
-
-
- 件名13
-
-
-
-
-
-
-
-
- 件名14
-
-
-
-
-
-
-
-
- 件名15
-
-
-
-
-
-
-
-
- 件名16
-
-
-
-
-
-
-
-
- 件名17
-
-
-
-
-
-
-
-
- 件名18
-
-
-
-
-
-
-
-
- 件名19
-
-
-
-
-
-
-
-
- 件名20
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Workflow/PdfFont.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Workflow/PdfFont.html
deleted file mode 100644
index bb772307e8c0b6a1ec0d9fb2ab63ea6611dcc287..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Workflow/PdfFont.html
+++ /dev/null
@@ -1,362 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
1
保存
0
pdfFont#doSavePdfFont
save
-
2
編集
0
pdfFont#showEditLayer
edit
-
-
-
-
-
-
-
-
1
設定
0
pdfFont#doSaveCurrentPdfFont
save
-
2
閉じる
0
pdfFont#cancelSavePdfFont
close
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 名称
-
-
-
-
-
- 言語
-
-
-
-
-
- フォントファイルパス#位置*
-
-
-
-
-
- ボールドフォントファイルパス#位置
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 名称
-
-
-
-
-
- フォントファイルパス
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Workflow/WorkflowPolicy.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Workflow/WorkflowPolicy.html
deleted file mode 100644
index aeb87ac2b631faf784b54a63b7d2b80cc6594f93..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Config/Workflow/WorkflowPolicy.html
+++ /dev/null
@@ -1,525 +0,0 @@
-
-
-
-
-
-
-
1
保存
0
noticeconf#update
save
false
-
2
初期設定に戻す
0
noticeconf#usedefault
restore
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
申請
-
-
- バックデート申請
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 申請日から
-
-
-
- ヶ月前の
-
-
-
-
-
- まで
-
-
-
-
-
-
- 申請日から
-
-
-
- 日前まで
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
通知
-
-
- 通知メッセージの削除ポリシー
-
-
- 日経過した既読メッセージを削除する
-
-
-
-
-
-
- 日経過した未読を含む全てのメッセージを削除する(未指定時、未読メッセージは自動削除されません)
-
-
-
-
-
-
-
-
閲覧権限
-
-
- 回付完了後の回付者への公開期間
-
-
- 日
-
-
-
-
-
-
-
-
削除
-
-
- 削除済み書類の自動物理削除
-
-
- 日経過した削除済み書類を物理削除する
-
-
-
-
-
-
-
-
-
-
一般ユーザーによる設定
-
-
-
-
- 代理承認
-
-
-
-
-
-
- 通知フィルター
-
-
-
-
-
-
-
-
-
-
- ダブルクリックによる書類表示の方式(既定)
-
-
-
-
-
-
-
-
-
-
-
キャッシュ設定
-
-
- 仕事画面の件数キャッシュ期間
-
-
- 分
- ※仕事画面の件数キャッシュについては画面ヘルプ
を参照
-
-
-
-
-
-
-
-
PDF出力
-
-
- 編集状態でのPDF出力許可
-
-
-
-
- ※許可することによって、入力値のチェックが行われずにPDFが出力されてしまう可能性があります
-
-
-
-
-
-
-
-
-
並び順
-
-
- 添付ファイル
-
-
-
-
-
-
- コメント/メモ
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status.html
deleted file mode 100644
index c0f4745511df67b8fb0963aa273bf6390cdb4fb2..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status.html
+++ /dev/null
@@ -1,48 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/BackupInfo.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/BackupInfo.html
deleted file mode 100644
index 29c9799922b47dee09c7f458c6b5650779413a82..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/BackupInfo.html
+++ /dev/null
@@ -1,104 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Diagnosis/Org/OrgExport.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Diagnosis/Org/OrgExport.html
deleted file mode 100644
index 7872149a366132036ffc725d6a18dd4fde9cb012..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Diagnosis/Org/OrgExport.html
+++ /dev/null
@@ -1,174 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
1
エクスポート
0
orgsum.export#export
export
false
-
2
閉じる
0
orgsum.export#close
close
false
-
-
-
-
-
-
-
-
-
-
-
-
-
- 出力フォーマット
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Diagnosis/Org/OrgModify.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Diagnosis/Org/OrgModify.html
deleted file mode 100644
index c9633c255e09139199351e9643b5f6265d998b0c..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Diagnosis/Org/OrgModify.html
+++ /dev/null
@@ -1,142 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
1
再表示
0
orgmodify#reload
reload
false
-
2
エクスポート
0
orgmodify#showExportLayer
export
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Diagnosis/Org/OrgSummary.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Diagnosis/Org/OrgSummary.html
deleted file mode 100644
index 09c7703ae54dfd1e3eec8487a0495b57512433b8..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Diagnosis/Org/OrgSummary.html
+++ /dev/null
@@ -1,127 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
1
再表示
0
orgsum#reload
reload
false
-
2
エクスポート
0
orgsum#showExportLayer
export
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Information.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Information.html
deleted file mode 100644
index 7d84960e05714d774a1aff97e220307e10931986..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Information.html
+++ /dev/null
@@ -1,113 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- サイト情報
-
-
-
-
システム
-
-
- AgileWorksバージョン
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Job/AutoApply.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Job/AutoApply.html
deleted file mode 100644
index 567b7e4a03291445174471727c9e7ec2d7ae2e3a..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Job/AutoApply.html
+++ /dev/null
@@ -1,31 +0,0 @@
-
-
-
-
-
-
-
-
1
再表示
0
batchlog#reloadByMenu
reload
false
-
2
詳細
0
batchlog#showDetailLayer
edit
false
-
3
削除
0
batchlog#deleteCurrentObject
delete
true
-
-
41
一括削除
4
batchlog#deleteSelectedObject
delete
false
-
5
再実行
0
batchlog#rerun
exec
false
-
6
停止
0
batchlog#stopJob
abort
false
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Job/Bricklet.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Job/Bricklet.html
deleted file mode 100644
index a6d441e0f07ff3271719dde32f85a90f73a3afa5..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Job/Bricklet.html
+++ /dev/null
@@ -1,30 +0,0 @@
-
-
-
-
-
-
-
-
1
再表示
0
batchlog#reloadByMenu
reload
false
-
2
詳細
0
batchlog#showDetailLayer
edit
false
-
3
削除
0
batchlog#deleteCurrentObject
delete
true
-
-
41
一括削除
4
batchlog#deleteSelectedObject
delete
false
-
6
停止
0
batchlog#stopJob
abort
false
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Job/BulkApply.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Job/BulkApply.html
deleted file mode 100644
index 2084f2e7524747ba189dd2b2d0c77677c3e90ded..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Job/BulkApply.html
+++ /dev/null
@@ -1,30 +0,0 @@
-
-
-
-
-
-
-
-
1
再表示
0
batchlog#reloadByMenu
reload
false
-
2
詳細
0
batchlog#showDetailLayer
edit
false
-
3
削除
0
batchlog#deleteCurrentObject
delete
true
-
-
41
一括削除
4
batchlog#deleteSelectedObject
delete
false
-
6
停止
0
batchlog#stopJob
abort
false
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Job/Job.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Job/Job.html
deleted file mode 100644
index 1a0bce256f7e20c16416bd5a0e603ccb770f1c2b..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Job/Job.html
+++ /dev/null
@@ -1,353 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Job/JobDetail.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Job/JobDetail.html
deleted file mode 100644
index 8ef816c2461cf2840a16a87a543bfa0e5f26aa3a..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Job/JobDetail.html
+++ /dev/null
@@ -1,242 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
1
再表示
0
batchlog.detaildialog#reloadByMenu
reload
false
-
-
21
コンソールログ
2
batchlog.detaildialog#downloadConsoleLog
export
false
-
22
拡張情報
2
batchlog.detaildialog#downloadStorageFile
export
false
-
3
停止
0
batchlog.detaildialog#stopJob
abort
false
-
4
閉じる
0
batchlog.detaildialog#cancel
close
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- コード
-
-
-
-
-
- 名称
-
-
-
-
-
- ステータス
-
-
-
-
-
- 開始日時
-
-
-
-
-
- 終了日時
-
-
-
-
-
- ログ
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Job/OrgImport.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Job/OrgImport.html
deleted file mode 100644
index d63e9bdd66121b1a78b27afd22c560b877037f9e..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Job/OrgImport.html
+++ /dev/null
@@ -1,30 +0,0 @@
-
-
-
-
-
-
-
-
1
再表示
0
batchlog#reloadByMenu
reload
false
-
2
詳細
0
batchlog#showDetailLayer
edit
false
-
3
削除
0
batchlog#deleteCurrentObject
delete
true
-
-
41
一括削除
4
batchlog#deleteSelectedObject
delete
false
-
6
停止
0
batchlog#stopJob
abort
false
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Job/PublicFormExchange.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Job/PublicFormExchange.html
deleted file mode 100644
index 94b1f1694f94f7c313923f790aa810c225bcf11c..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Job/PublicFormExchange.html
+++ /dev/null
@@ -1,30 +0,0 @@
-
-
-
-
-
-
-
-
1
再表示
0
batchlog#reloadByMenu
reload
false
-
2
詳細
0
batchlog#showDetailLayer
edit
false
-
3
削除
0
batchlog#deleteCurrentObject
delete
true
-
-
41
一括削除
4
batchlog#deleteSelectedObject
delete
false
-
6
停止
0
batchlog#stopJob
abort
false
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Job/Staging.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Job/Staging.html
deleted file mode 100644
index d57ae0049f9cf439891913dd5631b2c50e0db2ab..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Job/Staging.html
+++ /dev/null
@@ -1,30 +0,0 @@
-
-
-
-
-
-
-
-
1
再表示
0
batchlog#reloadByMenu
reload
false
-
2
詳細
0
batchlog#showDetailLayer
edit
false
-
3
削除
0
batchlog#deleteCurrentObject
delete
true
-
-
41
一括削除
4
batchlog#deleteSelectedObject
delete
false
-
6
停止
0
batchlog#stopJob
abort
false
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Job/System.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Job/System.html
deleted file mode 100644
index 37ecb017ff34dda8b1478105fb30639e5476474c..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Job/System.html
+++ /dev/null
@@ -1,30 +0,0 @@
-
-
-
-
-
-
-
-
1
再表示
0
batchlog#reloadByMenu
reload
false
-
2
詳細
0
batchlog#showDetailLayer
edit
false
-
3
削除
0
batchlog#deleteCurrentObject
delete
true
-
-
41
一括削除
4
batchlog#deleteSelectedObject
delete
false
-
6
停止
0
batchlog#stopJob
abort
false
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Job/TinyUserMasterImport.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Job/TinyUserMasterImport.html
deleted file mode 100644
index c8b018671dfae0f5c19045a78d8ca4185a2d88d0..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Job/TinyUserMasterImport.html
+++ /dev/null
@@ -1,31 +0,0 @@
-
-
-
-
-
-
-
-
1
再表示
0
batchlog#reloadByMenu
reload
false
-
2
詳細
0
batchlog#showDetailLayer
edit
false
-
3
削除
0
batchlog#deleteCurrentObject
delete
true
-
-
41
一括削除
4
batchlog#deleteSelectedObject
delete
false
-
5
再実行
0
batchlog#rerun
exec
false
-
6
停止
0
batchlog#stopJob
abort
false
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Job/UserMasterImport.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Job/UserMasterImport.html
deleted file mode 100644
index 344e869265303b9225d3b9d3d3cb4c161cfa933c..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Job/UserMasterImport.html
+++ /dev/null
@@ -1,30 +0,0 @@
-
-
-
-
-
-
-
-
1
再表示
0
batchlog#reloadByMenu
reload
false
-
2
詳細
0
batchlog#showDetailLayer
edit
false
-
3
削除
0
batchlog#deleteCurrentObject
delete
true
-
-
41
一括削除
4
batchlog#deleteSelectedObject
delete
false
-
6
停止
0
batchlog#stopJob
abort
false
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Log/ASBLog.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Log/ASBLog.html
deleted file mode 100644
index a90d65432290d28eeb2273f380092890329341d6..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Log/ASBLog.html
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Log/AccessLog.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Log/AccessLog.html
deleted file mode 100644
index 00ee6df31828a6e286e4de9bfe4a65defd7fc0e6..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Log/AccessLog.html
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Log/BrickletLog.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Log/BrickletLog.html
deleted file mode 100644
index ddb996d61080ce1aef0369de149e948f2653ceff..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Log/BrickletLog.html
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Log/ConditionLog.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Log/ConditionLog.html
deleted file mode 100644
index f8ad2fadbe823b29e3393d0a79b631c4a2300fa1..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Log/ConditionLog.html
+++ /dev/null
@@ -1,167 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
1
再表示
0
log#reload
reload
true
-
2
ダウンロード
0
log#showExportLayer
export
true
-
3
削除
0
log#showDeleteLayer
delete
true
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Log/DebugLog.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Log/DebugLog.html
deleted file mode 100644
index 0c67e59f4348ea5490056e5206fae75ac2fc9751..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Log/DebugLog.html
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Log/ErrorLog.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Log/ErrorLog.html
deleted file mode 100644
index 5aa2f5d53b982607acda20d42f919c403c6e3698..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Log/ErrorLog.html
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Log/JobLog.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Log/JobLog.html
deleted file mode 100644
index 226225202714b6ff5d7e5ff5ba6e6ce42619594e..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Log/JobLog.html
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Log/LogDelete.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Log/LogDelete.html
deleted file mode 100644
index 43afa3cb2a7027ae012ea1e14b27d475b8c46d79..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Log/LogDelete.html
+++ /dev/null
@@ -1,147 +0,0 @@
-
-
-
-
-
-
-
-
-
-
1
削除
0
log#doDeleteLayer
delete
true
-
2
閉じる
0
log#closeDeleteLayer
close
true
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ログ件数
-
-
-
-
-
-
- 対象
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Log/LogExport.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Log/LogExport.html
deleted file mode 100644
index b22380076d27de73671c3643c3925329c109b140..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Log/LogExport.html
+++ /dev/null
@@ -1,139 +0,0 @@
-
-
-
-
-
-
-
-
-
-
1
ダウンロード
0
log#doExportLayer
export
true
-
2
閉じる
0
log#closeExportLayer
close
true
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ログ件数
-
-
-
-
-
-
- 対象
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Log/MailLog.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Log/MailLog.html
deleted file mode 100644
index b1953ec3176653859decbb53d859735dfcf555eb..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Log/MailLog.html
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Log/PerformanceLog.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Log/PerformanceLog.html
deleted file mode 100644
index 7c4924a11d20e084413f5a54990bbf1ca4e8e653..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Log/PerformanceLog.html
+++ /dev/null
@@ -1,186 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
1
再表示
0
log#reload
reload
true
-
2
ダウンロード
0
log#showExportLayer
export
true
-
3
削除
0
log#showDeleteLayer
delete
true
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Log/SecurityLog.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Log/SecurityLog.html
deleted file mode 100644
index 498ffcd80b064a377e5b1933be41a56cda87bdcf..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Log/SecurityLog.html
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Log/SimpleLogBase.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Log/SimpleLogBase.html
deleted file mode 100644
index 48a7bb079ebcb7dd99b1295d05362826088d1455..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Log/SimpleLogBase.html
+++ /dev/null
@@ -1,130 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
1
再表示
0
log#reload
reload
true
-
2
ダウンロード
0
log#showExportLayer
export
true
-
3
削除
0
log#showDeleteLayer
delete
true
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Log/SiteManagerLog.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Log/SiteManagerLog.html
deleted file mode 100644
index 4a2b13a556618750109ca9a3f7394925d2202efe..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Log/SiteManagerLog.html
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/LoginUser.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/LoginUser.html
deleted file mode 100644
index 0a75fb365320ff87aecd67d749331b08ffda025b..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/LoginUser.html
+++ /dev/null
@@ -1,231 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Search/DocIndex.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Search/DocIndex.html
deleted file mode 100644
index 59165596235f07470b69f084fe649b19da7b6ab1..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/Search/DocIndex.html
+++ /dev/null
@@ -1,132 +0,0 @@
-
-
-
-
-
-
-
1
再表示
0
docindex#reloadByMenu
reload
-
2
初期化
0
docindex#restoreAll
restore
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
マスターインデックス
-
-
- 総インデックス件数
-
-
-
- インデックス作成待ち書類数
-
-
-
- 最終ログ番号
-
-
-
-
-
ローカルインデックス
-
-
- 適用済み番号
-
-
-
- 格納先
-
-
-
- 容量
-
-
-
- 最終更新日時
-
-
-
- 最後のメンテナンスに要した秒数
-
-
-
- ステータス
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/System.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/System.html
deleted file mode 100644
index 9883141ba2b1ec976360c5f5d820516f768e4677..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/System.html
+++ /dev/null
@@ -1,143 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
基本
-
-
-
メモリー
-
-
-
VM引数
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/TinyInformation.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/TinyInformation.html
deleted file mode 100644
index 5e4ba4e7c371401757790b62bc88052118c703a9..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/SiteManager/Status/TinyInformation.html
+++ /dev/null
@@ -1,79 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
サイト情報
-
-
- お客様名
-
-
-
- システム名
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/ToolManager/Export.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/ToolManager/Export.html
deleted file mode 100644
index 41c469a143a72d69e00a5aaee153bce2aca5ecf0..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/ToolManager/Export.html
+++ /dev/null
@@ -1,81 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- エクスポート
-
-
-
-
-
-
-
-
-
- エクスポート対象
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/ToolManager/ImpExpMan.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/ToolManager/ImpExpMan.html
deleted file mode 100644
index 179492098946224ae4b6723a35c5c1072895b170..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/ToolManager/ImpExpMan.html
+++ /dev/null
@@ -1,142 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
1
-
インポート
-
0
-
false
-
true
-
ToolManager/Import
-
import
-
-
-
2
-
エクスポート
-
0
-
false
-
true
-
ToolManager/Export
-
export
-
-
-
-
11
-
ユーザー
-
1
-
true
-
true
-
ToolManager/Import
-
user
-
-
-
12
-
組織
-
1
-
false
-
true
-
ToolManager/Import
-
unit
-
-
-
121
-
組織
-
12
-
true
-
false
-
ToolManager/Import
-
unit
-
-
-
122
-
セクションロール
-
12
-
true
-
false
-
ToolManager/Import
-
section_role
-
-
-
123
-
組織の所属ユーザー
-
12
-
true
-
false
-
ToolManager/Import
-
user
-
-
-
15
-
ユニバーサルロール
-
1
-
false
-
true
-
ToolManager/Import
-
universal_role
-
-
-
151
-
ユニバーサルロール
-
15
-
true
-
false
-
ToolManager/Import
-
universal_role
-
-
-
152
-
ロールを所有するユーザー
-
15
-
true
-
true
-
ToolManager/Import
-
user
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/EMMA/ToolManager/Import.html b/AgileWorks/WebContent/WEB-INF/html/EMMA/ToolManager/Import.html
deleted file mode 100644
index a103c8c6f9e0a0b89aa91e94e573b0aa7d7924c7..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/EMMA/ToolManager/Import.html
+++ /dev/null
@@ -1,477 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
1
インポート確認
0
showConfirm
import
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
1
-
10012
-
田中太郎
-
新規
-
-
-
-
2
-
10013
-
佐藤次郎
-
修正
-
-
-
-
3
-
10014
-
加藤四郎
-
修正
-
-
-
-
4
-
10015
-
木村五郎
-
削除
-
-
-
-
5
-
10012
-
田中太郎
-
新規
-
-
-
-
6
-
10013
-
佐藤次郎
-
修正
-
-
-
-
7
-
10014
-
加藤四郎
-
修正
-
-
-
-
8
-
10015
-
木村五郎
-
削除
-
-
-
-
9
-
10012
-
田中太郎
-
新規
-
-
-
-
10
-
10013
-
佐藤次郎
-
修正
-
-
-
-
11
-
10014
-
加藤四郎
-
修正
-
-
-
-
12
-
10015
-
木村五郎
-
削除
-
-
-
-
13
-
10012
-
田中太郎
-
新規
-
-
-
-
14
-
10013
-
佐藤次郎
-
修正
-
-
-
-
15
-
10014
-
加藤四郎
-
修正
-
-
-
-
16
-
10015
-
木村五郎
-
削除
-
-
-
-
17
-
10012
-
田中太郎
-
新規
-
-
-
-
18
-
10013
-
佐藤次郎
-
修正
-
-
-
-
19
-
10014
-
加藤四郎
-
修正
-
-
-
-
20
-
10015
-
木村五郎
-
削除
-
-
-
-
20
-
10012
-
田中太郎
-
新規
-
-
-
-
21
-
10013
-
佐藤次郎
-
修正
-
-
-
-
22
-
10014
-
加藤四郎
-
修正
-
-
-
-
23
-
10015
-
木村五郎
-
削除
-
-
-
-
24
-
10012
-
田中太郎
-
新規
-
-
-
-
25
-
10013
-
佐藤次郎
-
修正
-
-
-
-
26
-
10014
-
加藤四郎
-
修正
-
-
-
-
27
-
10015
-
木村五郎
-
削除
-
-
-
-
28
-
10012
-
田中太郎
-
新規
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 読み込み先
-
-
-
-
-
-
- 定義ファイル
-
-
-
-
-
- ファイル形式
-
-
-
-
-
- 文字コード
-
-
-
-
-
- 先頭行
-
-
-
-
-
- 更新方法
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 件数、変更内容に問題なければ、インポートボタンをクリックしてください。
-
-
-
-
-
-
-
-
-
-
-
-
-
- 全件
-
-
- 100件
-
-
- 新規
-
-
- 5件
-
-
- 修正
-
-
- 87件
-
-
- 削除
-
-
- 8件
-
-
- エラー
-
-
- 0件
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/Mobile/index.html b/AgileWorks/WebContent/WEB-INF/html/Mobile/index.html
deleted file mode 100644
index 0ff9b46cd3df4b2f084dd4d0613ca8277ed8fa7b..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/Mobile/index.html
+++ /dev/null
@@ -1,239 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/Picus/Doc/DocExplorer.html b/AgileWorks/WebContent/WEB-INF/html/Picus/Doc/DocExplorer.html
deleted file mode 100644
index 3fc88fe3f7c60772dade77e5e7d6a37681818bc8..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/Picus/Doc/DocExplorer.html
+++ /dev/null
@@ -1,994 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
4
$RESOURCE{StatusCompleteApproval}
-
8
$RESOURCE{MenuRejection}
-
16
$RESOURCE{MenuWithdrawal}
-
-
-
-
-
-
1
folder
/images/common/icon/object/folder_close20.gif?build31956
relative
-
2
search
/images/common/icon/action/search.gif?build31956
relative
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
1
$RESOURCE{SpecifySearch}
0
Simple
-
2
$RESOURCE{StorageCondition}
0
FindTree
-
-
-
-
-
-
-
-
11
$RESOURCE{Folder}
1
docexplorer#showFolderEntryLayer
folder_close
-
12
$RESOURCE{SearchCriteria}
1
docexplorer#showFindDetailEntryLayer
search
-
2
$RESOURCE{MenuEdit}
0
docexplorer#showTreeObjectEditLayer
edit
-
3
$RESOURCE{Arrangement}
0
docexplorer#showOrganizeLayer
list
-
-
-
-
-
-
-
1
$RESOURCE{MenuSave}
0
docexplorer#doEditFolder
save
-
2
$RESOURCE{MenuClose}
0
docexplorer#cancelEditFolder
close
-
-
-
-
-
-
-
1
$RESOURCE{MenuSave}
0
docexplorer#doPromptFolder
save
-
2
$RESOURCE{MenuClose}
0
docexplorer#cancelPromptFolder
close
-
-
-
-
-
-
-
1
$RESOURCE{MenuSave}
0
docexplorer#doMoveObject
save
-
2
$RESOURCE{MenuClose}
0
docexplorer#cancelMoveObject
close
-
-
-
-
-
-
-
1
$RESOURCE{MenuNewFolder}
0
docexplorer#showPromptLayer
folder_close
-
2
$RESOURCE{MenuMove}
0
docexplorer#showMoveLayer
cut
-
3
$RESOURCE{MenuDelete}
0
docexplorer#deleteObject
delete
-
4
$RESOURCE{MenuClose}
0
docexplorer#closeOrganizeLayer
close
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{MenuFolderName}:
-
-
-
-
- $RESOURCE{SaveTo}:
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{MenuFolderName}:
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{Destination}:
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/Picus/Form/FormExplorer.html b/AgileWorks/WebContent/WEB-INF/html/Picus/Form/FormExplorer.html
deleted file mode 100644
index 783c1448c1bddfab300a21360ffa724444f0b194..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/Picus/Form/FormExplorer.html
+++ /dev/null
@@ -1,298 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
1
$RESOURCE{Select}
0
formexplorer#doSelectOperator
save
-
2
$RESOURCE{MenuClose}
0
formexplorer#cancelSelectOperator
close
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
$RESOURCE{CriterionDate}:
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/Picus/Message/MessageExplorer.html b/AgileWorks/WebContent/WEB-INF/html/Picus/Message/MessageExplorer.html
deleted file mode 100644
index 42284ca0b54a098f22d6975f11043314e7693c3a..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/Picus/Message/MessageExplorer.html
+++ /dev/null
@@ -1,997 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
1
$RESOURCE{Select}
0
messageexplorer#doSelectOperator
approve
-
2
$RESOURCE{MenuClose}
0
messageexplorer#cancelSelectOperator
close
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/Picus/Personalize/PersonalizeAuthenticationPolicy.html b/AgileWorks/WebContent/WEB-INF/html/Picus/Personalize/PersonalizeAuthenticationPolicy.html
deleted file mode 100644
index c9118ec1d7e8b4b276ad8873d5b41ff79e952a55..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/Picus/Personalize/PersonalizeAuthenticationPolicy.html
+++ /dev/null
@@ -1,105 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
1
$RESOURCE{MenuSave}
0
save
save
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{PersonalizeAuthenticationPolicy.1}
- $RESOURCE{PersonalizeAuthenticationPolicy.2}
- $RESOURCE{PersonalizeAuthenticationPolicy.3}
-
-
-
-
-
- $RESOURCE{AccessValid}
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/Picus/Personalize/PersonalizeDelegatedAuthority.html b/AgileWorks/WebContent/WEB-INF/html/Picus/Personalize/PersonalizeDelegatedAuthority.html
deleted file mode 100644
index a68b5f16a73606c3f357d22ca30e499b7aae6088..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/Picus/Personalize/PersonalizeDelegatedAuthority.html
+++ /dev/null
@@ -1,123 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
1
$RESOURCE{Detail}
0
personalizedelegatedauthority#showEditDelegationAssignLayer
edit
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/Picus/Personalize/PersonalizeExplorer.html b/AgileWorks/WebContent/WEB-INF/html/Picus/Personalize/PersonalizeExplorer.html
deleted file mode 100644
index 85e958f87390846ea4889fc686ab1efd08fdb112..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/Picus/Personalize/PersonalizeExplorer.html
+++ /dev/null
@@ -1,18 +0,0 @@
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/Picus/Personalize/PersonalizeFilterPreference.html b/AgileWorks/WebContent/WEB-INF/html/Picus/Personalize/PersonalizeFilterPreference.html
deleted file mode 100644
index 356fa17a8c6f27713e3c4c1523e7cac738f522a4..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/Picus/Personalize/PersonalizeFilterPreference.html
+++ /dev/null
@@ -1,252 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/Picus/Personalize/PersonalizeLocale.html b/AgileWorks/WebContent/WEB-INF/html/Picus/Personalize/PersonalizeLocale.html
deleted file mode 100644
index ac05460637f616e80722bedaa880e518dd54cb94..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/Picus/Personalize/PersonalizeLocale.html
+++ /dev/null
@@ -1,87 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
1
$RESOURCE{MenuSave}
0
save
save
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{PersonalizeLocale.1}
-
-
-
-
- $RESOURCE{DisplayLanguage}
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/Picus/Personalize/PersonalizeOtherPolicy.html b/AgileWorks/WebContent/WEB-INF/html/Picus/Personalize/PersonalizeOtherPolicy.html
deleted file mode 100644
index e1401ea44cd3a39a175c3cbea311456f222326a1..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/Picus/Personalize/PersonalizeOtherPolicy.html
+++ /dev/null
@@ -1,88 +0,0 @@
-
-
-
-
-
-
-
-
-
-
1
$RESOURCE{MenuSave}
0
save
save
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{DoubleClickToDisplayTheDocumentType}
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/Picus/Personalize/PersonalizePassword.html b/AgileWorks/WebContent/WEB-INF/html/Picus/Personalize/PersonalizePassword.html
deleted file mode 100644
index 6597469ca4dea117c056f3a1cd7c827ef6ded380..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/Picus/Personalize/PersonalizePassword.html
+++ /dev/null
@@ -1,106 +0,0 @@
-
-
-
-
-
-
-
-
-
-
1
$RESOURCE{MenuSave}
0
save
save
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{CurrentPassword}
-
-
-
-
-
- $RESOURCE{NewPassword}
-
-
-
-
-
- $RESOURCE{NewPasswordAgain}
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/Picus/Personalize/PersonalizePrivateRoleMan.html b/AgileWorks/WebContent/WEB-INF/html/Picus/Personalize/PersonalizePrivateRoleMan.html
deleted file mode 100644
index f702a56187dbc2fc01fa5358df520780c0d2df17..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/Picus/Personalize/PersonalizePrivateRoleMan.html
+++ /dev/null
@@ -1,377 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/Picus/Personalize/PersonalizeProfile.html b/AgileWorks/WebContent/WEB-INF/html/Picus/Personalize/PersonalizeProfile.html
deleted file mode 100644
index c243f6e9b566b11eeb4614a4b9620f2becf07e29..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/Picus/Personalize/PersonalizeProfile.html
+++ /dev/null
@@ -1,159 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
$RESOURCE{UserInformation}
-
-
- $RESOURCE{UserCode}
-
-
-
- $RESOURCE{UserName.1}
-
-
-
- $RESOURCE{Login}ID
-
-
-
- $RESOURCE{MailAddress}
-
-
-
-
-
-
-
-
- $RESOURCE{UsersUnit}
-
-
- $RESOURCE{RoleAppointment}
-
-
- $RESOURCE{AssignedPrivateRole}
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/Picus/Personalize/PersonalizeRepresentOwn.html b/AgileWorks/WebContent/WEB-INF/html/Picus/Personalize/PersonalizeRepresentOwn.html
deleted file mode 100644
index 9dda2a06f19a7a10b33d76356135e25c842085be..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/Picus/Personalize/PersonalizeRepresentOwn.html
+++ /dev/null
@@ -1,210 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
1
$RESOURCE{MenuNew}
0
personalizerepresentown#showAddProxyAssignLayer
new
-
2
$RESOURCE{MenuEdit}
0
personalizerepresentown#showEditProxyAssignLayer
edit
-
3
$RESOURCE{MenuDelete}
0
personalizerepresentown#deleteCurrentProxyAssign
delete
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/Picus/Personalize/PersonalizeRepresentedAuthority.html b/AgileWorks/WebContent/WEB-INF/html/Picus/Personalize/PersonalizeRepresentedAuthority.html
deleted file mode 100644
index 0a3a4393cc295f1bcf3fe87e6cd1b09193dadff1..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/Picus/Personalize/PersonalizeRepresentedAuthority.html
+++ /dev/null
@@ -1,173 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
1
$RESOURCE{MenuEdit}
0
personalizerepresentauthority#showEditProxyAssignLayer
edit
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/Picus/Personalize/PersonalizeUniversalRoleMan.html b/AgileWorks/WebContent/WEB-INF/html/Picus/Personalize/PersonalizeUniversalRoleMan.html
deleted file mode 100644
index 77f599c77a2ea98c26076879fc604bea285e33b4..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/Picus/Personalize/PersonalizeUniversalRoleMan.html
+++ /dev/null
@@ -1,390 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/Picus/Picus.html b/AgileWorks/WebContent/WEB-INF/html/Picus/Picus.html
deleted file mode 100644
index 0793ae504832779fd8ae70dc01e2a7923168e28c..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/Picus/Picus.html
+++ /dev/null
@@ -1,248 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/Search/AdminSearch.html b/AgileWorks/WebContent/WEB-INF/html/Search/AdminSearch.html
deleted file mode 100644
index 3490524a2fd948205ab09b9519bde621d34af7c8..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/Search/AdminSearch.html
+++ /dev/null
@@ -1,98 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/Search/Search.html b/AgileWorks/WebContent/WEB-INF/html/Search/Search.html
deleted file mode 100644
index b3811242dd775ee313cb44549b22acf322eeb4e7..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/Search/Search.html
+++ /dev/null
@@ -1,186 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/Search/SearchContent.html b/AgileWorks/WebContent/WEB-INF/html/Search/SearchContent.html
deleted file mode 100644
index bad6e1427e06c23176976faef263a0a1e2a71f62..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/Search/SearchContent.html
+++ /dev/null
@@ -1,164 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
1
image
/images/picus/default/header/logo.jpg?build31956
auto
-
-
-
-
-
-
-
-
-
-
-
1
$RESOURCE{MenuNewWindow}
0
docexplorer#opendoc
opendoc
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/Search/SearchGadget.html b/AgileWorks/WebContent/WEB-INF/html/Search/SearchGadget.html
deleted file mode 100644
index ca1137e7e729a74484594cfc42fe227917fb7999..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/Search/SearchGadget.html
+++ /dev/null
@@ -1,61 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/Snapper/ContentAction.html b/AgileWorks/WebContent/WEB-INF/html/Snapper/ContentAction.html
deleted file mode 100644
index 8d6a79ed8cf401e975938646d64ae67d0402d1c7..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/Snapper/ContentAction.html
+++ /dev/null
@@ -1,2420 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- alert(Content.getDataSource("$RESOURCE").getMessage("js.message.0069"));
-
-
-
-
-
- alert(Content.getDataSource("$RESOURCE").getMessage("js.message.0001", ["$RESOURCE{Comment}"]));
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- alert(Content.getDataSource("$RESOURCE").getMessage("js.message.0001", ["$RESOURCE{Comment}"]));
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- alert(Content.getDataSource("$RESOURCE").getMessage("js.message.0001", ["$RESOURCE{DocMemo}"]));
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/Snapper/Copy.html b/AgileWorks/WebContent/WEB-INF/html/Snapper/Copy.html
deleted file mode 100644
index 7924f0c0dbaea5f07a179612b4aa59788b1e0d68..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/Snapper/Copy.html
+++ /dev/null
@@ -1,104 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{CriterionDate}:
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/Snapper/FormReference.html b/AgileWorks/WebContent/WEB-INF/html/Snapper/FormReference.html
deleted file mode 100644
index 3838f768edaa4b9e216be406419a65f287f3aadd..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/Snapper/FormReference.html
+++ /dev/null
@@ -1,155 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{CriterionDate}:
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{Doc}ID
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/Snapper/Snapper.html b/AgileWorks/WebContent/WEB-INF/html/Snapper/Snapper.html
deleted file mode 100644
index 2b4c0d9ed65a66b886cac4077535e26b0250d0ab..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/Snapper/Snapper.html
+++ /dev/null
@@ -1,1743 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
1
$RESOURCE{DocumentPassHistory}
Journal
-
2
$RESOURCE{DocumentElectJournal}
ElectJournal
-
-
-
-
-
-
-
-
-
1
doc
/images/common/icon/object/doc20.gif?build31956
relative
-
2
currentdoc
/images/common/icon/object/doc20.gif?build31956
relative
-
3
sheet
/images/common/icon/object/sheet20.gif?build31956
relative
-
4
currentsheet
/images/common/icon/object/sheet20.gif?build31956
relative
-
5
.+\.doc
/images/common/icon/ext/doc20.gif?build31956
relative
-
6
.+\.pdf
/images/common/icon/ext/pdf20.gif?build31956
relative
-
7
.+\.ppt
/images/common/icon/ext/ppt20.gif?build31956
relative
-
8
.+\.txt
/images/common/icon/ext/txt20.gif?build31956
relative
-
9
.+\.xls
/images/common/icon/ext/xls20.gif?build31956
relative
-
10
.+\.zip
/images/common/icon/ext/zip20.gif?build31956
relative
-
11
.+\.docx
/images/common/icon/ext/doc20.gif?build31956
relative
-
12
.+\.xlsx
/images/common/icon/ext/xls20.gif?build31956
relative
-
13
.+\.pptx
/images/common/icon/ext/ppt20.gif?build31956
relative
-
14
/images/common/icon/ext/etc20.gif?build31956
relative
-
-
-
-
-
-
1
.+\.doc
/images/common/icon/ext/doc30.gif?build31956
relative
-
2
.+\.pdf
/images/common/icon/ext/pdf30.gif?build31956
relative
-
3
.+\.ppt
/images/common/icon/ext/ppt30.gif?build31956
relative
-
4
.+\.txt
/images/common/icon/ext/txt30.gif?build31956
relative
-
5
.+\.xls
/images/common/icon/ext/xls30.gif?build31956
relative
-
6
.+\.zip
/images/common/icon/ext/zip30.gif?build31956
relative
-
7
.+\.docx
/images/common/icon/ext/doc30.gif?build31956
relative
-
8
.+\.xlsx
/images/common/icon/ext/xls30.gif?build31956
relative
-
9
.+\.pptx
/images/common/icon/ext/ppt30.gif?build31956
relative
-
10
/images/common/icon/ext/etc30.gif?build31956
relative
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
$RESOURCE{Snapper.UnsavedTmpFile}
-
-
-
- $RESOURCE{Attachment}
- $RESOURCE{Registrant}/$RESOURCE{LastUpdate}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{Version}
- (
)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{Version}
-
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{Registrant}:
-
-
-
-
-
-
-
-
- $RESOURCE{LastUpdate}:
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
$RESOURCE{Snapper.SavedTmpFile}
-
-
-
-
-
-
- $RESOURCE{Attachment}
- $RESOURCE{Registrant}/$RESOURCE{LastUpdate}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{Version}
- (
)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{Version}
-
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{Registrant}:
-
-
-
-
-
-
-
-
- $RESOURCE{LastUpdate}:
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{RegisteredUser}
- $RESOURCE{CommentMemo}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{DateAndTime}:
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{DocumentOwner}
-
-
-
-
-
-
-
-
-
$RESOURCE{Viewer}
-
-
-
-
-
-
-
$RESOURCE{Viewer}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{LastUpdate}
-
-
-
-
-
- $RESOURCE{ChangeHistory}
-
-
-
-
-
-
-
-
-
- $RESOURCE{Type}
- $RESOURCE{Changes}
- $RESOURCE{BeforeChange}
- $RESOURCE{Modified}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{Attachment}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{Title}:
-
-
-
-
-
-
-
- URL:
-
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{Description.1}
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{TheCurrentAttachment}
-
-
-
- $RESOURCE{Attachment}
- $RESOURCE{Registrant}/$RESOURCE{LastUpdate}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{Version}
- (
)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{Version}
-
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{Registrant}:
-
-
-
-
-
-
-
-
- $RESOURCE{LastUpdate}:
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{ChangeHistory}
-
-
-
-
-
- $RESOURCE{Attachment}
- $RESOURCE{Registrant}/$RESOURCE{LastUpdate}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{Version}
- (
)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{Version}
-
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{Registrant}:
-
-
-
-
-
-
-
-
- $RESOURCE{LastUpdate}:
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{DocMemo}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{Snapper.3}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{Snapper.4}
-
-
-
-
-
- $RESOURCE{ContactRemand}:
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $RESOURCE{Snapper.8}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/Snapper/SnapperLayer.html b/AgileWorks/WebContent/WEB-INF/html/Snapper/SnapperLayer.html
deleted file mode 100644
index b58f86c3e6255dab330cac5bfad937b639e79b13..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/Snapper/SnapperLayer.html
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/AgileWorks/WebContent/WEB-INF/html/Snapper/SnapperPage.html b/AgileWorks/WebContent/WEB-INF/html/Snapper/SnapperPage.html
deleted file mode 100644
index d17346ce07359d92deafef8331db57e75d51ebe0..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/Snapper/SnapperPage.html
+++ /dev/null
@@ -1,55 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/Snapper/SubSheet.html b/AgileWorks/WebContent/WEB-INF/html/Snapper/SubSheet.html
deleted file mode 100644
index 892d3b9fc883becf954b61847e2b676d54d6a05a..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/Snapper/SubSheet.html
+++ /dev/null
@@ -1,76 +0,0 @@
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/TM/Component/CommonPage.html b/AgileWorks/WebContent/WEB-INF/html/TM/Component/CommonPage.html
deleted file mode 100644
index 25718d390f1b3a7685e16e85a46fb485b9078d01..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/TM/Component/CommonPage.html
+++ /dev/null
@@ -1,27 +0,0 @@
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/TM/Component/ReferenceLicenseSingle.html b/AgileWorks/WebContent/WEB-INF/html/TM/Component/ReferenceLicenseSingle.html
deleted file mode 100644
index 9693b56c63732707a6b41dd8141393b01aaa3547..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/TM/Component/ReferenceLicenseSingle.html
+++ /dev/null
@@ -1,145 +0,0 @@
-
-
-
-
-
-
-
-
1
選択
0
referencelicensesingle#doSave
approve
false
-
2
閉じる
0
referencelicensesingle#closeLayer
close
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/TM/CustomerManager/CustomerMan.html b/AgileWorks/WebContent/WEB-INF/html/TM/CustomerManager/CustomerMan.html
deleted file mode 100644
index a1a4852d1b5197eb5b59f0eb3058b17573bfed9e..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/TM/CustomerManager/CustomerMan.html
+++ /dev/null
@@ -1,1030 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
1
新規
0
customer#showCustoemrAddLayer
new
-
2
編集
0
customer#showCustomerEditLayer
edit
-
3
削除
0
customer#deleteCustomerCurrent
delete
-
-
-
-
-
-
-
-
-
1
新規
0
customer#showLicenseAddLayer
new
-
2
編集
0
customer#showLicenseEditLayer
edit
-
3
削除
0
customer#deleteLicenseCurrent
delete
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- コード*
-
-
-
-
-
- 名称*
-
-
-
-
-
-
-
- 請求先情報
-
- 会社名*
-
-
-
-
-
- 郵便番号
-
-
-
-
-
- 住所
-
-
-
-
-
-
-
- 部署名
-
-
-
-
-
- TEL
-
-
-
- FAX
-
-
-
-
-
- 担当者名*
-
-
-
- 担当者メールアドレス*
-
-
-
-
-
-
-
-
- システム管理者情報
-
- 担当者名
-
-
-
- 担当者メールアドレス
-
-
-
-
-
-
-
-
- 登録
-
-
-
-
-
-
- 更新
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ライセンスタイプ*
-
-
-
-
-
-
- サーバータイプ*
-
-
-
-
-
- ユーザー数制限*
-
-
-
-
-
-
- ユーザーライセンス種別
-
-
-
-
-
-
- ユーザー数
-
-
-
-
-
- 利用期限
-
-
-
-
-
-
- アドオンランタイム
-
-
-
-
-
- LDAP連携オプション
-
-
-
-
-
- Google認証連携オプション
-
-
-
-
-
-
-
- 更新情報
-
- 登録
-
-
-
-
-
-
- 更新
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/TM/GeneralManager/Account.html b/AgileWorks/WebContent/WEB-INF/html/TM/GeneralManager/Account.html
deleted file mode 100644
index e29ded91c49eb0493523ef266660269b59303c17..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/TM/GeneralManager/Account.html
+++ /dev/null
@@ -1,386 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
1
新規
0
tmaccount#showAddLayer
new
-
2
編集
0
tmaccount#showEditLayer
edit
-
3
削除
0
tmaccount#deleteCurrent
delete
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- コード*
-
-
-
-
-
- 名称*
-
-
-
-
-
- ログインID*
-
-
-
-
-
- パスワード*
-
-
-
-
-
- パスワード再入力*
-
-
-
-
-
- メールアドレス
-
-
-
-
-
- 登録
-
-
-
-
-
-
- 更新
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/TM/GeneralManager/Basic.html b/AgileWorks/WebContent/WEB-INF/html/TM/GeneralManager/Basic.html
deleted file mode 100644
index 6238a610cbdd7b1ad1a88b220c58dca4e0fe26f9..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/TM/GeneralManager/Basic.html
+++ /dev/null
@@ -1,280 +0,0 @@
-
-
-
-
-
-
-
-
-
-
1
-
保存
-
0
-
basic#update
-
save
-
-
-
3
-
ライセンス更新
-
0
-
licenseupdate#showLayer
-
edit
-
-
-
2
-
パスワード変更
-
0
-
basic#superUserPasswordUpdate
-
edit
-
-
-
-
-
-
-
-
-
-
-
-
1
-
保存
-
0
-
basic#doSaveSuperUserPassword
-
save
-
-
-
2
-
閉じる
-
0
-
basic#cancelSaveSuperUserPassword
-
close
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
システム
-
-
- AgileWorksテナントマネージャー
-
-
-
-
-
-
-
管理会社設定(テナント管理者への各種メール通知等に利用されます)
-
-
- 会社名*
-
-
-
- システム管理用メールアドレス*
-
-
-
- TEL
-
-
-
- FAX
-
-
-
- 会社URL
-
-
-
-
ログイン設定
-
-
-
-
-
-
-
-
-
-
-
-
- ユーザー名
-
-
-
-
-
- 現在のパスワード*
-
-
-
-
-
- 新しいパスワード*
-
-
-
-
-
- 新しいパスワード(再入力)*
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/TM/GeneralManager/GeneralMan.html b/AgileWorks/WebContent/WEB-INF/html/TM/GeneralManager/GeneralMan.html
deleted file mode 100644
index c75fb2d57e618a209e2af0354d9ca7916b171f9d..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/TM/GeneralManager/GeneralMan.html
+++ /dev/null
@@ -1,47 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/TM/GeneralManager/Log/AccessLog.html b/AgileWorks/WebContent/WEB-INF/html/TM/GeneralManager/Log/AccessLog.html
deleted file mode 100644
index a14fa5b023ea77019ad9ff97fba128bbe6822ee5..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/TM/GeneralManager/Log/AccessLog.html
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/TM/GeneralManager/Log/ErrorLog.html b/AgileWorks/WebContent/WEB-INF/html/TM/GeneralManager/Log/ErrorLog.html
deleted file mode 100644
index 205efa56e72fb85fa99666f0404977173c1b0f5a..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/TM/GeneralManager/Log/ErrorLog.html
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/TM/GeneralManager/Log/LogDelete.html b/AgileWorks/WebContent/WEB-INF/html/TM/GeneralManager/Log/LogDelete.html
deleted file mode 100644
index cfc49867b972cab4b0154dd4d95c8cbdfd3f6266..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/TM/GeneralManager/Log/LogDelete.html
+++ /dev/null
@@ -1,145 +0,0 @@
-
-
-
-
-
-
-
-
-
-
1
削除
0
log#doDeleteLayer
delete
true
-
2
閉じる
0
log#closeDeleteLayer
close
true
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ログ件数
-
-
-
-
-
-
- 対象
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/TM/GeneralManager/Log/LogExport.html b/AgileWorks/WebContent/WEB-INF/html/TM/GeneralManager/Log/LogExport.html
deleted file mode 100644
index 63865caca18807a92d93127f51e05fa6e1f8745d..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/TM/GeneralManager/Log/LogExport.html
+++ /dev/null
@@ -1,139 +0,0 @@
-
-
-
-
-
-
-
-
-
-
1
ダウンロード
0
log#doExportLayer
export
true
-
2
閉じる
0
log#closeExportLayer
close
true
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ログ件数
-
-
-
-
-
-
- 対象
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/TM/GeneralManager/Log/MailLog.html b/AgileWorks/WebContent/WEB-INF/html/TM/GeneralManager/Log/MailLog.html
deleted file mode 100644
index 1084ee59c4c12f8d4ba15716c01a12d0efd42b39..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/TM/GeneralManager/Log/MailLog.html
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/TM/GeneralManager/Log/SecurityLog.html b/AgileWorks/WebContent/WEB-INF/html/TM/GeneralManager/Log/SecurityLog.html
deleted file mode 100644
index 33af51f17c515e45b4a2095e94eb7003aeeb1041..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/TM/GeneralManager/Log/SecurityLog.html
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/TM/GeneralManager/Log/SimpleLogBase.html b/AgileWorks/WebContent/WEB-INF/html/TM/GeneralManager/Log/SimpleLogBase.html
deleted file mode 100644
index ebdfa643bf124ce814261accce1c1c4b96dba8c9..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/TM/GeneralManager/Log/SimpleLogBase.html
+++ /dev/null
@@ -1,127 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
1
再表示
0
log#reload
reload
true
-
2
ダウンロード
0
log#showExportLayer
export
true
-
3
削除
0
log#showDeleteLayer
delete
true
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/TM/GeneralManager/MailTemplate.html b/AgileWorks/WebContent/WEB-INF/html/TM/GeneralManager/MailTemplate.html
deleted file mode 100644
index e7468189861ac2efb45821c84b17592608a7b38d..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/TM/GeneralManager/MailTemplate.html
+++ /dev/null
@@ -1,400 +0,0 @@
-
-
-
-
-
-
-
-
1
保存
0
mailtemplate#save
save
-
2
初期設定に戻す
0
mailtemplate#restore
restore
-
-
-
-
-
-
-
-
1
保存
0
mailtemplate-textform#save
save
-
2
キャンセル
0
mailtemplate-textform#cancel
close
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
通知メール種類
-
-
-
-
-
-
- 件名
-
-
-
- 本文
-
-
- 置換変数一覧
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/TM/GeneralManager/SmtpConf.html b/AgileWorks/WebContent/WEB-INF/html/TM/GeneralManager/SmtpConf.html
deleted file mode 100644
index 01465b27a31400c470dcebdce62f59775158f234..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/TM/GeneralManager/SmtpConf.html
+++ /dev/null
@@ -1,500 +0,0 @@
-
-
-
-
-
-
-
-
1
保存
0
mailserver#update
save
-
2
初期設定に戻す
0
mailserver#restore
restore
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
基本設定
-
-
- 送信メールサーバー(SMTP)*
-
-
-
- ポート番号*
-
-
-
- 送信メールアドレス*
-
-
-
- 送信者名
-
-
-
-
-
-
-
-
認証
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 受信メールサーバー(POP)*
-
-
-
- 受信メールサーバーポート番号*
-
-
-
-
- 受信用アカウント*
-
-
-
- 受信用パスワード
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 送信用アカウント
-
-
-
- 送信用パスワード
-
-
-
- 保護された接続を使用する
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/TM/TM.html b/AgileWorks/WebContent/WEB-INF/html/TM/TM.html
deleted file mode 100644
index 38e317c4e7ed190b62c88bb24317e12fb9768018..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/TM/TM.html
+++ /dev/null
@@ -1,283 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
1
image
/images/tm/default/header/logo.jpg?build31956
relative
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/TM/TenantManager/TenantMan.html b/AgileWorks/WebContent/WEB-INF/html/TM/TenantManager/TenantMan.html
deleted file mode 100644
index 6b9b81edc3d16024a12d1c86eecc6d5aa213fe46..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/TM/TenantManager/TenantMan.html
+++ /dev/null
@@ -1,1347 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
1
再表示
0
tenantman#reload
reload
false
-
2
新規
0
tenantman#showAddTenantLayer
new
false
-
3
編集
0
tenantman#showEditTenantLayer
edit
false
-
4
削除
0
tenantman#deleteTenant
delete
false
-
5
ダウンロード
0
tenantman#download
export
true
-
-
-
-
-
-
-
-
-
3
ジョブ実行履歴
JobRecordTab
false
-
-
-
-
-
-
-
-
1
ログ表示
0
tenantman#showJobRecordLogLayer
edit
false
-
-
-
-
-
-
-
-
1
閉じる
0
tenantman#closeJobRecordLogLayer
close
false
-
-
-
-
-
-
-
-
-
-
-
-
-
1
構築する
0
tenantman#doDeployTenant
edit
false
-
2
閉じる
0
tenantman#closeDeployLayer
close
false
-
-
-
-
-
-
-
-
1
公開する
0
tenantman#doStartTenant
edit
false
-
2
閉じる
0
tenantman#closeStartLayer
close
false
-
-
-
-
-
-
-
-
1
公開を停止する
0
tenantman#doStopTenant
edit
false
-
2
閉じる
0
tenantman#closeStopLayer
close
false
-
-
-
-
-
-
-
-
1
再公開する
0
tenantman#doRestartTenant
edit
false
-
2
公開を終了する
0
tenantman#doTerminateTenant
edit
false
-
3
閉じる
0
tenantman#closeRestartLayer
close
false
-
-
-
-
-
-
-
-
1
保存
0
tenantman#doChangeDatabasePasswordTenant
save
false
-
3
閉じる
0
tenantman#closeChangeDatabasePasswordLayer
close
false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- コード*
-
-
-
-
-
- 名称*
-
-
-
-
-
- 公開状態
-
-
-
-
-
- 顧客*
-
-
-
-
-
- ライセンス
-
-
-
-
- ライセンスタイプ:
-
-
-
-
-
-
-
- サーバータイプ:
-
-
-
-
-
-
-
- ユーザーライセンス種別:
-
-
-
-
-
-
-
- ユーザー数:
-
-
-
-
-
-
-
- 利用期限:
-
-
-
-
-
-
-
-
-
-
-
-
- 登録
-
-
-
-
-
-
- 更新
-
-
-
-
-
-
- 構築
-
-
-
-
-
-
- 公開
-
-
-
-
-
-
- 公開終了
-
-
-
-
-
-
- 最終実行ジョブ
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- テナント情報
-
-
- テナントスペース
-
-
-
-
-
- テナント
-
-
-
-
-
- 顧客
-
-
-
-
-
- システム管理者
-
-
-
-
-
-
-
-
- データベース設定
-
-
- システム領域パスワード*
-
-
-
-
-
- 外部マスタ領域パスワード*
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- テナントを公開すると、システム管理者へ「ログインのお知らせ」メールを送付し、
- テナントが「公開中」に変更されます。
-
-
-
-
-
- テナント情報
-
-
- テナントスペース
-
-
-
-
-
- テナント
-
-
-
-
-
- 顧客
-
-
-
-
-
- システム管理者
-
-
-
-
-
-
-
-
- 初期設定
-
-
- adminユーザーパスワード*
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- テナントを公開停止にすると、テナントへのログインが禁止されます。
-
-
-
-
-
- テナント情報
-
-
- テナントスペース
-
-
-
-
-
- テナント
-
-
-
-
-
- 顧客
-
-
-
-
-
- システム管理者
-
-
-
-
-
-
-
-
- 通知設定
-
-
- システム管理者への通知有無*
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- テナントの公開を再開すると、テナントへのログインが許可されます。
-
-
-
-
-
- テナント情報
-
-
- テナントスペース
-
-
-
-
-
- テナント
-
-
-
-
-
- 顧客
-
-
-
-
-
- システム管理者
-
-
-
-
-
-
-
-
- 通知設定
-
-
- システム管理者への通知有無*
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- データベース設定
-
-
- システム領域スキーマ名
-
-
-
-
-
- システム領域パスワード*
-
-
-
-
-
- 外部マスタ領域スキーマ名
-
-
-
-
-
- 外部マスタ領域パスワード*
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/html/TM/TenementManager/TenementMan.html b/AgileWorks/WebContent/WEB-INF/html/TM/TenementManager/TenementMan.html
deleted file mode 100644
index 8ee1b1747c29a6713785ec816dc627882d04af8c..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/html/TM/TenementManager/TenementMan.html
+++ /dev/null
@@ -1,397 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
1
再表示
0
tenement#reload
reload
-
2
新規
0
tenement#showAddLayer
new
-
3
編集
0
tenement#showEditLayer
edit
-
4
削除
0
tenement#deleteCurrent
delete
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- コード*
-
-
-
-
-
- 名称*
-
-
-
-
-
- TSMサーバーアドレス*
-
-
-
-
-
- URL*
-
-
-
-
-
- 登録
-
-
-
-
-
-
- 更新
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/lib/agileworks-esb-config-1.0.1.jar b/AgileWorks/WebContent/WEB-INF/lib/agileworks-esb-config-1.0.1.jar
deleted file mode 100644
index bbfe14df6de9c2f7b0513748260707bc4bda5ecc..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/agileworks-esb-config-1.0.1.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/agileworks-i18n-1.0.0.jar b/AgileWorks/WebContent/WEB-INF/lib/agileworks-i18n-1.0.0.jar
deleted file mode 100644
index c298d40d36a7a23f58eb8d5c07e6b7c3670ae13a..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/agileworks-i18n-1.0.0.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/agileworks-job-manager-1.0.0.jar b/AgileWorks/WebContent/WEB-INF/lib/agileworks-job-manager-1.0.0.jar
deleted file mode 100644
index 2cdd6d825112d8d00ee7e2adfa44d2a88e43b5fe..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/agileworks-job-manager-1.0.0.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/agileworks-ldap-1.0.0.jar b/AgileWorks/WebContent/WEB-INF/lib/agileworks-ldap-1.0.0.jar
deleted file mode 100644
index 8e0b0145c58b0798dc41ad02201a98b33b32c381..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/agileworks-ldap-1.0.0.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/agileworks-openid-1.0.0.jar b/AgileWorks/WebContent/WEB-INF/lib/agileworks-openid-1.0.0.jar
deleted file mode 100644
index 778726b7e56fb74141ec9bd1a9a6cd193038442b..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/agileworks-openid-1.0.0.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/agileworks-servlet-util-1.0.0.jar b/AgileWorks/WebContent/WEB-INF/lib/agileworks-servlet-util-1.0.0.jar
deleted file mode 100644
index 04191bfe62f724ef94ea4433a3e405e1bcf5af25..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/agileworks-servlet-util-1.0.0.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/antlr-2.7.6.jar b/AgileWorks/WebContent/WEB-INF/lib/antlr-2.7.6.jar
deleted file mode 100644
index 9e5d1b5b9f45b9036089d56f9eaaee70524f0987..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/antlr-2.7.6.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/aopalliance-1.0.jar b/AgileWorks/WebContent/WEB-INF/lib/aopalliance-1.0.jar
deleted file mode 100644
index c0935a9391b0065e6ad8b8003386262632227fd8..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/aopalliance-1.0.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/apache-mime4j-0.6.jar b/AgileWorks/WebContent/WEB-INF/lib/apache-mime4j-0.6.jar
deleted file mode 100644
index 1d2282ce263a901d27f63a41e263a41d28ad6885..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/apache-mime4j-0.6.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/asm-attrs.jar b/AgileWorks/WebContent/WEB-INF/lib/asm-attrs.jar
deleted file mode 100644
index f07bcb2b45534dd796766f7ebaac2bc1e358a97d..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/asm-attrs.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/asm.jar b/AgileWorks/WebContent/WEB-INF/lib/asm.jar
deleted file mode 100644
index ee0c7ccd2ff482f036d8818fd82bd0279b803cbe..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/asm.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/atled-gapi-1.0.0.jar b/AgileWorks/WebContent/WEB-INF/lib/atled-gapi-1.0.0.jar
deleted file mode 100644
index ebd6a6091d7529b19be09614de7c3b547e07d83b..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/atled-gapi-1.0.0.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/atled-gapi-agileworks-impl-1.0.0.jar b/AgileWorks/WebContent/WEB-INF/lib/atled-gapi-agileworks-impl-1.0.0.jar
deleted file mode 100644
index b4212cb1ac1b9c1727615c259bbb9d68d2f79020..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/atled-gapi-agileworks-impl-1.0.0.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/atled-license-validator.jar b/AgileWorks/WebContent/WEB-INF/lib/atled-license-validator.jar
deleted file mode 100644
index dd90850f190fb45247e153f8dd2cb1cf6aab3f48..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/atled-license-validator.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/atled-memcached-1.0.0.jar b/AgileWorks/WebContent/WEB-INF/lib/atled-memcached-1.0.0.jar
deleted file mode 100644
index 912661a208be9678d88181ce801dd52abd127a0e..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/atled-memcached-1.0.0.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/atled-openid-connect-1.0.0.jar b/AgileWorks/WebContent/WEB-INF/lib/atled-openid-connect-1.0.0.jar
deleted file mode 100644
index c4a8c9b518e22d75523cc0d6cc42de00ba495b19..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/atled-openid-connect-1.0.0.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/atled-performance-monitor-1.0.0.jar b/AgileWorks/WebContent/WEB-INF/lib/atled-performance-monitor-1.0.0.jar
deleted file mode 100644
index 6cd9736d0302f7d48fa51d6e0c8875082509edc6..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/atled-performance-monitor-1.0.0.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/atled-saml-1.0.0.jar b/AgileWorks/WebContent/WEB-INF/lib/atled-saml-1.0.0.jar
deleted file mode 100644
index 827d0529c6251ed4d9a3610c273902e6e3c75bc6..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/atled-saml-1.0.0.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/atled-servlet-security-1.0.0.jar b/AgileWorks/WebContent/WEB-INF/lib/atled-servlet-security-1.0.0.jar
deleted file mode 100644
index 8eb679d9482583ed8981f5c972247500c953a313..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/atled-servlet-security-1.0.0.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/barbecue-1.0.6d.jar b/AgileWorks/WebContent/WEB-INF/lib/barbecue-1.0.6d.jar
deleted file mode 100644
index 531e1920bbbd260c90b9de7bbc92c4b408bcff2b..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/barbecue-1.0.6d.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/bcprov-jdk14-138.jar b/AgileWorks/WebContent/WEB-INF/lib/bcprov-jdk14-138.jar
deleted file mode 100644
index d1befb7f06d05604627d6697575a24235c61c165..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/bcprov-jdk14-138.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/bndlib-1.50.0.jar b/AgileWorks/WebContent/WEB-INF/lib/bndlib-1.50.0.jar
deleted file mode 100644
index 619ac5e069e00890c1326f466f3b67a3a390fa25..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/bndlib-1.50.0.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/bsf.jar b/AgileWorks/WebContent/WEB-INF/lib/bsf.jar
deleted file mode 100644
index 4da25ccd28cf047b9e443ab3bf93c820077d3822..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/bsf.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/c3p0-0.9.1.jar b/AgileWorks/WebContent/WEB-INF/lib/c3p0-0.9.1.jar
deleted file mode 100644
index 693667a34b65902de62d3b2d975df8298b135077..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/c3p0-0.9.1.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/cglib-2.1.3.jar b/AgileWorks/WebContent/WEB-INF/lib/cglib-2.1.3.jar
deleted file mode 100644
index db0161a701c175e058d2fbb68b524cfe5fd4a912..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/cglib-2.1.3.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/codegen-2.2.3.jar b/AgileWorks/WebContent/WEB-INF/lib/codegen-2.2.3.jar
deleted file mode 100644
index 9f9d6dc50e03f04fa026836e76294c79b508bd86..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/codegen-2.2.3.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/codegen-ecore-2.2.3.jar b/AgileWorks/WebContent/WEB-INF/lib/codegen-ecore-2.2.3.jar
deleted file mode 100644
index 27602e8c2aaf4c2e1a8aac90890a0075062f07fc..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/codegen-ecore-2.2.3.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/common-2.2.3.jar b/AgileWorks/WebContent/WEB-INF/lib/common-2.2.3.jar
deleted file mode 100644
index 3d0a8c7ad3ff4152bc5e20fc12d2475d2de62305..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/common-2.2.3.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/commons-beanutils.jar b/AgileWorks/WebContent/WEB-INF/lib/commons-beanutils.jar
deleted file mode 100644
index 218510bc5d65ac161aca7e4b2cb575fbbee5d313..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/commons-beanutils.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/commons-cli-1.1.jar b/AgileWorks/WebContent/WEB-INF/lib/commons-cli-1.1.jar
deleted file mode 100644
index e633afbe6842aa92b1a8f0ff3f5b8c0e3283961b..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/commons-cli-1.1.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/commons-codec-1.4.jar b/AgileWorks/WebContent/WEB-INF/lib/commons-codec-1.4.jar
deleted file mode 100644
index 458d432da88b0efeab640c229903fb5aad274044..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/commons-codec-1.4.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/commons-collections-3.2.1.jar b/AgileWorks/WebContent/WEB-INF/lib/commons-collections-3.2.1.jar
deleted file mode 100644
index c35fa1fee145cba638884e41b80a401cbe4924ef..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/commons-collections-3.2.1.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/commons-compress-1.4.jar b/AgileWorks/WebContent/WEB-INF/lib/commons-compress-1.4.jar
deleted file mode 100644
index 656936124366f3843da03755d6e90c45b77c45f8..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/commons-compress-1.4.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/commons-digester-1.8.jar b/AgileWorks/WebContent/WEB-INF/lib/commons-digester-1.8.jar
deleted file mode 100644
index 1110f0aadeba873dea8b7c11914c6959c73ac2d3..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/commons-digester-1.8.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/commons-fileupload-1.2.jar b/AgileWorks/WebContent/WEB-INF/lib/commons-fileupload-1.2.jar
deleted file mode 100644
index 12539f5edb014def00aefbf56e22a2509c641c56..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/commons-fileupload-1.2.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/commons-httpclient-3.0.1.jar b/AgileWorks/WebContent/WEB-INF/lib/commons-httpclient-3.0.1.jar
deleted file mode 100644
index cfc777c71d600a90001b7b2dcd68993d0977b0cb..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/commons-httpclient-3.0.1.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/commons-io-1.3.2.jar b/AgileWorks/WebContent/WEB-INF/lib/commons-io-1.3.2.jar
deleted file mode 100644
index 865c9e41cee5e3f65a734965aa1c2699b069b08e..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/commons-io-1.3.2.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/commons-lang-2.4.jar b/AgileWorks/WebContent/WEB-INF/lib/commons-lang-2.4.jar
deleted file mode 100644
index 532939ecab6b77ccb77af3635c55ff9752b70ab7..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/commons-lang-2.4.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/dbunit-2.2.jar b/AgileWorks/WebContent/WEB-INF/lib/dbunit-2.2.jar
deleted file mode 100644
index 6fe91b70996070c03ab453cfa3f18b307e2e62fc..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/dbunit-2.2.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/derby.jar b/AgileWorks/WebContent/WEB-INF/lib/derby.jar
deleted file mode 100644
index 2820dbd26cffc3e533268148ba0b88ec4bca9e96..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/derby.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/dom4j-1.6.1.jar b/AgileWorks/WebContent/WEB-INF/lib/dom4j-1.6.1.jar
deleted file mode 100644
index c8c4dbb92d6c23a7fbb2813eb721eb4cce91750c..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/dom4j-1.6.1.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/ecore-2.2.3.jar b/AgileWorks/WebContent/WEB-INF/lib/ecore-2.2.3.jar
deleted file mode 100644
index 0de2e627e89684d5dc29355546aa524eae9ba045..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/ecore-2.2.3.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/ecore-change-2.2.3.jar b/AgileWorks/WebContent/WEB-INF/lib/ecore-change-2.2.3.jar
deleted file mode 100644
index b547e704de59f6c28864ed5380482426ebc91460..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/ecore-change-2.2.3.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/ecore-xmi-2.2.3.jar b/AgileWorks/WebContent/WEB-INF/lib/ecore-xmi-2.2.3.jar
deleted file mode 100644
index eea175ab61d1b9033efcb6efcf872347020b6c2d..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/ecore-xmi-2.2.3.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/ehcache-1.2.3.jar b/AgileWorks/WebContent/WEB-INF/lib/ehcache-1.2.3.jar
deleted file mode 100644
index 8cd0b3726bc18b14db3385662b640f03ad438e39..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/ehcache-1.2.3.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/ejb3-persistence.jar b/AgileWorks/WebContent/WEB-INF/lib/ejb3-persistence.jar
deleted file mode 100644
index 3a896db91f2f27c12e059f12971e0ae52b009b75..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/ejb3-persistence.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/fontbox-1.6.0.jar b/AgileWorks/WebContent/WEB-INF/lib/fontbox-1.6.0.jar
deleted file mode 100644
index c3492fc29b757af3ac49f8fe7e171676d43c1490..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/fontbox-1.6.0.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/google-api-client-1.17.0-rc.jar b/AgileWorks/WebContent/WEB-INF/lib/google-api-client-1.17.0-rc.jar
deleted file mode 100644
index 500295511eb6164272cce5c532dcca80c26bf311..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/google-api-client-1.17.0-rc.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/google-http-client-1.17.0-rc.jar b/AgileWorks/WebContent/WEB-INF/lib/google-http-client-1.17.0-rc.jar
deleted file mode 100644
index f0762a11f6513bb6b249e17b3d2ddaf402cfb736..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/google-http-client-1.17.0-rc.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/google-http-client-gson-1.17.0-rc.jar b/AgileWorks/WebContent/WEB-INF/lib/google-http-client-gson-1.17.0-rc.jar
deleted file mode 100644
index 23fb5c6bfc5df94ed06af6e7bfe2b54dbee287e6..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/google-http-client-gson-1.17.0-rc.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/google-oauth-client-1.17.0-rc.jar b/AgileWorks/WebContent/WEB-INF/lib/google-oauth-client-1.17.0-rc.jar
deleted file mode 100644
index 900440557d5b06125bcb45eda2e847ce003dccd3..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/google-oauth-client-1.17.0-rc.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/groovy-all-1.6.0.jar b/AgileWorks/WebContent/WEB-INF/lib/groovy-all-1.6.0.jar
deleted file mode 100644
index 56d80d847fed7d4338c5e248a8f173ee7e478326..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/groovy-all-1.6.0.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/gson-2.1.jar b/AgileWorks/WebContent/WEB-INF/lib/gson-2.1.jar
deleted file mode 100644
index 83c5c994bbf7d1e0ae49f5d53947aa1beb737b43..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/gson-2.1.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/guava-17.0.jar b/AgileWorks/WebContent/WEB-INF/lib/guava-17.0.jar
deleted file mode 100644
index 661fc7473f8760f5f81874ddc1fcc0b5634fd6cf..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/guava-17.0.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/guice-2.0.jar b/AgileWorks/WebContent/WEB-INF/lib/guice-2.0.jar
deleted file mode 100644
index 204c4c23f61ecb10e94d9bd60636e4b230e89950..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/guice-2.0.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/hibernate-annotations.jar b/AgileWorks/WebContent/WEB-INF/lib/hibernate-annotations.jar
deleted file mode 100644
index 4f9e622720aaf55a641298ee34ad44adbc51af30..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/hibernate-annotations.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/hibernate-commons-annotations.jar b/AgileWorks/WebContent/WEB-INF/lib/hibernate-commons-annotations.jar
deleted file mode 100644
index 8284aa2c03aec5abc0527662d030416008fcf777..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/hibernate-commons-annotations.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/hibernate-entitymanager.jar b/AgileWorks/WebContent/WEB-INF/lib/hibernate-entitymanager.jar
deleted file mode 100644
index 9d23ea9fa393a51c273486223232c3b9feb5fe34..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/hibernate-entitymanager.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/hibernate-validator.jar b/AgileWorks/WebContent/WEB-INF/lib/hibernate-validator.jar
deleted file mode 100644
index c27183cdb6e09830acfc9e010c1fb840e5db3f46..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/hibernate-validator.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/hibernate3.jar b/AgileWorks/WebContent/WEB-INF/lib/hibernate3.jar
deleted file mode 100644
index 9e56328c1d295a9e2e4475c445e1c9fe1b372dce..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/hibernate3.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/httpclient-4.0.1.jar b/AgileWorks/WebContent/WEB-INF/lib/httpclient-4.0.1.jar
deleted file mode 100644
index e9c961f1bd4f19ebe05ba3f003d25b08c01b17d0..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/httpclient-4.0.1.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/httpcore-4.0.1.jar b/AgileWorks/WebContent/WEB-INF/lib/httpcore-4.0.1.jar
deleted file mode 100644
index 4aef35e2ffa17c332ad53caa0b360c56ae969d05..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/httpcore-4.0.1.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/httpmime-4.0.1.jar b/AgileWorks/WebContent/WEB-INF/lib/httpmime-4.0.1.jar
deleted file mode 100644
index c27df785b89b0b8cd10ca8b9115070d9e6b98e4c..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/httpmime-4.0.1.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/iText-2.0.7.jar b/AgileWorks/WebContent/WEB-INF/lib/iText-2.0.7.jar
deleted file mode 100644
index d6267523f4c6a63cb02cc126b33ff81c3910ae9c..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/iText-2.0.7.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/iTextAsian.jar b/AgileWorks/WebContent/WEB-INF/lib/iTextAsian.jar
deleted file mode 100644
index 955247e901598a4000c55460b8ca3f8f0b4cdfd4..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/iTextAsian.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/java_memcached-release_2.0.1.jar b/AgileWorks/WebContent/WEB-INF/lib/java_memcached-release_2.0.1.jar
deleted file mode 100644
index 17f50e5c771da1098c3ffed7c37efdcd97777834..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/java_memcached-release_2.0.1.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/javassist.jar b/AgileWorks/WebContent/WEB-INF/lib/javassist.jar
deleted file mode 100644
index a6bde7781289b350fa3986d8d8faa71e88bbc19f..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/javassist.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/jboss-archive-browsing.jar b/AgileWorks/WebContent/WEB-INF/lib/jboss-archive-browsing.jar
deleted file mode 100644
index 1d19618fba75f161633cbff808ee7c435aabe6f4..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/jboss-archive-browsing.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/jcl-over-slf4j-1.5.8.jar b/AgileWorks/WebContent/WEB-INF/lib/jcl-over-slf4j-1.5.8.jar
deleted file mode 100644
index 138770ba77ade6089a3cba3b22e506efa18c9b07..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/jcl-over-slf4j-1.5.8.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/jdom-1.0.jar b/AgileWorks/WebContent/WEB-INF/lib/jdom-1.0.jar
deleted file mode 100644
index 288e64cb5c435f34499a58b234c2106f9d9f0783..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/jdom-1.0.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/jempbox-1.6.0.jar b/AgileWorks/WebContent/WEB-INF/lib/jempbox-1.6.0.jar
deleted file mode 100644
index 5ca6d7a58b95881d92e04a66c7936bfc596a242a..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/jempbox-1.6.0.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/jta.jar b/AgileWorks/WebContent/WEB-INF/lib/jta.jar
deleted file mode 100644
index efa255f63bd13a8af611001fbab4e98c5ad289c7..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/jta.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/log4j-over-slf4j-1.5.8.jar b/AgileWorks/WebContent/WEB-INF/lib/log4j-over-slf4j-1.5.8.jar
deleted file mode 100644
index 8622e5de06b9f1b0af6d49a4b84b26f10a82c0ea..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/log4j-over-slf4j-1.5.8.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/logback-classic-0.9.15.jar b/AgileWorks/WebContent/WEB-INF/lib/logback-classic-0.9.15.jar
deleted file mode 100644
index 24c3cf22299141d6d480bdd195a129e0de959f8a..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/logback-classic-0.9.15.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/logback-core-0.9.15.jar b/AgileWorks/WebContent/WEB-INF/lib/logback-core-0.9.15.jar
deleted file mode 100644
index 6942084395466fc00eb6615b2ffcbf4e22795cf4..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/logback-core-0.9.15.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/lucene-analyzers-3.5.0.jar b/AgileWorks/WebContent/WEB-INF/lib/lucene-analyzers-3.5.0.jar
deleted file mode 100644
index 3cdd7df06c4fb091a84df9e9b6ddabf0838c04ad..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/lucene-analyzers-3.5.0.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/lucene-core-3.5.0.jar b/AgileWorks/WebContent/WEB-INF/lib/lucene-core-3.5.0.jar
deleted file mode 100644
index 498a599297ab050784127d50a5e91a98d5bcd486..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/lucene-core-3.5.0.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/mail.jar b/AgileWorks/WebContent/WEB-INF/lib/mail.jar
deleted file mode 100644
index e6f7083248050a655144024553f188729c701e16..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/mail.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/mailservice.jar b/AgileWorks/WebContent/WEB-INF/lib/mailservice.jar
deleted file mode 100644
index 0c2e06575141ead421ff46a5a6633b25d10075a7..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/mailservice.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/metadata-extractor-2.4.0-beta-1.jar b/AgileWorks/WebContent/WEB-INF/lib/metadata-extractor-2.4.0-beta-1.jar
deleted file mode 100644
index c370d4ff1ea6b8c0c48eda8f5e794e0937865f20..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/metadata-extractor-2.4.0-beta-1.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/mysql-connector-java-5.0.5-bin.jar b/AgileWorks/WebContent/WEB-INF/lib/mysql-connector-java-5.0.5-bin.jar
deleted file mode 100644
index af8ec67cb67d81e82c494c134de9fbc617e16492..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/mysql-connector-java-5.0.5-bin.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/ojdbc6.jar b/AgileWorks/WebContent/WEB-INF/lib/ojdbc6.jar
deleted file mode 100644
index 397712294eaca8bbcafe977b6e02f39dcf451c9d..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/ojdbc6.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/ons.jar b/AgileWorks/WebContent/WEB-INF/lib/ons.jar
deleted file mode 100644
index a73a5f41d58786b3b6cfdc012bf12af43ee7eec0..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/ons.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/opencsv-1.8.jar b/AgileWorks/WebContent/WEB-INF/lib/opencsv-1.8.jar
deleted file mode 100644
index cc8200b224382566fc50cbee6917a58324ffe622..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/opencsv-1.8.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/openid4java-nodeps-0.9.6-SNAPSHOT.jar b/AgileWorks/WebContent/WEB-INF/lib/openid4java-nodeps-0.9.6-SNAPSHOT.jar
deleted file mode 100644
index ec6f155f469efd064b2b6447eb5af4216cff88cd..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/openid4java-nodeps-0.9.6-SNAPSHOT.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/openxri-client-1.2.0.jar b/AgileWorks/WebContent/WEB-INF/lib/openxri-client-1.2.0.jar
deleted file mode 100644
index a87ab2caad1574be67554e0b58af06bab95cfba8..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/openxri-client-1.2.0.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/openxri-syntax-1.2.0.jar b/AgileWorks/WebContent/WEB-INF/lib/openxri-syntax-1.2.0.jar
deleted file mode 100644
index 246731ee2450837e3cd8e23f6b19050af296fca2..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/openxri-syntax-1.2.0.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/orai18n.jar b/AgileWorks/WebContent/WEB-INF/lib/orai18n.jar
deleted file mode 100644
index ad97917a4fb79a6e040f73a7d9cd8125b0b85c76..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/orai18n.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/org-json.jar b/AgileWorks/WebContent/WEB-INF/lib/org-json.jar
deleted file mode 100644
index 4d5ce755d6ff2829f33b462d3a2272663986ef69..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/org-json.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/pdfbox-1.6.0.jar b/AgileWorks/WebContent/WEB-INF/lib/pdfbox-1.6.0.jar
deleted file mode 100644
index 75efe034f1b106938d8c1c1b250b15d39cc0e85b..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/pdfbox-1.6.0.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/pdfbridge.jar b/AgileWorks/WebContent/WEB-INF/lib/pdfbridge.jar
deleted file mode 100644
index a78d0b4cd4b49606508784fa1bc8fb6bc566bf69..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/pdfbridge.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/poi-3.8.jar b/AgileWorks/WebContent/WEB-INF/lib/poi-3.8.jar
deleted file mode 100644
index edc0ee59b8b2621a420f6255d37f9d9a97eedc95..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/poi-3.8.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/poi-ooxml-3.8.jar b/AgileWorks/WebContent/WEB-INF/lib/poi-ooxml-3.8.jar
deleted file mode 100644
index 9175c16d95b8caa9f3d7c01e808ce882794715b4..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/poi-ooxml-3.8.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/poi-ooxml-schemas-3.8.jar b/AgileWorks/WebContent/WEB-INF/lib/poi-ooxml-schemas-3.8.jar
deleted file mode 100644
index 2372d1edfb8b19e4b9160b7b7e78eecd83a3b434..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/poi-ooxml-schemas-3.8.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/poi-scratchpad-3.8.jar b/AgileWorks/WebContent/WEB-INF/lib/poi-scratchpad-3.8.jar
deleted file mode 100644
index 02e52e848ddd682775ca0024c800abe201d4ff3b..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/poi-scratchpad-3.8.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/quartz-1.6.5.jar b/AgileWorks/WebContent/WEB-INF/lib/quartz-1.6.5.jar
deleted file mode 100644
index 05fbc7adcb5c116e9199071344d3112c9fbe21d6..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/quartz-1.6.5.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/rajaxlib.jar b/AgileWorks/WebContent/WEB-INF/lib/rajaxlib.jar
deleted file mode 100644
index 900e1b9a7e5b30b88c215e555cd4be763efc926f..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/rajaxlib.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/slf4j-api-1.5.8.jar b/AgileWorks/WebContent/WEB-INF/lib/slf4j-api-1.5.8.jar
deleted file mode 100644
index a987d414c7399a0bd72283c7e47472e607f74d0e..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/slf4j-api-1.5.8.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/struts.jar b/AgileWorks/WebContent/WEB-INF/lib/struts.jar
deleted file mode 100644
index 74496f5cda1be3d8f7b715558b085d7d53008290..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/struts.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/tika-core-1.0.jar b/AgileWorks/WebContent/WEB-INF/lib/tika-core-1.0.jar
deleted file mode 100644
index 9cf42085b2ede1ff768f41765c9ea976e9e21020..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/tika-core-1.0.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/tika-parsers-1.0.jar b/AgileWorks/WebContent/WEB-INF/lib/tika-parsers-1.0.jar
deleted file mode 100644
index e40153d8f920c7f1cc34581391cd0623460e2e22..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/tika-parsers-1.0.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/tsform-taglib.jar b/AgileWorks/WebContent/WEB-INF/lib/tsform-taglib.jar
deleted file mode 100644
index 56fe495baa2a399caa466214c0bd3ba8b935bf7f..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/tsform-taglib.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/tsform2.jar b/AgileWorks/WebContent/WEB-INF/lib/tsform2.jar
deleted file mode 100644
index a097aecb710b8e3f9fbbac3865901aeb89c6c98d..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/tsform2.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/tuscany-sdo-api-r2.1-1.1.1.jar b/AgileWorks/WebContent/WEB-INF/lib/tuscany-sdo-api-r2.1-1.1.1.jar
deleted file mode 100644
index 18527cdedc3e5e333533c312769bad66ab7e3708..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/tuscany-sdo-api-r2.1-1.1.1.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/tuscany-sdo-impl-1.1.1.jar b/AgileWorks/WebContent/WEB-INF/lib/tuscany-sdo-impl-1.1.1.jar
deleted file mode 100644
index 07c0d1c93a4ff01f5457373e833962852b7425c2..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/tuscany-sdo-impl-1.1.1.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/tuscany-sdo-lib-1.1.1.jar b/AgileWorks/WebContent/WEB-INF/lib/tuscany-sdo-lib-1.1.1.jar
deleted file mode 100644
index 084c06b38adfeea46a4beef36510a84334884776..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/tuscany-sdo-lib-1.1.1.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/tuscany-sdo-tools-1.1.1.jar b/AgileWorks/WebContent/WEB-INF/lib/tuscany-sdo-tools-1.1.1.jar
deleted file mode 100644
index a843223da743ee32e98e0691d0924713da1c997a..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/tuscany-sdo-tools-1.1.1.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/velocity-1.6.1.jar b/AgileWorks/WebContent/WEB-INF/lib/velocity-1.6.1.jar
deleted file mode 100644
index 8a96a970f64082c9a8cca350c3a8b3c9317b514a..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/velocity-1.6.1.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/wsdl4j-1.6.2.jar b/AgileWorks/WebContent/WEB-INF/lib/wsdl4j-1.6.2.jar
deleted file mode 100644
index b9ffc36b9f5b1f4f707aa767abc7a356d1f0db50..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/wsdl4j-1.6.2.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/wstx-asl-3.2.1.jar b/AgileWorks/WebContent/WEB-INF/lib/wstx-asl-3.2.1.jar
deleted file mode 100644
index db7985cf33bcd9b25c5f09a4a5ceafdbfa104e99..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/wstx-asl-3.2.1.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/xercesImpl-2.8.1.jar b/AgileWorks/WebContent/WEB-INF/lib/xercesImpl-2.8.1.jar
deleted file mode 100644
index 3b351f6e2b566f73b742510738a52b866b4ffd0d..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/xercesImpl-2.8.1.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/xmlbeans-2.6.0.jar b/AgileWorks/WebContent/WEB-INF/lib/xmlbeans-2.6.0.jar
deleted file mode 100644
index d1b66271f5e379403207383db4ff6e4b9c4e24dd..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/xmlbeans-2.6.0.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/xmlsec-1.3.0.jar b/AgileWorks/WebContent/WEB-INF/lib/xmlsec-1.3.0.jar
deleted file mode 100644
index 6b69b807efa9311af57a8fb70c382a123c40216c..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/xmlsec-1.3.0.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/xpp3_min-1.1.4c.jar b/AgileWorks/WebContent/WEB-INF/lib/xpp3_min-1.1.4c.jar
deleted file mode 100644
index ab882ed66efe0b4352d2dc44ed3b5d5d0b8993e4..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/xpp3_min-1.1.4c.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/xsd-2.2.3.jar b/AgileWorks/WebContent/WEB-INF/lib/xsd-2.2.3.jar
deleted file mode 100644
index 4adecc50565250ffd8d04e6591abd609487a8e1c..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/xsd-2.2.3.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/lib/xstream-1.3.1.jar b/AgileWorks/WebContent/WEB-INF/lib/xstream-1.3.1.jar
deleted file mode 100644
index a6e43975235eff8e4575c50942b1842889f86e14..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/WEB-INF/lib/xstream-1.3.1.jar and /dev/null differ
diff --git a/AgileWorks/WebContent/WEB-INF/mail/approve.vm b/AgileWorks/WebContent/WEB-INF/mail/approve.vm
deleted file mode 100644
index 2c121853c50e90b54096a7caa38a43d7a980263e..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/mail/approve.vm
+++ /dev/null
@@ -1,9 +0,0 @@
-$user.name様
-
-以下の承認依頼が来ています。
-
-文書: $doc.name
-フロー: $definition.name
-状態: $node.name
-
---- powered by AgileWorks ---
\ No newline at end of file
diff --git a/AgileWorks/WebContent/WEB-INF/mail/decline.vm b/AgileWorks/WebContent/WEB-INF/mail/decline.vm
deleted file mode 100644
index 9210d4f2aa0400a9cef2fd29e171d07271205113..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/mail/decline.vm
+++ /dev/null
@@ -1,9 +0,0 @@
-$user.name様
-
-以下の承認依頼が却下されました。
-
-文書: $doc.name
-フロー: $definition.name
-状態: $node.name
-
---- powered by AgileWorks ---
\ No newline at end of file
diff --git a/AgileWorks/WebContent/WEB-INF/mail/passback.vm b/AgileWorks/WebContent/WEB-INF/mail/passback.vm
deleted file mode 100644
index d3926233a0be0a7c3d6b26cae72179afe603a39d..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/mail/passback.vm
+++ /dev/null
@@ -1,9 +0,0 @@
-$user.name様
-
-以下の承認依頼が差し戻されました。
-
-文書: $doc.name
-フロー: $definition.name
-状態: $node.name
-
---- powered by AgileWorks ---
\ No newline at end of file
diff --git a/AgileWorks/WebContent/WEB-INF/portlet/default/work.jsp b/AgileWorks/WebContent/WEB-INF/portlet/default/work.jsp
deleted file mode 100644
index b86ac6b0b2d1830baad5efc970d5a817f2170f18..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/portlet/default/work.jsp
+++ /dev/null
@@ -1,345 +0,0 @@
-<%@page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
-
-<%@page import="jp.atled.workscape.service.ServiceFactory" %>
-<%@page import="jp.atled.workscape.site.account.AccountManager" %>
-<%@page import="jp.atled.workscape.site.account.Account" %>
-<%@page import="jp.atled.workscape.site.authentication.SiteAuth"%>
-<%@page import="jp.atled.workscape.site.registry.RegistryManager" %>
-<%@page import="jp.atled.workscape.site.registry.Directory" %>
-<%@page import="jp.atled.workscape.model.workflow.state.ArrangerDao" %>
-<%@page import="jp.atled.workscape.service.portlet.PortletFactory" %>
-<%@page import="jp.atled.workscape.service.portlet.Portlet" %>
-<%@page import="jp.atled.workscape.service.portlet.PortletMetaData" %>
-<%@page import="jp.atled.workscape.service.facilitator.WorkflowFacilitator" %>
-<%@page import="jp.atled.workscape.impl.service.portlet.WorkPortlet" %>
-<%@page import="jp.atled.workscape.impl.service.portlet.WorkCategory" %>
-<%@page import="jp.atled.workscape.impl.service.portlet.WorkTray" %>
-<%@page import="jp.atled.workscape.impl.service.portlet.WorkPortletMetaData" %>
-<%@page import="jp.atled.workscape.util.BlankUtil" %>
-<%@page import="jp.atled.workscape.hibernate.HibernateUtil" %>
-<%@page import="jp.atled.workscape.logging.LogManager" %>
-<%@page import="jp.atled.workscape.logging.LogStatus" %>
-<%@page import="jp.atled.workscape.logging.AwFunction" %>
-<%@page import="jp.atled.workscape.util.StringUtil"%>
-
-<%@page import="org.hibernate.Session" %>
-
-<%@page import="java.util.List" %>
-<%@page import="java.util.ArrayList" %>
-
-<%
-
-response.setHeader("Expires", "0");
-response.setHeader("Pragma","no-cache");
-response.setHeader("Cache-Control","no-cache");
-
-%>
-
-<%!
-
-private static final int MAX_COLS = 3;
-
-// TODO PortletProtocolが出来たらそちらに持っていく
-private void accessLog(HttpServletRequest request, WorkPortlet portlet, List hideCategories) {
- LogManager logManager = LogManager.getAppLogManager();
- List list = portlet.getMetaData().getWorkCategoryList();
-
- logManager.setFunction(AwFunction.AWF300000, true);
- logManager.appendDetail("Category:");
-
- for (WorkCategory wc : list) {
- if (hideCategories == null || !hideCategories.contains(wc.getName())) {
- logManager.appendDetail(wc.getCaption());
- }
- }
-
- logManager.appendDetail(", QueryString:");
- logManager.appendDetail(request.getQueryString());
-
- logManager.setOperationCount(1);
- logManager.setOperationStatus(LogStatus.SUCCESS);
- logManager.out();
-}
-
-%>
-
-
-
-
-
-
- AgileWorks
-
-
-
-
-
-
-
-
- <%
- Object object = request.getAttribute("code");
-
- if (object != null && !BlankUtil.isBlank(String.valueOf(object))) {
-
- %>
-
-
-
-
-
-
-
- <%= request.getAttribute("code") %>
-
-
-
-
-
-
-
- メッセージ
-
- <%= request.getAttribute("message") %>
-
-
-
-
- 説明
- <%= request.getAttribute("description") %>
-
-
-
-
-
- <%
- return;
- }
-
- %>
-
- <%
- ArrangerDao arrangerDao = ServiceFactory.getInstance(ArrangerDao.class);
- AccountManager accountManager = ServiceFactory.getInstance(AccountManager.class);
- Account account = accountManager.getLoginAccount();
- SiteAuth siteAuth = account.getLoginAuth().getSiteAuth();
- String contextPath = request.getContextPath();
- String sessionId = request.getSession(false).getId();
- String windowName = "agileworks";
- String portletPath = contextPath + "/Broker" + siteAuth.getAppPathInfo("Portlet") + (siteAuth.getCode() != null ? "." + siteAuth.getCode() : "");
- String picusPath = contextPath + "/Broker" + siteAuth.getAppPathInfo("Picus") + (siteAuth.getCode() != null ? "." + siteAuth.getCode() : "");
- WorkPortlet portlet = null;
- Integer displayTerm = new WorkflowFacilitator().getReadTerm();
- List hideCategories = new ArrayList();
- String hideDisplayTerm = request.getParameter("HideDisplayTerm");
- Integer maxCols = MAX_COLS;
-
- WorkPortletMetaData metaData = null;
-
- try {
- Session sess = HibernateUtil.getSession();
- Object owner = HibernateUtil.beginTransaction(sess);
- // Directory directory = registryManager.getDirectory("Users." + account.getId() + ".Application.Picus.Job");
- PortletFactory factory = new PortletFactory();
-
- if (!BlankUtil.isBlank(request.getParameter("DisplayTerm"))) {
- try {
- displayTerm = Integer.parseInt(request.getParameter("DisplayTerm"));
- } catch (NumberFormatException e) {
- }
- }
-
- // displayTerm = directory.getValue("INT", "DisplayTerm");
- portlet = (WorkPortlet) factory.get("work", displayTerm);
-
- if (!BlankUtil.isBlank(request.getParameter("HideCategories"))) {
- String[] strs = request.getParameter("HideCategories").split(",");
-
- for (String str : strs) {
- hideCategories.add(str);
- }
- }
-
- if (!BlankUtil.isBlank(request.getParameter("MaxCols"))) {
- maxCols = Integer.parseInt(request.getParameter("MaxCols"));
- }
-
- accessLog(request, portlet, hideCategories);
-
- metaData = portlet.getMetaData();
-
- HibernateUtil.commitTransaction(owner);
- } catch (Exception e) {
- e.printStackTrace();
- metaData.putParameter("portlet.caption", "failed to load portlet.");
- }
- %>
-
- <%
-
- if (!"false".equals(metaData.getParameter("portlet.header.visible"))) {
-
- %>
-
-
-
- <%
-
- }
-
- %>
-
- <%
-
- for (WorkCategory workCategory : metaData.getWorkCategoryList()) {
- if (hideCategories.contains(workCategory.getName())) continue;
- %>
-
-
- <% if (!"false".equals(metaData.getParameter("portlet.category.caption.visible"))) { %>
-
-
- <%= workCategory.getCaption() %>
-
-
- <% } %>
-
-
- <%
-
- int count = 0;
-
- if (workCategory.getWorkTrayList() != null) {
- for (WorkTray workTray : workCategory.getWorkTrayList()) {
- Long trayCount = portlet.getCount(workTray);
- if (workTray == null || trayCount == null) continue;
-
- String countStyle = (trayCount > 0) ? "color:#ff0000;font-weight:bold;" : "";
- String workTrayUrl = picusPath
- + "?Type=" + workTray.getType()
- + "&ViewPointId=" + workTray.getViewPointCode()
- + "&ArrangeCode=" + workTray.getArrangeCode()
- + "&NoticeStatus=" + workTray.getNoticeStatus()
- + "&NoticeType=" + workTray.getNoticeType();
-
- if (count != 0 && count % maxCols == 0) {
- %>
-
- <%
- }
- %>
-
- <%= workTray.getCaption() %>
-
-
- <%= trayCount %> 件
-
- <%
- count++;
- }
- }
-
- for (int i = 0; i < maxCols * Math.ceil(count * 1.0 / maxCols) - count; i++) {
- %>
-
-
- <%
- }
- %>
-
-
-
- <%
-
- }
-
- %>
-
- <%
-
- if (!"true".equals(hideDisplayTerm)) {
-
- %>
-
-
-
-
-
- <%
-
- }
-
- %>
-
-
-
\ No newline at end of file
diff --git a/AgileWorks/WebContent/WEB-INF/web.xml b/AgileWorks/WebContent/WEB-INF/web.xml
deleted file mode 100644
index 65ee8b9bc049a209665ffdda4b010e129277c53a..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/web.xml
+++ /dev/null
@@ -1,408 +0,0 @@
-
-
-
- AgileWorks
-
-
-
- XwebformFileName
- WEB-INF/xwebform_rpc.properties
-
-
-
-
- PDF_Author
-
-
-
-
-
-
- PDF_Creator
-
-
-
-
-
-
- PDFlib_LICENSEFILE
-
-
-
-
-
- PDFlib7_CMAP_PATH
- WEB-INF/PDFlib-CMap-1.0/resource/cmap
-
-
-
-
- PDFlib_PDFCOMPATIBILITY
- 1.5
-
-
-
-
- XWEB_Extension
- jp.atled.workscape.broker.protocol.webform.XWebFormExtension
-
-
-
- agileworks
- true
-
-
-
-
- XwebformLogMessage
- false
-
-
-
- MultipleSynchronizedTokenFilter/uri-pattern
-
- /Broker[^/]*/LLAP($|\?.*)
- /Broker[^/]*/Gapi($|\?.*)
- /Broker[^/]*/(Rest|Api)/papi.Service($|\?.*)
-
-
-
-
-
- CharEncodingFilter
- jp.co.softcreate.xwebform.lib.CharEncodingFilter
-
- encoding
- UTF-8
-
-
-
- XWebBindingFilter
- jp.co.softcreate.xwebform.rpc.lib.XWebBindingFilter
-
- encoding
- UTF-8
-
-
-
- XwfMWinAgileUtilsFilter
- jp.atled.workscape.broker.mwin.XwfMWinAgileUtilsFilter
-
- className
- jp.atled.workscape.broker.mwin.XwfMWinAgileUtils
-
-
-
- RequestScopeObjectCleanupFilter
- jp.atled.workscape.broker.RequestScopeObjectCleanupFilter
-
-
- XwfRPCAgileFilter
- jp.atled.workscape.broker.xwfrpc.XwfRPCAgileFilter
-
-
- P3PHeaderFilter
- jp.atled.workscape.broker.P3PHeaderFilter
-
-
- MultipleSynchronizedTokenFilter
- jp.atled.servlet.security.MultipleSynchronizedTokenFilter
-
-
- BrokerStatusCheckFilter
- jp.atled.workscape.broker.initialize.StatusCheckFilter
-
-
- HtmlDocTypeReplaceFilter
- jp.atled.workscape.broker.HtmlDocTypeReplaceFilter
-
- uri-pattern
- \.jsp$
-
-
-
-
-
- CharEncodingFilter
- Broker
-
-
- CharEncodingFilter
- Login
-
-
- CharEncodingFilter
- AgileWorks Management Console
-
-
- CharEncodingFilter
- Resource
-
-
- CharEncodingFilter
- xwebform_mwin
-
-
-
-
- BrokerStatusCheckFilter
- Broker
-
-
-
-
- RequestScopeObjectCleanupFilter
- /*
-
-
- RequestScopeObjectCleanupFilter
- *.jsp
-
-
-
-
- XwfRPCAgileFilter
- xwebform_rpc
-
-
-
-
- XWebBindingFilter
- *.jsp
-
-
- XWebBindingFilter
- *.do
-
-
-
-
- XwfMWinAgileUtilsFilter
- Broker
-
-
- XwfMWinAgileUtilsFilter
- xwebform_rpc
-
-
-
-
- P3PHeaderFilter
- /*
-
-
- P3PHeaderFilter
- *.jsp
-
-
-
-
- MultipleSynchronizedTokenFilter
- Broker
-
-
-
-
- HtmlDocTypeReplaceFilter
- /WEB-INF/forms/*
- REQUEST
- FORWARD
- INCLUDE
-
-
-
- jp.atled.workscape.broker.InitListener
-
-
-
- Broker
- jp.atled.workscape.broker.BrokerServlet
- 0
-
-
- AgileWorks Management Console
- jp.atled.workscape.mc.ManagementConsoleServlet
- 0
-
-
- Resource
- jp.atled.workscape.resource.ResourceServlet
- 0
-
-
- Login
- jp.atled.workscape.broker.LoginServlet
- 0
-
-
- ChangePassword
- jp.atled.workscape.broker.ChangePasswordServlet
- 0
-
-
- RedirectToMobile
- jp.atled.workscape.broker.RedirectServlet
-
- path
- /Broker/Mobile
-
-
-
- MultipleSynchronizedTokenClient
- jp.atled.servlet.security.MultipleSynchronizedTokenClientServlet
-
-
-
- xwebform_rpc
- jp.co.softcreate.xwebform.rpc.ajax.xwebform_rpc
-
-
- xwebform_barcode
- jp.co.softcreate.xwebform.plugin.barcode.BarcodeServlet
-
-
-
- xwebform_mwin
- jp.atled.workscape.broker.mwin.XwfMWinServlet
-
-
- Broker
- /Broker
-
-
- Broker
- /Broker/*
-
-
- Broker
- /Broker.spoof/*
-
-
- Login
- /Login/*
-
-
- ChangePassword
- /ChangePassword/*
-
-
- RedirectToMobile
- /m
-
-
- AgileWorks Management Console
- /AMC/*
-
-
- Resource
- /Resource/*
-
-
- MultipleSynchronizedTokenClient
- /MultipleSynchronizedTokenClient
-
-
- xwebform_rpc
- /xwebform_rpc
-
-
- xwebform_rpc
- /eform_rpc
-
-
- xwebform_barcode
- /xwebform_barcode
-
-
- xwebform_mwin
- /xwebform_mwin
-
-
-
- 600
-
-
-
- index.html
- index.htm
- index.jsp
- default.html
- default.htm
- default.jsp
-
-
-
-
- 403
- /jsp/errorPage.jsp
-
-
- 404
- /jsp/errorPage.jsp
-
-
- 500
- /jsp/errorPage.jsp
-
-
- java.lang.Throwable
- /jsp/errorPage.jsp
-
-
-
- hibernate/SessionFactory
- javax.sql.DataSource
- Container
- Shareable
-
-
- hibernate_user/SessionFactory
- javax.sql.DataSource
- Container
- Shareable
-
-
diff --git a/AgileWorks/WebContent/WEB-INF/weblogic.xml.sample b/AgileWorks/WebContent/WEB-INF/weblogic.xml.sample
deleted file mode 100644
index 0777924cb30bdcda58ef0772bb12a59777641917..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/weblogic.xml.sample
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
- /AgileWorks
-
-
- true
-
-
\ No newline at end of file
diff --git a/AgileWorks/WebContent/WEB-INF/xwebform_rpc.properties b/AgileWorks/WebContent/WEB-INF/xwebform_rpc.properties
deleted file mode 100644
index 465a662b199ce5d1d4ac8e8f1f147ba40b2a2d63..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/WEB-INF/xwebform_rpc.properties
+++ /dev/null
@@ -1,5 +0,0 @@
-#X-WebForm RPC base package name
-#Mon Nov 27 20:31:55 JST 2006
-packagename=xwebform
-jndi=jdbc/DBOracle10gDS
-#
diff --git a/AgileWorks/WebContent/css/common/agileworks.css b/AgileWorks/WebContent/css/common/agileworks.css
deleted file mode 100644
index d47af80b6342c8a9a4c5ed17d27671ff7923f110..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/common/agileworks.css
+++ /dev/null
@@ -1,55 +0,0 @@
-/*
- * インフォメーション領域に適用するクラスセレクタ
- */
-.info {
- margin:10px 0px 10px 0px;
- background-color:#ffffd5;
- padding:4px 4px 4px 24px;
- background-image:url('../../images/common/icon/etc/info20.gif?build31910');
- background-position:left center;
- background-repeat:no-repeat;
- font-size:12px;
-}
-
-/*
- * 警告領域に適用するクラスセレクタ
- */
-.warn {
- margin:10px 0px 10px 0px;
- background-color:#ffffd5;
- padding:4px 4px 4px 24px;
- background-image:url('../../images/common/icon/etc/warn20.gif?build31910');
- background-position:left center;
- background-repeat:no-repeat;
- font-size:12px;
-}
-
-/*
- * テキストボックス風ラベル
- */
-.readonlytext {
- display:block;
- background-color:#f4f4f4;
- border-color:#aaaaaa;
- border-style:solid;
- border-width:1px;
- height:20px;
- line-height:20px;
- padding-left:5px;
- overflow:hidden;
-}
-
-/*
- * テキストボックス風ラベル(Band用)
- */
-.readonlytext-even {
- display:block;
- background-color:#f4f4f4;
- border-color:#aaaaaa;
- border-style:solid;
- border-width:1px;
- height:20px;
- line-height:20px;
- padding-left:5px;
- overflow:hidden;
-}
diff --git a/AgileWorks/WebContent/css/common/common.css b/AgileWorks/WebContent/css/common/common.css
deleted file mode 100644
index 8fe591b21f805161ad757017ab094a928cf683d4..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/common/common.css
+++ /dev/null
@@ -1,8 +0,0 @@
-.info{margin:10px 0 10px 0;background-color:#ffffd5;padding:4px 4px 4px 24px;background-image:url('../../images/common/icon/etc/info20.gif?build31910');background-position:left center;background-repeat:no-repeat;font-size:12px;}.warn{margin:10px 0 10px 0;background-color:#ffffd5;padding:4px 4px 4px 24px;background-image:url('../../images/common/icon/etc/warn20.gif?build31910');background-position:left center;background-repeat:no-repeat;font-size:12px;}.readonlytext{display:block;background-color:#f4f4f4;border-color:#aaa;border-style:solid;border-width:1px;height:20px;line-height:20px;padding-left:5px;overflow:hidden;}.readonlytext-even{display:block;background-color:#f4f4f4;border-color:#aaa;border-style:solid;border-width:1px;height:20px;line-height:20px;padding-left:5px;overflow:hidden;}
-.corner_white{background:url(../../images/common/corner/white_tl.png?build31910) no-repeat top left;font-size:medium;background-color:#fff;}.corner_white .top{background:url(../../images/common/corner/white_tr.png?build31910) no-repeat top right;}.corner_white .bottom{background:url(../../images/common/corner/white_bl.png?build31910) no-repeat bottom left;}.corner_white .bottom div{background:url(../../images/common/corner/white_br.png?build31910) no-repeat bottom right;}.corner_white .content{background:url(../../images/common/corner/white_r.png?build31910) top right repeat-y;}.corner_white .top div,.corner_white .top,.corner_white .bottom div,.corner_white .bottom{width:100%;height:5px;font-size:1px;}.corner_white .content{padding:0 5px 0 5px;font-size:12px;}.corner_red{background:url(../../images/common/corner/red_tl.png?build31910) no-repeat top left;font-size:medium;background-color:#fff;}.corner_red .top{background:url(../../images/common/corner/red_tr.png?build31910) no-repeat top right;}.corner_red .bottom{background:url(../../images/common/corner/red_bl.png?build31910) no-repeat bottom left;}.corner_red .bottom div{background:url(../../images/common/corner/red_br.png?build31910) no-repeat bottom right;}.corner_red .content{background:url(../../images/common/corner/red_r.png?build31910) top right repeat-y;}.corner_red .top div,.corner_red .top,.corner_red .bottom div,.corner_red .bottom{width:100%;height:5px;font-size:1px;}.corner_red .content{padding:0 5px;font-size:12px;}.corner_blue{background:url(../../images/common/corner/blue_tl.png?build31910) no-repeat top left;font-size:medium;color:#fff;background-color:#0067ce;}.corner_blue .top{background:url(../../images/common/corner/blue_tr.png?build31910) no-repeat top right;}.corner_blue .bottom{background:url(../../images/common/corner/blue_bl.png?build31910) no-repeat bottom left;}.corner_blue .bottom div{background:url(../../images/common/corner/blue_br.png?build31910) no-repeat bottom right;}.corner_blue .content{background:url(../../images/common/corner/blue_r.png?build31910) top right repeat-y;}.corner_blue .top div,.corner_blue .top,.corner_blue .bottom div,.corner_blue .bottom{width:100%;height:5px;font-size:1px;}.corner_blue .content{padding:0 5px;font-size:12px;}
-.debugconsole{position:absolute;border-style:solid;border-width:3px;border-color:#fff;background-color:#000;padding:5px;}.debugconsole .toolbar{display:inline;color:#fff;}.debugconsole .toolbar .filter{display:inline;}.debugconsole .toolbar img{cursor:pointer;}.debugconsole .console{margin-top:5px;overflow:auto;}.debugconsole .debug{height:20px;line-height:20px;color:#fff;font-size:12px;padding:0 0 0 4px;}.debugconsole .debug td{white-space:nowrap;border-style:solid;border-width:0 0 1px 0;border-color:#333;}.debugconsole .debug .num{color:#666;width:50px;}.debugconsole .new{height:20px;line-height:20px;color:#fff;font-size:12px;padding:0 0 0 4px;background-color:#666;}.debugconsole .new td{white-space:nowrap;border-style:solid;border-width:0 0 1px 0;border-color:#333;}.debugconsole .new .num{color:#fff;width:50px;}
-.absmiddle{vertical-align:middle;}.icon-user{background-image:url(../../../images/common/icon/object/user20.gif?build31910);background-position:left;background-repeat:no-repeat;padding-left:22px!important;}
-.logconsole{font-family:monospace;padding:5px;overflow:scroll;white-space:pre;background-color:#242b32;border-color:#A7A6AA;border-width:1px;border-style:solid;}.logconsole .count{color:#ccc;text-align:right;vertical-align:top;border-style:solid;border-width:0 1px 0 0;border-color:#ccc;padding:0 2px 0 5px;}.logconsole .detail{color:#fff;vertical-align:top;padding-left:5px;white-space:nowrap;}.logconsole .trace{color:#ccc;padding-left:18px;white-space:nowrap;}
-.ruletable-node-header{padding-bottom:10px;}.ruletable-node-contents{border-color:#aaa;border-width:0;border-style:solid;padding:4px;background-color:#ddd;}.ruletable-node-name{float:left;font-weight:bold;font-size:14px;color:#2E6AA5;}.ruletable-node-message{text-align:right;}.ruletable-node-terminate{clear:both;}.ruletable-node-info{padding-top:5px;}.ruletable-node-detail{width:130px;color:#666;}.ruletable-candidate-first{border-style:dashed;border-width:0 0 0 1px;border-color:#ccc;}.ruletable-candidate-next{border-style:dashed;border-width:1px 0 0 1px;border-color:#ccc;}.ruletable-parallel-start{width:50px;height:30px;background-image:url('../../images/common/flow/parallel_start.gif?build31910');background-position:right bottom;background-repeat:no-repeat;}.ruletable-parallel-line{width:50px;height:30px;background-image:url('../../images/common/flow/parallel_line.gif?build31910');background-position:right center;background-repeat:repeat-y;}.ruletable-parallel-end{width:50px;height:30px;background-image:url('../../images/common/flow/parallel_end.gif?build31910');background-position:right top;background-repeat:no-repeat;}.ruletable-nodemessage{margin:0 0 2px 0;background-color:#ddd;padding:4px 4px 4px 4px;font-weight:bold;border-style:solid;border-width:1px;border-color:#aaa;font-size:12px;}
-.sysinfo{width:500px;height:150px;position:absolute;padding:5px;background-color:#ccc;border-style:solid;border-width:2px;border-color:#fff;}.sysinfo .header{padding:5px 0 10px 0;font-weight:bold;color:#2E6AA5;float:left;}.sysinfo .close{text-align:right;}.sysinfo .close img{cursor:pointer;}.sysinfo .contents{width:100%;height:120px;overflow:auto;clear:both;}.sysinfo .contents .message{line-height:20px;padding-left:25px;border-style:dotted;border-width:0 0 1px 0;border-color:#fff;background-image:url(../../images/common/icon/etc/info20.gif?build31910);background-repeat:no-repeat;background-position:left 0;}
-.tooltip-title{padding:5px 0 10px 0;font-weight:bold;font-size:14px;border-style:solid;border-width:0 0 2px 0;border-color:#aaa;color:#3E7EA6;}.tooltip-content{padding:15px 0 5px 0;font-weight:normal;}
diff --git a/AgileWorks/WebContent/css/common/common.css.dev b/AgileWorks/WebContent/css/common/common.css.dev
deleted file mode 100644
index 94c4a44541c17b0b01166293036fed4d8390c6ff..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/common/common.css.dev
+++ /dev/null
@@ -1,9 +0,0 @@
-@import url(agileworks.css);
-@import url(contents.css);
-@import url(corner.css);
-@import url(debugconsole.css);
-@import url(icon.css);
-@import url(logconsole.css);
-@import url(ruletable.css);
-@import url(sysinfo.css);
-@import url(tooltip.css);
\ No newline at end of file
diff --git a/AgileWorks/WebContent/css/common/corner.css b/AgileWorks/WebContent/css/common/corner.css
deleted file mode 100644
index 8c7f839b4de8e886cb540e14f42ebdff63e0a0bb..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/common/corner.css
+++ /dev/null
@@ -1,80 +0,0 @@
-/*
- * 白枠
- */
-.corner_white {
- background: url(../../images/common/corner/white_tl.png?build31910) no-repeat top left; font-size:medium; background-color:#ffffff;
-}
-.corner_white .top {
- background: url(../../images/common/corner/white_tr.png?build31910) no-repeat top right;
-}
-.corner_white .bottom {
- background: url(../../images/common/corner/white_bl.png?build31910) no-repeat bottom left;
-}
-.corner_white .bottom div {
- background: url(../../images/common/corner/white_br.png?build31910) no-repeat bottom right;
-}
-.corner_white .content {
- background: url(../../images/common/corner/white_r.png?build31910) top right repeat-y;
-}
-
-.corner_white .top div,.corner_white .top,
-.corner_white .bottom div, .corner_white .bottom {
- width: 100%;
- height: 5px;
- font-size: 1px;
-}
-.corner_white .content { padding: 0px 5px 0px 5px; font-size:12px; }
-
-/*
- * 赤枠
- */
-.corner_red {
- background: url(../../images/common/corner/red_tl.png?build31910) no-repeat top left; font-size:medium; background-color:#ffffff;
-}
-.corner_red .top {
- background: url(../../images/common/corner/red_tr.png?build31910) no-repeat top right;
-}
-.corner_red .bottom {
- background: url(../../images/common/corner/red_bl.png?build31910) no-repeat bottom left;
-}
-.corner_red .bottom div {
- background: url(../../images/common/corner/red_br.png?build31910) no-repeat bottom right;
-}
-.corner_red .content {
- background: url(../../images/common/corner/red_r.png?build31910) top right repeat-y;
-}
-
-.corner_red .top div,.corner_red .top,
-.corner_red .bottom div, .corner_red .bottom {
- width: 100%;
- height: 5px;
- font-size: 1px;
-}
-.corner_red .content { padding: 0 5px; font-size:12px; }
-
-/*
- * 青枠
- */
-.corner_blue {
- background: url(../../images/common/corner/blue_tl.png?build31910) no-repeat top left; font-size:medium; color:#ffffff; background-color:#0067ce;
-}
-.corner_blue .top {
- background: url(../../images/common/corner/blue_tr.png?build31910) no-repeat top right;
-}
-.corner_blue .bottom {
- background: url(../../images/common/corner/blue_bl.png?build31910) no-repeat bottom left;
-}
-.corner_blue .bottom div {
- background: url(../../images/common/corner/blue_br.png?build31910) no-repeat bottom right;
-}
-.corner_blue .content {
- background: url(../../images/common/corner/blue_r.png?build31910) top right repeat-y;
-}
-
-.corner_blue .top div,.corner_blue .top,
-.corner_blue .bottom div, .corner_blue .bottom {
- width: 100%;
- height: 5px;
- font-size: 1px;
-}
-.corner_blue .content { padding: 0 5px; font-size:12px; }
diff --git a/AgileWorks/WebContent/css/common/debugconsole.css b/AgileWorks/WebContent/css/common/debugconsole.css
deleted file mode 100644
index 2a90f453e2689d9f86cf38739920c53183eebd85..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/common/debugconsole.css
+++ /dev/null
@@ -1,71 +0,0 @@
-
-/*
- * デバッグコンソール
- */
-.debugconsole {
- position:absolute;
- border-style:solid;
- border-width:3px;
- border-color:#ffffff;
- background-color:#000000;
- padding:5px;
-}
-
-.debugconsole .toolbar {
- display:inline;
- color:#ffffff;
-}
-
-.debugconsole .toolbar .filter {
- display:inline;
-}
-
-.debugconsole .toolbar img {
- cursor:pointer;
-}
-
-.debugconsole .console {
- margin-top:5px;
- overflow:auto;
-}
-
-.debugconsole .debug {
- height:20px;
- line-height:20px;
- color:#ffffff;
- font-size:12px;
- padding:0px 0px 0px 4px;
-}
-
-.debugconsole .debug td {
- white-space:nowrap;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#333333;
-}
-
-.debugconsole .debug .num {
- color:#666666;
- width:50px;
-}
-
-.debugconsole .new {
- height:20px;
- line-height:20px;
- color:#ffffff;
- font-size:12px;
- padding:0px 0px 0px 4px;
- background-color:#666666;
-}
-
-.debugconsole .new td {
- white-space:nowrap;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#333333;
-}
-
-.debugconsole .new .num {
- color:#ffffff;
- width:50px;
-}
diff --git a/AgileWorks/WebContent/css/common/icon.css b/AgileWorks/WebContent/css/common/icon.css
deleted file mode 100644
index 49b5c8c6815478ab84d8a7dbc059d49775493a39..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/common/icon.css
+++ /dev/null
@@ -1,10 +0,0 @@
-.absmiddle {
- vertical-align: middle;
-}
-
-.icon-user {
- background-image:url(../../../images/common/icon/object/user20.gif?build31910);
- background-position:left;
- background-repeat:no-repeat;
- padding-left:22px !important;
-}
diff --git a/AgileWorks/WebContent/css/common/logconsole.css b/AgileWorks/WebContent/css/common/logconsole.css
deleted file mode 100644
index 78992a3af3e3fbc348acf9751afa885199fe72c7..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/common/logconsole.css
+++ /dev/null
@@ -1,34 +0,0 @@
-
-.logconsole {
- font-family:monospace;
- padding:5px;
- overflow:scroll;
- white-space:pre;
- background-color:#242b32;
- border-color:#A7A6AA;
- border-width:1px;
- border-style:solid;
-}
-
-.logconsole .count {
- color:#cccccc;
- text-align:right;
- vertical-align:top;
- border-style:solid;
- border-width:0px 1px 0px 0px;
- border-color:#cccccc;
- padding:0px 2px 0px 5px;
-}
-
-.logconsole .detail {
- color:#ffffff;
- vertical-align:top;
- padding-left:5px;
- white-space:nowrap;
-}
-
-.logconsole .trace {
- color:#cccccc;
- padding-left:18px;
- white-space:nowrap;
-}
diff --git a/AgileWorks/WebContent/css/common/ruletable.css b/AgileWorks/WebContent/css/common/ruletable.css
deleted file mode 100644
index fafc30c9aa7260edeb49d42308341dd139f8b369..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/common/ruletable.css
+++ /dev/null
@@ -1,81 +0,0 @@
-/*
- * RuleTableコントロールで使用するCSSクラスセレクタ
- */
-.ruletable-node-header {
- padding-bottom:10px;
-}
-
-.ruletable-node-contents {
- border-color:#aaaaaa;
- border-width:0px;
- border-style:solid;
- padding:4px;
- background-color:#dddddd;
-}
-.ruletable-node-name {
- float:left;
- font-weight:bold;
- font-size:14px;
- color:#2E6AA5;
-}
-.ruletable-node-message {
- text-align:right;
-}
-.ruletable-node-terminate {
- clear:both;
-}
-
-.ruletable-node-info {
- padding-top:5px;
-}
-.ruletable-node-detail {
- width:130px;
- color:#666666;
-}
-
-.ruletable-candidate-first {
- border-style:dashed;
- border-width:0px 0px 0px 1px;
- border-color:#cccccc;
-}
-
-.ruletable-candidate-next {
- border-style:dashed;
- border-width:1px 0px 0px 1px;
- border-color:#cccccc;
-}
-
-.ruletable-parallel-start {
- width:50px;
- height:30px;
- background-image:url('../../images/common/flow/parallel_start.gif?build31910');
- background-position:right bottom;
- background-repeat:no-repeat;
-}
-
-.ruletable-parallel-line {
- width:50px;
- height:30px;
- background-image:url('../../images/common/flow/parallel_line.gif?build31910');
- background-position:right center;
- background-repeat:repeat-y;
-}
-
-.ruletable-parallel-end {
- width:50px;
- height:30px;
- background-image:url('../../images/common/flow/parallel_end.gif?build31910');
- background-position:right top;
- background-repeat:no-repeat;
-}
-
-.ruletable-nodemessage {
- margin:0px 0px 2px 0px;
- background-color:#dddddd;
- padding:4px 4px 4px 4px;
- font-weight:bold;
- border-style:solid;
- border-width:1px;
- border-color:#aaaaaa;
- font-size:12px;
-}
diff --git a/AgileWorks/WebContent/css/common/sysinfo.css b/AgileWorks/WebContent/css/common/sysinfo.css
deleted file mode 100644
index 694db839246da87691314a39a1facdd6f6e0415c..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/common/sysinfo.css
+++ /dev/null
@@ -1,38 +0,0 @@
-.sysinfo {
- width:500px;
- height:150px;
- position:absolute;
- padding:5px;
- background-color:#cccccc;
- border-style:solid;
- border-width:2px;
- border-color:#ffffff;
-}
-.sysinfo .header {
- padding:5px 0px 10px 0px;
- font-weight:bold;
- color:#2E6AA5;
- float:left;
-}
-.sysinfo .close {
- text-align:right;
-}
-.sysinfo .close img {
- cursor:pointer;
-}
-.sysinfo .contents {
- width:100%;
- height:120px;
- overflow:auto;
- clear:both;
-}
-.sysinfo .contents .message {
- line-height:20px;
- padding-left:25px;
- border-style:dotted;
- border-width:0px 0px 1px 0px;
- border-color:#ffffff;
- background-image:url(../../images/common/icon/etc/info20.gif?build31910);
- background-repeat:no-repeat;
- background-position:left 0px;
-}
diff --git a/AgileWorks/WebContent/css/common/tooltip.css b/AgileWorks/WebContent/css/common/tooltip.css
deleted file mode 100644
index 2643adcf9758b5d8e93e4597cefa84225228b4c0..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/common/tooltip.css
+++ /dev/null
@@ -1,14 +0,0 @@
-
-.tooltip-title {
- padding:5px 0px 10px 0px;
- font-weight:bold;font-size:14px;
- border-style:solid;
- border-width:0px 0px 2px 0px;
- border-color:#aaaaaa;
- color:#3E7EA6;
-}
-
-.tooltip-content {
- padding:15px 0px 5px 0px;
- font-weight:normal;
-}
diff --git a/AgileWorks/WebContent/css/emma/default.css b/AgileWorks/WebContent/css/emma/default.css
deleted file mode 100644
index 85d718dd0d46cd5524e8aa592342a02d7170f9e8..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/emma/default.css
+++ /dev/null
@@ -1,5 +0,0 @@
-@import url(../common/common.css?build31910);
-
-@import url(../livehtml/livehtml.css?build31910);
-
-@import url(./default/default.css?build31910);
diff --git a/AgileWorks/WebContent/css/emma/default.css.dev b/AgileWorks/WebContent/css/emma/default.css.dev
deleted file mode 100644
index e819b392dcc86491cfcce656e9c17b44501ab857..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/emma/default.css.dev
+++ /dev/null
@@ -1,5 +0,0 @@
-@import url(../common/common.css.dev);
-
-@import url(../livehtml/livehtml.css.dev);
-
-@import url(./default/default.css.dev);
\ No newline at end of file
diff --git a/AgileWorks/WebContent/css/emma/default/base.css b/AgileWorks/WebContent/css/emma/default/base.css
deleted file mode 100644
index df63418cce4c0151ad3e518183c92bea748efe04..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/emma/default/base.css
+++ /dev/null
@@ -1,52 +0,0 @@
-html {
- height: 100%;
-}
-
-a:link {
- text-decoration:none;
- color:#1851E7;
-}
-
-a:active {
- text-decoration:none;
- color:#1851E7;
-}
-
-a:visited {
- text-decoration:none;
- color:#1851E7;
-}
-
-a:hover {
- text-decoration:underline;
- color:#e16745;
-}
-
-body {
- font-size:75%;
- background-color:#cfd5da;
- font-family:Arial, sans-serif;
- margin: 0px;
- height: 100%;
-}
-
-input {
- font-family:Arial, sans-serif;
-}
- input[type=text] {
- margin:0px;
- }
-
-button {
- font-family:Arial, sans-serif;
- margin:0px;
-}
-
-select {
- margin:0px;
-}
-
-textarea {
- font-size: 12px;
- margin:0px;
-}
diff --git a/AgileWorks/WebContent/css/emma/default/common.css b/AgileWorks/WebContent/css/emma/default/common.css
deleted file mode 100644
index c684796a6045144b693901acb32311744570fcee..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/emma/default/common.css
+++ /dev/null
@@ -1,120 +0,0 @@
-.aw-common-func {
- height:30px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#808080;
- background-image:url('../../../images/emma/default/background/func_bg.gif?build31910');
-}
-
-.aw-common-menubar-layer {
- height:30px;
- display:inline;
- float:left;
-}
-
-.aw-common-table {
- width: 100%;
- margin: 0px;
- padding: 0px;
- border-collapse: collapse;
- background: #fff;
-}
-
-.aw-common-table th {
- margin: 0px;
- padding: 1px 1px 1px 2px;
- height: 24px;
- vertical-align: middle;
- color: #444444;
- border: 1px solid #aaaaaa;
- text-align: left;
- background: url('../../../images/emma/default/background/table_header_bg.gif?build31910') bottom repeat-x #ebebeb;
-}
-
-.aw-common-table th.caption {
- margin: 0px;
- padding: 10px;
- vertical-align: middle;
- color: #444444;
- border: 1px solid #aaaaaa;
- text-align: center;
- background: url('../../../images/emma/default/background/table_caption_bg.gif?build31910') center repeat-x;
-}
-
-.aw-common-table td {
- margin: 0px;
- padding: 1px 1px 1px 2px;
- height: 24px;
- vertical-align: middle;
- color: #444444;
- border: 1px solid #aaaaaa;
- text-align: left;
-}
-
-/* テーブル(内部) */
-.aw-common-table table.inner {
- width: 98%;
- margin: 0px;
- padding: 0px;
- border-collapse: collapse;
-}
-
-.aw-common-table table.inner td {
- margin: 0px;
- padding: 5px 5px 5px 0px;
- border: none;
- text-align: left;
-}
-
-.aw-common-table table.inner td.uline {
- border-bottom: 1px dotted #aaa;
-}
-
-/* 偶数行色指定(TR) */
-.aw-common-table .even {
- background: #f5f5f5;
-}
-
-/* マーカー指定(SPAN) */
-.aw-common-table .ar01 {
- padding: 0px 0px 0px 12px;
- background: url('../../../images/emma/default/icon/arrow01.gif?build31910') left center no-repeat;
-}
-
-.aw-common-table-unurged {
- width: 100%;
- margin: 0px;
- padding: 0px;
- border-collapse: collapse;
- background: #fff;
-}
-
-.aw-common-table-unurged th.label {
- margin: 0px;
- padding: 1px 1px 1px 2px;
- height: 24px;
- vertical-align: middle;
- color: #444444;
- border: 1px solid #aaaaaa;
- text-align: left;
- background: url('../../../images/emma/default/background/table_header_bg.gif?build31910') bottom repeat-x #ebebeb;
-}
-
-.aw-common-table-unurged th.caption {
- margin: 0px;
- padding: 10px;
- vertical-align: middle;
- color: #444444;
- border: 1px solid #aaaaaa;
- text-align: center;
- background: url('../../../images/emma/default/background/table_caption_bg.gif?build31910') center repeat-x;
-}
-
-.aw-common-table-unurged td.item {
- margin: 0px;
- padding: 1px 1px 1px 2px;
- vertical-align: middle;
- color: #444444;
- border: 1px solid #aaaaaa;
- text-align: left;
-}
diff --git a/AgileWorks/WebContent/css/emma/default/contents.css b/AgileWorks/WebContent/css/emma/default/contents.css
deleted file mode 100644
index 29138f0123fc2705895485c4b5f0a0dfb79a4656..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/emma/default/contents.css
+++ /dev/null
@@ -1,52 +0,0 @@
-.contents-header {
- height:30px;
-}
-
-.contents-main {
- background: #efefef;
- border-style:solid;
- border-width:1px;
- border-color:#cbcbcb;
- padding: 10px;
- overflow: auto;
-}
-
-.contents-main .caption {
- border-bottom:2px solid #aaa;
- margin-bottom:10px;
- font-weight:bold;
- padding:2px;
-}
-
-.contents-main th {
- font-weight:bold;
- color: #444444;
-}
-
-.contents-main td.item {
- border-bottom:1px solid #aaa;
-}
-
-.contents-main th.header {
- border-bottom: 2px solid #aaa;
-}
-
-.contents-main td {
- color: #444444;
-}
-
-.contents-main td.indent1 {
- padding-left:30px;
-}
-
-.contents-header-table {
- border-collapse:collapse;
- border-spacing:0px;
- margin-bottom:5px;
- width:100%;
- height:25px;
-}
-
-.contents-header-table .count {
- color : #ff0000;
-}
diff --git a/AgileWorks/WebContent/css/emma/default/default.css b/AgileWorks/WebContent/css/emma/default/default.css
deleted file mode 100644
index 06563eff7af03cd4c9ff3ad731ff2fe235f153f9..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/emma/default/default.css
+++ /dev/null
@@ -1,14 +0,0 @@
-html{height:100%;}a:link{text-decoration:none;color:#1851E7;}a:active{text-decoration:none;color:#1851E7;}a:visited{text-decoration:none;color:#1851E7;}a:hover{text-decoration:underline;color:#e16745;}body{font-size:75%;background-color:#cfd5da;font-family:Arial,sans-serif;margin:0;height:100%;}input{font-family:Arial,sans-serif;}input[type=text]{margin:0;}button{font-family:Arial,sans-serif;margin:0;}select{margin:0;}textarea{font-size:12px;margin:0;}
-.aw-common-func{height:30px;border-style:solid;border-width:0 0 1px 0;border-color:#808080;background-image:url('../../../images/emma/default/background/func_bg.gif?build31910');}.aw-common-menubar-layer{height:30px;display:inline;float:left;}.aw-common-table{width:100%;margin:0;padding:0;border-collapse:collapse;background:#fff;}.aw-common-table th{margin:0;padding:1px 1px 1px 2px;height:24px;vertical-align:middle;color:#444;border:1px solid #aaa;text-align:left;background:url('../../../images/emma/default/background/table_header_bg.gif?build31910') bottom repeat-x #ebebeb;}.aw-common-table th.caption{margin:0;padding:10px;vertical-align:middle;color:#444;border:1px solid #aaa;text-align:center;background:url('../../../images/emma/default/background/table_caption_bg.gif?build31910') center repeat-x;}.aw-common-table td{margin:0;padding:1px 1px 1px 2px;height:24px;vertical-align:middle;color:#444;border:1px solid #aaa;text-align:left;}.aw-common-table table.inner{width:98%;margin:0;padding:0;border-collapse:collapse;}.aw-common-table table.inner td{margin:0;padding:5px 5px 5px 0;border:none;text-align:left;}.aw-common-table table.inner td.uline{border-bottom:1px dotted #aaa;}.aw-common-table .even{background:#f5f5f5;}.aw-common-table .ar01{padding:0 0 0 12px;background:url('../../../images/emma/default/icon/arrow01.gif?build31910') left center no-repeat;}.aw-common-table-unurged{width:100%;margin:0;padding:0;border-collapse:collapse;background:#fff;}.aw-common-table-unurged th.label{margin:0;padding:1px 1px 1px 2px;height:24px;vertical-align:middle;color:#444;border:1px solid #aaa;text-align:left;background:url('../../../images/emma/default/background/table_header_bg.gif?build31910') bottom repeat-x #ebebeb;}.aw-common-table-unurged th.caption{margin:0;padding:10px;vertical-align:middle;color:#444;border:1px solid #aaa;text-align:center;background:url('../../../images/emma/default/background/table_caption_bg.gif?build31910') center repeat-x;}.aw-common-table-unurged td.item{margin:0;padding:1px 1px 1px 2px;vertical-align:middle;color:#444;border:1px solid #aaa;text-align:left;}
-.contents-header{height:30px;}.contents-main{background:#efefef;border-style:solid;border-width:1px;border-color:#cbcbcb;padding:10px;overflow:auto;}.contents-main .caption{border-bottom:2px solid #aaa;margin-bottom:10px;font-weight:bold;padding:2px;}.contents-main th{font-weight:bold;color:#444;}.contents-main td.item{border-bottom:1px solid #aaa;}.contents-main th.header{border-bottom:2px solid #aaa;}.contents-main td{color:#444;}.contents-main td.indent1{padding-left:30px;}.contents-header-table{border-collapse:collapse;border-spacing:0;margin-bottom:5px;width:100%;height:25px;}.contents-header-table .count{color:#f00;}
-.aw-emma-table{width:100%;margin:0;padding:0;border-collapse:collapse;background:#fff;}.aw-emma-table th{margin:0;padding:1px 1px 1px 2px;height:24px;vertical-align:middle;color:#444;border:1px solid #aaa;text-align:left;background:url('../../../images/emma/default/background/table_header_bg.gif?build31910') bottom repeat-x #ebebeb;}.aw-emma-table th.caption{margin:0;padding:10px;vertical-align:middle;color:#444;border:1px solid #aaa;text-align:center;background:url('../../../images/emma/default/background/table_caption_bg.gif?build31910') center repeat-x;}.aw-emma-table td{margin:0;padding:1px 1px 1px 2px;height:24px;vertical-align:middle;color:#444;border:1px solid #aaa;text-align:left;}.aw-emma-table table.inner{width:98%;margin:0;padding:0;border-collapse:collapse;}.aw-emma-table table.inner td{margin:0;padding:5px 5px 5px 0;border:none;text-align:left;}.aw-emma-table table.inner td.uline{border-bottom:1px dotted #aaa;}.aw-emma-table .even{background:#f5f5f5;}.aw-emma-table .ar01{padding:0 0 0 12px;background:url('../../../images/emma/default/icon/arrow01.gif?build31910') left center no-repeat;}.aw-emma-table-unurged{width:100%;margin:0;padding:0;border-collapse:collapse;background:#fff;}.aw-emma-table-unurged th.label{margin:0;padding:1px 1px 1px 2px;height:24px;vertical-align:middle;color:#444;border:1px solid #aaa;text-align:left;background:url('../../../images/emma/default/background/table_header_bg.gif?build31910') bottom repeat-x #ebebeb;}.aw-emma-table-unurged th.caption{margin:0;padding:10px;vertical-align:middle;color:#444;border:1px solid #aaa;text-align:center;background:url('../../../images/emma/default/background/table_caption_bg.gif?build31910') center repeat-x;}.aw-emma-table-unurged td.item{margin:0;padding:1px 1px 1px 2px;height:24px;vertical-align:middle;color:#444;border:1px solid #aaa;text-align:left;}
-.aw-emma-header{height:59px;margin:0;padding:0;border:0;background:url(../../../images/emma/default/header/header_bg.gif?build31910) top repeat-x;}.aw-emma-header-left{float:left;margin:0;padding:0 67px 0 0;overflow:hidden;}.aw-emma-header-left img{padding:0;border:none;width:183px;height:59px;}.aw-emma-header-right{float:right;margin:0;padding:0 0 0 25px;background:url(../../../images/emma/default/header/link_bg.gif?build31910) left top no-repeat;color:#666;background-color:#242b32;font-size:12px;}.aw-emma-header-right-account{float:left;padding:0 10px 2px 0;display:inline;background-color:#242b32;color:#fff;}.aw-emma-header-right-link{float:left;}.aw-emma-header-right-link ul{margin:0;padding:2px;list-style:none;background-color:#242b32;}.aw-emma-header-right-link li{margin:0;padding:0 5px 0 0;display:inline;}.aw-emma-header-right-link a{color:#fff;text-decoration:underline;}.aw-emma-header-right-link a:link{color:#fff;text-decoration:underline;}.aw-emma-header-right-link a:active{color:#fff;text-decoration:underline;}.aw-emma-header-right-link a:visited{color:#fff;text-decoration:underline;}.aw-emma-header-right-link a:hover{color:#fff;text-decoration:underline;}.aw-emma-header-menu{margin:0;padding:7px 0 0 0;font-size:12px;text-align:center;}.aw-emma-header-menu ul{list-style:none;margin:0;padding:0;}.aw-emma-header-menu li{float:left;margin:0 2px 0 0;padding:0;white-space:nowrap;}.aw-emma-header-menu a{outline:0;}.aw-emma-header-menu-hlinks-separator{display:none;}.aw-emma-header-menu-hlinks-li-site a,.aw-emma-header-menu-hlinks-li-site a:link,.aw-emma-header-menu-hlinks-li-site a:active,.aw-emma-header-menu-hlinks-li-site a:visited{color:#fff;width:60px;height:50px;display:block;overflow:hidden;line-height:80px;background:URL(../../../images/common/icon/object/site30.gif?build31910) center top no-repeat;}.aw-emma-header-menu-hlinks-li-site a:hover{color:#e16745;text-decoration:none;width:60px;height:50px;display:block;overflow:hidden;background:URL(../../../images/common/icon/object/site30.gif?build31910) center top no-repeat;}.aw-emma-header-menu-hlinks-li-account a,.aw-emma-header-menu-hlinks-li-account a:link,.aw-emma-header-menu-hlinks-li-account a:active,.aw-emma-header-menu-hlinks-li-account a:visited{color:#fff;width:80px;height:50px;display:block;overflow:hidden;line-height:80px;background:URL(../../../images/common/icon/object/user30.gif?build31910) center top no-repeat;}.aw-emma-header-menu-hlinks-li-account a:hover{color:#e16745;text-decoration:none;width:80px;height:50px;display:block;overflow:hidden;background:URL(../../../images/common/icon/object/user30.gif?build31910) center top no-repeat;}.aw-emma-header-menu-hlinks-li-unit a,.aw-emma-header-menu-hlinks-li-unit a:link,.aw-emma-header-menu-hlinks-li-unit a:active,.aw-emma-header-menu-hlinks-li-unit a:visited{color:#fff;width:55px;height:50px;display:block;overflow:hidden;line-height:80px;background:URL(../../../images/common/icon/object/unit30.gif?build31910) center top no-repeat;}.aw-emma-header-menu-hlinks-li-unit a:hover{color:#e16745;text-decoration:none;width:55px;height:50px;display:block;overflow:hidden;background:URL(../../../images/common/icon/object/unit30.gif?build31910) center top no-repeat;}.aw-emma-header-menu-hlinks-li-rule a,.aw-emma-header-menu-hlinks-li-rule a:link,.aw-emma-header-menu-hlinks-li-rule a:active,.aw-emma-header-menu-hlinks-li-rule a:visited{color:#fff;width:90px;height:50px;display:block;overflow:hidden;line-height:80px;background:URL(../../../images/common/icon/object/rule30.gif?build31910) center top no-repeat;}.aw-emma-header-menu-hlinks-li-rule a:hover{color:#e16745;text-decoration:none;width:90px;height:50px;display:block;overflow:hidden;background:URL(../../../images/common/icon/object/rule30.gif?build31910) center top no-repeat;}.aw-emma-header-menu-hlinks-li-form a,.aw-emma-header-menu-hlinks-li-form a:link,.aw-emma-header-menu-hlinks-li-form a:active,.aw-emma-header-menu-hlinks-li-form a:visited{color:#fff;width:70px;height:50px;display:block;overflow:hidden;line-height:80px;background:URL(../../../images/common/icon/object/form30.gif?build31910) center top no-repeat;}.aw-emma-header-menu-hlinks-li-form a:hover{color:#e16745;text-decoration:none;width:70px;height:50px;display:block;overflow:hidden;background:URL(../../../images/common/icon/object/form30.gif?build31910) center top no-repeat;}.aw-emma-header-menu-hlinks-li-public a,.aw-emma-header-menu-hlinks-li-public a:link,.aw-emma-header-menu-hlinks-li-public a:active,.aw-emma-header-menu-hlinks-li-public a:visited{color:#fff;width:55px;height:50px;display:block;overflow:hidden;line-height:80px;background:URL(../../../images/common/icon/object/pubfolder_open30.gif?build31910) center top no-repeat;}.aw-emma-header-menu-hlinks-li-public a:hover{color:#e16745;text-decoration:none;width:55px;height:50px;display:block;overflow:hidden;background:URL(../../../images/common/icon/object/pubfolder_open30.gif?build31910) center top no-repeat;}.aw-emma-header-menu-hlinks-li-doc a,.aw-emma-header-menu-hlinks-li-doc a:link,.aw-emma-header-menu-hlinks-li-doc a:active,.aw-emma-header-menu-hlinks-li-doc a:visited{color:#fff;width:60px;height:50px;display:block;overflow:hidden;line-height:80px;background:URL(../../../images/common/icon/object/docman30.gif?build31910) center top no-repeat;}.aw-emma-header-menu-hlinks-li-doc a:hover{color:#e16745;text-decoration:none;width:60px;height:50px;display:block;overflow:hidden;background:URL(../../../images/common/icon/object/docman30.gif?build31910) center top no-repeat;}.aw-emma-header-menu-hlinks-li-tool a,.aw-emma-header-menu-hlinks-li-tool a:link,.aw-emma-header-menu-hlinks-li-tool a:active,.aw-emma-header-menu-hlinks-li-tool a:visited{color:#fff;width:50px;height:50px;display:block;overflow:hidden;line-height:80px;background:URL(../../../images/common/icon/object/tool30.gif?build31910) center top no-repeat;}.aw-emma-header-menu-hlinks-li-tool a:hover{color:#e16745;text-decoration:none;width:50px;height:50px;display:block;overflow:hidden;background:URL(../../../images/common/icon/object/tool30.gif?build31910) center top no-repeat;}.aw-emma-header-menu-hlinks-li-addon a,.aw-emma-header-menu-hlinks-li-addon a:link,.aw-emma-header-menu-hlinks-li-addon a:active,.aw-emma-header-menu-hlinks-li-addon a:visited{color:#fff;width:65px;height:50px;display:block;overflow:hidden;line-height:80px;background:URL(../../../images/common/icon/object/addon30.gif?build31910) center top no-repeat;}.aw-emma-header-menu-hlinks-li-addon a:hover{color:#e16745;text-decoration:none;width:65px;height:50px;display:block;overflow:hidden;background:URL(../../../images/common/icon/object/addon30.gif?build31910) center top no-repeat;}.aw-emma-headerbar{clear:both;height:12px;margin:0;padding:0;background:url(../../../images/emma/default/header/bar_bg.gif?build31910) left repeat-x #fff;font-size:0;}.aw-emma-headerbar-standby{clear:both;height:12px;margin:0;padding:0;background:url(../../../images/emma/default/header/bar_bg_standby.gif?build31910) left repeat-x #fff;font-size:0;}.aw-emma-workbench{position:absolute;width:250px;}.aw-emma-tabs{height:30px;padding-left:10px;background-color:#333;font-size:12px;}.aw-emma-menu{height:38px;margin:0;padding-left:10px;}.aw-emma-func{height:30px;border-style:solid;border-width:0 0 1px 0;border-color:#808080;background-image:url('../../../images/emma/default/background/func_bg.gif?build31910');}.aw-emma-menubar-layer{height:30px;display:inline;float:left;}.aw-emma-contents{padding:5px;}.aw-emma-page{position:relative;top:0;left:250px;width:10px;height:10px;overflow:hidden;}.aw-dragger{position:absolute;cursor:col-resize;border-style:solid;filter:alpha(opacity=00);-moz-opacity:0;opacity:0;z-index:1;}.aw-dragger-dragging{position:absolute;cursor:col-resize;border-style:solid;border-color:#242b32;z-index:1;}.aw-info{margin:10px 0 10px 0;padding:10px 0 10px 30px;background-color:#ffffd5;background-image:url(../../../images/common/icon/etc/info20.gif?build31910);background-repeat:no-repeat;background-position:5px center;}.aw-emma-form .caption{margin:0;padding:6px 2px;vertical-align:middle;color:#444;border-top:1px solid #aaa;border-bottom:1px solid #aaa;text-align:left;font-weight:bold;background:url('../../../images/emma/default/background/table_header_bg.gif?build31910') bottom repeat-x #ebebeb;}.aw-emma-form .content{margin:0;padding:1px 2px;vertical-align:middle;color:#444;text-align:left;}
-.grid-scroll-layer{border-style:solid;border-width:1px;border-color:#000;position:absolute;overflow:scroll;outline:0!important;-webkit-tap-highlight-color:rgba(0,0,0,0);}.grid-table-layer{background-color:#eee;position:relative;overflow:hidden;top:1px;left:1px;}.grid-table{table-layout:fixed;width:0;}.grid-table th{background-image:url('../../../images/emma/default/background/grid_header.gif?build31910');}.grid-header-th{color:#000;font-weight:bold;border-style:solid;border-width:0 1px 0 0;border-color:#aaa;white-space:pre;word-break:keep-all;overflow:hidden;text-align:center;}.grid-header-th.fixed{border-color:#000!important;}.grid-header-th.sort{color:#0067ce;}.grid-header-resizediv{position:absolute;top:0;border-style:solid;border-width:0 9px 0 0;cursor:col-resize;filter:alpha(opacity=0);-moz-opacity:0;opacity:0;}.grid-header-resizediv-dragging{position:absolute;top:0;border-style:solid;border-width:0 3px 0 0;border-color:#242b32;cursor:col-resize;}.grid-header-cell{padding:0 4px 0 4px;}.grid-tr-current{background-color:#242b32;color:#fff;cursor:default;}.grid-tr-current td{color:#fff;}.grid-tr-select{background-color:#5E81BC;color:#fff;cursor:default;}.grid-tr{background-color:#fff;cursor:default;}.grid-tr-even{background-color:#f5f5f5;cursor:default;}.grid-td{border-style:solid;border-width:0 1px 0 0;border-color:#aaa;white-space:pre;word-break:keep-all;overflow:hidden;padding:0 4px 0 4px;cursor:pointer;}.grid-td.fixed{border-color:#000!important;cursor:pointer;}.grid-td.record-status{background-color:#d0d4d9;text-align:center;padding:0;cursor:default;}.grid-td.checkbox{background-color:#d0d4d9;text-align:center;padding:0;cursor:default;}.grid-td.radiobutton{background-color:#d0d4d9;text-align:center;padding:0;cursor:default;}.grid-td.blank{border-width:0;cursor:default;}
-.grid-tr-subtotal{color:#00f;background-color:#f5f5f5;cursor:default;}.grid-tr-total{font-size:15px;color:#f00;font-weight:bold;background-color:#ccc;cursor:default;}.grid-td.mouseover{color:#f00;background-color:#ffc;cursor:pointer;}
-.layer{position:absolute;}.layer-modallayer{position:absolute;top:0;left:0;width:100%;height:100%;background-color:#ddd;filter:alpha(opacity=40);opacity:.4;-moz-opacity:.4;}.layer-dropshadow{position:absolute;background-image:url('../../../images/common/container/shadow.gif?build31910');background-position:right bottom;}.layer-underiframe{position:absolute;top:0;left:0;width:100%;height:100%;border:none;filter:alpha(opacity=0);-moz-opacity:0;opacity:0;}.layer-frame{position:absolute;border-style:solid;border-width:1px;border-color:#666;box-shadow:2px 2px 5px #666;-moz-box-shadow:2px 2px 5px #666;-webkit-box-shadow:2px 2px 5px #666;}.layer-titlebar{height:30px;color:#262e37;font-weight:bold;overflow:hidden;background-image:url('../../../images/emma/default/background/layer_titlebar_bg.gif?build31910');background-repeat:repeat-x;}.layer-titlebar-table{height:30px;padding-left:4px;}.layer-titlebar-caption{overflow:hidden;}.layer-titlebar-td-help{width:20px;text-align:center;padding:0;cursor:pointer;}.layer-titlebar-td-close{width:20px;text-align:center;padding:0 4px 0 0;cursor:pointer;}.layer-body{position:absolute;overflow:auto;padding:5px;background-color:#bfc7cd;}.layer-messagebox-simple{font-size:12px;font-weight:bold;width:200px;}.layer-messagebox-tl{background:transparent url(../../../images/emma/default/background/messagebox-corners.gif?build31910) no-repeat 0 0;zoom:1;}.layer-messagebox-tc{height:8px;background:transparent url(../../../images/emma/default/background/messagebox-tb.gif?build31910) repeat-x 0 0;overflow:hidden;}.layer-messagebox-tr{background:transparent url(../../../images/emma/default/background/messagebox-corners.gif?build31910) no-repeat right -8px;}.layer-messagebox-ml{background:transparent url(../../../images/emma/default/background/messagebox-l.gif?build31910) repeat-y 0;padding-left:4px;overflow:hidden;zoom:1;}.layer-messagebox-mc{background:#eee url(../../../images/emma/default/background/messagebox-tb.gif?build31910) repeat-x 0 -16px;padding:4px 10px;font-family:"Myriad Pro","Myriad Web","Tahoma","Helvetica","Arial",sans-serif;color:#393939;font-size:12px;}.layer-messagebox-mc h3{font-size:14px;font-weight:bold;margin:0 0 4 0;zoom:1;}.layer-messagebox-mr{background:transparent url(../../../images/emma/default/background/messagebox-r.gif?build31910) repeat-y right;padding-right:4px;overflow:hidden;}.layer-messagebox-bl{background:transparent url(../../../images/emma/default/background/messagebox-corners.gif?build31910) no-repeat 0 -16px;zoom:1;}.layer-messagebox-bc{background:transparent url(../../../images/emma/default/background/messagebox-tb.gif?build31910) repeat-x 0 -8px;height:8px;overflow:hidden;}.layer-messagebox-br{background:transparent url(../../../images/emma/default/background/messagebox-corners.gif?build31910) no-repeat right -24px;}.layer-messagebox-tl,.layer-messagebox-bl{padding-left:8px;overflow:hidden;}.layer-messagebox-tr,.layer-messagebox-br{padding-right:8px;overflow:hidden;}.layer-messagebox-blue .layer-messagebox-bl,.layer-messagebox-blue .layer-messagebox-br,.layer-messagebox-blue .layer-messagebox-tl,.layer-messagebox-blue .layer-messagebox-tr{background-image:url(../../../images/emma/default/background/messagebox-corners-blue.gif?build31910);}.layer-messagebox-blue .layer-messagebox-bc,.layer-messagebox-blue .layer-messagebox-mc,.layer-messagebox-blue .layer-messagebox-tc{background-image:url(../../../images/emma/default/background/messagebox-tb-blue.gif?build31910);}.layer-messagebox-blue .layer-messagebox-mc{background-color:#c3daf9;}.layer-messagebox-blue .layer-messagebox-mc h3{color:#17385b;}.layer-messagebox-blue .layer-messagebox-ml{background-image:url(../../../images/emma/default/background/messagebox-l-blue.gif?build31910);}.layer-messagebox-blue .layer-messagebox-mr{background-image:url(../../../images/emma/default/background/messagebox-r-blue.gif?build31910);}
-.menubar{color:#000;}.menubar .topmenu{height:28px;}.menubar .topmenu ul{margin:0;padding:0;}.menubar .topmenu li{float:left;list-style-type:none;margin:0;line-height:22px;padding:3px 5px 3px 22px;}.menubar .submenu{background-color:#fff;border-style:solid;border-width:1px;border-color:#aaa;}.menubar .submenu ul{margin:0;padding:0;overflow:hidden;}.menubar .submenu li{list-style-type:none;margin:0;padding:0;line-height:22px;padding:1px 5px 1px 22px;white-space:pre;word-break:keep-all;}.menubar .menuitem.menuover{background-color:#ddd;cursor:pointer;}.menubar .menuitem.menudisabled{color:#aaa;}.menubar .topmenu .menuitem-terminate{float:none;clear:both;}
-.page{border-style:solid;border-width:1px;border-color:#aaa;padding:2px 4px 2px 4px;margin:0 2px 0 2px;cursor:pointer;}.currentpage{border-style:solid;border-width:1px;border-color:#aaa;padding:2px 4px 2px 4px;margin:0 2px 0 2px;background-color:#242b32;color:#fff;}.overpage{border-style:solid;border-width:1px;border-color:#aaa;padding:2px 4px 2px 4px;margin:0 2px 0 2px;background-color:#fff;color:#000;cursor:pointer;}
-.tabs-layer{overflow:hidden;height:30px;font-size:12px;}.tabs-table{height:29px;margin-top:1px;}.tabs-item{height:28px;border-style:solid;border-width:1px 1px 0 1px;border-color:#aaa;background-color:#aaa;color:#444;padding:0 10px 0 10px;white-space:nowrap;background-image:url('../../../images/emma/default/background/tab_bg.gif?build31910');font-weight:bold;}.tabs-item a{color:#444;}.tabs-item a:link{color:#444;}.tabs-item a:active{color:#444;}.tabs-item a:visited{color:#444;}.tabs-item-mouseover{height:28px;background-color:#fff;border-style:solid;border-width:1px 1px 0 1px;border-color:#aaa;color:#444;padding:0 10px 0 10px;white-space:nowrap;font-weight:bold;}.tabs-item-mouseover a{color:#444;}.tabs-item-mouseover a:link{color:#444;}.tabs-item-mouseover a:active{color:#444;}.tabs-item-mouseover a:visited{color:#444;}.tabs-blank{padding:0 5px 0 5px;border-style:solid;border-width:0 0 1px 0;border-color:#aaa;}.tabs-last{width:100%;border-style:solid;border-width:0 0 1px 0;border-color:#aaa;}.tabs-leftarrow{width:30px;background-image:url('../../../images/emma/default/background/tabs-leftarrow.gif?build31910');background-repeat:no-repeat;background-position:0 2px;cursor:pointer;}.tabs-rightarrow{width:30px;background-image:url('../../../images/emma/default/background/tabs-rightarrow.gif?build31910');background-repeat:no-repeat;background-position:2px 2px;cursor:pointer;}.tabs-page{background-color:#eee;border-style:solid;border-width:0 1px 1px 1px;border-color:#aaa;padding:4px;overflow:auto;}
-.aw-menubar{height:30px;border-style:solid;border-width:0 0 1px 0;border-color:#808080;background-image:url('../../../images/emma/default/background/func_bg.gif?build31910');}.aw-menubar2{height:30px;border-style:solid;border-width:0 0 1px 0;border-color:#808080;background-image:url('../../../images/emma/default/background/func_bg.gif?build31910');}
-.ygtvtd_current{background-color:#697683;border-style:solid;border-width:1px;border-color:#000;padding:0;}
-.workbench-layer{border-style:outset;border-width:0 1px 0 0;border-color:#333;white-space:nowrap;}.workbench-item{width:240px;border-style:solid;border-width:0 0 1px 0;border-color:#666;overflow:hidden;background-image:url('../../../images/emma/default/background/workbench_item.gif?build31910');font-weight:bold;line-height:30px;color:#000;cursor:pointer;padding-left:10px;font-size:120%;}.workbench-item-current{width:240px;border-style:solid;border-width:0 0 1px 0;border-color:#666;overflow:hidden;background-image:url('../../../images/emma/default/background/workbench_item.gif?build31910');font-weight:bold;line-height:30px;color:#000;cursor:pointer;padding-left:10px;font-size:120%;}.workbench-item-mouseover{width:240px;border-style:solid;border-width:0 0 1px 0;border-color:#666;overflow:hidden;background-image:url('../../../images/emma/default/background/workbench_item_over.gif?build31910');font-weight:bold;line-height:30px;color:#fff;cursor:pointer;padding-left:10px;font-size:120%;}.workbench-content{width:230px;border-style:solid;border-width:0 0 1px 0;border-color:#666;overflow:auto;padding:10px;}.workbench-content-control{width:224px;background-color:#fff;border-style:solid;border-width:3px;border-color:#aaa;overflow:auto;}
diff --git a/AgileWorks/WebContent/css/emma/default/default.css.dev b/AgileWorks/WebContent/css/emma/default/default.css.dev
deleted file mode 100644
index c09b1e219336d155bcef83a83175ef9fdfbd8ab6..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/emma/default/default.css.dev
+++ /dev/null
@@ -1,11 +0,0 @@
-@import url(base.css);
-@import url(common.css);
-@import url(emma-table.css);
-@import url(emma.css);
-@import url(grid-base.css);
-@import url(grid-ext.css);
-@import url(layer.css);
-@import url(tree-type.css);
-@import url(menu-base.css);
-@import url(tabs.css);
-@import url(workbench.css);
\ No newline at end of file
diff --git a/AgileWorks/WebContent/css/emma/default/emma-table.css b/AgileWorks/WebContent/css/emma/default/emma-table.css
deleted file mode 100644
index 9c8a07869d9e898729236b423506a1b03e968590..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/emma/default/emma-table.css
+++ /dev/null
@@ -1,113 +0,0 @@
-/*
- * emma-table.css?build31910
- *
- * アプリケーション「EMMA」で使用されるテーブル関連のCSSセレクタを定義します
- */
-
-.aw-emma-table {
- width: 100%;
- margin: 0px;
- padding: 0px;
- border-collapse: collapse;
- background: #fff;
-}
-
-.aw-emma-table th {
- margin: 0px;
- padding: 1px 1px 1px 2px;
- height: 24px;
- vertical-align: middle;
- color: #444444;
- border: 1px solid #aaaaaa;
- text-align: left;
- background: url('../../../images/emma/default/background/table_header_bg.gif?build31910') bottom repeat-x #ebebeb;
-}
-
-.aw-emma-table th.caption {
- margin: 0px;
- padding: 10px;
- vertical-align: middle;
- color: #444444;
- border: 1px solid #aaaaaa;
- text-align: center;
- background: url('../../../images/emma/default/background/table_caption_bg.gif?build31910') center repeat-x;
-}
-
-.aw-emma-table td {
- margin: 0px;
- padding: 1px 1px 1px 2px;
- height: 24px;
- vertical-align: middle;
- color: #444444;
- border: 1px solid #aaaaaa;
- text-align: left;
-}
-
-/* テーブル(内部) */
-.aw-emma-table table.inner {
- width: 98%;
- margin: 0px;
- padding: 0px;
- border-collapse: collapse;
-}
-
-.aw-emma-table table.inner td {
- margin: 0px;
- padding: 5px 5px 5px 0px;
- border: none;
- text-align: left;
-}
-
-.aw-emma-table table.inner td.uline {
- border-bottom: 1px dotted #aaa;
-}
-
-/* 偶数行色指定(TR) */
-.aw-emma-table .even {
- background: #f5f5f5;
-}
-
-/* マーカー指定(SPAN) */
-.aw-emma-table .ar01 {
- padding: 0px 0px 0px 12px;
- background: url('../../../images/emma/default/icon/arrow01.gif?build31910') left center no-repeat;
-}
-
-.aw-emma-table-unurged {
- width: 100%;
- margin: 0px;
- padding: 0px;
- border-collapse: collapse;
- background: #fff;
-}
-
-.aw-emma-table-unurged th.label {
- margin: 0px;
- padding: 1px 1px 1px 2px;
- height: 24px;
- vertical-align: middle;
- color: #444444;
- border: 1px solid #aaaaaa;
- text-align: left;
- background: url('../../../images/emma/default/background/table_header_bg.gif?build31910') bottom repeat-x #ebebeb;
-}
-
-.aw-emma-table-unurged th.caption {
- margin: 0px;
- padding: 10px;
- vertical-align: middle;
- color: #444444;
- border: 1px solid #aaaaaa;
- text-align: center;
- background: url('../../../images/emma/default/background/table_caption_bg.gif?build31910') center repeat-x;
-}
-
-.aw-emma-table-unurged td.item {
- margin: 0px;
- padding: 1px 1px 1px 2px;
- height: 24px;
- vertical-align: middle;
- color: #444444;
- border: 1px solid #aaaaaa;
- text-align: left;
-}
diff --git a/AgileWorks/WebContent/css/emma/default/emma.css b/AgileWorks/WebContent/css/emma/default/emma.css
deleted file mode 100644
index 47b3572783d56c01ea492200a9ee1aa0c6c02680..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/emma/default/emma.css
+++ /dev/null
@@ -1,539 +0,0 @@
-/*
- * emma.css?build31910
- *
- * アプリケーション「EMMA」で使用されるCSSセレクタを定義します
- */
-
-/*
- * ヘッダ
- */
-.aw-emma-header {
- height: 59px;
- margin: 0px;
- padding: 0px;
- border: 0px;
- background: url(../../../images/emma/default/header/header_bg.gif?build31910) top repeat-x ;
-}
-
-/*
- * ヘッダ左部
- */
-.aw-emma-header-left {
- float: left;
- margin: 0px;
- padding: 0px 67px 0px 0px;
- overflow: hidden;
-}
-
-/*
- * ヘッダ左部のロゴ画像
- */
-.aw-emma-header-left img {
- padding: 0px;
- border: none;
- width: 183px;
- height: 59px;
-}
-
-/*
- * ヘッダ右部
- */
-.aw-emma-header-right {
- float: right;
- margin: 0px 0px 0px 0px;
- padding: 0px 0px 0px 25px;
- background: url(../../../images/emma/default/header/link_bg.gif?build31910) left top no-repeat;
- color:#666666;
- background-color: #242b32;
- font-size:12px;
-}
-
-/*
- * ヘッダ右部のアカウント情報
- */
-.aw-emma-header-right-account {
- float:left;
- padding:0px 10px 2px 0px;
- display: inline;
- background-color: #242b32;
- color:#ffffff;
-}
-
-/*
- * ヘッダ右部のリンク
- */
-.aw-emma-header-right-link {
- float: left;
-}
-
-/*
- * ヘッダ右部のリンクで使用されるUL要素
- */
-.aw-emma-header-right-link ul {
- margin: 0px;
- padding: 2px;
- list-style: none;
- background-color: #242b32;
-}
-
-/*
- * ヘッダ右部のリンクで使用されるLI要素
- */
-.aw-emma-header-right-link li {
- margin: 0px;
- padding: 0px 5px 0px 0px;
- display: inline;
-}
-
-/*
- * ヘッダ右部のリンクで使用されるA要素
- */
-.aw-emma-header-right-link a { color: #ffffff; text-decoration:underline; }
-.aw-emma-header-right-link a:link { color: #ffffff; text-decoration:underline; }
-.aw-emma-header-right-link a:active { color: #ffffff; text-decoration:underline; }
-.aw-emma-header-right-link a:visited { color: #ffffff; text-decoration:underline; }
-.aw-emma-header-right-link a:hover { color: #ffffff; text-decoration:underline; }
-
-/*
- * ヘッダメニュー
- */
-.aw-emma-header-menu {
- margin: 0px;
- padding: 7px 0px 0px 0px;
- font-size: 12px;
- text-align: center;
-}
-
-/*
- * ヘッダメニューで使用されるUL要素
- */
-.aw-emma-header-menu ul {
- list-style: none;
- margin: 0px;
- padding: 0px;
-}
-
-/*
- * ヘッダメニューで使用されるLI要素
- */
-.aw-emma-header-menu li {
- float: left;
- margin: 0px 2px 0px 0px;
- padding: 0px;
- white-space: nowrap;
- /*
- border-top: 1px solid #273038;
- border-left: 1px solid #273038;
- border-right: 1px solid #273038;
- */
-}
-
-.aw-emma-header-menu a {
- outline: 0;
-}
-
-/*
- * ヘッダメニューのセパレータに当たるLI要素
- */
-.aw-emma-header-menu-hlinks-separator {
- display:none;
-}
-
-/*
- * ヘッダメニューのA要素に適用されるクラスセレクタ
- */
-/*
-.aw-emma-header-menu a,
-.aw-emma-header-menu a:link,
-.aw-emma-header-menu a:active,
-.aw-emma-header-menu a:visited,
-.aw-emma-header-menu a.crt {
- width: 100px;
- height: 20px;
- margin: 0px;
- padding: 5px 5px 0px 5px;
- display: block;
- color: #333;
- font-weight: bold;
- text-decoration: none;
- background: url(../../../images/emma/default/header/menu_bg.gif?build31910) left top no-repeat;
- vertical-align: middle;
- line-height: 15px;
-}
-
-.aw-emma-header-menu a.crt {
- color: #fff;
- background: url(../../../images/emma/default/header/menu_bg_over.gif?build31910) left top no-repeat;
-}
-
-.aw-emma-header-menu a:hover {
- color: #fff;
- background: url(../../../images/emma/default/header/menu_bg_over.gif?build31910) left top no-repeat;
-}*/
-
-/*
- * ヘッダメニュー「サイト管理」のA要素
- */
-.aw-emma-header-menu-hlinks-li-site a,
-.aw-emma-header-menu-hlinks-li-site a:link,
-.aw-emma-header-menu-hlinks-li-site a:active,
-.aw-emma-header-menu-hlinks-li-site a:visited {
- color:#ffffff;
- width: 60px;
- height: 50px;
- display: block;
- overflow: hidden;
- line-height:80px;
- background: URL(../../../images/common/icon/object/site30.gif?build31910) center top no-repeat;
-}
-.aw-emma-header-menu-hlinks-li-site a:hover {
- color:#e16745;
- text-decoration:none;
- width: 60px;
- height: 50px;
- display: block;
- overflow: hidden;
- background: URL(../../../images/common/icon/object/site30.gif?build31910) center top no-repeat;
-}
-
-/*
- * ヘッダメニュー「アカウント管理」のA要素
- */
-.aw-emma-header-menu-hlinks-li-account a,
-.aw-emma-header-menu-hlinks-li-account a:link,
-.aw-emma-header-menu-hlinks-li-account a:active,
-.aw-emma-header-menu-hlinks-li-account a:visited {
- color:#ffffff;
- width: 80px;
- height: 50px;
- display: block;
- overflow: hidden;
- line-height:80px;
- background: URL(../../../images/common/icon/object/user30.gif?build31910) center top no-repeat;
-}
-.aw-emma-header-menu-hlinks-li-account a:hover {
- color:#e16745;
- text-decoration:none;
- width: 80px;
- height: 50px;
- display: block;
- overflow: hidden;
- background: URL(../../../images/common/icon/object/user30.gif?build31910) center top no-repeat;
-}
-
-/*
- * ヘッダメニュー「組織管理」のA要素
- */
-.aw-emma-header-menu-hlinks-li-unit a,
-.aw-emma-header-menu-hlinks-li-unit a:link,
-.aw-emma-header-menu-hlinks-li-unit a:active,
-.aw-emma-header-menu-hlinks-li-unit a:visited {
- color:#ffffff;
- width: 55px;
- height: 50px;
- display: block;
- overflow: hidden;
- line-height:80px;
- background: URL(../../../images/common/icon/object/unit30.gif?build31910) center top no-repeat;
-}
-.aw-emma-header-menu-hlinks-li-unit a:hover {
- color:#e16745;
- text-decoration:none;
- width: 55px;
- height: 50px;
- display: block;
- overflow: hidden;
- background: URL(../../../images/common/icon/object/unit30.gif?build31910) center top no-repeat;
-}
-
-/*
- * ヘッダメニュー「回付ルール管理」のA要素
- */
-.aw-emma-header-menu-hlinks-li-rule a,
-.aw-emma-header-menu-hlinks-li-rule a:link,
-.aw-emma-header-menu-hlinks-li-rule a:active,
-.aw-emma-header-menu-hlinks-li-rule a:visited {
- color:#ffffff;
- width: 90px;
- height: 50px;
- display: block;
- overflow: hidden;
- line-height:80px;
- background: URL(../../../images/common/icon/object/rule30.gif?build31910) center top no-repeat;
-}
-.aw-emma-header-menu-hlinks-li-rule a:hover {
- color:#e16745;
- text-decoration:none;
- width: 90px;
- height: 50px;
- display: block;
- overflow: hidden;
- background: URL(../../../images/common/icon/object/rule30.gif?build31910) center top no-repeat;
-}
-
-/*
- * ヘッダメニュー「フォーム管理」のA要素
- */
-.aw-emma-header-menu-hlinks-li-form a,
-.aw-emma-header-menu-hlinks-li-form a:link,
-.aw-emma-header-menu-hlinks-li-form a:active,
-.aw-emma-header-menu-hlinks-li-form a:visited {
- color:#ffffff;
- width: 70px;
- height: 50px;
- display: block;
- overflow: hidden;
- line-height:80px;
- background: URL(../../../images/common/icon/object/form30.gif?build31910) center top no-repeat;
-}
-.aw-emma-header-menu-hlinks-li-form a:hover {
- color:#e16745;
- text-decoration:none;
- width: 70px;
- height: 50px;
- display: block;
- overflow: hidden;
- background: URL(../../../images/common/icon/object/form30.gif?build31910) center top no-repeat;
-}
-
-/*
- * ヘッダメニュー「公開管理」のA要素
- */
-.aw-emma-header-menu-hlinks-li-public a,
-.aw-emma-header-menu-hlinks-li-public a:link,
-.aw-emma-header-menu-hlinks-li-public a:active,
-.aw-emma-header-menu-hlinks-li-public a:visited {
- color:#ffffff;
- width: 55px;
- height: 50px;
- display: block;
- overflow: hidden;
- line-height:80px;
- background: URL(../../../images/common/icon/object/pubfolder_open30.gif?build31910) center top no-repeat;
-}
-.aw-emma-header-menu-hlinks-li-public a:hover {
- color:#e16745;
- text-decoration:none;
- width: 55px;
- height: 50px;
- display: block;
- overflow: hidden;
- background: URL(../../../images/common/icon/object/pubfolder_open30.gif?build31910) center top no-repeat;
-}
-
-
-/*
- * ヘッダメニュー「書類管理」のA要素
- */
-.aw-emma-header-menu-hlinks-li-doc a,
-.aw-emma-header-menu-hlinks-li-doc a:link,
-.aw-emma-header-menu-hlinks-li-doc a:active,
-.aw-emma-header-menu-hlinks-li-doc a:visited {
- color:#ffffff;
- width: 60px;
- height: 50px;
- display: block;
- overflow: hidden;
- line-height:80px;
- background: URL(../../../images/common/icon/object/docman30.gif?build31910) center top no-repeat;
-}
-.aw-emma-header-menu-hlinks-li-doc a:hover {
- color:#e16745;
- text-decoration:none;
- width: 60px;
- height: 50px;
- display: block;
- overflow: hidden;
- background: URL(../../../images/common/icon/object/docman30.gif?build31910) center top no-repeat;
-}
-
-/*
- * ヘッダメニュー「ツール」のA要素
- */
-.aw-emma-header-menu-hlinks-li-tool a,
-.aw-emma-header-menu-hlinks-li-tool a:link,
-.aw-emma-header-menu-hlinks-li-tool a:active,
-.aw-emma-header-menu-hlinks-li-tool a:visited {
- color:#ffffff;
- width: 50px;
- height: 50px;
- display: block;
- overflow: hidden;
- line-height:80px;
- background: URL(../../../images/common/icon/object/tool30.gif?build31910) center top no-repeat;
-}
-.aw-emma-header-menu-hlinks-li-tool a:hover {
- color:#e16745;
- text-decoration:none;
- width: 50px;
- height: 50px;
- display: block;
- overflow: hidden;
- background: URL(../../../images/common/icon/object/tool30.gif?build31910) center top no-repeat;
-}
-
-/*
- * ヘッダメニュー「アドオン管理」のA要素
- */
-.aw-emma-header-menu-hlinks-li-addon a,
-.aw-emma-header-menu-hlinks-li-addon a:link,
-.aw-emma-header-menu-hlinks-li-addon a:active,
-.aw-emma-header-menu-hlinks-li-addon a:visited {
- color:#ffffff;
- width: 65px;
- height: 50px;
- display: block;
- overflow: hidden;
- line-height:80px;
- background: URL(../../../images/common/icon/object/addon30.gif?build31910) center top no-repeat;
-}
-.aw-emma-header-menu-hlinks-li-addon a:hover {
- color:#e16745;
- text-decoration:none;
- width: 65px;
- height: 50px;
- display: block;
- overflow: hidden;
- background: URL(../../../images/common/icon/object/addon30.gif?build31910) center top no-repeat;
-}
-
-/*
- * ヘッダとコンテンツを区切るバー
- */
-.aw-emma-headerbar {
- clear: both;
- height: 12px;
- margin: 0px;
- padding: 0px;
- background: url(../../../images/emma/default/header/bar_bg.gif?build31910) left repeat-x #fff;
- font-size:0px;
-}
-
-/*
- * ヘッダとコンテンツを区切るバー
- */
-.aw-emma-headerbar-standby {
- clear: both;
- height: 12px;
- margin: 0px;
- padding: 0px;
- background: url(../../../images/emma/default/header/bar_bg_standby.gif?build31910) left repeat-x #fff;
- font-size:0px;
-}
-
-/*
- * ワークベンチレイヤー
- */
-.aw-emma-workbench {
- position:absolute;
- width:250px;
-}
-
-/*
- * タブレイヤー
- */
-.aw-emma-tabs {
- height:30px;
- padding-left:10px;
- background-color:#333333;
- font-size:12px;
-}
-
-.aw-emma-menu {
- height: 38px;
- margin: 0px;
- padding-left:10px;
-}
-
-.aw-emma-func {
- height:30px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#808080;
- background-image:url('../../../images/emma/default/background/func_bg.gif?build31910');
-}
-
-.aw-emma-menubar-layer {
- height:30px;
- display:inline;
- float:left;
-}
-
-.aw-emma-menubar {
-
-}
-
-.aw-emma-contents {
- padding:5px;
-}
-
-.aw-emma-page {
- position:relative;
- top:0px;
- left:250px;
- width:10px;
- height:10px;
- overflow:hidden;
-}
-
-/*
- * ドラッグオブジェクト
- */
-.aw-dragger {
- position: absolute;
- cursor: col-resize;
- border-style: solid;
- filter:alpha(opacity=00);
- -moz-opacity:0;
- opacity:0;
- z-index: 1;
-}
-
-/*
- * ドラッグオブジェクト(ドラッグ中)
- */
-.aw-dragger-dragging {
- position: absolute;
- cursor: col-resize;
- border-style: solid;
- border-color: #242b32;
- z-index: 1;
-}
-
-/*
- * インフォメーション
- */
-.aw-info {
- margin:10px 0px 10px 0px;
- padding:10px 0px 10px 30px;
- background-color:#ffffd5;
- background-image:url(../../../images/common/icon/etc/info20.gif?build31910);
- background-repeat:no-repeat;
- background-position:5px center;
-}
-
-/*
- * Table 風表示: キャプション部
- */
-.aw-emma-form .caption {
- margin: 0px;
- padding: 6px 2px;
- vertical-align: middle;
- color: #444444;
- border-top: 1px solid #aaaaaa;
- border-bottom: 1px solid #aaaaaa;
- text-align: left;
- font-weight: bold;
- background: url('../../../images/emma/default/background/table_header_bg.gif?build31910') bottom repeat-x #ebebeb;
-}
-
-/*
- * Table 風表示: 値部
- */
-.aw-emma-form .content {
- margin: 0px;
- padding: 1px 2px;
- vertical-align: middle;
- color: #444444;
- text-align: left;
-}
diff --git a/AgileWorks/WebContent/css/emma/default/grid-base.css b/AgileWorks/WebContent/css/emma/default/grid-base.css
deleted file mode 100644
index cefd6ca127eb40973f7aaace246570ba2625d1ef..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/emma/default/grid-base.css
+++ /dev/null
@@ -1,159 +0,0 @@
-/*
- * grid-base.css?build31910
- *
- * Gridを描画するために必要なCSSセレクタを定義します
- */
-
-.grid-scroll-layer {
- border-style:solid;
- border-width:1px;
- border-color:#000000;
- position:absolute;
- overflow:scroll;
- outline: 0 !important;
- -webkit-tap-highlight-color: rgba(0,0,0,0);
-}
-
-.grid-scroll-body {
-}
-
-.grid-table-layer {
- background-color:#eeeeee;
- position:relative;
- overflow:hidden;
- top:1px;
- left:1px;
-}
-
-.grid-table {
- table-layout:fixed;
- width:0px;
-}
-
-.grid-col {
-}
-
-.grid-table th {
- background-image: url( '../../../images/emma/default/background/grid_header.gif?build31910' );
-}
-
-.grid-header-th {
- color:#000000;
- font-weight:bold;
- border-style:solid;
- border-width:0px 1px 0px 0px;
- border-color:#aaaaaa;
- white-space:pre;
- word-break:keep-all;
- overflow:hidden;
- text-align:center;
-}
-
-.grid-header-th.fixed {
- border-color:#000000 !important;
-}
-
-.grid-header-th.sort {
- color: #0067ce;
-}
-
-.grid-header-th.record-status {
-}
-
-.grid-header-th.checkbox {
-}
-
-.grid-header-th.radiobutton {
-}
-
-.grid-header-resizediv {
- position: absolute;
- top: 0px;
- border-style: solid;
- border-width: 0px 9px 0px 0px;
- cursor: col-resize;
- filter:alpha(opacity=0);
- -moz-opacity:0;
- opacity:0;
-}
-
-.grid-header-resizediv-dragging {
- position: absolute;
- top: 0px;
- border-style: solid;
- border-width: 0px 3px 0px 0px;
- border-color: #242b32;
- cursor: col-resize;
-}
-
-.grid-header-cell {
- padding:0px 4px 0px 4px;
-}
-
-.grid-tr-current {
- background-color:#242b32;
- color:#ffffff;
- cursor:default;
-}
-
-.grid-tr-current td {
- color:#ffffff;
-}
-
-.grid-tr-select {
- background-color:#5E81BC;
- color:#ffffff;
- cursor:default;
-}
-
-.grid-tr {
- background-color:#ffffff;
- cursor:default;
-}
-
-.grid-tr-even {
- background-color:#f5f5f5;
- cursor:default;
-}
-
-.grid-td {
- border-style:solid;
- border-width:0px 1px 0px 0px;
- border-color:#aaaaaa;
- white-space:pre;
- word-break:keep-all;
- overflow:hidden;
- padding:0px 4px 0px 4px;
- cursor:pointer;
-}
-
-.grid-td.fixed {
- border-color:#000000 !important;
- cursor:pointer;
-}
-
-.grid-td.record-status {
- background-color:#d0d4d9;
- text-align:center;
- padding:0px;
- cursor:default;
-}
-
-.grid-td.checkbox {
- background-color:#d0d4d9;
- text-align:center;
- padding:0px;
- cursor:default;
-}
-
-.grid-td.radiobutton {
- background-color:#d0d4d9;
- text-align:center;
- padding:0px;
- cursor:default;
-}
-
-.grid-td.blank {
- border-width:0px;
- cursor:default;
-}
diff --git a/AgileWorks/WebContent/css/emma/default/grid-ext.css b/AgileWorks/WebContent/css/emma/default/grid-ext.css
deleted file mode 100644
index 5d30134fb065d1a4725ff6838cde4bf5ddddfa65..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/emma/default/grid-ext.css
+++ /dev/null
@@ -1,28 +0,0 @@
-/*
- * grid-ext.css?build31910
- *
- * Gridで利用されるCSSセレクタを定義します
- */
-
-/* 小計行 */
-.grid-tr-subtotal {
- color:#0000ff;
- background-color:#f5f5f5;
- cursor:default;
-}
-
-/* 総計行 */
-.grid-tr-total {
- font-size:15px;
- color:#ff0000;
- font-weight:bold;
- background-color:#cccccc;
- cursor:default;
-}
-
-/* ドリルスルー可能セル - マウスオーバー */
-.grid-td.mouseover {
- color:#ff0000;
- background-color:#ffffcc;
- cursor:pointer;
-}
diff --git a/AgileWorks/WebContent/css/emma/default/layer.css b/AgileWorks/WebContent/css/emma/default/layer.css
deleted file mode 100644
index 269d248f73100955e5c0f4ff21dd9101ff1001d8..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/emma/default/layer.css
+++ /dev/null
@@ -1,146 +0,0 @@
-/*
- * layer.css?build31910
- *
- * Layerを描画するために必要なCSSセレクタを定義します
- */
-
-.layer {
- position:absolute;
-}
-
-/*
- * モーダル用DIV要素に適用されるクラスセレクタ
- */
-.layer-modallayer {
- position:absolute;
- top:0px;
- left:0px;
- width:100%;
- height:100%;
- background-color:#dddddd;
- filter:alpha(opacity=40);
- opacity:0.4;
- -moz-opacity:0.4;
-}
-
-/*
- * ドロップシャドウに適用されるクラスセレクタ
- */
-.layer-dropshadow {
- position: absolute;
- background-image: url('../../../images/common/container/shadow.gif?build31910');
- background-position: right bottom;
-}
-
-/*
- * IFRAME要素に適用されるクラスセレクタ
- */
-.layer-underiframe {
- position:absolute;
- top:0px;
- left:0px;
- width:100%;
- height:100%;
- border:none;
- filter:alpha(opacity=0);
- -moz-opacity:0;
- opacity:0;
-}
-
-/*
- * Layerの描画要素に適用されるクラスセレクタ
- */
-.layer-frame {
- position:absolute;
- border-style:solid;
- border-width:1px;
- border-color:#666666;
- box-shadow: 2px 2px 5px #666666;
- -moz-box-shadow: 2px 2px 5px #666666;
- -webkit-box-shadow: 2px 2px 5px #666666;
-}
-
-/*
- * タイトルバーに適用されるクラスセレクタ
- */
-.layer-titlebar {
- height:30px;
- color:#262e37;
- font-weight:bold;
- overflow:hidden;
- background-image: url( '../../../images/emma/default/background/layer_titlebar_bg.gif?build31910' );
- background-repeat:repeat-x;
-}
-
-/*
- * タイトルバー内のTABLE要素に適用されるクラスセレクタ
- */
-.layer-titlebar-table {
- height:30px;
- padding-left:4px;
-}
-
-/*
- * タイトルバー内のタイトル要素に適用されるクラスセレクタ
- */
-.layer-titlebar-caption {
- overflow : hidden;
-}
-
-/*
- * タイトルバー内のヘルプアイコンのTD要素に適用されるクラスセレクタ
- */
-.layer-titlebar-td-help {
- width:20px;
- text-align:center;
- padding:0px;
- cursor:pointer;
-}
-
-/*
- * タイトルバー内のクローズアイコンのTD要素に適用されるクラスセレクタ
- */
-.layer-titlebar-td-close {
- width:20px;
- text-align:center;
- padding:0px 4px 0px 0px;
- cursor:pointer;
-}
-
-/*
- * ボディに適用されるクラスセレクタ
- */
-.layer-body {
- position:absolute;
- overflow:auto;
- padding:5px;
- background-color:#bfc7cd;
-}
-
-/*
- * メッセージボックスに適用されるクラスセレクタ
- */
-.layer-messagebox-simple {
- font-size:12px;
- font-weight:bold;
- width:200px;
-}
-
-.layer-messagebox-tl{background:transparent url(../../../images/emma/default/background/messagebox-corners.gif?build31910) no-repeat 0 0;zoom:1;}
-.layer-messagebox-tc{height:8px;background:transparent url(../../../images/emma/default/background/messagebox-tb.gif?build31910) repeat-x 0 0;overflow:hidden;}
-.layer-messagebox-tr{background:transparent url(../../../images/emma/default/background/messagebox-corners.gif?build31910) no-repeat right -8px;}
-.layer-messagebox-ml{background:transparent url(../../../images/emma/default/background/messagebox-l.gif?build31910) repeat-y 0;padding-left:4px;overflow:hidden;zoom:1;}
-.layer-messagebox-mc{background:#eee url(../../../images/emma/default/background/messagebox-tb.gif?build31910) repeat-x 0 -16px;padding:4px 10px;font-family:"Myriad Pro","Myriad Web","Tahoma","Helvetica","Arial",sans-serif;color:#393939;font-size:12px;}
-.layer-messagebox-mc h3{font-size:14px;font-weight:bold;margin:0 0 4 0;zoom:1;}
-.layer-messagebox-mr{background:transparent url(../../../images/emma/default/background/messagebox-r.gif?build31910) repeat-y right;padding-right:4px;overflow:hidden;}
-.layer-messagebox-bl{background:transparent url(../../../images/emma/default/background/messagebox-corners.gif?build31910) no-repeat 0 -16px;zoom:1;}
-.layer-messagebox-bc{background:transparent url(../../../images/emma/default/background/messagebox-tb.gif?build31910) repeat-x 0 -8px;height:8px;overflow:hidden;}
-.layer-messagebox-br{background:transparent url(../../../images/emma/default/background/messagebox-corners.gif?build31910) no-repeat right -24px;}
-.layer-messagebox-tl,.layer-messagebox-bl{padding-left:8px;overflow:hidden;}
-.layer-messagebox-tr,.layer-messagebox-br{padding-right:8px;overflow:hidden;}
-.layer-messagebox-blue .layer-messagebox-bl,.layer-messagebox-blue .layer-messagebox-br,.layer-messagebox-blue .layer-messagebox-tl,.layer-messagebox-blue .layer-messagebox-tr{background-image:url(../../../images/emma/default/background/messagebox-corners-blue.gif?build31910);}
-.layer-messagebox-blue .layer-messagebox-bc,.layer-messagebox-blue .layer-messagebox-mc,.layer-messagebox-blue .layer-messagebox-tc{background-image:url(../../../images/emma/default/background/messagebox-tb-blue.gif?build31910);}
-.layer-messagebox-blue .layer-messagebox-mc{background-color:#c3daf9;}
-.layer-messagebox-blue .layer-messagebox-mc h3{color:#17385b;}
-.layer-messagebox-blue .layer-messagebox-ml{background-image:url(../../../images/emma/default/background/messagebox-l-blue.gif?build31910);}
-.layer-messagebox-blue .layer-messagebox-mr{background-image:url(../../../images/emma/default/background/messagebox-r-blue.gif?build31910);}
diff --git a/AgileWorks/WebContent/css/emma/default/menu-base.css b/AgileWorks/WebContent/css/emma/default/menu-base.css
deleted file mode 100644
index d7a54afaa6300697c2090c3c8ce4628afe8d632c..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/emma/default/menu-base.css
+++ /dev/null
@@ -1,57 +0,0 @@
-.menubar {
- color:#000000;
-}
-
-.menubar .topmenu {
- height:28px;
-}
-
-.menubar .topmenu ul {
- margin:0px;
- padding:0px;
-}
-
-.menubar .topmenu li {
- float:left;
- list-style-type:none;
- margin:0px;
- line-height:22px;
- padding: 3px 5px 3px 22px;
-}
-
-.menubar .submenu {
- background-color:#ffffff;
- border-style:solid;
- border-width:1px;
- border-color:#aaaaaa;
-}
-
-.menubar .submenu ul {
- margin:0px;
- padding:0px;
- overflow:hidden;
-}
-
-.menubar .submenu li {
- list-style-type:none;
- margin:0px;
- padding:0px;
- line-height:22px;
- padding: 1px 5px 1px 22px;
- white-space:pre;
- word-break:keep-all;
-}
-
-.menubar .menuitem.menuover {
- background-color:#dddddd;
- cursor:pointer;
-}
-
-.menubar .menuitem.menudisabled {
- color:#aaaaaa;
-}
-
-.menubar .topmenu .menuitem-terminate {
- float:none;
- clear:both;
-}
diff --git a/AgileWorks/WebContent/css/emma/default/pagination.css b/AgileWorks/WebContent/css/emma/default/pagination.css
deleted file mode 100644
index c805f8efd4ae148ae6bf1ca41e85a5160f999afe..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/emma/default/pagination.css
+++ /dev/null
@@ -1,29 +0,0 @@
-.page {
- border-style:solid;
- border-width:1px;
- border-color:#aaaaaa;
- padding:2px 4px 2px 4px;
- margin:0px 2px 0px 2px;
- cursor:pointer;
-}
-
-.currentpage {
- border-style:solid;
- border-width:1px;
- border-color:#aaaaaa;
- padding:2px 4px 2px 4px;
- margin:0px 2px 0px 2px;
- background-color:#242b32;
- color:#ffffff;
-}
-
-.overpage {
- border-style:solid;
- border-width:1px;
- border-color:#aaaaaa;
- padding:2px 4px 2px 4px;
- margin:0px 2px 0px 2px;
- background-color:#ffffff;
- color:#000000;
- cursor:pointer;
-}
diff --git a/AgileWorks/WebContent/css/emma/default/tabs.css b/AgileWorks/WebContent/css/emma/default/tabs.css
deleted file mode 100644
index 0021c6c314e8e53c10e6cc254bbafe5d41cf8f7e..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/emma/default/tabs.css
+++ /dev/null
@@ -1,110 +0,0 @@
-
-.tabs-layer {
- overflow:hidden;
- height:30px;
- font-size:12px;
-}
-
-.tabs-maintable {
-}
-
-.tabs-table {
- height:29px;
- margin-top:1px;
-}
-
-.tabs-item {
- height:28px;
- border-style:solid;
- border-width:1px 1px 0px 1px;
- border-color:#aaaaaa;
- background-color:#aaaaaa;
- color:#444444;
- padding:0px 10px 0px 10px;
- white-space:nowrap;
- background-image: url( '../../../images/emma/default/background/tab_bg.gif?build31910' );
- font-weight:bold;
-}
-
-.tabs-item a {
- color:#444444;
-}
-
-.tabs-item a:link {
- color:#444444;
-}
-
-.tabs-item a:active {
- color:#444444;
-}
-
-.tabs-item a:visited {
- color:#444444;
-}
-
-.tabs-item-mouseover {
- height:28px;
- background-color:#ffffff;
- border-style:solid;
- border-width:1px 1px 0px 1px;
- border-color:#aaaaaa;
- color:#444444;
- padding:0px 10px 0px 10px;
- white-space:nowrap;
- font-weight:bold;
-}
-
-.tabs-item-mouseover a {
- color:#444444;
-}
-
-.tabs-item-mouseover a:link {
- color:#444444;
-}
-
-.tabs-item-mouseover a:active {
- color:#444444;
-}
-
-.tabs-item-mouseover a:visited {
- color:#444444;
-}
-
-.tabs-blank {
- padding:0px 5px 0px 5px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#aaaaaa;
-}
-
-.tabs-last {
- width: 100%;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#aaaaaa;
-}
-
-.tabs-leftarrow {
- width:30px;
- background-image:url( '../../../images/emma/default/background/tabs-leftarrow.gif?build31910' );
- background-repeat:no-repeat;
- background-position:0px 2px;
- cursor:pointer;
-}
-
-.tabs-rightarrow {
- width:30px;
- background-image:url( '../../../images/emma/default/background/tabs-rightarrow.gif?build31910' );
- background-repeat:no-repeat;
- background-position:2px 2px;
- cursor:pointer;
-}
-
-.tabs-page {
- background-color:#eeeeee;
- border-style:solid;
- border-width:0px 1px 1px 1px;
- border-color:#aaaaaa;
- padding:4px;
- overflow:auto;
-}
diff --git a/AgileWorks/WebContent/css/emma/default/theme.css b/AgileWorks/WebContent/css/emma/default/theme.css
deleted file mode 100644
index f692640791fe042d3e6cf0c5c98c2a5c31cf2233..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/emma/default/theme.css
+++ /dev/null
@@ -1,15 +0,0 @@
-.aw-menubar {
- height:30px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#808080;
- background-image:url('../../../images/emma/default/background/func_bg.gif?build31910');
-}
-
-.aw-menubar2 {
- height:30px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#808080;
- background-image:url('../../../images/emma/default/background/func_bg.gif?build31910');
-}
diff --git a/AgileWorks/WebContent/css/emma/default/tree-ext.css b/AgileWorks/WebContent/css/emma/default/tree-ext.css
deleted file mode 100644
index df6efa807db725ac5cfada17df2cdab7435584fa..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/emma/default/tree-ext.css
+++ /dev/null
@@ -1,7 +0,0 @@
-.ygtvtd_current {
- background-color:#697683;
- border-style:solid;
- border-width:1px;
- border-color:#000000;
- padding:0px 0px 0px 0px;
-}
diff --git a/AgileWorks/WebContent/css/emma/default/workbench.css b/AgileWorks/WebContent/css/emma/default/workbench.css
deleted file mode 100644
index 672c3682b34d8a70ad8df3c82c020f3c871144c3..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/emma/default/workbench.css
+++ /dev/null
@@ -1,71 +0,0 @@
-
-.workbench-layer {
- border-style:outset;
- border-width:0px 1px 0px 0px;
- border-color:#333333;
- white-space:nowrap;
-}
-
-/* ワークベンチメニュー:オリジナル */
-.workbench-item {
- width:240px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#666666;
- overflow:hidden;
- background-image: url( '../../../images/emma/default/background/workbench_item.gif?build31910' );
- font-weight: bold;
- line-height:30px;
- color:#000000;
- cursor:pointer;
- padding-left: 10px;
- font-size:120%;
-}
-
-.workbench-item-current {
- width:240px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#666666;
- overflow:hidden;
- background-image: url( '../../../images/emma/default/background/workbench_item.gif?build31910' );
- font-weight: bold;
- line-height:30px;
- color:#000000;
- cursor:pointer;
- padding-left: 10px;
- font-size:120%;
-}
-
-.workbench-item-mouseover {
- width:240px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#666666;
- overflow:hidden;
- background-image: url( '../../../images/emma/default/background/workbench_item_over.gif?build31910' );
- font-weight: bold;
- line-height:30px;
- color:#ffffff;
- cursor:pointer;
- padding-left: 10px;
- font-size:120%;
-}
-
-.workbench-content {
- width:230px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#666666;
- overflow:auto;
- padding:10px;
-}
-
-.workbench-content-control {
- width:224px;
- background-color:#ffffff;
- border-style:solid;
- border-width:3px;
- border-color:#aaaaaa;
- overflow:auto;
-}
diff --git a/AgileWorks/WebContent/css/emma/iceBerg.css b/AgileWorks/WebContent/css/emma/iceBerg.css
deleted file mode 100644
index 64b3d6ca83474285918e9cc479d2cd4c6f31aa52..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/emma/iceBerg.css
+++ /dev/null
@@ -1,5 +0,0 @@
-@import url(../common/common.css?build31910);
-
-@import url(../livehtml/livehtml.css?build31910);
-
-@import url(./iceBerg/iceBerg.css?build31910);
diff --git a/AgileWorks/WebContent/css/emma/iceBerg/base.css b/AgileWorks/WebContent/css/emma/iceBerg/base.css
deleted file mode 100644
index df63418cce4c0151ad3e518183c92bea748efe04..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/emma/iceBerg/base.css
+++ /dev/null
@@ -1,52 +0,0 @@
-html {
- height: 100%;
-}
-
-a:link {
- text-decoration:none;
- color:#1851E7;
-}
-
-a:active {
- text-decoration:none;
- color:#1851E7;
-}
-
-a:visited {
- text-decoration:none;
- color:#1851E7;
-}
-
-a:hover {
- text-decoration:underline;
- color:#e16745;
-}
-
-body {
- font-size:75%;
- background-color:#cfd5da;
- font-family:Arial, sans-serif;
- margin: 0px;
- height: 100%;
-}
-
-input {
- font-family:Arial, sans-serif;
-}
- input[type=text] {
- margin:0px;
- }
-
-button {
- font-family:Arial, sans-serif;
- margin:0px;
-}
-
-select {
- margin:0px;
-}
-
-textarea {
- font-size: 12px;
- margin:0px;
-}
diff --git a/AgileWorks/WebContent/css/emma/iceBerg/common.css b/AgileWorks/WebContent/css/emma/iceBerg/common.css
deleted file mode 100644
index c684796a6045144b693901acb32311744570fcee..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/emma/iceBerg/common.css
+++ /dev/null
@@ -1,120 +0,0 @@
-.aw-common-func {
- height:30px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#808080;
- background-image:url('../../../images/emma/default/background/func_bg.gif?build31910');
-}
-
-.aw-common-menubar-layer {
- height:30px;
- display:inline;
- float:left;
-}
-
-.aw-common-table {
- width: 100%;
- margin: 0px;
- padding: 0px;
- border-collapse: collapse;
- background: #fff;
-}
-
-.aw-common-table th {
- margin: 0px;
- padding: 1px 1px 1px 2px;
- height: 24px;
- vertical-align: middle;
- color: #444444;
- border: 1px solid #aaaaaa;
- text-align: left;
- background: url('../../../images/emma/default/background/table_header_bg.gif?build31910') bottom repeat-x #ebebeb;
-}
-
-.aw-common-table th.caption {
- margin: 0px;
- padding: 10px;
- vertical-align: middle;
- color: #444444;
- border: 1px solid #aaaaaa;
- text-align: center;
- background: url('../../../images/emma/default/background/table_caption_bg.gif?build31910') center repeat-x;
-}
-
-.aw-common-table td {
- margin: 0px;
- padding: 1px 1px 1px 2px;
- height: 24px;
- vertical-align: middle;
- color: #444444;
- border: 1px solid #aaaaaa;
- text-align: left;
-}
-
-/* テーブル(内部) */
-.aw-common-table table.inner {
- width: 98%;
- margin: 0px;
- padding: 0px;
- border-collapse: collapse;
-}
-
-.aw-common-table table.inner td {
- margin: 0px;
- padding: 5px 5px 5px 0px;
- border: none;
- text-align: left;
-}
-
-.aw-common-table table.inner td.uline {
- border-bottom: 1px dotted #aaa;
-}
-
-/* 偶数行色指定(TR) */
-.aw-common-table .even {
- background: #f5f5f5;
-}
-
-/* マーカー指定(SPAN) */
-.aw-common-table .ar01 {
- padding: 0px 0px 0px 12px;
- background: url('../../../images/emma/default/icon/arrow01.gif?build31910') left center no-repeat;
-}
-
-.aw-common-table-unurged {
- width: 100%;
- margin: 0px;
- padding: 0px;
- border-collapse: collapse;
- background: #fff;
-}
-
-.aw-common-table-unurged th.label {
- margin: 0px;
- padding: 1px 1px 1px 2px;
- height: 24px;
- vertical-align: middle;
- color: #444444;
- border: 1px solid #aaaaaa;
- text-align: left;
- background: url('../../../images/emma/default/background/table_header_bg.gif?build31910') bottom repeat-x #ebebeb;
-}
-
-.aw-common-table-unurged th.caption {
- margin: 0px;
- padding: 10px;
- vertical-align: middle;
- color: #444444;
- border: 1px solid #aaaaaa;
- text-align: center;
- background: url('../../../images/emma/default/background/table_caption_bg.gif?build31910') center repeat-x;
-}
-
-.aw-common-table-unurged td.item {
- margin: 0px;
- padding: 1px 1px 1px 2px;
- vertical-align: middle;
- color: #444444;
- border: 1px solid #aaaaaa;
- text-align: left;
-}
diff --git a/AgileWorks/WebContent/css/emma/iceBerg/contents.css b/AgileWorks/WebContent/css/emma/iceBerg/contents.css
deleted file mode 100644
index 29138f0123fc2705895485c4b5f0a0dfb79a4656..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/emma/iceBerg/contents.css
+++ /dev/null
@@ -1,52 +0,0 @@
-.contents-header {
- height:30px;
-}
-
-.contents-main {
- background: #efefef;
- border-style:solid;
- border-width:1px;
- border-color:#cbcbcb;
- padding: 10px;
- overflow: auto;
-}
-
-.contents-main .caption {
- border-bottom:2px solid #aaa;
- margin-bottom:10px;
- font-weight:bold;
- padding:2px;
-}
-
-.contents-main th {
- font-weight:bold;
- color: #444444;
-}
-
-.contents-main td.item {
- border-bottom:1px solid #aaa;
-}
-
-.contents-main th.header {
- border-bottom: 2px solid #aaa;
-}
-
-.contents-main td {
- color: #444444;
-}
-
-.contents-main td.indent1 {
- padding-left:30px;
-}
-
-.contents-header-table {
- border-collapse:collapse;
- border-spacing:0px;
- margin-bottom:5px;
- width:100%;
- height:25px;
-}
-
-.contents-header-table .count {
- color : #ff0000;
-}
diff --git a/AgileWorks/WebContent/css/emma/iceBerg/emma-table.css b/AgileWorks/WebContent/css/emma/iceBerg/emma-table.css
deleted file mode 100644
index 9c8a07869d9e898729236b423506a1b03e968590..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/emma/iceBerg/emma-table.css
+++ /dev/null
@@ -1,113 +0,0 @@
-/*
- * emma-table.css?build31910
- *
- * アプリケーション「EMMA」で使用されるテーブル関連のCSSセレクタを定義します
- */
-
-.aw-emma-table {
- width: 100%;
- margin: 0px;
- padding: 0px;
- border-collapse: collapse;
- background: #fff;
-}
-
-.aw-emma-table th {
- margin: 0px;
- padding: 1px 1px 1px 2px;
- height: 24px;
- vertical-align: middle;
- color: #444444;
- border: 1px solid #aaaaaa;
- text-align: left;
- background: url('../../../images/emma/default/background/table_header_bg.gif?build31910') bottom repeat-x #ebebeb;
-}
-
-.aw-emma-table th.caption {
- margin: 0px;
- padding: 10px;
- vertical-align: middle;
- color: #444444;
- border: 1px solid #aaaaaa;
- text-align: center;
- background: url('../../../images/emma/default/background/table_caption_bg.gif?build31910') center repeat-x;
-}
-
-.aw-emma-table td {
- margin: 0px;
- padding: 1px 1px 1px 2px;
- height: 24px;
- vertical-align: middle;
- color: #444444;
- border: 1px solid #aaaaaa;
- text-align: left;
-}
-
-/* テーブル(内部) */
-.aw-emma-table table.inner {
- width: 98%;
- margin: 0px;
- padding: 0px;
- border-collapse: collapse;
-}
-
-.aw-emma-table table.inner td {
- margin: 0px;
- padding: 5px 5px 5px 0px;
- border: none;
- text-align: left;
-}
-
-.aw-emma-table table.inner td.uline {
- border-bottom: 1px dotted #aaa;
-}
-
-/* 偶数行色指定(TR) */
-.aw-emma-table .even {
- background: #f5f5f5;
-}
-
-/* マーカー指定(SPAN) */
-.aw-emma-table .ar01 {
- padding: 0px 0px 0px 12px;
- background: url('../../../images/emma/default/icon/arrow01.gif?build31910') left center no-repeat;
-}
-
-.aw-emma-table-unurged {
- width: 100%;
- margin: 0px;
- padding: 0px;
- border-collapse: collapse;
- background: #fff;
-}
-
-.aw-emma-table-unurged th.label {
- margin: 0px;
- padding: 1px 1px 1px 2px;
- height: 24px;
- vertical-align: middle;
- color: #444444;
- border: 1px solid #aaaaaa;
- text-align: left;
- background: url('../../../images/emma/default/background/table_header_bg.gif?build31910') bottom repeat-x #ebebeb;
-}
-
-.aw-emma-table-unurged th.caption {
- margin: 0px;
- padding: 10px;
- vertical-align: middle;
- color: #444444;
- border: 1px solid #aaaaaa;
- text-align: center;
- background: url('../../../images/emma/default/background/table_caption_bg.gif?build31910') center repeat-x;
-}
-
-.aw-emma-table-unurged td.item {
- margin: 0px;
- padding: 1px 1px 1px 2px;
- height: 24px;
- vertical-align: middle;
- color: #444444;
- border: 1px solid #aaaaaa;
- text-align: left;
-}
diff --git a/AgileWorks/WebContent/css/emma/iceBerg/emma.css b/AgileWorks/WebContent/css/emma/iceBerg/emma.css
deleted file mode 100644
index 2717a07381bf0d2f4d5cad03087628ea659a0c3d..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/emma/iceBerg/emma.css
+++ /dev/null
@@ -1,538 +0,0 @@
-/*
- * emma.css?build31910
- *
- * アプリケーション「EMMA」で使用されるCSSセレクタを定義します
- */
-
-/*
- * ヘッダ
- */
-.aw-emma-header {
- height: 59px;
- margin: 0px;
- padding: 0px;
- border: 0px;
- background-color:#242b32;
-}
-
-/*
- * ヘッダ左部
- */
-.aw-emma-header-left {
- float: left;
- margin: 0px;
- padding: 0px 67px 0px 0px;
- overflow: hidden;
-}
-
-/*
- * ヘッダ左部のロゴ画像
- */
-.aw-emma-header-left img {
- padding: 0px;
- border: none;
- width: 183px;
- height: 59px;
-}
-
-/*
- * ヘッダ右部
- */
-.aw-emma-header-right {
- float: right;
- margin: 0px 0px 0px 0px;
- padding: 0px 0px 0px 5px;
- color:#666666;
- font-size:12px;
- background-color: #242b32;
-}
-
-/*
- * ヘッダ右部のアカウント情報
- */
-.aw-emma-header-right-account {
- float:left;
- padding:0px 10px 2px 0px;
- display: inline;
- background-color: #242b32;
- color:#ffffff;
-}
-
-/*
- * ヘッダ右部のリンク
- */
-.aw-emma-header-right-link {
- float: left;
-}
-
-/*
- * ヘッダ右部のリンクで使用されるUL要素
- */
-.aw-emma-header-right-link ul {
- margin: 0px;
- padding: 2px;
- list-style: none;
- background-color: #242b32;
-}
-
-/*
- * ヘッダ右部のリンクで使用されるLI要素
- */
-.aw-emma-header-right-link li {
- margin: 0px;
- padding: 0px 5px 0px 0px;
- display: inline;
-}
-
-/*
- * ヘッダ右部のリンクで使用されるA要素
- */
-.aw-emma-header-right-link a { color: #ffffff; text-decoration:underline; }
-.aw-emma-header-right-link a:link { color: #ffffff; text-decoration:underline; }
-.aw-emma-header-right-link a:active { color: #ffffff; text-decoration:underline; }
-.aw-emma-header-right-link a:visited { color: #ffffff; text-decoration:underline; }
-.aw-emma-header-right-link a:hover { color: #ffffff; text-decoration:underline; }
-
-/*
- * ヘッダメニュー
- */
-.aw-emma-header-menu {
- margin: 0px;
- padding: 7px 0px 0px 0px;
- font-size: 12px;
- text-align: center;
-}
-
-/*
- * ヘッダメニューで使用されるUL要素
- */
-.aw-emma-header-menu ul {
- list-style: none;
- margin: 0px;
- padding: 0px;
-}
-
-/*
- * ヘッダメニューで使用されるLI要素
- */
-.aw-emma-header-menu li {
- float: left;
- margin: 0px 2px 0px 0px;
- padding: 0px;
- white-space: nowrap;
- /*
- border-top: 1px solid #273038;
- border-left: 1px solid #273038;
- border-right: 1px solid #273038;
- */
-}
-
-.aw-emma-header-menu a {
- outline: 0;
-}
-
-/*
- * ヘッダメニューのセパレータに当たるLI要素
- */
-.aw-emma-header-menu-hlinks-separator {
- display:none;
-}
-
-/*
- * ヘッダメニューのA要素に適用されるクラスセレクタ
- */
-/*
-.aw-emma-header-menu a,
-.aw-emma-header-menu a:link,
-.aw-emma-header-menu a:active,
-.aw-emma-header-menu a:visited,
-.aw-emma-header-menu a.crt {
- width: 100px;
- height: 20px;
- margin: 0px;
- padding: 5px 5px 0px 5px;
- display: block;
- color: #333;
- font-weight: bold;
- text-decoration: none;
- background: url(../../../images/emma/default/header/menu_bg.gif?build31910) left top no-repeat;
- vertical-align: middle;
- line-height: 15px;
-}
-
-.aw-emma-header-menu a.crt {
- color: #fff;
- background: url(../../../images/emma/default/header/menu_bg_over.gif?build31910) left top no-repeat;
-}
-
-.aw-emma-header-menu a:hover {
- color: #fff;
- background: url(../../../images/emma/default/header/menu_bg_over.gif?build31910) left top no-repeat;
-}*/
-
-/*
- * ヘッダメニュー「サイト管理」のA要素
- */
-.aw-emma-header-menu-hlinks-li-site a,
-.aw-emma-header-menu-hlinks-li-site a:link,
-.aw-emma-header-menu-hlinks-li-site a:active,
-.aw-emma-header-menu-hlinks-li-site a:visited {
- color:#ffffff;
- width: 60px;
- height: 50px;
- display: block;
- overflow: hidden;
- line-height:80px;
- background: URL(../../../images/common/icon/object/site30.gif?build31910) center top no-repeat;
-}
-.aw-emma-header-menu-hlinks-li-site a:hover {
- color:#e16745;
- text-decoration:none;
- width: 60px;
- height: 50px;
- display: block;
- overflow: hidden;
- background: URL(../../../images/common/icon/object/site30.gif?build31910) center top no-repeat;
-}
-
-/*
- * ヘッダメニュー「アカウント管理」のA要素
- */
-.aw-emma-header-menu-hlinks-li-account a,
-.aw-emma-header-menu-hlinks-li-account a:link,
-.aw-emma-header-menu-hlinks-li-account a:active,
-.aw-emma-header-menu-hlinks-li-account a:visited {
- color:#ffffff;
- width: 80px;
- height: 50px;
- display: block;
- overflow: hidden;
- line-height:80px;
- background: URL(../../../images/common/icon/object/user30.gif?build31910) center top no-repeat;
-}
-.aw-emma-header-menu-hlinks-li-account a:hover {
- color:#e16745;
- text-decoration:none;
- width: 80px;
- height: 50px;
- display: block;
- overflow: hidden;
- background: URL(../../../images/common/icon/object/user30.gif?build31910) center top no-repeat;
-}
-
-/*
- * ヘッダメニュー「組織管理」のA要素
- */
-.aw-emma-header-menu-hlinks-li-unit a,
-.aw-emma-header-menu-hlinks-li-unit a:link,
-.aw-emma-header-menu-hlinks-li-unit a:active,
-.aw-emma-header-menu-hlinks-li-unit a:visited {
- color:#ffffff;
- width: 55px;
- height: 50px;
- display: block;
- overflow: hidden;
- line-height:80px;
- background: URL(../../../images/common/icon/object/unit30.gif?build31910) center top no-repeat;
-}
-.aw-emma-header-menu-hlinks-li-unit a:hover {
- color:#e16745;
- text-decoration:none;
- width: 55px;
- height: 50px;
- display: block;
- overflow: hidden;
- background: URL(../../../images/common/icon/object/unit30.gif?build31910) center top no-repeat;
-}
-
-/*
- * ヘッダメニュー「回付ルール管理」のA要素
- */
-.aw-emma-header-menu-hlinks-li-rule a,
-.aw-emma-header-menu-hlinks-li-rule a:link,
-.aw-emma-header-menu-hlinks-li-rule a:active,
-.aw-emma-header-menu-hlinks-li-rule a:visited {
- color:#ffffff;
- width: 90px;
- height: 50px;
- display: block;
- overflow: hidden;
- line-height:80px;
- background: URL(../../../images/common/icon/object/rule30.gif?build31910) center top no-repeat;
-}
-.aw-emma-header-menu-hlinks-li-rule a:hover {
- color:#e16745;
- text-decoration:none;
- width: 90px;
- height: 50px;
- display: block;
- overflow: hidden;
- background: URL(../../../images/common/icon/object/rule30.gif?build31910) center top no-repeat;
-}
-
-/*
- * ヘッダメニュー「フォーム管理」のA要素
- */
-.aw-emma-header-menu-hlinks-li-form a,
-.aw-emma-header-menu-hlinks-li-form a:link,
-.aw-emma-header-menu-hlinks-li-form a:active,
-.aw-emma-header-menu-hlinks-li-form a:visited {
- color:#ffffff;
- width: 70px;
- height: 50px;
- display: block;
- overflow: hidden;
- line-height:80px;
- background: URL(../../../images/common/icon/object/form30.gif?build31910) center top no-repeat;
-}
-.aw-emma-header-menu-hlinks-li-form a:hover {
- color:#e16745;
- text-decoration:none;
- width: 70px;
- height: 50px;
- display: block;
- overflow: hidden;
- background: URL(../../../images/common/icon/object/form30.gif?build31910) center top no-repeat;
-}
-
-/*
- * ヘッダメニュー「公開管理」のA要素
- */
-.aw-emma-header-menu-hlinks-li-public a,
-.aw-emma-header-menu-hlinks-li-public a:link,
-.aw-emma-header-menu-hlinks-li-public a:active,
-.aw-emma-header-menu-hlinks-li-public a:visited {
- color:#ffffff;
- width: 55px;
- height: 50px;
- display: block;
- overflow: hidden;
- line-height:80px;
- background: URL(../../../images/common/icon/object/pubfolder_open30.gif?build31910) center top no-repeat;
-}
-.aw-emma-header-menu-hlinks-li-public a:hover {
- color:#e16745;
- text-decoration:none;
- width: 55px;
- height: 50px;
- display: block;
- overflow: hidden;
- background: URL(../../../images/common/icon/object/pubfolder_open30.gif?build31910) center top no-repeat;
-}
-
-
-/*
- * ヘッダメニュー「書類管理」のA要素
- */
-.aw-emma-header-menu-hlinks-li-doc a,
-.aw-emma-header-menu-hlinks-li-doc a:link,
-.aw-emma-header-menu-hlinks-li-doc a:active,
-.aw-emma-header-menu-hlinks-li-doc a:visited {
- color:#ffffff;
- width: 60px;
- height: 50px;
- display: block;
- overflow: hidden;
- line-height:80px;
- background: URL(../../../images/common/icon/object/docman30.gif?build31910) center top no-repeat;
-}
-.aw-emma-header-menu-hlinks-li-doc a:hover {
- color:#e16745;
- text-decoration:none;
- width: 60px;
- height: 50px;
- display: block;
- overflow: hidden;
- background: URL(../../../images/common/icon/object/docman30.gif?build31910) center top no-repeat;
-}
-
-/*
- * ヘッダメニュー「ツール」のA要素
- */
-.aw-emma-header-menu-hlinks-li-tool a,
-.aw-emma-header-menu-hlinks-li-tool a:link,
-.aw-emma-header-menu-hlinks-li-tool a:active,
-.aw-emma-header-menu-hlinks-li-tool a:visited {
- color:#ffffff;
- width: 50px;
- height: 50px;
- display: block;
- overflow: hidden;
- line-height:80px;
- background: URL(../../../images/common/icon/object/tool30.gif?build31910) center top no-repeat;
-}
-.aw-emma-header-menu-hlinks-li-tool a:hover {
- color:#e16745;
- text-decoration:none;
- width: 50px;
- height: 50px;
- display: block;
- overflow: hidden;
- background: URL(../../../images/common/icon/object/tool30.gif?build31910) center top no-repeat;
-}
-
-/*
- * ヘッダメニュー「アドオン管理」のA要素
- */
-.aw-emma-header-menu-hlinks-li-addon a,
-.aw-emma-header-menu-hlinks-li-addon a:link,
-.aw-emma-header-menu-hlinks-li-addon a:active,
-.aw-emma-header-menu-hlinks-li-addon a:visited {
- color:#ffffff;
- width: 65px;
- height: 50px;
- display: block;
- overflow: hidden;
- line-height:80px;
- background: URL(../../../images/common/icon/object/addon30.gif?build31910) center top no-repeat;
-}
-.aw-emma-header-menu-hlinks-li-addon a:hover {
- color:#e16745;
- text-decoration:none;
- width: 65px;
- height: 50px;
- display: block;
- overflow: hidden;
- background: URL(../../../images/common/icon/object/addon30.gif?build31910) center top no-repeat;
-}
-
-/*
- * ヘッダとコンテンツを区切るバー
- */
-.aw-emma-headerbar {
- clear: both;
- height: 12px;
- margin: 0px;
- padding: 0px;
- background: url(../../../images/emma/default/header/bar_bg.gif?build31910) left repeat-x #fff;
- font-size:0px;
-}
-
-/*
- * ヘッダとコンテンツを区切るバー
- */
-.aw-emma-headerbar-standby {
- clear: both;
- height: 12px;
- margin: 0px;
- padding: 0px;
- background: url(../../../images/emma/default/header/bar_bg_standby.gif?build31910) left repeat-x #fff;
- font-size:0px;
-}
-
-/*
- * ワークベンチレイヤー
- */
-.aw-emma-workbench {
- position:absolute;
- width:250px;
-}
-
-/*
- * タブレイヤー
- */
-.aw-emma-tabs {
- height:30px;
- padding-left:10px;
- background-color:#333333;
- font-size:12px;
-}
-
-.aw-emma-menu {
- height: 38px;
- margin: 0px;
- padding-left:10px;
-}
-
-.aw-emma-func {
- height:30px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#808080;
- background-image:url('../../../images/emma/default/background/func_bg.gif?build31910');
-}
-
-.aw-emma-menubar-layer {
- height:30px;
- display:inline;
- float:left;
-}
-
-.aw-emma-menubar {
-
-}
-
-.aw-emma-contents {
- padding:5px;
-}
-
-.aw-emma-page {
- position:relative;
- top:0px;
- left:250px;
- width:10px;
- height:10px;
- overflow:hidden;
-}
-
-/*
- * ドラッグオブジェクト
- */
-.aw-dragger {
- position: absolute;
- cursor: col-resize;
- border-style: solid;
- filter:alpha(opacity=00);
- -moz-opacity:0;
- opacity:0;
- z-index: 1;
-}
-
-/*
- * ドラッグオブジェクト(ドラッグ中)
- */
-.aw-dragger-dragging {
- position: absolute;
- cursor: col-resize;
- border-style: solid;
- border-color: #242b32;
- z-index: 1;
-}
-
-/*
- * インフォメーション
- */
-.aw-info {
- margin:10px 0px 10px 0px;
- padding:10px 0px 10px 30px;
- background-color:#ffffd5;
- background-image:url(../../../images/common/icon/etc/info20.gif?build31910);
- background-repeat:no-repeat;
- background-position:5px center;
-}
-
-/*
- * Table 風表示: キャプション部
- */
-.aw-emma-form .caption {
- margin: 0px;
- padding: 6px 2px;
- vertical-align: middle;
- color: #444444;
- border-top: 1px solid #aaaaaa;
- border-bottom: 1px solid #aaaaaa;
- text-align: left;
- font-weight: bold;
- background: url('../../../images/emma/default/background/table_header_bg.gif?build31910') bottom repeat-x #ebebeb;
-}
-
-/*
- * Table 風表示: 値部
- */
-.aw-emma-form .content {
- margin: 0px;
- padding: 1px 2px;
- vertical-align: middle;
- color: #444444;
- text-align: left;
-}
diff --git a/AgileWorks/WebContent/css/emma/iceBerg/grid-base.css b/AgileWorks/WebContent/css/emma/iceBerg/grid-base.css
deleted file mode 100644
index cefd6ca127eb40973f7aaace246570ba2625d1ef..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/emma/iceBerg/grid-base.css
+++ /dev/null
@@ -1,159 +0,0 @@
-/*
- * grid-base.css?build31910
- *
- * Gridを描画するために必要なCSSセレクタを定義します
- */
-
-.grid-scroll-layer {
- border-style:solid;
- border-width:1px;
- border-color:#000000;
- position:absolute;
- overflow:scroll;
- outline: 0 !important;
- -webkit-tap-highlight-color: rgba(0,0,0,0);
-}
-
-.grid-scroll-body {
-}
-
-.grid-table-layer {
- background-color:#eeeeee;
- position:relative;
- overflow:hidden;
- top:1px;
- left:1px;
-}
-
-.grid-table {
- table-layout:fixed;
- width:0px;
-}
-
-.grid-col {
-}
-
-.grid-table th {
- background-image: url( '../../../images/emma/default/background/grid_header.gif?build31910' );
-}
-
-.grid-header-th {
- color:#000000;
- font-weight:bold;
- border-style:solid;
- border-width:0px 1px 0px 0px;
- border-color:#aaaaaa;
- white-space:pre;
- word-break:keep-all;
- overflow:hidden;
- text-align:center;
-}
-
-.grid-header-th.fixed {
- border-color:#000000 !important;
-}
-
-.grid-header-th.sort {
- color: #0067ce;
-}
-
-.grid-header-th.record-status {
-}
-
-.grid-header-th.checkbox {
-}
-
-.grid-header-th.radiobutton {
-}
-
-.grid-header-resizediv {
- position: absolute;
- top: 0px;
- border-style: solid;
- border-width: 0px 9px 0px 0px;
- cursor: col-resize;
- filter:alpha(opacity=0);
- -moz-opacity:0;
- opacity:0;
-}
-
-.grid-header-resizediv-dragging {
- position: absolute;
- top: 0px;
- border-style: solid;
- border-width: 0px 3px 0px 0px;
- border-color: #242b32;
- cursor: col-resize;
-}
-
-.grid-header-cell {
- padding:0px 4px 0px 4px;
-}
-
-.grid-tr-current {
- background-color:#242b32;
- color:#ffffff;
- cursor:default;
-}
-
-.grid-tr-current td {
- color:#ffffff;
-}
-
-.grid-tr-select {
- background-color:#5E81BC;
- color:#ffffff;
- cursor:default;
-}
-
-.grid-tr {
- background-color:#ffffff;
- cursor:default;
-}
-
-.grid-tr-even {
- background-color:#f5f5f5;
- cursor:default;
-}
-
-.grid-td {
- border-style:solid;
- border-width:0px 1px 0px 0px;
- border-color:#aaaaaa;
- white-space:pre;
- word-break:keep-all;
- overflow:hidden;
- padding:0px 4px 0px 4px;
- cursor:pointer;
-}
-
-.grid-td.fixed {
- border-color:#000000 !important;
- cursor:pointer;
-}
-
-.grid-td.record-status {
- background-color:#d0d4d9;
- text-align:center;
- padding:0px;
- cursor:default;
-}
-
-.grid-td.checkbox {
- background-color:#d0d4d9;
- text-align:center;
- padding:0px;
- cursor:default;
-}
-
-.grid-td.radiobutton {
- background-color:#d0d4d9;
- text-align:center;
- padding:0px;
- cursor:default;
-}
-
-.grid-td.blank {
- border-width:0px;
- cursor:default;
-}
diff --git a/AgileWorks/WebContent/css/emma/iceBerg/grid-ext.css b/AgileWorks/WebContent/css/emma/iceBerg/grid-ext.css
deleted file mode 100644
index 5d30134fb065d1a4725ff6838cde4bf5ddddfa65..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/emma/iceBerg/grid-ext.css
+++ /dev/null
@@ -1,28 +0,0 @@
-/*
- * grid-ext.css?build31910
- *
- * Gridで利用されるCSSセレクタを定義します
- */
-
-/* 小計行 */
-.grid-tr-subtotal {
- color:#0000ff;
- background-color:#f5f5f5;
- cursor:default;
-}
-
-/* 総計行 */
-.grid-tr-total {
- font-size:15px;
- color:#ff0000;
- font-weight:bold;
- background-color:#cccccc;
- cursor:default;
-}
-
-/* ドリルスルー可能セル - マウスオーバー */
-.grid-td.mouseover {
- color:#ff0000;
- background-color:#ffffcc;
- cursor:pointer;
-}
diff --git a/AgileWorks/WebContent/css/emma/iceBerg/iceBerg.css b/AgileWorks/WebContent/css/emma/iceBerg/iceBerg.css
deleted file mode 100644
index 96ca37352f46da5490efb9f532c97d9b02582a10..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/emma/iceBerg/iceBerg.css
+++ /dev/null
@@ -1,14 +0,0 @@
-html{height:100%;}a:link{text-decoration:none;color:#1851E7;}a:active{text-decoration:none;color:#1851E7;}a:visited{text-decoration:none;color:#1851E7;}a:hover{text-decoration:underline;color:#e16745;}body{font-size:75%;background-color:#cfd5da;font-family:Arial,sans-serif;margin:0;height:100%;}input{font-family:Arial,sans-serif;}input[type=text]{margin:0;}button{font-family:Arial,sans-serif;margin:0;}select{margin:0;}textarea{font-size:12px;margin:0;}
-.aw-common-func{height:30px;border-style:solid;border-width:0 0 1px 0;border-color:#808080;background-image:url('../../../images/emma/default/background/func_bg.gif?build31910');}.aw-common-menubar-layer{height:30px;display:inline;float:left;}.aw-common-table{width:100%;margin:0;padding:0;border-collapse:collapse;background:#fff;}.aw-common-table th{margin:0;padding:1px 1px 1px 2px;height:24px;vertical-align:middle;color:#444;border:1px solid #aaa;text-align:left;background:url('../../../images/emma/default/background/table_header_bg.gif?build31910') bottom repeat-x #ebebeb;}.aw-common-table th.caption{margin:0;padding:10px;vertical-align:middle;color:#444;border:1px solid #aaa;text-align:center;background:url('../../../images/emma/default/background/table_caption_bg.gif?build31910') center repeat-x;}.aw-common-table td{margin:0;padding:1px 1px 1px 2px;height:24px;vertical-align:middle;color:#444;border:1px solid #aaa;text-align:left;}.aw-common-table table.inner{width:98%;margin:0;padding:0;border-collapse:collapse;}.aw-common-table table.inner td{margin:0;padding:5px 5px 5px 0;border:none;text-align:left;}.aw-common-table table.inner td.uline{border-bottom:1px dotted #aaa;}.aw-common-table .even{background:#f5f5f5;}.aw-common-table .ar01{padding:0 0 0 12px;background:url('../../../images/emma/default/icon/arrow01.gif?build31910') left center no-repeat;}.aw-common-table-unurged{width:100%;margin:0;padding:0;border-collapse:collapse;background:#fff;}.aw-common-table-unurged th.label{margin:0;padding:1px 1px 1px 2px;height:24px;vertical-align:middle;color:#444;border:1px solid #aaa;text-align:left;background:url('../../../images/emma/default/background/table_header_bg.gif?build31910') bottom repeat-x #ebebeb;}.aw-common-table-unurged th.caption{margin:0;padding:10px;vertical-align:middle;color:#444;border:1px solid #aaa;text-align:center;background:url('../../../images/emma/default/background/table_caption_bg.gif?build31910') center repeat-x;}.aw-common-table-unurged td.item{margin:0;padding:1px 1px 1px 2px;vertical-align:middle;color:#444;border:1px solid #aaa;text-align:left;}
-.contents-header{height:30px;}.contents-main{background:#efefef;border-style:solid;border-width:1px;border-color:#cbcbcb;padding:10px;overflow:auto;}.contents-main .caption{border-bottom:2px solid #aaa;margin-bottom:10px;font-weight:bold;padding:2px;}.contents-main th{font-weight:bold;color:#444;}.contents-main td.item{border-bottom:1px solid #aaa;}.contents-main th.header{border-bottom:2px solid #aaa;}.contents-main td{color:#444;}.contents-main td.indent1{padding-left:30px;}.contents-header-table{border-collapse:collapse;border-spacing:0;margin-bottom:5px;width:100%;height:25px;}.contents-header-table .count{color:#f00;}
-.aw-emma-table{width:100%;margin:0;padding:0;border-collapse:collapse;background:#fff;}.aw-emma-table th{margin:0;padding:1px 1px 1px 2px;height:24px;vertical-align:middle;color:#444;border:1px solid #aaa;text-align:left;background:url('../../../images/emma/default/background/table_header_bg.gif?build31910') bottom repeat-x #ebebeb;}.aw-emma-table th.caption{margin:0;padding:10px;vertical-align:middle;color:#444;border:1px solid #aaa;text-align:center;background:url('../../../images/emma/default/background/table_caption_bg.gif?build31910') center repeat-x;}.aw-emma-table td{margin:0;padding:1px 1px 1px 2px;height:24px;vertical-align:middle;color:#444;border:1px solid #aaa;text-align:left;}.aw-emma-table table.inner{width:98%;margin:0;padding:0;border-collapse:collapse;}.aw-emma-table table.inner td{margin:0;padding:5px 5px 5px 0;border:none;text-align:left;}.aw-emma-table table.inner td.uline{border-bottom:1px dotted #aaa;}.aw-emma-table .even{background:#f5f5f5;}.aw-emma-table .ar01{padding:0 0 0 12px;background:url('../../../images/emma/default/icon/arrow01.gif?build31910') left center no-repeat;}.aw-emma-table-unurged{width:100%;margin:0;padding:0;border-collapse:collapse;background:#fff;}.aw-emma-table-unurged th.label{margin:0;padding:1px 1px 1px 2px;height:24px;vertical-align:middle;color:#444;border:1px solid #aaa;text-align:left;background:url('../../../images/emma/default/background/table_header_bg.gif?build31910') bottom repeat-x #ebebeb;}.aw-emma-table-unurged th.caption{margin:0;padding:10px;vertical-align:middle;color:#444;border:1px solid #aaa;text-align:center;background:url('../../../images/emma/default/background/table_caption_bg.gif?build31910') center repeat-x;}.aw-emma-table-unurged td.item{margin:0;padding:1px 1px 1px 2px;height:24px;vertical-align:middle;color:#444;border:1px solid #aaa;text-align:left;}
-.aw-emma-header{height:59px;margin:0;padding:0;border:0;background-color:#242b32;}.aw-emma-header-left{float:left;margin:0;padding:0 67px 0 0;overflow:hidden;}.aw-emma-header-left img{padding:0;border:none;width:183px;height:59px;}.aw-emma-header-right{float:right;margin:0;padding:0 0 0 5px;color:#666;font-size:12px;background-color:#242b32;}.aw-emma-header-right-account{float:left;padding:0 10px 2px 0;display:inline;background-color:#242b32;color:#fff;}.aw-emma-header-right-link{float:left;}.aw-emma-header-right-link ul{margin:0;padding:2px;list-style:none;background-color:#242b32;}.aw-emma-header-right-link li{margin:0;padding:0 5px 0 0;display:inline;}.aw-emma-header-right-link a{color:#fff;text-decoration:underline;}.aw-emma-header-right-link a:link{color:#fff;text-decoration:underline;}.aw-emma-header-right-link a:active{color:#fff;text-decoration:underline;}.aw-emma-header-right-link a:visited{color:#fff;text-decoration:underline;}.aw-emma-header-right-link a:hover{color:#fff;text-decoration:underline;}.aw-emma-header-menu{margin:0;padding:7px 0 0 0;font-size:12px;text-align:center;}.aw-emma-header-menu ul{list-style:none;margin:0;padding:0;}.aw-emma-header-menu li{float:left;margin:0 2px 0 0;padding:0;white-space:nowrap;}.aw-emma-header-menu a{outline:0;}.aw-emma-header-menu-hlinks-separator{display:none;}.aw-emma-header-menu-hlinks-li-site a,.aw-emma-header-menu-hlinks-li-site a:link,.aw-emma-header-menu-hlinks-li-site a:active,.aw-emma-header-menu-hlinks-li-site a:visited{color:#fff;width:60px;height:50px;display:block;overflow:hidden;line-height:80px;background:URL(../../../images/common/icon/object/site30.gif?build31910) center top no-repeat;}.aw-emma-header-menu-hlinks-li-site a:hover{color:#e16745;text-decoration:none;width:60px;height:50px;display:block;overflow:hidden;background:URL(../../../images/common/icon/object/site30.gif?build31910) center top no-repeat;}.aw-emma-header-menu-hlinks-li-account a,.aw-emma-header-menu-hlinks-li-account a:link,.aw-emma-header-menu-hlinks-li-account a:active,.aw-emma-header-menu-hlinks-li-account a:visited{color:#fff;width:80px;height:50px;display:block;overflow:hidden;line-height:80px;background:URL(../../../images/common/icon/object/user30.gif?build31910) center top no-repeat;}.aw-emma-header-menu-hlinks-li-account a:hover{color:#e16745;text-decoration:none;width:80px;height:50px;display:block;overflow:hidden;background:URL(../../../images/common/icon/object/user30.gif?build31910) center top no-repeat;}.aw-emma-header-menu-hlinks-li-unit a,.aw-emma-header-menu-hlinks-li-unit a:link,.aw-emma-header-menu-hlinks-li-unit a:active,.aw-emma-header-menu-hlinks-li-unit a:visited{color:#fff;width:55px;height:50px;display:block;overflow:hidden;line-height:80px;background:URL(../../../images/common/icon/object/unit30.gif?build31910) center top no-repeat;}.aw-emma-header-menu-hlinks-li-unit a:hover{color:#e16745;text-decoration:none;width:55px;height:50px;display:block;overflow:hidden;background:URL(../../../images/common/icon/object/unit30.gif?build31910) center top no-repeat;}.aw-emma-header-menu-hlinks-li-rule a,.aw-emma-header-menu-hlinks-li-rule a:link,.aw-emma-header-menu-hlinks-li-rule a:active,.aw-emma-header-menu-hlinks-li-rule a:visited{color:#fff;width:90px;height:50px;display:block;overflow:hidden;line-height:80px;background:URL(../../../images/common/icon/object/rule30.gif?build31910) center top no-repeat;}.aw-emma-header-menu-hlinks-li-rule a:hover{color:#e16745;text-decoration:none;width:90px;height:50px;display:block;overflow:hidden;background:URL(../../../images/common/icon/object/rule30.gif?build31910) center top no-repeat;}.aw-emma-header-menu-hlinks-li-form a,.aw-emma-header-menu-hlinks-li-form a:link,.aw-emma-header-menu-hlinks-li-form a:active,.aw-emma-header-menu-hlinks-li-form a:visited{color:#fff;width:70px;height:50px;display:block;overflow:hidden;line-height:80px;background:URL(../../../images/common/icon/object/form30.gif?build31910) center top no-repeat;}.aw-emma-header-menu-hlinks-li-form a:hover{color:#e16745;text-decoration:none;width:70px;height:50px;display:block;overflow:hidden;background:URL(../../../images/common/icon/object/form30.gif?build31910) center top no-repeat;}.aw-emma-header-menu-hlinks-li-public a,.aw-emma-header-menu-hlinks-li-public a:link,.aw-emma-header-menu-hlinks-li-public a:active,.aw-emma-header-menu-hlinks-li-public a:visited{color:#fff;width:55px;height:50px;display:block;overflow:hidden;line-height:80px;background:URL(../../../images/common/icon/object/pubfolder_open30.gif?build31910) center top no-repeat;}.aw-emma-header-menu-hlinks-li-public a:hover{color:#e16745;text-decoration:none;width:55px;height:50px;display:block;overflow:hidden;background:URL(../../../images/common/icon/object/pubfolder_open30.gif?build31910) center top no-repeat;}.aw-emma-header-menu-hlinks-li-doc a,.aw-emma-header-menu-hlinks-li-doc a:link,.aw-emma-header-menu-hlinks-li-doc a:active,.aw-emma-header-menu-hlinks-li-doc a:visited{color:#fff;width:60px;height:50px;display:block;overflow:hidden;line-height:80px;background:URL(../../../images/common/icon/object/docman30.gif?build31910) center top no-repeat;}.aw-emma-header-menu-hlinks-li-doc a:hover{color:#e16745;text-decoration:none;width:60px;height:50px;display:block;overflow:hidden;background:URL(../../../images/common/icon/object/docman30.gif?build31910) center top no-repeat;}.aw-emma-header-menu-hlinks-li-tool a,.aw-emma-header-menu-hlinks-li-tool a:link,.aw-emma-header-menu-hlinks-li-tool a:active,.aw-emma-header-menu-hlinks-li-tool a:visited{color:#fff;width:50px;height:50px;display:block;overflow:hidden;line-height:80px;background:URL(../../../images/common/icon/object/tool30.gif?build31910) center top no-repeat;}.aw-emma-header-menu-hlinks-li-tool a:hover{color:#e16745;text-decoration:none;width:50px;height:50px;display:block;overflow:hidden;background:URL(../../../images/common/icon/object/tool30.gif?build31910) center top no-repeat;}.aw-emma-header-menu-hlinks-li-addon a,.aw-emma-header-menu-hlinks-li-addon a:link,.aw-emma-header-menu-hlinks-li-addon a:active,.aw-emma-header-menu-hlinks-li-addon a:visited{color:#fff;width:65px;height:50px;display:block;overflow:hidden;line-height:80px;background:URL(../../../images/common/icon/object/addon30.gif?build31910) center top no-repeat;}.aw-emma-header-menu-hlinks-li-addon a:hover{color:#e16745;text-decoration:none;width:65px;height:50px;display:block;overflow:hidden;background:URL(../../../images/common/icon/object/addon30.gif?build31910) center top no-repeat;}.aw-emma-headerbar{clear:both;height:12px;margin:0;padding:0;background:url(../../../images/emma/default/header/bar_bg.gif?build31910) left repeat-x #fff;font-size:0;}.aw-emma-headerbar-standby{clear:both;height:12px;margin:0;padding:0;background:url(../../../images/emma/default/header/bar_bg_standby.gif?build31910) left repeat-x #fff;font-size:0;}.aw-emma-workbench{position:absolute;width:250px;}.aw-emma-tabs{height:30px;padding-left:10px;background-color:#333;font-size:12px;}.aw-emma-menu{height:38px;margin:0;padding-left:10px;}.aw-emma-func{height:30px;border-style:solid;border-width:0 0 1px 0;border-color:#808080;background-image:url('../../../images/emma/default/background/func_bg.gif?build31910');}.aw-emma-menubar-layer{height:30px;display:inline;float:left;}.aw-emma-contents{padding:5px;}.aw-emma-page{position:relative;top:0;left:250px;width:10px;height:10px;overflow:hidden;}.aw-dragger{position:absolute;cursor:col-resize;border-style:solid;filter:alpha(opacity=00);-moz-opacity:0;opacity:0;z-index:1;}.aw-dragger-dragging{position:absolute;cursor:col-resize;border-style:solid;border-color:#242b32;z-index:1;}.aw-info{margin:10px 0 10px 0;padding:10px 0 10px 30px;background-color:#ffffd5;background-image:url(../../../images/common/icon/etc/info20.gif?build31910);background-repeat:no-repeat;background-position:5px center;}.aw-emma-form .caption{margin:0;padding:6px 2px;vertical-align:middle;color:#444;border-top:1px solid #aaa;border-bottom:1px solid #aaa;text-align:left;font-weight:bold;background:url('../../../images/emma/default/background/table_header_bg.gif?build31910') bottom repeat-x #ebebeb;}.aw-emma-form .content{margin:0;padding:1px 2px;vertical-align:middle;color:#444;text-align:left;}
-.grid-scroll-layer{border-style:solid;border-width:1px;border-color:#000;position:absolute;overflow:scroll;outline:0!important;-webkit-tap-highlight-color:rgba(0,0,0,0);}.grid-table-layer{background-color:#eee;position:relative;overflow:hidden;top:1px;left:1px;}.grid-table{table-layout:fixed;width:0;}.grid-table th{background-image:url('../../../images/emma/default/background/grid_header.gif?build31910');}.grid-header-th{color:#000;font-weight:bold;border-style:solid;border-width:0 1px 0 0;border-color:#aaa;white-space:pre;word-break:keep-all;overflow:hidden;text-align:center;}.grid-header-th.fixed{border-color:#000!important;}.grid-header-th.sort{color:#0067ce;}.grid-header-resizediv{position:absolute;top:0;border-style:solid;border-width:0 9px 0 0;cursor:col-resize;filter:alpha(opacity=0);-moz-opacity:0;opacity:0;}.grid-header-resizediv-dragging{position:absolute;top:0;border-style:solid;border-width:0 3px 0 0;border-color:#242b32;cursor:col-resize;}.grid-header-cell{padding:0 4px 0 4px;}.grid-tr-current{background-color:#242b32;color:#fff;cursor:default;}.grid-tr-current td{color:#fff;}.grid-tr-select{background-color:#5E81BC;color:#fff;cursor:default;}.grid-tr{background-color:#fff;cursor:default;}.grid-tr-even{background-color:#f5f5f5;cursor:default;}.grid-td{border-style:solid;border-width:0 1px 0 0;border-color:#aaa;white-space:pre;word-break:keep-all;overflow:hidden;padding:0 4px 0 4px;cursor:pointer;}.grid-td.fixed{border-color:#000!important;cursor:pointer;}.grid-td.record-status{background-color:#d0d4d9;text-align:center;padding:0;cursor:default;}.grid-td.checkbox{background-color:#d0d4d9;text-align:center;padding:0;cursor:default;}.grid-td.radiobutton{background-color:#d0d4d9;text-align:center;padding:0;cursor:default;}.grid-td.blank{border-width:0;cursor:default;}
-.grid-tr-subtotal{color:#00f;background-color:#f5f5f5;cursor:default;}.grid-tr-total{font-size:15px;color:#f00;font-weight:bold;background-color:#ccc;cursor:default;}.grid-td.mouseover{color:#f00;background-color:#ffc;cursor:pointer;}
-.layer{position:absolute;}.layer-modallayer{position:absolute;top:0;left:0;width:100%;height:100%;background-color:#ddd;filter:alpha(opacity=40);opacity:.4;-moz-opacity:.4;}.layer-dropshadow{position:absolute;background-image:url('../../../images/common/container/shadow.gif?build31910');background-position:right bottom;}.layer-underiframe{position:absolute;top:0;left:0;width:100%;height:100%;border:none;filter:alpha(opacity=0);-moz-opacity:0;opacity:0;}.layer-frame{position:absolute;border-style:solid;border-width:1px;border-color:#666;box-shadow:2px 2px 5px #666;-moz-box-shadow:2px 2px 5px #666;-webkit-box-shadow:2px 2px 5px #666;}.layer-titlebar{height:30px;color:#262e37;font-weight:bold;overflow:hidden;background-image:url('../../../images/emma/default/background/layer_titlebar_bg.gif?build31910');background-repeat:repeat-x;}.layer-titlebar-table{height:30px;padding-left:4px;}.layer-titlebar-caption{overflow:hidden;}.layer-titlebar-td-help{width:20px;text-align:center;padding:0;cursor:pointer;}.layer-titlebar-td-close{width:20px;text-align:center;padding:0 4px 0 0;cursor:pointer;}.layer-body{position:absolute;overflow:auto;padding:5px;background-color:#bfc7cd;}.layer-messagebox-simple{font-size:12px;font-weight:bold;width:200px;}.layer-messagebox-tl{background:transparent url(../../../images/emma/default/background/messagebox-corners.gif?build31910) no-repeat 0 0;zoom:1;}.layer-messagebox-tc{height:8px;background:transparent url(../../../images/emma/default/background/messagebox-tb.gif?build31910) repeat-x 0 0;overflow:hidden;}.layer-messagebox-tr{background:transparent url(../../../images/emma/default/background/messagebox-corners.gif?build31910) no-repeat right -8px;}.layer-messagebox-ml{background:transparent url(../../../images/emma/default/background/messagebox-l.gif?build31910) repeat-y 0;padding-left:4px;overflow:hidden;zoom:1;}.layer-messagebox-mc{background:#eee url(../../../images/emma/default/background/messagebox-tb.gif?build31910) repeat-x 0 -16px;padding:4px 10px;font-family:"Myriad Pro","Myriad Web","Tahoma","Helvetica","Arial",sans-serif;color:#393939;font-size:12px;}.layer-messagebox-mc h3{font-size:14px;font-weight:bold;margin:0 0 4 0;zoom:1;}.layer-messagebox-mr{background:transparent url(../../../images/emma/default/background/messagebox-r.gif?build31910) repeat-y right;padding-right:4px;overflow:hidden;}.layer-messagebox-bl{background:transparent url(../../../images/emma/default/background/messagebox-corners.gif?build31910) no-repeat 0 -16px;zoom:1;}.layer-messagebox-bc{background:transparent url(../../../images/emma/default/background/messagebox-tb.gif?build31910) repeat-x 0 -8px;height:8px;overflow:hidden;}.layer-messagebox-br{background:transparent url(../../../images/emma/default/background/messagebox-corners.gif?build31910) no-repeat right -24px;}.layer-messagebox-tl,.layer-messagebox-bl{padding-left:8px;overflow:hidden;}.layer-messagebox-tr,.layer-messagebox-br{padding-right:8px;overflow:hidden;}.layer-messagebox-blue .layer-messagebox-bl,.layer-messagebox-blue .layer-messagebox-br,.layer-messagebox-blue .layer-messagebox-tl,.layer-messagebox-blue .layer-messagebox-tr{background-image:url(../../../images/emma/default/background/messagebox-corners-blue.gif?build31910);}.layer-messagebox-blue .layer-messagebox-bc,.layer-messagebox-blue .layer-messagebox-mc,.layer-messagebox-blue .layer-messagebox-tc{background-image:url(../../../images/emma/default/background/messagebox-tb-blue.gif?build31910);}.layer-messagebox-blue .layer-messagebox-mc{background-color:#c3daf9;}.layer-messagebox-blue .layer-messagebox-mc h3{color:#17385b;}.layer-messagebox-blue .layer-messagebox-ml{background-image:url(../../../images/emma/default/background/messagebox-l-blue.gif?build31910);}.layer-messagebox-blue .layer-messagebox-mr{background-image:url(../../../images/emma/default/background/messagebox-r-blue.gif?build31910);}
-.menubar{color:#000;}.menubar .topmenu{height:28px;}.menubar .topmenu ul{margin:0;padding:0;}.menubar .topmenu li{float:left;list-style-type:none;margin:0;line-height:22px;padding:3px 5px 3px 22px;}.menubar .submenu{background-color:#fff;border-style:solid;border-width:1px;border-color:#aaa;}.menubar .submenu ul{margin:0;padding:0;overflow:hidden;}.menubar .submenu li{list-style-type:none;margin:0;padding:0;line-height:22px;padding:1px 5px 1px 22px;white-space:pre;word-break:keep-all;}.menubar .menuitem.menuover{background-color:#ddd;cursor:pointer;}.menubar .menuitem.menudisabled{color:#aaa;}.menubar .topmenu .menuitem-terminate{float:none;clear:both;}
-.page{border-style:solid;border-width:1px;border-color:#aaa;padding:2px 4px 2px 4px;margin:0 2px 0 2px;cursor:pointer;}.currentpage{border-style:solid;border-width:1px;border-color:#aaa;padding:2px 4px 2px 4px;margin:0 2px 0 2px;background-color:#242b32;color:#fff;}.overpage{border-style:solid;border-width:1px;border-color:#aaa;padding:2px 4px 2px 4px;margin:0 2px 0 2px;background-color:#fff;color:#000;cursor:pointer;}
-.tabs-layer{overflow:hidden;height:30px;font-size:12px;}.tabs-table{height:29px;margin-top:1px;}.tabs-item{height:28px;border-style:solid;border-width:1px 1px 0 1px;border-color:#aaa;background-color:#aaa;color:#444;padding:0 10px 0 10px;white-space:nowrap;background-image:url('../../../images/emma/default/background/tab_bg.gif?build31910');font-weight:bold;}.tabs-item a{color:#444;}.tabs-item a:link{color:#444;}.tabs-item a:active{color:#444;}.tabs-item a:visited{color:#444;}.tabs-item-mouseover{height:28px;background-color:#fff;border-style:solid;border-width:1px 1px 0 1px;border-color:#aaa;color:#444;padding:0 10px 0 10px;white-space:nowrap;font-weight:bold;}.tabs-item-mouseover a{color:#444;}.tabs-item-mouseover a:link{color:#444;}.tabs-item-mouseover a:active{color:#444;}.tabs-item-mouseover a:visited{color:#444;}.tabs-blank{padding:0 5px 0 5px;border-style:solid;border-width:0 0 1px 0;border-color:#aaa;}.tabs-last{width:100%;border-style:solid;border-width:0 0 1px 0;border-color:#aaa;}.tabs-leftarrow{width:30px;background-image:url('../../../images/emma/default/background/tabs-leftarrow.gif?build31910');background-repeat:no-repeat;background-position:0 2px;cursor:pointer;}.tabs-rightarrow{width:30px;background-image:url('../../../images/emma/default/background/tabs-rightarrow.gif?build31910');background-repeat:no-repeat;background-position:2px 2px;cursor:pointer;}.tabs-page{background-color:#eee;border-style:solid;border-width:0 1px 1px 1px;border-color:#aaa;padding:4px;overflow:auto;}
-.aw-menubar{height:30px;border-style:solid;border-width:0 0 1px 0;border-color:#808080;background-image:url('../../../images/emma/default/background/func_bg.gif?build31910');}.aw-menubar2{height:30px;border-style:solid;border-width:0 0 1px 0;border-color:#808080;background-image:url('../../../images/emma/default/background/func_bg.gif?build31910');}
-.ygtvtd_current{background-color:#697683;border-style:solid;border-width:1px;border-color:#000;padding:0;}
-.workbench-layer{border-style:outset;border-width:0 1px 0 0;border-color:#333;white-space:nowrap;}.workbench-item{width:240px;border-style:solid;border-width:0 0 1px 0;border-color:#666;overflow:hidden;background-image:url('../../../images/emma/default/background/workbench_item.gif?build31910');font-weight:bold;line-height:30px;color:#000;cursor:pointer;padding-left:10px;font-size:120%;}.workbench-item-current{width:240px;border-style:solid;border-width:0 0 1px 0;border-color:#666;overflow:hidden;background-image:url('../../../images/emma/default/background/workbench_item.gif?build31910');font-weight:bold;line-height:30px;color:#000;cursor:pointer;padding-left:10px;font-size:120%;}.workbench-item-mouseover{width:240px;border-style:solid;border-width:0 0 1px 0;border-color:#666;overflow:hidden;background-image:url('../../../images/emma/default/background/workbench_item_over.gif?build31910');font-weight:bold;line-height:30px;color:#fff;cursor:pointer;padding-left:10px;font-size:120%;}.workbench-content{width:230px;border-style:solid;border-width:0 0 1px 0;border-color:#666;overflow:auto;padding:10px;}.workbench-content-control{width:224px;background-color:#fff;border-style:solid;border-width:3px;border-color:#aaa;overflow:auto;}
diff --git a/AgileWorks/WebContent/css/emma/iceBerg/iceBerg.css.dev b/AgileWorks/WebContent/css/emma/iceBerg/iceBerg.css.dev
deleted file mode 100644
index 4bf56798ca9c0c4ab70a9b33a9f482785f135e02..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/emma/iceBerg/iceBerg.css.dev
+++ /dev/null
@@ -1,14 +0,0 @@
-@import url(base.css);
-@import url(common.css);
-@import url(contents.css);
-@import url(emma-table.css);
-@import url(emma.css);
-@import url(grid-base.css);
-@import url(grid-ext.css);
-@import url(layer.css);
-@import url(menu-base.css);
-@import url(pagination.css);
-@import url(tabs.css);
-@import url(theme.css);
-@import url(tree-ext.css);
-@import url(workbench.css);
\ No newline at end of file
diff --git a/AgileWorks/WebContent/css/emma/iceBerg/layer.css b/AgileWorks/WebContent/css/emma/iceBerg/layer.css
deleted file mode 100644
index 269d248f73100955e5c0f4ff21dd9101ff1001d8..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/emma/iceBerg/layer.css
+++ /dev/null
@@ -1,146 +0,0 @@
-/*
- * layer.css?build31910
- *
- * Layerを描画するために必要なCSSセレクタを定義します
- */
-
-.layer {
- position:absolute;
-}
-
-/*
- * モーダル用DIV要素に適用されるクラスセレクタ
- */
-.layer-modallayer {
- position:absolute;
- top:0px;
- left:0px;
- width:100%;
- height:100%;
- background-color:#dddddd;
- filter:alpha(opacity=40);
- opacity:0.4;
- -moz-opacity:0.4;
-}
-
-/*
- * ドロップシャドウに適用されるクラスセレクタ
- */
-.layer-dropshadow {
- position: absolute;
- background-image: url('../../../images/common/container/shadow.gif?build31910');
- background-position: right bottom;
-}
-
-/*
- * IFRAME要素に適用されるクラスセレクタ
- */
-.layer-underiframe {
- position:absolute;
- top:0px;
- left:0px;
- width:100%;
- height:100%;
- border:none;
- filter:alpha(opacity=0);
- -moz-opacity:0;
- opacity:0;
-}
-
-/*
- * Layerの描画要素に適用されるクラスセレクタ
- */
-.layer-frame {
- position:absolute;
- border-style:solid;
- border-width:1px;
- border-color:#666666;
- box-shadow: 2px 2px 5px #666666;
- -moz-box-shadow: 2px 2px 5px #666666;
- -webkit-box-shadow: 2px 2px 5px #666666;
-}
-
-/*
- * タイトルバーに適用されるクラスセレクタ
- */
-.layer-titlebar {
- height:30px;
- color:#262e37;
- font-weight:bold;
- overflow:hidden;
- background-image: url( '../../../images/emma/default/background/layer_titlebar_bg.gif?build31910' );
- background-repeat:repeat-x;
-}
-
-/*
- * タイトルバー内のTABLE要素に適用されるクラスセレクタ
- */
-.layer-titlebar-table {
- height:30px;
- padding-left:4px;
-}
-
-/*
- * タイトルバー内のタイトル要素に適用されるクラスセレクタ
- */
-.layer-titlebar-caption {
- overflow : hidden;
-}
-
-/*
- * タイトルバー内のヘルプアイコンのTD要素に適用されるクラスセレクタ
- */
-.layer-titlebar-td-help {
- width:20px;
- text-align:center;
- padding:0px;
- cursor:pointer;
-}
-
-/*
- * タイトルバー内のクローズアイコンのTD要素に適用されるクラスセレクタ
- */
-.layer-titlebar-td-close {
- width:20px;
- text-align:center;
- padding:0px 4px 0px 0px;
- cursor:pointer;
-}
-
-/*
- * ボディに適用されるクラスセレクタ
- */
-.layer-body {
- position:absolute;
- overflow:auto;
- padding:5px;
- background-color:#bfc7cd;
-}
-
-/*
- * メッセージボックスに適用されるクラスセレクタ
- */
-.layer-messagebox-simple {
- font-size:12px;
- font-weight:bold;
- width:200px;
-}
-
-.layer-messagebox-tl{background:transparent url(../../../images/emma/default/background/messagebox-corners.gif?build31910) no-repeat 0 0;zoom:1;}
-.layer-messagebox-tc{height:8px;background:transparent url(../../../images/emma/default/background/messagebox-tb.gif?build31910) repeat-x 0 0;overflow:hidden;}
-.layer-messagebox-tr{background:transparent url(../../../images/emma/default/background/messagebox-corners.gif?build31910) no-repeat right -8px;}
-.layer-messagebox-ml{background:transparent url(../../../images/emma/default/background/messagebox-l.gif?build31910) repeat-y 0;padding-left:4px;overflow:hidden;zoom:1;}
-.layer-messagebox-mc{background:#eee url(../../../images/emma/default/background/messagebox-tb.gif?build31910) repeat-x 0 -16px;padding:4px 10px;font-family:"Myriad Pro","Myriad Web","Tahoma","Helvetica","Arial",sans-serif;color:#393939;font-size:12px;}
-.layer-messagebox-mc h3{font-size:14px;font-weight:bold;margin:0 0 4 0;zoom:1;}
-.layer-messagebox-mr{background:transparent url(../../../images/emma/default/background/messagebox-r.gif?build31910) repeat-y right;padding-right:4px;overflow:hidden;}
-.layer-messagebox-bl{background:transparent url(../../../images/emma/default/background/messagebox-corners.gif?build31910) no-repeat 0 -16px;zoom:1;}
-.layer-messagebox-bc{background:transparent url(../../../images/emma/default/background/messagebox-tb.gif?build31910) repeat-x 0 -8px;height:8px;overflow:hidden;}
-.layer-messagebox-br{background:transparent url(../../../images/emma/default/background/messagebox-corners.gif?build31910) no-repeat right -24px;}
-.layer-messagebox-tl,.layer-messagebox-bl{padding-left:8px;overflow:hidden;}
-.layer-messagebox-tr,.layer-messagebox-br{padding-right:8px;overflow:hidden;}
-.layer-messagebox-blue .layer-messagebox-bl,.layer-messagebox-blue .layer-messagebox-br,.layer-messagebox-blue .layer-messagebox-tl,.layer-messagebox-blue .layer-messagebox-tr{background-image:url(../../../images/emma/default/background/messagebox-corners-blue.gif?build31910);}
-.layer-messagebox-blue .layer-messagebox-bc,.layer-messagebox-blue .layer-messagebox-mc,.layer-messagebox-blue .layer-messagebox-tc{background-image:url(../../../images/emma/default/background/messagebox-tb-blue.gif?build31910);}
-.layer-messagebox-blue .layer-messagebox-mc{background-color:#c3daf9;}
-.layer-messagebox-blue .layer-messagebox-mc h3{color:#17385b;}
-.layer-messagebox-blue .layer-messagebox-ml{background-image:url(../../../images/emma/default/background/messagebox-l-blue.gif?build31910);}
-.layer-messagebox-blue .layer-messagebox-mr{background-image:url(../../../images/emma/default/background/messagebox-r-blue.gif?build31910);}
diff --git a/AgileWorks/WebContent/css/emma/iceBerg/menu-base.css b/AgileWorks/WebContent/css/emma/iceBerg/menu-base.css
deleted file mode 100644
index d7a54afaa6300697c2090c3c8ce4628afe8d632c..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/emma/iceBerg/menu-base.css
+++ /dev/null
@@ -1,57 +0,0 @@
-.menubar {
- color:#000000;
-}
-
-.menubar .topmenu {
- height:28px;
-}
-
-.menubar .topmenu ul {
- margin:0px;
- padding:0px;
-}
-
-.menubar .topmenu li {
- float:left;
- list-style-type:none;
- margin:0px;
- line-height:22px;
- padding: 3px 5px 3px 22px;
-}
-
-.menubar .submenu {
- background-color:#ffffff;
- border-style:solid;
- border-width:1px;
- border-color:#aaaaaa;
-}
-
-.menubar .submenu ul {
- margin:0px;
- padding:0px;
- overflow:hidden;
-}
-
-.menubar .submenu li {
- list-style-type:none;
- margin:0px;
- padding:0px;
- line-height:22px;
- padding: 1px 5px 1px 22px;
- white-space:pre;
- word-break:keep-all;
-}
-
-.menubar .menuitem.menuover {
- background-color:#dddddd;
- cursor:pointer;
-}
-
-.menubar .menuitem.menudisabled {
- color:#aaaaaa;
-}
-
-.menubar .topmenu .menuitem-terminate {
- float:none;
- clear:both;
-}
diff --git a/AgileWorks/WebContent/css/emma/iceBerg/pagination.css b/AgileWorks/WebContent/css/emma/iceBerg/pagination.css
deleted file mode 100644
index c805f8efd4ae148ae6bf1ca41e85a5160f999afe..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/emma/iceBerg/pagination.css
+++ /dev/null
@@ -1,29 +0,0 @@
-.page {
- border-style:solid;
- border-width:1px;
- border-color:#aaaaaa;
- padding:2px 4px 2px 4px;
- margin:0px 2px 0px 2px;
- cursor:pointer;
-}
-
-.currentpage {
- border-style:solid;
- border-width:1px;
- border-color:#aaaaaa;
- padding:2px 4px 2px 4px;
- margin:0px 2px 0px 2px;
- background-color:#242b32;
- color:#ffffff;
-}
-
-.overpage {
- border-style:solid;
- border-width:1px;
- border-color:#aaaaaa;
- padding:2px 4px 2px 4px;
- margin:0px 2px 0px 2px;
- background-color:#ffffff;
- color:#000000;
- cursor:pointer;
-}
diff --git a/AgileWorks/WebContent/css/emma/iceBerg/tabs.css b/AgileWorks/WebContent/css/emma/iceBerg/tabs.css
deleted file mode 100644
index 0021c6c314e8e53c10e6cc254bbafe5d41cf8f7e..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/emma/iceBerg/tabs.css
+++ /dev/null
@@ -1,110 +0,0 @@
-
-.tabs-layer {
- overflow:hidden;
- height:30px;
- font-size:12px;
-}
-
-.tabs-maintable {
-}
-
-.tabs-table {
- height:29px;
- margin-top:1px;
-}
-
-.tabs-item {
- height:28px;
- border-style:solid;
- border-width:1px 1px 0px 1px;
- border-color:#aaaaaa;
- background-color:#aaaaaa;
- color:#444444;
- padding:0px 10px 0px 10px;
- white-space:nowrap;
- background-image: url( '../../../images/emma/default/background/tab_bg.gif?build31910' );
- font-weight:bold;
-}
-
-.tabs-item a {
- color:#444444;
-}
-
-.tabs-item a:link {
- color:#444444;
-}
-
-.tabs-item a:active {
- color:#444444;
-}
-
-.tabs-item a:visited {
- color:#444444;
-}
-
-.tabs-item-mouseover {
- height:28px;
- background-color:#ffffff;
- border-style:solid;
- border-width:1px 1px 0px 1px;
- border-color:#aaaaaa;
- color:#444444;
- padding:0px 10px 0px 10px;
- white-space:nowrap;
- font-weight:bold;
-}
-
-.tabs-item-mouseover a {
- color:#444444;
-}
-
-.tabs-item-mouseover a:link {
- color:#444444;
-}
-
-.tabs-item-mouseover a:active {
- color:#444444;
-}
-
-.tabs-item-mouseover a:visited {
- color:#444444;
-}
-
-.tabs-blank {
- padding:0px 5px 0px 5px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#aaaaaa;
-}
-
-.tabs-last {
- width: 100%;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#aaaaaa;
-}
-
-.tabs-leftarrow {
- width:30px;
- background-image:url( '../../../images/emma/default/background/tabs-leftarrow.gif?build31910' );
- background-repeat:no-repeat;
- background-position:0px 2px;
- cursor:pointer;
-}
-
-.tabs-rightarrow {
- width:30px;
- background-image:url( '../../../images/emma/default/background/tabs-rightarrow.gif?build31910' );
- background-repeat:no-repeat;
- background-position:2px 2px;
- cursor:pointer;
-}
-
-.tabs-page {
- background-color:#eeeeee;
- border-style:solid;
- border-width:0px 1px 1px 1px;
- border-color:#aaaaaa;
- padding:4px;
- overflow:auto;
-}
diff --git a/AgileWorks/WebContent/css/emma/iceBerg/theme.css b/AgileWorks/WebContent/css/emma/iceBerg/theme.css
deleted file mode 100644
index f692640791fe042d3e6cf0c5c98c2a5c31cf2233..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/emma/iceBerg/theme.css
+++ /dev/null
@@ -1,15 +0,0 @@
-.aw-menubar {
- height:30px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#808080;
- background-image:url('../../../images/emma/default/background/func_bg.gif?build31910');
-}
-
-.aw-menubar2 {
- height:30px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#808080;
- background-image:url('../../../images/emma/default/background/func_bg.gif?build31910');
-}
diff --git a/AgileWorks/WebContent/css/emma/iceBerg/tree-ext.css b/AgileWorks/WebContent/css/emma/iceBerg/tree-ext.css
deleted file mode 100644
index df6efa807db725ac5cfada17df2cdab7435584fa..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/emma/iceBerg/tree-ext.css
+++ /dev/null
@@ -1,7 +0,0 @@
-.ygtvtd_current {
- background-color:#697683;
- border-style:solid;
- border-width:1px;
- border-color:#000000;
- padding:0px 0px 0px 0px;
-}
diff --git a/AgileWorks/WebContent/css/emma/iceBerg/workbench.css b/AgileWorks/WebContent/css/emma/iceBerg/workbench.css
deleted file mode 100644
index 672c3682b34d8a70ad8df3c82c020f3c871144c3..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/emma/iceBerg/workbench.css
+++ /dev/null
@@ -1,71 +0,0 @@
-
-.workbench-layer {
- border-style:outset;
- border-width:0px 1px 0px 0px;
- border-color:#333333;
- white-space:nowrap;
-}
-
-/* ワークベンチメニュー:オリジナル */
-.workbench-item {
- width:240px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#666666;
- overflow:hidden;
- background-image: url( '../../../images/emma/default/background/workbench_item.gif?build31910' );
- font-weight: bold;
- line-height:30px;
- color:#000000;
- cursor:pointer;
- padding-left: 10px;
- font-size:120%;
-}
-
-.workbench-item-current {
- width:240px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#666666;
- overflow:hidden;
- background-image: url( '../../../images/emma/default/background/workbench_item.gif?build31910' );
- font-weight: bold;
- line-height:30px;
- color:#000000;
- cursor:pointer;
- padding-left: 10px;
- font-size:120%;
-}
-
-.workbench-item-mouseover {
- width:240px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#666666;
- overflow:hidden;
- background-image: url( '../../../images/emma/default/background/workbench_item_over.gif?build31910' );
- font-weight: bold;
- line-height:30px;
- color:#ffffff;
- cursor:pointer;
- padding-left: 10px;
- font-size:120%;
-}
-
-.workbench-content {
- width:230px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#666666;
- overflow:auto;
- padding:10px;
-}
-
-.workbench-content-control {
- width:224px;
- background-color:#ffffff;
- border-style:solid;
- border-width:3px;
- border-color:#aaaaaa;
- overflow:auto;
-}
diff --git a/AgileWorks/WebContent/css/error.css b/AgileWorks/WebContent/css/error.css
deleted file mode 100644
index 3da315d8f4e5cbec81afd4797e5d658252f8b849..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/error.css
+++ /dev/null
@@ -1,59 +0,0 @@
-*{
- margin:0px;
- padding:0px;
-}
-
-html,body{
-
- background-color: #fff;
- font-family: Times New Roman, Arial, sans-serif;
-
-}
-
-
-.container{
- width:100%;
- height:100%;
-}
-
-
-
-.top{
- padding :10px;
-
- height: 109px;
- background-image: url(../images/common/error/bg.jpg?build31910);
- background-repeat : repeat-x ;
- text-align: right;
- padding: 0px 50px 0px 0px;
-}
-
-.logo{
- position: relative;
- top: 20px;
- left:30px;
-}
-
-
-
-.middle{
- width: 100%;
- height: 109px;
-
-}
-
-.error_table{
- position: relative;
- top: 20px;
- left:50px;
-}
-
-
-.error_code{
- font-size:30px;
-}
-
-.error_message{
- vertical-align: top;
-}
-
diff --git a/AgileWorks/WebContent/css/gadget/bootstrap-theme.css b/AgileWorks/WebContent/css/gadget/bootstrap-theme.css
deleted file mode 100644
index c9c347e4160c82e58f17f9db8d272540065a9ed2..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/gadget/bootstrap-theme.css
+++ /dev/null
@@ -1,459 +0,0 @@
-/*!
- * Bootstrap v3.0.2 by @fat and @mdo
- * Copyright 2013 Twitter, Inc.
- * Licensed under http://www.apache.org/licenses/LICENSE-2.0
- *
- * Designed and built with all the love in the world by @mdo and @fat.
- */
-
-.btn-default,
-.btn-primary,
-.btn-success,
-.btn-info,
-.btn-warning,
-.btn-danger {
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
- -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
- box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
-}
-
-.btn-default:active,
-.btn-primary:active,
-.btn-success:active,
-.btn-info:active,
-.btn-warning:active,
-.btn-danger:active,
-.btn-default.active,
-.btn-primary.active,
-.btn-success.active,
-.btn-info.active,
-.btn-warning.active,
-.btn-danger.active {
- -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
- box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
-}
-
-.btn:active,
-.btn.active {
- background-image: none;
-}
-
-.btn-default {
- text-shadow: 0 1px 0 #fff;
- background-image: -webkit-gradient(linear, left 0%, left 100%, from(#ffffff), to(#e0e0e0));
- background-image: -webkit-linear-gradient(top, #ffffff 0%, #e0e0e0 100%);
- background-image: -moz-linear-gradient(top, #ffffff 0%, #e0e0e0 100%);
- background-image: linear-gradient(to bottom, #ffffff 0%, #e0e0e0 100%);
- background-repeat: repeat-x;
- border-color: #dbdbdb;
- border-color: #ccc;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe0e0e0', GradientType=0);
- filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
-}
-
-.btn-default:hover,
-.btn-default:focus {
- background-color: #e0e0e0;
- background-position: 0 -15px;
-}
-
-.btn-default:active,
-.btn-default.active {
- background-color: #e0e0e0;
- border-color: #dbdbdb;
-}
-
-.btn-primary {
- background-image: -webkit-gradient(linear, left 0%, left 100%, from(#428bca), to(#2d6ca2));
- background-image: -webkit-linear-gradient(top, #428bca 0%, #2d6ca2 100%);
- background-image: -moz-linear-gradient(top, #428bca 0%, #2d6ca2 100%);
- background-image: linear-gradient(to bottom, #428bca 0%, #2d6ca2 100%);
- background-repeat: repeat-x;
- border-color: #2b669a;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff2d6ca2', GradientType=0);
- filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
-}
-
-.btn-primary:hover,
-.btn-primary:focus {
- background-color: #2d6ca2;
- background-position: 0 -15px;
-}
-
-.btn-primary:active,
-.btn-primary.active {
- background-color: #2d6ca2;
- border-color: #2b669a;
-}
-
-.btn-success {
- background-image: -webkit-gradient(linear, left 0%, left 100%, from(#5cb85c), to(#419641));
- background-image: -webkit-linear-gradient(top, #5cb85c 0%, #419641 100%);
- background-image: -moz-linear-gradient(top, #5cb85c 0%, #419641 100%);
- background-image: linear-gradient(to bottom, #5cb85c 0%, #419641 100%);
- background-repeat: repeat-x;
- border-color: #3e8f3e;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff419641', GradientType=0);
- filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
-}
-
-.btn-success:hover,
-.btn-success:focus {
- background-color: #419641;
- background-position: 0 -15px;
-}
-
-.btn-success:active,
-.btn-success.active {
- background-color: #419641;
- border-color: #3e8f3e;
-}
-
-.btn-warning {
- background-image: -webkit-gradient(linear, left 0%, left 100%, from(#f0ad4e), to(#eb9316));
- background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #eb9316 100%);
- background-image: -moz-linear-gradient(top, #f0ad4e 0%, #eb9316 100%);
- background-image: linear-gradient(to bottom, #f0ad4e 0%, #eb9316 100%);
- background-repeat: repeat-x;
- border-color: #e38d13;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffeb9316', GradientType=0);
- filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
-}
-
-.btn-warning:hover,
-.btn-warning:focus {
- background-color: #eb9316;
- background-position: 0 -15px;
-}
-
-.btn-warning:active,
-.btn-warning.active {
- background-color: #eb9316;
- border-color: #e38d13;
-}
-
-.btn-danger {
- background-image: -webkit-gradient(linear, left 0%, left 100%, from(#d9534f), to(#c12e2a));
- background-image: -webkit-linear-gradient(top, #d9534f 0%, #c12e2a 100%);
- background-image: -moz-linear-gradient(top, #d9534f 0%, #c12e2a 100%);
- background-image: linear-gradient(to bottom, #d9534f 0%, #c12e2a 100%);
- background-repeat: repeat-x;
- border-color: #b92c28;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc12e2a', GradientType=0);
- filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
-}
-
-.btn-danger:hover,
-.btn-danger:focus {
- background-color: #c12e2a;
- background-position: 0 -15px;
-}
-
-.btn-danger:active,
-.btn-danger.active {
- background-color: #c12e2a;
- border-color: #b92c28;
-}
-
-.btn-info {
- background-image: -webkit-gradient(linear, left 0%, left 100%, from(#5bc0de), to(#2aabd2));
- background-image: -webkit-linear-gradient(top, #5bc0de 0%, #2aabd2 100%);
- background-image: -moz-linear-gradient(top, #5bc0de 0%, #2aabd2 100%);
- background-image: linear-gradient(to bottom, #5bc0de 0%, #2aabd2 100%);
- background-repeat: repeat-x;
- border-color: #28a4c9;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0);
- filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
-}
-
-.btn-info:hover,
-.btn-info:focus {
- background-color: #2aabd2;
- background-position: 0 -15px;
-}
-
-.btn-info:active,
-.btn-info.active {
- background-color: #2aabd2;
- border-color: #28a4c9;
-}
-
-.thumbnail,
-.img-thumbnail {
- -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
- box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
-}
-
-.dropdown-menu > li > a:hover,
-.dropdown-menu > li > a:focus {
- background-color: #e8e8e8;
- background-image: -webkit-gradient(linear, left 0%, left 100%, from(#f5f5f5), to(#e8e8e8));
- background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);
- background-image: -moz-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);
- background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);
-}
-
-.dropdown-menu > .active > a,
-.dropdown-menu > .active > a:hover,
-.dropdown-menu > .active > a:focus {
- background-color: #357ebd;
- background-image: -webkit-gradient(linear, left 0%, left 100%, from(#428bca), to(#357ebd));
- background-image: -webkit-linear-gradient(top, #428bca 0%, #357ebd 100%);
- background-image: -moz-linear-gradient(top, #428bca 0%, #357ebd 100%);
- background-image: linear-gradient(to bottom, #428bca 0%, #357ebd 100%);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff357ebd', GradientType=0);
-}
-
-.navbar-default {
- background-image: -webkit-gradient(linear, left 0%, left 100%, from(#ffffff), to(#f8f8f8));
- background-image: -webkit-linear-gradient(top, #ffffff 0%, #f8f8f8 100%);
- background-image: -moz-linear-gradient(top, #ffffff 0%, #f8f8f8 100%);
- background-image: linear-gradient(to bottom, #ffffff 0%, #f8f8f8 100%);
- background-repeat: repeat-x;
- border-radius: 4px;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff8f8f8', GradientType=0);
- filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
- -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 5px rgba(0, 0, 0, 0.075);
- box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 5px rgba(0, 0, 0, 0.075);
-}
-
-.navbar-default .navbar-nav > .active > a {
- background-image: -webkit-gradient(linear, left 0%, left 100%, from(#ebebeb), to(#f3f3f3));
- background-image: -webkit-linear-gradient(top, #ebebeb 0%, #f3f3f3 100%);
- background-image: -moz-linear-gradient(top, #ebebeb 0%, #f3f3f3 100%);
- background-image: linear-gradient(to bottom, #ebebeb 0%, #f3f3f3 100%);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff3f3f3', GradientType=0);
- -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.075);
- box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.075);
-}
-
-.navbar-brand,
-.navbar-nav > li > a {
- text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
-}
-
-.navbar-inverse {
- background-image: -webkit-gradient(linear, left 0%, left 100%, from(#3c3c3c), to(#222222));
- background-image: -webkit-linear-gradient(top, #3c3c3c 0%, #222222 100%);
- background-image: -moz-linear-gradient(top, #3c3c3c 0%, #222222 100%);
- background-image: linear-gradient(to bottom, #3c3c3c 0%, #222222 100%);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff222222', GradientType=0);
- filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
-}
-
-.navbar-inverse .navbar-nav > .active > a {
- background-image: -webkit-gradient(linear, left 0%, left 100%, from(#222222), to(#282828));
- background-image: -webkit-linear-gradient(top, #222222 0%, #282828 100%);
- background-image: -moz-linear-gradient(top, #222222 0%, #282828 100%);
- background-image: linear-gradient(to bottom, #222222 0%, #282828 100%);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff222222', endColorstr='#ff282828', GradientType=0);
- -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.25);
- box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.25);
-}
-
-.navbar-inverse .navbar-brand,
-.navbar-inverse .navbar-nav > li > a {
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
-}
-
-.navbar-static-top,
-.navbar-fixed-top,
-.navbar-fixed-bottom {
- border-radius: 0;
-}
-
-.alert {
- text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
- -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);
- box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);
-}
-
-.alert-success {
- background-image: -webkit-gradient(linear, left 0%, left 100%, from(#dff0d8), to(#c8e5bc));
- background-image: -webkit-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);
- background-image: -moz-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);
- background-image: linear-gradient(to bottom, #dff0d8 0%, #c8e5bc 100%);
- background-repeat: repeat-x;
- border-color: #b2dba1;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0);
-}
-
-.alert-info {
- background-image: -webkit-gradient(linear, left 0%, left 100%, from(#d9edf7), to(#b9def0));
- background-image: -webkit-linear-gradient(top, #d9edf7 0%, #b9def0 100%);
- background-image: -moz-linear-gradient(top, #d9edf7 0%, #b9def0 100%);
- background-image: linear-gradient(to bottom, #d9edf7 0%, #b9def0 100%);
- background-repeat: repeat-x;
- border-color: #9acfea;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0);
-}
-
-.alert-warning {
- background-image: -webkit-gradient(linear, left 0%, left 100%, from(#fcf8e3), to(#f8efc0));
- background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);
- background-image: -moz-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);
- background-image: linear-gradient(to bottom, #fcf8e3 0%, #f8efc0 100%);
- background-repeat: repeat-x;
- border-color: #f5e79e;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0);
-}
-
-.alert-danger {
- background-image: -webkit-gradient(linear, left 0%, left 100%, from(#f2dede), to(#e7c3c3));
- background-image: -webkit-linear-gradient(top, #f2dede 0%, #e7c3c3 100%);
- background-image: -moz-linear-gradient(top, #f2dede 0%, #e7c3c3 100%);
- background-image: linear-gradient(to bottom, #f2dede 0%, #e7c3c3 100%);
- background-repeat: repeat-x;
- border-color: #dca7a7;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0);
-}
-
-.progress {
- background-image: -webkit-gradient(linear, left 0%, left 100%, from(#ebebeb), to(#f5f5f5));
- background-image: -webkit-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%);
- background-image: -moz-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%);
- background-image: linear-gradient(to bottom, #ebebeb 0%, #f5f5f5 100%);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0);
-}
-
-.progress-bar {
- background-image: -webkit-gradient(linear, left 0%, left 100%, from(#428bca), to(#3071a9));
- background-image: -webkit-linear-gradient(top, #428bca 0%, #3071a9 100%);
- background-image: -moz-linear-gradient(top, #428bca 0%, #3071a9 100%);
- background-image: linear-gradient(to bottom, #428bca 0%, #3071a9 100%);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff3071a9', GradientType=0);
-}
-
-.progress-bar-success {
- background-image: -webkit-gradient(linear, left 0%, left 100%, from(#5cb85c), to(#449d44));
- background-image: -webkit-linear-gradient(top, #5cb85c 0%, #449d44 100%);
- background-image: -moz-linear-gradient(top, #5cb85c 0%, #449d44 100%);
- background-image: linear-gradient(to bottom, #5cb85c 0%, #449d44 100%);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0);
-}
-
-.progress-bar-info {
- background-image: -webkit-gradient(linear, left 0%, left 100%, from(#5bc0de), to(#31b0d5));
- background-image: -webkit-linear-gradient(top, #5bc0de 0%, #31b0d5 100%);
- background-image: -moz-linear-gradient(top, #5bc0de 0%, #31b0d5 100%);
- background-image: linear-gradient(to bottom, #5bc0de 0%, #31b0d5 100%);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0);
-}
-
-.progress-bar-warning {
- background-image: -webkit-gradient(linear, left 0%, left 100%, from(#f0ad4e), to(#ec971f));
- background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #ec971f 100%);
- background-image: -moz-linear-gradient(top, #f0ad4e 0%, #ec971f 100%);
- background-image: linear-gradient(to bottom, #f0ad4e 0%, #ec971f 100%);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0);
-}
-
-.progress-bar-danger {
- background-image: -webkit-gradient(linear, left 0%, left 100%, from(#d9534f), to(#c9302c));
- background-image: -webkit-linear-gradient(top, #d9534f 0%, #c9302c 100%);
- background-image: -moz-linear-gradient(top, #d9534f 0%, #c9302c 100%);
- background-image: linear-gradient(to bottom, #d9534f 0%, #c9302c 100%);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0);
-}
-
-.list-group {
- border-radius: 4px;
- -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
- box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
-}
-
-.list-group-item.active,
-.list-group-item.active:hover,
-.list-group-item.active:focus {
- text-shadow: 0 -1px 0 #3071a9;
- background-image: -webkit-gradient(linear, left 0%, left 100%, from(#428bca), to(#3278b3));
- background-image: -webkit-linear-gradient(top, #428bca 0%, #3278b3 100%);
- background-image: -moz-linear-gradient(top, #428bca 0%, #3278b3 100%);
- background-image: linear-gradient(to bottom, #428bca 0%, #3278b3 100%);
- background-repeat: repeat-x;
- border-color: #3278b3;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff3278b3', GradientType=0);
-}
-
-.panel {
- -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
- box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
-}
-
-.panel-default > .panel-heading {
- background-image: -webkit-gradient(linear, left 0%, left 100%, from(#f5f5f5), to(#e8e8e8));
- background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);
- background-image: -moz-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);
- background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);
-}
-
-.panel-primary > .panel-heading {
- background-image: -webkit-gradient(linear, left 0%, left 100%, from(#428bca), to(#357ebd));
- background-image: -webkit-linear-gradient(top, #428bca 0%, #357ebd 100%);
- background-image: -moz-linear-gradient(top, #428bca 0%, #357ebd 100%);
- background-image: linear-gradient(to bottom, #428bca 0%, #357ebd 100%);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff357ebd', GradientType=0);
-}
-
-.panel-success > .panel-heading {
- background-image: -webkit-gradient(linear, left 0%, left 100%, from(#dff0d8), to(#d0e9c6));
- background-image: -webkit-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%);
- background-image: -moz-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%);
- background-image: linear-gradient(to bottom, #dff0d8 0%, #d0e9c6 100%);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffd0e9c6', GradientType=0);
-}
-
-.panel-info > .panel-heading {
- background-image: -webkit-gradient(linear, left 0%, left 100%, from(#d9edf7), to(#c4e3f3));
- background-image: -webkit-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%);
- background-image: -moz-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%);
- background-image: linear-gradient(to bottom, #d9edf7 0%, #c4e3f3 100%);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffc4e3f3', GradientType=0);
-}
-
-.panel-warning > .panel-heading {
- background-image: -webkit-gradient(linear, left 0%, left 100%, from(#fcf8e3), to(#faf2cc));
- background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%);
- background-image: -moz-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%);
- background-image: linear-gradient(to bottom, #fcf8e3 0%, #faf2cc 100%);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fffaf2cc', GradientType=0);
-}
-
-.panel-danger > .panel-heading {
- background-image: -webkit-gradient(linear, left 0%, left 100%, from(#f2dede), to(#ebcccc));
- background-image: -webkit-linear-gradient(top, #f2dede 0%, #ebcccc 100%);
- background-image: -moz-linear-gradient(top, #f2dede 0%, #ebcccc 100%);
- background-image: linear-gradient(to bottom, #f2dede 0%, #ebcccc 100%);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffebcccc', GradientType=0);
-}
-
-.well {
- background-image: -webkit-gradient(linear, left 0%, left 100%, from(#e8e8e8), to(#f5f5f5));
- background-image: -webkit-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%);
- background-image: -moz-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%);
- background-image: linear-gradient(to bottom, #e8e8e8 0%, #f5f5f5 100%);
- background-repeat: repeat-x;
- border-color: #dcdcdc;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8', endColorstr='#fff5f5f5', GradientType=0);
- -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(255, 255, 255, 0.1);
- box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(255, 255, 255, 0.1);
-}
\ No newline at end of file
diff --git a/AgileWorks/WebContent/css/gadget/bootstrap-theme.min.css b/AgileWorks/WebContent/css/gadget/bootstrap-theme.min.css
deleted file mode 100644
index 916427705795d9fe94e0d793cf27d493135ff142..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/gadget/bootstrap-theme.min.css
+++ /dev/null
@@ -1,9 +0,0 @@
-/*!
- * Bootstrap v3.0.2 by @fat and @mdo
- * Copyright 2013 Twitter, Inc.
- * Licensed under http://www.apache.org/licenses/LICENSE-2.0
- *
- * Designed and built with all the love in the world by @mdo and @fat.
- */
-
-.btn-default,.btn-primary,.btn-success,.btn-info,.btn-warning,.btn-danger{text-shadow:0 -1px 0 rgba(0,0,0,0.2);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.15),0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 0 rgba(255,255,255,0.15),0 1px 1px rgba(0,0,0,0.075)}.btn-default:active,.btn-primary:active,.btn-success:active,.btn-info:active,.btn-warning:active,.btn-danger:active,.btn-default.active,.btn-primary.active,.btn-success.active,.btn-info.active,.btn-warning.active,.btn-danger.active{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn:active,.btn.active{background-image:none}.btn-default{text-shadow:0 1px 0 #fff;background-image:-webkit-gradient(linear,left 0,left 100%,from(#fff),to(#e0e0e0));background-image:-webkit-linear-gradient(top,#fff 0,#e0e0e0 100%);background-image:-moz-linear-gradient(top,#fff 0,#e0e0e0 100%);background-image:linear-gradient(to bottom,#fff 0,#e0e0e0 100%);background-repeat:repeat-x;border-color:#dbdbdb;border-color:#ccc;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff',endColorstr='#ffe0e0e0',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-default:hover,.btn-default:focus{background-color:#e0e0e0;background-position:0 -15px}.btn-default:active,.btn-default.active{background-color:#e0e0e0;border-color:#dbdbdb}.btn-primary{background-image:-webkit-gradient(linear,left 0,left 100%,from(#428bca),to(#2d6ca2));background-image:-webkit-linear-gradient(top,#428bca 0,#2d6ca2 100%);background-image:-moz-linear-gradient(top,#428bca 0,#2d6ca2 100%);background-image:linear-gradient(to bottom,#428bca 0,#2d6ca2 100%);background-repeat:repeat-x;border-color:#2b669a;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca',endColorstr='#ff2d6ca2',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-primary:hover,.btn-primary:focus{background-color:#2d6ca2;background-position:0 -15px}.btn-primary:active,.btn-primary.active{background-color:#2d6ca2;border-color:#2b669a}.btn-success{background-image:-webkit-gradient(linear,left 0,left 100%,from(#5cb85c),to(#419641));background-image:-webkit-linear-gradient(top,#5cb85c 0,#419641 100%);background-image:-moz-linear-gradient(top,#5cb85c 0,#419641 100%);background-image:linear-gradient(to bottom,#5cb85c 0,#419641 100%);background-repeat:repeat-x;border-color:#3e8f3e;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c',endColorstr='#ff419641',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-success:hover,.btn-success:focus{background-color:#419641;background-position:0 -15px}.btn-success:active,.btn-success.active{background-color:#419641;border-color:#3e8f3e}.btn-warning{background-image:-webkit-gradient(linear,left 0,left 100%,from(#f0ad4e),to(#eb9316));background-image:-webkit-linear-gradient(top,#f0ad4e 0,#eb9316 100%);background-image:-moz-linear-gradient(top,#f0ad4e 0,#eb9316 100%);background-image:linear-gradient(to bottom,#f0ad4e 0,#eb9316 100%);background-repeat:repeat-x;border-color:#e38d13;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e',endColorstr='#ffeb9316',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-warning:hover,.btn-warning:focus{background-color:#eb9316;background-position:0 -15px}.btn-warning:active,.btn-warning.active{background-color:#eb9316;border-color:#e38d13}.btn-danger{background-image:-webkit-gradient(linear,left 0,left 100%,from(#d9534f),to(#c12e2a));background-image:-webkit-linear-gradient(top,#d9534f 0,#c12e2a 100%);background-image:-moz-linear-gradient(top,#d9534f 0,#c12e2a 100%);background-image:linear-gradient(to bottom,#d9534f 0,#c12e2a 100%);background-repeat:repeat-x;border-color:#b92c28;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f',endColorstr='#ffc12e2a',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-danger:hover,.btn-danger:focus{background-color:#c12e2a;background-position:0 -15px}.btn-danger:active,.btn-danger.active{background-color:#c12e2a;border-color:#b92c28}.btn-info{background-image:-webkit-gradient(linear,left 0,left 100%,from(#5bc0de),to(#2aabd2));background-image:-webkit-linear-gradient(top,#5bc0de 0,#2aabd2 100%);background-image:-moz-linear-gradient(top,#5bc0de 0,#2aabd2 100%);background-image:linear-gradient(to bottom,#5bc0de 0,#2aabd2 100%);background-repeat:repeat-x;border-color:#28a4c9;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de',endColorstr='#ff2aabd2',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-info:hover,.btn-info:focus{background-color:#2aabd2;background-position:0 -15px}.btn-info:active,.btn-info.active{background-color:#2aabd2;border-color:#28a4c9}.thumbnail,.img-thumbnail{-webkit-box-shadow:0 1px 2px rgba(0,0,0,0.075);box-shadow:0 1px 2px rgba(0,0,0,0.075)}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{background-color:#e8e8e8;background-image:-webkit-gradient(linear,left 0,left 100%,from(#f5f5f5),to(#e8e8e8));background-image:-webkit-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:-moz-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:linear-gradient(to bottom,#f5f5f5 0,#e8e8e8 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5',endColorstr='#ffe8e8e8',GradientType=0)}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{background-color:#357ebd;background-image:-webkit-gradient(linear,left 0,left 100%,from(#428bca),to(#357ebd));background-image:-webkit-linear-gradient(top,#428bca 0,#357ebd 100%);background-image:-moz-linear-gradient(top,#428bca 0,#357ebd 100%);background-image:linear-gradient(to bottom,#428bca 0,#357ebd 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca',endColorstr='#ff357ebd',GradientType=0)}.navbar-default{background-image:-webkit-gradient(linear,left 0,left 100%,from(#fff),to(#f8f8f8));background-image:-webkit-linear-gradient(top,#fff 0,#f8f8f8 100%);background-image:-moz-linear-gradient(top,#fff 0,#f8f8f8 100%);background-image:linear-gradient(to bottom,#fff 0,#f8f8f8 100%);background-repeat:repeat-x;border-radius:4px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff',endColorstr='#fff8f8f8',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.15),0 1px 5px rgba(0,0,0,0.075);box-shadow:inset 0 1px 0 rgba(255,255,255,0.15),0 1px 5px rgba(0,0,0,0.075)}.navbar-default .navbar-nav>.active>a{background-image:-webkit-gradient(linear,left 0,left 100%,from(#ebebeb),to(#f3f3f3));background-image:-webkit-linear-gradient(top,#ebebeb 0,#f3f3f3 100%);background-image:-moz-linear-gradient(top,#ebebeb 0,#f3f3f3 100%);background-image:linear-gradient(to bottom,#ebebeb 0,#f3f3f3 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb',endColorstr='#fff3f3f3',GradientType=0);-webkit-box-shadow:inset 0 3px 9px rgba(0,0,0,0.075);box-shadow:inset 0 3px 9px rgba(0,0,0,0.075)}.navbar-brand,.navbar-nav>li>a{text-shadow:0 1px 0 rgba(255,255,255,0.25)}.navbar-inverse{background-image:-webkit-gradient(linear,left 0,left 100%,from(#3c3c3c),to(#222));background-image:-webkit-linear-gradient(top,#3c3c3c 0,#222 100%);background-image:-moz-linear-gradient(top,#3c3c3c 0,#222 100%);background-image:linear-gradient(to bottom,#3c3c3c 0,#222 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c',endColorstr='#ff222222',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.navbar-inverse .navbar-nav>.active>a{background-image:-webkit-gradient(linear,left 0,left 100%,from(#222),to(#282828));background-image:-webkit-linear-gradient(top,#222 0,#282828 100%);background-image:-moz-linear-gradient(top,#222 0,#282828 100%);background-image:linear-gradient(to bottom,#222 0,#282828 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff222222',endColorstr='#ff282828',GradientType=0);-webkit-box-shadow:inset 0 3px 9px rgba(0,0,0,0.25);box-shadow:inset 0 3px 9px rgba(0,0,0,0.25)}.navbar-inverse .navbar-brand,.navbar-inverse .navbar-nav>li>a{text-shadow:0 -1px 0 rgba(0,0,0,0.25)}.navbar-static-top,.navbar-fixed-top,.navbar-fixed-bottom{border-radius:0}.alert{text-shadow:0 1px 0 rgba(255,255,255,0.2);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.25),0 1px 2px rgba(0,0,0,0.05);box-shadow:inset 0 1px 0 rgba(255,255,255,0.25),0 1px 2px rgba(0,0,0,0.05)}.alert-success{background-image:-webkit-gradient(linear,left 0,left 100%,from(#dff0d8),to(#c8e5bc));background-image:-webkit-linear-gradient(top,#dff0d8 0,#c8e5bc 100%);background-image:-moz-linear-gradient(top,#dff0d8 0,#c8e5bc 100%);background-image:linear-gradient(to bottom,#dff0d8 0,#c8e5bc 100%);background-repeat:repeat-x;border-color:#b2dba1;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8',endColorstr='#ffc8e5bc',GradientType=0)}.alert-info{background-image:-webkit-gradient(linear,left 0,left 100%,from(#d9edf7),to(#b9def0));background-image:-webkit-linear-gradient(top,#d9edf7 0,#b9def0 100%);background-image:-moz-linear-gradient(top,#d9edf7 0,#b9def0 100%);background-image:linear-gradient(to bottom,#d9edf7 0,#b9def0 100%);background-repeat:repeat-x;border-color:#9acfea;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7',endColorstr='#ffb9def0',GradientType=0)}.alert-warning{background-image:-webkit-gradient(linear,left 0,left 100%,from(#fcf8e3),to(#f8efc0));background-image:-webkit-linear-gradient(top,#fcf8e3 0,#f8efc0 100%);background-image:-moz-linear-gradient(top,#fcf8e3 0,#f8efc0 100%);background-image:linear-gradient(to bottom,#fcf8e3 0,#f8efc0 100%);background-repeat:repeat-x;border-color:#f5e79e;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3',endColorstr='#fff8efc0',GradientType=0)}.alert-danger{background-image:-webkit-gradient(linear,left 0,left 100%,from(#f2dede),to(#e7c3c3));background-image:-webkit-linear-gradient(top,#f2dede 0,#e7c3c3 100%);background-image:-moz-linear-gradient(top,#f2dede 0,#e7c3c3 100%);background-image:linear-gradient(to bottom,#f2dede 0,#e7c3c3 100%);background-repeat:repeat-x;border-color:#dca7a7;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede',endColorstr='#ffe7c3c3',GradientType=0)}.progress{background-image:-webkit-gradient(linear,left 0,left 100%,from(#ebebeb),to(#f5f5f5));background-image:-webkit-linear-gradient(top,#ebebeb 0,#f5f5f5 100%);background-image:-moz-linear-gradient(top,#ebebeb 0,#f5f5f5 100%);background-image:linear-gradient(to bottom,#ebebeb 0,#f5f5f5 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb',endColorstr='#fff5f5f5',GradientType=0)}.progress-bar{background-image:-webkit-gradient(linear,left 0,left 100%,from(#428bca),to(#3071a9));background-image:-webkit-linear-gradient(top,#428bca 0,#3071a9 100%);background-image:-moz-linear-gradient(top,#428bca 0,#3071a9 100%);background-image:linear-gradient(to bottom,#428bca 0,#3071a9 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca',endColorstr='#ff3071a9',GradientType=0)}.progress-bar-success{background-image:-webkit-gradient(linear,left 0,left 100%,from(#5cb85c),to(#449d44));background-image:-webkit-linear-gradient(top,#5cb85c 0,#449d44 100%);background-image:-moz-linear-gradient(top,#5cb85c 0,#449d44 100%);background-image:linear-gradient(to bottom,#5cb85c 0,#449d44 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c',endColorstr='#ff449d44',GradientType=0)}.progress-bar-info{background-image:-webkit-gradient(linear,left 0,left 100%,from(#5bc0de),to(#31b0d5));background-image:-webkit-linear-gradient(top,#5bc0de 0,#31b0d5 100%);background-image:-moz-linear-gradient(top,#5bc0de 0,#31b0d5 100%);background-image:linear-gradient(to bottom,#5bc0de 0,#31b0d5 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de',endColorstr='#ff31b0d5',GradientType=0)}.progress-bar-warning{background-image:-webkit-gradient(linear,left 0,left 100%,from(#f0ad4e),to(#ec971f));background-image:-webkit-linear-gradient(top,#f0ad4e 0,#ec971f 100%);background-image:-moz-linear-gradient(top,#f0ad4e 0,#ec971f 100%);background-image:linear-gradient(to bottom,#f0ad4e 0,#ec971f 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e',endColorstr='#ffec971f',GradientType=0)}.progress-bar-danger{background-image:-webkit-gradient(linear,left 0,left 100%,from(#d9534f),to(#c9302c));background-image:-webkit-linear-gradient(top,#d9534f 0,#c9302c 100%);background-image:-moz-linear-gradient(top,#d9534f 0,#c9302c 100%);background-image:linear-gradient(to bottom,#d9534f 0,#c9302c 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f',endColorstr='#ffc9302c',GradientType=0)}.list-group{border-radius:4px;-webkit-box-shadow:0 1px 2px rgba(0,0,0,0.075);box-shadow:0 1px 2px rgba(0,0,0,0.075)}.list-group-item.active,.list-group-item.active:hover,.list-group-item.active:focus{text-shadow:0 -1px 0 #3071a9;background-image:-webkit-gradient(linear,left 0,left 100%,from(#428bca),to(#3278b3));background-image:-webkit-linear-gradient(top,#428bca 0,#3278b3 100%);background-image:-moz-linear-gradient(top,#428bca 0,#3278b3 100%);background-image:linear-gradient(to bottom,#428bca 0,#3278b3 100%);background-repeat:repeat-x;border-color:#3278b3;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca',endColorstr='#ff3278b3',GradientType=0)}.panel{-webkit-box-shadow:0 1px 2px rgba(0,0,0,0.05);box-shadow:0 1px 2px rgba(0,0,0,0.05)}.panel-default>.panel-heading{background-image:-webkit-gradient(linear,left 0,left 100%,from(#f5f5f5),to(#e8e8e8));background-image:-webkit-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:-moz-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:linear-gradient(to bottom,#f5f5f5 0,#e8e8e8 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5',endColorstr='#ffe8e8e8',GradientType=0)}.panel-primary>.panel-heading{background-image:-webkit-gradient(linear,left 0,left 100%,from(#428bca),to(#357ebd));background-image:-webkit-linear-gradient(top,#428bca 0,#357ebd 100%);background-image:-moz-linear-gradient(top,#428bca 0,#357ebd 100%);background-image:linear-gradient(to bottom,#428bca 0,#357ebd 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca',endColorstr='#ff357ebd',GradientType=0)}.panel-success>.panel-heading{background-image:-webkit-gradient(linear,left 0,left 100%,from(#dff0d8),to(#d0e9c6));background-image:-webkit-linear-gradient(top,#dff0d8 0,#d0e9c6 100%);background-image:-moz-linear-gradient(top,#dff0d8 0,#d0e9c6 100%);background-image:linear-gradient(to bottom,#dff0d8 0,#d0e9c6 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8',endColorstr='#ffd0e9c6',GradientType=0)}.panel-info>.panel-heading{background-image:-webkit-gradient(linear,left 0,left 100%,from(#d9edf7),to(#c4e3f3));background-image:-webkit-linear-gradient(top,#d9edf7 0,#c4e3f3 100%);background-image:-moz-linear-gradient(top,#d9edf7 0,#c4e3f3 100%);background-image:linear-gradient(to bottom,#d9edf7 0,#c4e3f3 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7',endColorstr='#ffc4e3f3',GradientType=0)}.panel-warning>.panel-heading{background-image:-webkit-gradient(linear,left 0,left 100%,from(#fcf8e3),to(#faf2cc));background-image:-webkit-linear-gradient(top,#fcf8e3 0,#faf2cc 100%);background-image:-moz-linear-gradient(top,#fcf8e3 0,#faf2cc 100%);background-image:linear-gradient(to bottom,#fcf8e3 0,#faf2cc 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3',endColorstr='#fffaf2cc',GradientType=0)}.panel-danger>.panel-heading{background-image:-webkit-gradient(linear,left 0,left 100%,from(#f2dede),to(#ebcccc));background-image:-webkit-linear-gradient(top,#f2dede 0,#ebcccc 100%);background-image:-moz-linear-gradient(top,#f2dede 0,#ebcccc 100%);background-image:linear-gradient(to bottom,#f2dede 0,#ebcccc 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede',endColorstr='#ffebcccc',GradientType=0)}.well{background-image:-webkit-gradient(linear,left 0,left 100%,from(#e8e8e8),to(#f5f5f5));background-image:-webkit-linear-gradient(top,#e8e8e8 0,#f5f5f5 100%);background-image:-moz-linear-gradient(top,#e8e8e8 0,#f5f5f5 100%);background-image:linear-gradient(to bottom,#e8e8e8 0,#f5f5f5 100%);background-repeat:repeat-x;border-color:#dcdcdc;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8',endColorstr='#fff5f5f5',GradientType=0);-webkit-box-shadow:inset 0 1px 3px rgba(0,0,0,0.05),0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 3px rgba(0,0,0,0.05),0 1px 0 rgba(255,255,255,0.1)}
\ No newline at end of file
diff --git a/AgileWorks/WebContent/css/gadget/bootstrap.css b/AgileWorks/WebContent/css/gadget/bootstrap.css
deleted file mode 100644
index 6aef1f6fd65c53cddc6b8f55617dc9aefb249174..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/gadget/bootstrap.css
+++ /dev/null
@@ -1,7098 +0,0 @@
-/*!
- * Bootstrap v3.0.2 by @fat and @mdo
- * Copyright 2013 Twitter, Inc.
- * Licensed under http://www.apache.org/licenses/LICENSE-2.0
- *
- * Designed and built with all the love in the world by @mdo and @fat.
- */
-
-/*! normalize.css v2.1.3 | MIT License | git.io/normalize */
-
-article,
-aside,
-details,
-figcaption,
-figure,
-footer,
-header,
-hgroup,
-main,
-nav,
-section,
-summary {
- display: block;
-}
-
-audio,
-canvas,
-video {
- display: inline-block;
-}
-
-audio:not([controls]) {
- display: none;
- height: 0;
-}
-
-[hidden],
-template {
- display: none;
-}
-
-html {
- font-family: sans-serif;
- -webkit-text-size-adjust: 100%;
- -ms-text-size-adjust: 100%;
-}
-
-body {
- margin: 0;
-}
-
-a {
- background: transparent;
-}
-
-a:focus {
- outline: thin dotted;
-}
-
-a:active,
-a:hover {
- outline: 0;
-}
-
-h1 {
- margin: 0.67em 0;
- font-size: 2em;
-}
-
-abbr[title] {
- border-bottom: 1px dotted;
-}
-
-b,
-strong {
- font-weight: bold;
-}
-
-dfn {
- font-style: italic;
-}
-
-hr {
- height: 0;
- -moz-box-sizing: content-box;
- box-sizing: content-box;
-}
-
-mark {
- color: #000;
- background: #ff0;
-}
-
-code,
-kbd,
-pre,
-samp {
- font-family: monospace, serif;
- font-size: 1em;
-}
-
-pre {
- white-space: pre-wrap;
-}
-
-q {
- quotes: "\201C" "\201D" "\2018" "\2019";
-}
-
-small {
- font-size: 80%;
-}
-
-sub,
-sup {
- position: relative;
- font-size: 75%;
- line-height: 0;
- vertical-align: baseline;
-}
-
-sup {
- top: -0.5em;
-}
-
-sub {
- bottom: -0.25em;
-}
-
-img {
- border: 0;
-}
-
-svg:not(:root) {
- overflow: hidden;
-}
-
-figure {
- margin: 0;
-}
-
-fieldset {
- padding: 0.35em 0.625em 0.75em;
- margin: 0 2px;
- border: 1px solid #c0c0c0;
-}
-
-legend {
- padding: 0;
- border: 0;
-}
-
-button,
-input,
-select,
-textarea {
- margin: 0;
- font-family: inherit;
- font-size: 100%;
-}
-
-button,
-input {
- line-height: normal;
-}
-
-button,
-select {
- text-transform: none;
-}
-
-button,
-html input[type="button"],
-input[type="reset"],
-input[type="submit"] {
- cursor: pointer;
- -webkit-appearance: button;
-}
-
-button[disabled],
-html input[disabled] {
- cursor: default;
-}
-
-input[type="checkbox"],
-input[type="radio"] {
- padding: 0;
- box-sizing: border-box;
-}
-
-input[type="search"] {
- -webkit-box-sizing: content-box;
- -moz-box-sizing: content-box;
- box-sizing: content-box;
- -webkit-appearance: textfield;
-}
-
-input[type="search"]::-webkit-search-cancel-button,
-input[type="search"]::-webkit-search-decoration {
- -webkit-appearance: none;
-}
-
-button::-moz-focus-inner,
-input::-moz-focus-inner {
- padding: 0;
- border: 0;
-}
-
-textarea {
- overflow: auto;
- vertical-align: top;
-}
-
-table {
- border-collapse: collapse;
- border-spacing: 0;
-}
-
-@media print {
- * {
- color: #000 !important;
- text-shadow: none !important;
- background: transparent !important;
- box-shadow: none !important;
- }
- a,
- a:visited {
- text-decoration: underline;
- }
- a[href]:after {
- content: " (" attr(href) ")";
- }
- abbr[title]:after {
- content: " (" attr(title) ")";
- }
- a[href^="javascript:"]:after,
- a[href^="#"]:after {
- content: "";
- }
- pre,
- blockquote {
- border: 1px solid #999;
- page-break-inside: avoid;
- }
- thead {
- display: table-header-group;
- }
- tr,
- img {
- page-break-inside: avoid;
- }
- img {
- max-width: 100% !important;
- }
- @page {
- margin: 2cm .5cm;
- }
- p,
- h2,
- h3 {
- orphans: 3;
- widows: 3;
- }
- h2,
- h3 {
- page-break-after: avoid;
- }
- select {
- background: #fff !important;
- }
- .navbar {
- display: none;
- }
- .table td,
- .table th {
- background-color: #fff !important;
- }
- .btn > .caret,
- .dropup > .btn > .caret {
- border-top-color: #000 !important;
- }
- .label {
- border: 1px solid #000;
- }
- .table {
- border-collapse: collapse !important;
- }
- .table-bordered th,
- .table-bordered td {
- border: 1px solid #ddd !important;
- }
-}
-
-*,
-*:before,
-*:after {
- -webkit-box-sizing: border-box;
- -moz-box-sizing: border-box;
- box-sizing: border-box;
-}
-
-html {
- font-size: 62.5%;
- -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
-}
-
-body {
- font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
- font-size: 14px;
- line-height: 1.428571429;
- color: #333333;
- background-color: #ffffff;
-}
-
-input,
-button,
-select,
-textarea {
- font-family: inherit;
- font-size: inherit;
- line-height: inherit;
-}
-
-a {
- color: #428bca;
- text-decoration: none;
-}
-
-a:hover,
-a:focus {
- color: #2a6496;
- text-decoration: underline;
-}
-
-a:focus {
- outline: thin dotted #333;
- outline: 5px auto -webkit-focus-ring-color;
- outline-offset: -2px;
-}
-
-img {
- vertical-align: middle;
-}
-
-.img-responsive {
- display: block;
- height: auto;
- max-width: 100%;
-}
-
-.img-rounded {
- border-radius: 6px;
-}
-
-.img-thumbnail {
- display: inline-block;
- height: auto;
- max-width: 100%;
- padding: 4px;
- line-height: 1.428571429;
- background-color: #ffffff;
- border: 1px solid #dddddd;
- border-radius: 4px;
- -webkit-transition: all 0.2s ease-in-out;
- transition: all 0.2s ease-in-out;
-}
-
-.img-circle {
- border-radius: 50%;
-}
-
-hr {
- margin-top: 20px;
- margin-bottom: 20px;
- border: 0;
- border-top: 1px solid #eeeeee;
-}
-
-.sr-only {
- position: absolute;
- width: 1px;
- height: 1px;
- padding: 0;
- margin: -1px;
- overflow: hidden;
- clip: rect(0, 0, 0, 0);
- border: 0;
-}
-
-p {
- margin: 0 0 10px;
-}
-
-.lead {
- margin-bottom: 20px;
- font-size: 16px;
- font-weight: 200;
- line-height: 1.4;
-}
-
-@media (min-width: 768px) {
- .lead {
- font-size: 21px;
- }
-}
-
-small,
-.small {
- font-size: 85%;
-}
-
-cite {
- font-style: normal;
-}
-
-.text-muted {
- color: #999999;
-}
-
-.text-primary {
- color: #428bca;
-}
-
-.text-primary:hover {
- color: #3071a9;
-}
-
-.text-warning {
- color: #c09853;
-}
-
-.text-warning:hover {
- color: #a47e3c;
-}
-
-.text-danger {
- color: #b94a48;
-}
-
-.text-danger:hover {
- color: #953b39;
-}
-
-.text-success {
- color: #468847;
-}
-
-.text-success:hover {
- color: #356635;
-}
-
-.text-info {
- color: #3a87ad;
-}
-
-.text-info:hover {
- color: #2d6987;
-}
-
-.text-left {
- text-align: left;
-}
-
-.text-right {
- text-align: right;
-}
-
-.text-center {
- text-align: center;
-}
-
-h1,
-h2,
-h3,
-h4,
-h5,
-h6,
-.h1,
-.h2,
-.h3,
-.h4,
-.h5,
-.h6 {
- font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
- font-weight: 500;
- line-height: 1.1;
- color: inherit;
-}
-
-h1 small,
-h2 small,
-h3 small,
-h4 small,
-h5 small,
-h6 small,
-.h1 small,
-.h2 small,
-.h3 small,
-.h4 small,
-.h5 small,
-.h6 small,
-h1 .small,
-h2 .small,
-h3 .small,
-h4 .small,
-h5 .small,
-h6 .small,
-.h1 .small,
-.h2 .small,
-.h3 .small,
-.h4 .small,
-.h5 .small,
-.h6 .small {
- font-weight: normal;
- line-height: 1;
- color: #999999;
-}
-
-h1,
-h2,
-h3 {
- margin-top: 20px;
- margin-bottom: 10px;
-}
-
-h1 small,
-h2 small,
-h3 small,
-h1 .small,
-h2 .small,
-h3 .small {
- font-size: 65%;
-}
-
-h4,
-h5,
-h6 {
- margin-top: 10px;
- margin-bottom: 10px;
-}
-
-h4 small,
-h5 small,
-h6 small,
-h4 .small,
-h5 .small,
-h6 .small {
- font-size: 75%;
-}
-
-h1,
-.h1 {
- font-size: 36px;
-}
-
-h2,
-.h2 {
- font-size: 30px;
-}
-
-h3,
-.h3 {
- font-size: 24px;
-}
-
-h4,
-.h4 {
- font-size: 18px;
-}
-
-h5,
-.h5 {
- font-size: 14px;
-}
-
-h6,
-.h6 {
- font-size: 12px;
-}
-
-.page-header {
- padding-bottom: 9px;
- margin: 40px 0 20px;
- border-bottom: 1px solid #eeeeee;
-}
-
-ul,
-ol {
- margin-top: 0;
- margin-bottom: 10px;
-}
-
-ul ul,
-ol ul,
-ul ol,
-ol ol {
- margin-bottom: 0;
-}
-
-.list-unstyled {
- padding-left: 0;
- list-style: none;
-}
-
-.list-inline {
- padding-left: 0;
- list-style: none;
-}
-
-.list-inline > li {
- display: inline-block;
- padding-right: 5px;
- padding-left: 5px;
-}
-
-.list-inline > li:first-child {
- padding-left: 0;
-}
-
-dl {
- margin-bottom: 20px;
-}
-
-dt,
-dd {
- line-height: 1.428571429;
-}
-
-dt {
- font-weight: bold;
-}
-
-dd {
- margin-left: 0;
-}
-
-@media (min-width: 768px) {
- .dl-horizontal dt {
- float: left;
- width: 160px;
- overflow: hidden;
- clear: left;
- text-align: right;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .dl-horizontal dd {
- margin-left: 180px;
- }
- .dl-horizontal dd:before,
- .dl-horizontal dd:after {
- display: table;
- content: " ";
- }
- .dl-horizontal dd:after {
- clear: both;
- }
- .dl-horizontal dd:before,
- .dl-horizontal dd:after {
- display: table;
- content: " ";
- }
- .dl-horizontal dd:after {
- clear: both;
- }
-}
-
-abbr[title],
-abbr[data-original-title] {
- cursor: help;
- border-bottom: 1px dotted #999999;
-}
-
-abbr.initialism {
- font-size: 90%;
- text-transform: uppercase;
-}
-
-blockquote {
- padding: 10px 20px;
- margin: 0 0 20px;
- border-left: 5px solid #eeeeee;
-}
-
-blockquote p {
- font-size: 17.5px;
- font-weight: 300;
- line-height: 1.25;
-}
-
-blockquote p:last-child {
- margin-bottom: 0;
-}
-
-blockquote small {
- display: block;
- line-height: 1.428571429;
- color: #999999;
-}
-
-blockquote small:before {
- content: '\2014 \00A0';
-}
-
-blockquote.pull-right {
- padding-right: 15px;
- padding-left: 0;
- border-right: 5px solid #eeeeee;
- border-left: 0;
-}
-
-blockquote.pull-right p,
-blockquote.pull-right small,
-blockquote.pull-right .small {
- text-align: right;
-}
-
-blockquote.pull-right small:before,
-blockquote.pull-right .small:before {
- content: '';
-}
-
-blockquote.pull-right small:after,
-blockquote.pull-right .small:after {
- content: '\00A0 \2014';
-}
-
-blockquote:before,
-blockquote:after {
- content: "";
-}
-
-address {
- margin-bottom: 20px;
- font-style: normal;
- line-height: 1.428571429;
-}
-
-code,
-kbd,
-pre,
-samp {
- font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
-}
-
-code {
- padding: 2px 4px;
- font-size: 90%;
- color: #c7254e;
- white-space: nowrap;
- background-color: #f9f2f4;
- border-radius: 4px;
-}
-
-pre {
- display: block;
- padding: 9.5px;
- margin: 0 0 10px;
- font-size: 13px;
- line-height: 1.428571429;
- color: #333333;
- word-break: break-all;
- word-wrap: break-word;
- background-color: #f5f5f5;
- border: 1px solid #cccccc;
- border-radius: 4px;
-}
-
-pre code {
- padding: 0;
- font-size: inherit;
- color: inherit;
- white-space: pre-wrap;
- background-color: transparent;
- border-radius: 0;
-}
-
-.pre-scrollable {
- max-height: 340px;
- overflow-y: scroll;
-}
-
-.container {
- padding-right: 15px;
- padding-left: 15px;
- margin-right: auto;
- margin-left: auto;
-}
-
-.container:before,
-.container:after {
- display: table;
- content: " ";
-}
-
-.container:after {
- clear: both;
-}
-
-.container:before,
-.container:after {
- display: table;
- content: " ";
-}
-
-.container:after {
- clear: both;
-}
-
-.row {
- margin-right: -15px;
- margin-left: -15px;
-}
-
-.row:before,
-.row:after {
- display: table;
- content: " ";
-}
-
-.row:after {
- clear: both;
-}
-
-.row:before,
-.row:after {
- display: table;
- content: " ";
-}
-
-.row:after {
- clear: both;
-}
-
-.col-xs-1,
-.col-sm-1,
-.col-md-1,
-.col-lg-1,
-.col-xs-2,
-.col-sm-2,
-.col-md-2,
-.col-lg-2,
-.col-xs-3,
-.col-sm-3,
-.col-md-3,
-.col-lg-3,
-.col-xs-4,
-.col-sm-4,
-.col-md-4,
-.col-lg-4,
-.col-xs-5,
-.col-sm-5,
-.col-md-5,
-.col-lg-5,
-.col-xs-6,
-.col-sm-6,
-.col-md-6,
-.col-lg-6,
-.col-xs-7,
-.col-sm-7,
-.col-md-7,
-.col-lg-7,
-.col-xs-8,
-.col-sm-8,
-.col-md-8,
-.col-lg-8,
-.col-xs-9,
-.col-sm-9,
-.col-md-9,
-.col-lg-9,
-.col-xs-10,
-.col-sm-10,
-.col-md-10,
-.col-lg-10,
-.col-xs-11,
-.col-sm-11,
-.col-md-11,
-.col-lg-11,
-.col-xs-12,
-.col-sm-12,
-.col-md-12,
-.col-lg-12 {
- position: relative;
- min-height: 1px;
- padding-right: 15px;
- padding-left: 15px;
-}
-
-.col-xs-1,
-.col-xs-2,
-.col-xs-3,
-.col-xs-4,
-.col-xs-5,
-.col-xs-6,
-.col-xs-7,
-.col-xs-8,
-.col-xs-9,
-.col-xs-10,
-.col-xs-11 {
- float: left;
-}
-
-.col-xs-12 {
- width: 100%;
-}
-
-.col-xs-11 {
- width: 91.66666666666666%;
-}
-
-.col-xs-10 {
- width: 83.33333333333334%;
-}
-
-.col-xs-9 {
- width: 75%;
-}
-
-.col-xs-8 {
- width: 66.66666666666666%;
-}
-
-.col-xs-7 {
- width: 58.333333333333336%;
-}
-
-.col-xs-6 {
- width: 50%;
-}
-
-.col-xs-5 {
- width: 41.66666666666667%;
-}
-
-.col-xs-4 {
- width: 33.33333333333333%;
-}
-
-.col-xs-3 {
- width: 25%;
-}
-
-.col-xs-2 {
- width: 16.666666666666664%;
-}
-
-.col-xs-1 {
- width: 8.333333333333332%;
-}
-
-.col-xs-pull-12 {
- right: 100%;
-}
-
-.col-xs-pull-11 {
- right: 91.66666666666666%;
-}
-
-.col-xs-pull-10 {
- right: 83.33333333333334%;
-}
-
-.col-xs-pull-9 {
- right: 75%;
-}
-
-.col-xs-pull-8 {
- right: 66.66666666666666%;
-}
-
-.col-xs-pull-7 {
- right: 58.333333333333336%;
-}
-
-.col-xs-pull-6 {
- right: 50%;
-}
-
-.col-xs-pull-5 {
- right: 41.66666666666667%;
-}
-
-.col-xs-pull-4 {
- right: 33.33333333333333%;
-}
-
-.col-xs-pull-3 {
- right: 25%;
-}
-
-.col-xs-pull-2 {
- right: 16.666666666666664%;
-}
-
-.col-xs-pull-1 {
- right: 8.333333333333332%;
-}
-
-.col-xs-pull-0 {
- right: 0;
-}
-
-.col-xs-push-12 {
- left: 100%;
-}
-
-.col-xs-push-11 {
- left: 91.66666666666666%;
-}
-
-.col-xs-push-10 {
- left: 83.33333333333334%;
-}
-
-.col-xs-push-9 {
- left: 75%;
-}
-
-.col-xs-push-8 {
- left: 66.66666666666666%;
-}
-
-.col-xs-push-7 {
- left: 58.333333333333336%;
-}
-
-.col-xs-push-6 {
- left: 50%;
-}
-
-.col-xs-push-5 {
- left: 41.66666666666667%;
-}
-
-.col-xs-push-4 {
- left: 33.33333333333333%;
-}
-
-.col-xs-push-3 {
- left: 25%;
-}
-
-.col-xs-push-2 {
- left: 16.666666666666664%;
-}
-
-.col-xs-push-1 {
- left: 8.333333333333332%;
-}
-
-.col-xs-push-0 {
- left: 0;
-}
-
-.col-xs-offset-12 {
- margin-left: 100%;
-}
-
-.col-xs-offset-11 {
- margin-left: 91.66666666666666%;
-}
-
-.col-xs-offset-10 {
- margin-left: 83.33333333333334%;
-}
-
-.col-xs-offset-9 {
- margin-left: 75%;
-}
-
-.col-xs-offset-8 {
- margin-left: 66.66666666666666%;
-}
-
-.col-xs-offset-7 {
- margin-left: 58.333333333333336%;
-}
-
-.col-xs-offset-6 {
- margin-left: 50%;
-}
-
-.col-xs-offset-5 {
- margin-left: 41.66666666666667%;
-}
-
-.col-xs-offset-4 {
- margin-left: 33.33333333333333%;
-}
-
-.col-xs-offset-3 {
- margin-left: 25%;
-}
-
-.col-xs-offset-2 {
- margin-left: 16.666666666666664%;
-}
-
-.col-xs-offset-1 {
- margin-left: 8.333333333333332%;
-}
-
-.col-xs-offset-0 {
- margin-left: 0;
-}
-
-@media (min-width: 768px) {
- .container {
- width: 750px;
- }
- .col-sm-1,
- .col-sm-2,
- .col-sm-3,
- .col-sm-4,
- .col-sm-5,
- .col-sm-6,
- .col-sm-7,
- .col-sm-8,
- .col-sm-9,
- .col-sm-10,
- .col-sm-11 {
- float: left;
- }
- .col-sm-12 {
- width: 100%;
- }
- .col-sm-11 {
- width: 91.66666666666666%;
- }
- .col-sm-10 {
- width: 83.33333333333334%;
- }
- .col-sm-9 {
- width: 75%;
- }
- .col-sm-8 {
- width: 66.66666666666666%;
- }
- .col-sm-7 {
- width: 58.333333333333336%;
- }
- .col-sm-6 {
- width: 50%;
- }
- .col-sm-5 {
- width: 41.66666666666667%;
- }
- .col-sm-4 {
- width: 33.33333333333333%;
- }
- .col-sm-3 {
- width: 25%;
- }
- .col-sm-2 {
- width: 16.666666666666664%;
- }
- .col-sm-1 {
- width: 8.333333333333332%;
- }
- .col-sm-pull-12 {
- right: 100%;
- }
- .col-sm-pull-11 {
- right: 91.66666666666666%;
- }
- .col-sm-pull-10 {
- right: 83.33333333333334%;
- }
- .col-sm-pull-9 {
- right: 75%;
- }
- .col-sm-pull-8 {
- right: 66.66666666666666%;
- }
- .col-sm-pull-7 {
- right: 58.333333333333336%;
- }
- .col-sm-pull-6 {
- right: 50%;
- }
- .col-sm-pull-5 {
- right: 41.66666666666667%;
- }
- .col-sm-pull-4 {
- right: 33.33333333333333%;
- }
- .col-sm-pull-3 {
- right: 25%;
- }
- .col-sm-pull-2 {
- right: 16.666666666666664%;
- }
- .col-sm-pull-1 {
- right: 8.333333333333332%;
- }
- .col-sm-pull-0 {
- right: 0;
- }
- .col-sm-push-12 {
- left: 100%;
- }
- .col-sm-push-11 {
- left: 91.66666666666666%;
- }
- .col-sm-push-10 {
- left: 83.33333333333334%;
- }
- .col-sm-push-9 {
- left: 75%;
- }
- .col-sm-push-8 {
- left: 66.66666666666666%;
- }
- .col-sm-push-7 {
- left: 58.333333333333336%;
- }
- .col-sm-push-6 {
- left: 50%;
- }
- .col-sm-push-5 {
- left: 41.66666666666667%;
- }
- .col-sm-push-4 {
- left: 33.33333333333333%;
- }
- .col-sm-push-3 {
- left: 25%;
- }
- .col-sm-push-2 {
- left: 16.666666666666664%;
- }
- .col-sm-push-1 {
- left: 8.333333333333332%;
- }
- .col-sm-push-0 {
- left: 0;
- }
- .col-sm-offset-12 {
- margin-left: 100%;
- }
- .col-sm-offset-11 {
- margin-left: 91.66666666666666%;
- }
- .col-sm-offset-10 {
- margin-left: 83.33333333333334%;
- }
- .col-sm-offset-9 {
- margin-left: 75%;
- }
- .col-sm-offset-8 {
- margin-left: 66.66666666666666%;
- }
- .col-sm-offset-7 {
- margin-left: 58.333333333333336%;
- }
- .col-sm-offset-6 {
- margin-left: 50%;
- }
- .col-sm-offset-5 {
- margin-left: 41.66666666666667%;
- }
- .col-sm-offset-4 {
- margin-left: 33.33333333333333%;
- }
- .col-sm-offset-3 {
- margin-left: 25%;
- }
- .col-sm-offset-2 {
- margin-left: 16.666666666666664%;
- }
- .col-sm-offset-1 {
- margin-left: 8.333333333333332%;
- }
- .col-sm-offset-0 {
- margin-left: 0;
- }
-}
-
-@media (min-width: 992px) {
- .container {
- width: 970px;
- }
- .col-md-1,
- .col-md-2,
- .col-md-3,
- .col-md-4,
- .col-md-5,
- .col-md-6,
- .col-md-7,
- .col-md-8,
- .col-md-9,
- .col-md-10,
- .col-md-11 {
- float: left;
- }
- .col-md-12 {
- width: 100%;
- }
- .col-md-11 {
- width: 91.66666666666666%;
- }
- .col-md-10 {
- width: 83.33333333333334%;
- }
- .col-md-9 {
- width: 75%;
- }
- .col-md-8 {
- width: 66.66666666666666%;
- }
- .col-md-7 {
- width: 58.333333333333336%;
- }
- .col-md-6 {
- width: 50%;
- }
- .col-md-5 {
- width: 41.66666666666667%;
- }
- .col-md-4 {
- width: 33.33333333333333%;
- }
- .col-md-3 {
- width: 25%;
- }
- .col-md-2 {
- width: 16.666666666666664%;
- }
- .col-md-1 {
- width: 8.333333333333332%;
- }
- .col-md-pull-12 {
- right: 100%;
- }
- .col-md-pull-11 {
- right: 91.66666666666666%;
- }
- .col-md-pull-10 {
- right: 83.33333333333334%;
- }
- .col-md-pull-9 {
- right: 75%;
- }
- .col-md-pull-8 {
- right: 66.66666666666666%;
- }
- .col-md-pull-7 {
- right: 58.333333333333336%;
- }
- .col-md-pull-6 {
- right: 50%;
- }
- .col-md-pull-5 {
- right: 41.66666666666667%;
- }
- .col-md-pull-4 {
- right: 33.33333333333333%;
- }
- .col-md-pull-3 {
- right: 25%;
- }
- .col-md-pull-2 {
- right: 16.666666666666664%;
- }
- .col-md-pull-1 {
- right: 8.333333333333332%;
- }
- .col-md-pull-0 {
- right: 0;
- }
- .col-md-push-12 {
- left: 100%;
- }
- .col-md-push-11 {
- left: 91.66666666666666%;
- }
- .col-md-push-10 {
- left: 83.33333333333334%;
- }
- .col-md-push-9 {
- left: 75%;
- }
- .col-md-push-8 {
- left: 66.66666666666666%;
- }
- .col-md-push-7 {
- left: 58.333333333333336%;
- }
- .col-md-push-6 {
- left: 50%;
- }
- .col-md-push-5 {
- left: 41.66666666666667%;
- }
- .col-md-push-4 {
- left: 33.33333333333333%;
- }
- .col-md-push-3 {
- left: 25%;
- }
- .col-md-push-2 {
- left: 16.666666666666664%;
- }
- .col-md-push-1 {
- left: 8.333333333333332%;
- }
- .col-md-push-0 {
- left: 0;
- }
- .col-md-offset-12 {
- margin-left: 100%;
- }
- .col-md-offset-11 {
- margin-left: 91.66666666666666%;
- }
- .col-md-offset-10 {
- margin-left: 83.33333333333334%;
- }
- .col-md-offset-9 {
- margin-left: 75%;
- }
- .col-md-offset-8 {
- margin-left: 66.66666666666666%;
- }
- .col-md-offset-7 {
- margin-left: 58.333333333333336%;
- }
- .col-md-offset-6 {
- margin-left: 50%;
- }
- .col-md-offset-5 {
- margin-left: 41.66666666666667%;
- }
- .col-md-offset-4 {
- margin-left: 33.33333333333333%;
- }
- .col-md-offset-3 {
- margin-left: 25%;
- }
- .col-md-offset-2 {
- margin-left: 16.666666666666664%;
- }
- .col-md-offset-1 {
- margin-left: 8.333333333333332%;
- }
- .col-md-offset-0 {
- margin-left: 0;
- }
-}
-
-@media (min-width: 1200px) {
- .container {
- width: 1170px;
- }
- .col-lg-1,
- .col-lg-2,
- .col-lg-3,
- .col-lg-4,
- .col-lg-5,
- .col-lg-6,
- .col-lg-7,
- .col-lg-8,
- .col-lg-9,
- .col-lg-10,
- .col-lg-11 {
- float: left;
- }
- .col-lg-12 {
- width: 100%;
- }
- .col-lg-11 {
- width: 91.66666666666666%;
- }
- .col-lg-10 {
- width: 83.33333333333334%;
- }
- .col-lg-9 {
- width: 75%;
- }
- .col-lg-8 {
- width: 66.66666666666666%;
- }
- .col-lg-7 {
- width: 58.333333333333336%;
- }
- .col-lg-6 {
- width: 50%;
- }
- .col-lg-5 {
- width: 41.66666666666667%;
- }
- .col-lg-4 {
- width: 33.33333333333333%;
- }
- .col-lg-3 {
- width: 25%;
- }
- .col-lg-2 {
- width: 16.666666666666664%;
- }
- .col-lg-1 {
- width: 8.333333333333332%;
- }
- .col-lg-pull-12 {
- right: 100%;
- }
- .col-lg-pull-11 {
- right: 91.66666666666666%;
- }
- .col-lg-pull-10 {
- right: 83.33333333333334%;
- }
- .col-lg-pull-9 {
- right: 75%;
- }
- .col-lg-pull-8 {
- right: 66.66666666666666%;
- }
- .col-lg-pull-7 {
- right: 58.333333333333336%;
- }
- .col-lg-pull-6 {
- right: 50%;
- }
- .col-lg-pull-5 {
- right: 41.66666666666667%;
- }
- .col-lg-pull-4 {
- right: 33.33333333333333%;
- }
- .col-lg-pull-3 {
- right: 25%;
- }
- .col-lg-pull-2 {
- right: 16.666666666666664%;
- }
- .col-lg-pull-1 {
- right: 8.333333333333332%;
- }
- .col-lg-pull-0 {
- right: 0;
- }
- .col-lg-push-12 {
- left: 100%;
- }
- .col-lg-push-11 {
- left: 91.66666666666666%;
- }
- .col-lg-push-10 {
- left: 83.33333333333334%;
- }
- .col-lg-push-9 {
- left: 75%;
- }
- .col-lg-push-8 {
- left: 66.66666666666666%;
- }
- .col-lg-push-7 {
- left: 58.333333333333336%;
- }
- .col-lg-push-6 {
- left: 50%;
- }
- .col-lg-push-5 {
- left: 41.66666666666667%;
- }
- .col-lg-push-4 {
- left: 33.33333333333333%;
- }
- .col-lg-push-3 {
- left: 25%;
- }
- .col-lg-push-2 {
- left: 16.666666666666664%;
- }
- .col-lg-push-1 {
- left: 8.333333333333332%;
- }
- .col-lg-push-0 {
- left: 0;
- }
- .col-lg-offset-12 {
- margin-left: 100%;
- }
- .col-lg-offset-11 {
- margin-left: 91.66666666666666%;
- }
- .col-lg-offset-10 {
- margin-left: 83.33333333333334%;
- }
- .col-lg-offset-9 {
- margin-left: 75%;
- }
- .col-lg-offset-8 {
- margin-left: 66.66666666666666%;
- }
- .col-lg-offset-7 {
- margin-left: 58.333333333333336%;
- }
- .col-lg-offset-6 {
- margin-left: 50%;
- }
- .col-lg-offset-5 {
- margin-left: 41.66666666666667%;
- }
- .col-lg-offset-4 {
- margin-left: 33.33333333333333%;
- }
- .col-lg-offset-3 {
- margin-left: 25%;
- }
- .col-lg-offset-2 {
- margin-left: 16.666666666666664%;
- }
- .col-lg-offset-1 {
- margin-left: 8.333333333333332%;
- }
- .col-lg-offset-0 {
- margin-left: 0;
- }
-}
-
-table {
- max-width: 100%;
- background-color: transparent;
-}
-
-th {
- text-align: left;
-}
-
-.table {
- width: 100%;
- margin-bottom: 20px;
-}
-
-.table > thead > tr > th,
-.table > tbody > tr > th,
-.table > tfoot > tr > th,
-.table > thead > tr > td,
-.table > tbody > tr > td,
-.table > tfoot > tr > td {
- padding: 8px;
- line-height: 1.428571429;
- vertical-align: top;
- border-top: 1px solid #dddddd;
-}
-
-.table > thead > tr > th {
- vertical-align: bottom;
- border-bottom: 2px solid #dddddd;
-}
-
-.table > caption + thead > tr:first-child > th,
-.table > colgroup + thead > tr:first-child > th,
-.table > thead:first-child > tr:first-child > th,
-.table > caption + thead > tr:first-child > td,
-.table > colgroup + thead > tr:first-child > td,
-.table > thead:first-child > tr:first-child > td {
- border-top: 0;
-}
-
-.table > tbody + tbody {
- border-top: 2px solid #dddddd;
-}
-
-.table .table {
- background-color: #ffffff;
-}
-
-.table-condensed > thead > tr > th,
-.table-condensed > tbody > tr > th,
-.table-condensed > tfoot > tr > th,
-.table-condensed > thead > tr > td,
-.table-condensed > tbody > tr > td,
-.table-condensed > tfoot > tr > td {
- padding: 5px;
-}
-
-.table-bordered {
- border: 1px solid #dddddd;
-}
-
-.table-bordered > thead > tr > th,
-.table-bordered > tbody > tr > th,
-.table-bordered > tfoot > tr > th,
-.table-bordered > thead > tr > td,
-.table-bordered > tbody > tr > td,
-.table-bordered > tfoot > tr > td {
- border: 1px solid #dddddd;
-}
-
-.table-bordered > thead > tr > th,
-.table-bordered > thead > tr > td {
- border-bottom-width: 2px;
-}
-
-.table-striped > tbody > tr:nth-child(odd) > td,
-.table-striped > tbody > tr:nth-child(odd) > th {
- background-color: #f9f9f9;
-}
-
-.table-hover > tbody > tr:hover > td,
-.table-hover > tbody > tr:hover > th {
- background-color: #f5f5f5;
-}
-
-table col[class*="col-"] {
- display: table-column;
- float: none;
-}
-
-table td[class*="col-"],
-table th[class*="col-"] {
- display: table-cell;
- float: none;
-}
-
-.table > thead > tr > td.active,
-.table > tbody > tr > td.active,
-.table > tfoot > tr > td.active,
-.table > thead > tr > th.active,
-.table > tbody > tr > th.active,
-.table > tfoot > tr > th.active,
-.table > thead > tr.active > td,
-.table > tbody > tr.active > td,
-.table > tfoot > tr.active > td,
-.table > thead > tr.active > th,
-.table > tbody > tr.active > th,
-.table > tfoot > tr.active > th {
- background-color: #f5f5f5;
-}
-
-.table > thead > tr > td.success,
-.table > tbody > tr > td.success,
-.table > tfoot > tr > td.success,
-.table > thead > tr > th.success,
-.table > tbody > tr > th.success,
-.table > tfoot > tr > th.success,
-.table > thead > tr.success > td,
-.table > tbody > tr.success > td,
-.table > tfoot > tr.success > td,
-.table > thead > tr.success > th,
-.table > tbody > tr.success > th,
-.table > tfoot > tr.success > th {
- background-color: #dff0d8;
-}
-
-.table-hover > tbody > tr > td.success:hover,
-.table-hover > tbody > tr > th.success:hover,
-.table-hover > tbody > tr.success:hover > td,
-.table-hover > tbody > tr.success:hover > th {
- background-color: #d0e9c6;
-}
-
-.table > thead > tr > td.danger,
-.table > tbody > tr > td.danger,
-.table > tfoot > tr > td.danger,
-.table > thead > tr > th.danger,
-.table > tbody > tr > th.danger,
-.table > tfoot > tr > th.danger,
-.table > thead > tr.danger > td,
-.table > tbody > tr.danger > td,
-.table > tfoot > tr.danger > td,
-.table > thead > tr.danger > th,
-.table > tbody > tr.danger > th,
-.table > tfoot > tr.danger > th {
- background-color: #f2dede;
-}
-
-.table-hover > tbody > tr > td.danger:hover,
-.table-hover > tbody > tr > th.danger:hover,
-.table-hover > tbody > tr.danger:hover > td,
-.table-hover > tbody > tr.danger:hover > th {
- background-color: #ebcccc;
-}
-
-.table > thead > tr > td.warning,
-.table > tbody > tr > td.warning,
-.table > tfoot > tr > td.warning,
-.table > thead > tr > th.warning,
-.table > tbody > tr > th.warning,
-.table > tfoot > tr > th.warning,
-.table > thead > tr.warning > td,
-.table > tbody > tr.warning > td,
-.table > tfoot > tr.warning > td,
-.table > thead > tr.warning > th,
-.table > tbody > tr.warning > th,
-.table > tfoot > tr.warning > th {
- background-color: #fcf8e3;
-}
-
-.table-hover > tbody > tr > td.warning:hover,
-.table-hover > tbody > tr > th.warning:hover,
-.table-hover > tbody > tr.warning:hover > td,
-.table-hover > tbody > tr.warning:hover > th {
- background-color: #faf2cc;
-}
-
-@media (max-width: 767px) {
- .table-responsive {
- width: 100%;
- margin-bottom: 15px;
- overflow-x: scroll;
- overflow-y: hidden;
- border: 1px solid #dddddd;
- -ms-overflow-style: -ms-autohiding-scrollbar;
- -webkit-overflow-scrolling: touch;
- }
- .table-responsive > .table {
- margin-bottom: 0;
- }
- .table-responsive > .table > thead > tr > th,
- .table-responsive > .table > tbody > tr > th,
- .table-responsive > .table > tfoot > tr > th,
- .table-responsive > .table > thead > tr > td,
- .table-responsive > .table > tbody > tr > td,
- .table-responsive > .table > tfoot > tr > td {
- white-space: nowrap;
- }
- .table-responsive > .table-bordered {
- border: 0;
- }
- .table-responsive > .table-bordered > thead > tr > th:first-child,
- .table-responsive > .table-bordered > tbody > tr > th:first-child,
- .table-responsive > .table-bordered > tfoot > tr > th:first-child,
- .table-responsive > .table-bordered > thead > tr > td:first-child,
- .table-responsive > .table-bordered > tbody > tr > td:first-child,
- .table-responsive > .table-bordered > tfoot > tr > td:first-child {
- border-left: 0;
- }
- .table-responsive > .table-bordered > thead > tr > th:last-child,
- .table-responsive > .table-bordered > tbody > tr > th:last-child,
- .table-responsive > .table-bordered > tfoot > tr > th:last-child,
- .table-responsive > .table-bordered > thead > tr > td:last-child,
- .table-responsive > .table-bordered > tbody > tr > td:last-child,
- .table-responsive > .table-bordered > tfoot > tr > td:last-child {
- border-right: 0;
- }
- .table-responsive > .table-bordered > tbody > tr:last-child > th,
- .table-responsive > .table-bordered > tfoot > tr:last-child > th,
- .table-responsive > .table-bordered > tbody > tr:last-child > td,
- .table-responsive > .table-bordered > tfoot > tr:last-child > td {
- border-bottom: 0;
- }
-}
-
-fieldset {
- padding: 0;
- margin: 0;
- border: 0;
-}
-
-legend {
- display: block;
- width: 100%;
- padding: 0;
- margin-bottom: 20px;
- font-size: 21px;
- line-height: inherit;
- color: #333333;
- border: 0;
- border-bottom: 1px solid #e5e5e5;
-}
-
-label {
- display: inline-block;
- margin-bottom: 5px;
- font-weight: bold;
-}
-
-input[type="search"] {
- -webkit-box-sizing: border-box;
- -moz-box-sizing: border-box;
- box-sizing: border-box;
-}
-
-input[type="radio"],
-input[type="checkbox"] {
- margin: 4px 0 0;
- margin-top: 1px \9;
- /* IE8-9 */
-
- line-height: normal;
-}
-
-input[type="file"] {
- display: block;
-}
-
-select[multiple],
-select[size] {
- height: auto;
-}
-
-select optgroup {
- font-family: inherit;
- font-size: inherit;
- font-style: inherit;
-}
-
-input[type="file"]:focus,
-input[type="radio"]:focus,
-input[type="checkbox"]:focus {
- outline: thin dotted #333;
- outline: 5px auto -webkit-focus-ring-color;
- outline-offset: -2px;
-}
-
-input[type="number"]::-webkit-outer-spin-button,
-input[type="number"]::-webkit-inner-spin-button {
- height: auto;
-}
-
-output {
- display: block;
- padding-top: 7px;
- font-size: 14px;
- line-height: 1.428571429;
- color: #555555;
- vertical-align: middle;
-}
-
-.form-control {
- display: block;
- width: 100%;
- height: 34px;
- padding: 6px 12px;
- font-size: 14px;
- line-height: 1.428571429;
- color: #555555;
- vertical-align: middle;
- background-color: #ffffff;
- background-image: none;
- border: 1px solid #cccccc;
- border-radius: 4px;
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
- -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
- transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
-}
-
-.form-control:focus {
- border-color: #66afe9;
- outline: 0;
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
-}
-
-.form-control:-moz-placeholder {
- color: #999999;
-}
-
-.form-control::-moz-placeholder {
- color: #999999;
-}
-
-.form-control:-ms-input-placeholder {
- color: #999999;
-}
-
-.form-control::-webkit-input-placeholder {
- color: #999999;
-}
-
-.form-control[disabled],
-.form-control[readonly],
-fieldset[disabled] .form-control {
- cursor: not-allowed;
- background-color: #eeeeee;
-}
-
-textarea.form-control {
- height: auto;
-}
-
-.form-group {
- margin-bottom: 15px;
-}
-
-.radio,
-.checkbox {
- display: block;
- min-height: 20px;
- padding-left: 20px;
- margin-top: 10px;
- margin-bottom: 10px;
- vertical-align: middle;
-}
-
-.radio label,
-.checkbox label {
- display: inline;
- margin-bottom: 0;
- font-weight: normal;
- cursor: pointer;
-}
-
-.radio input[type="radio"],
-.radio-inline input[type="radio"],
-.checkbox input[type="checkbox"],
-.checkbox-inline input[type="checkbox"] {
- float: left;
- margin-left: -20px;
-}
-
-.radio + .radio,
-.checkbox + .checkbox {
- margin-top: -5px;
-}
-
-.radio-inline,
-.checkbox-inline {
- display: inline-block;
- padding-left: 20px;
- margin-bottom: 0;
- font-weight: normal;
- vertical-align: middle;
- cursor: pointer;
-}
-
-.radio-inline + .radio-inline,
-.checkbox-inline + .checkbox-inline {
- margin-top: 0;
- margin-left: 10px;
-}
-
-input[type="radio"][disabled],
-input[type="checkbox"][disabled],
-.radio[disabled],
-.radio-inline[disabled],
-.checkbox[disabled],
-.checkbox-inline[disabled],
-fieldset[disabled] input[type="radio"],
-fieldset[disabled] input[type="checkbox"],
-fieldset[disabled] .radio,
-fieldset[disabled] .radio-inline,
-fieldset[disabled] .checkbox,
-fieldset[disabled] .checkbox-inline {
- cursor: not-allowed;
-}
-
-.input-sm {
- height: 30px;
- padding: 5px 10px;
- font-size: 12px;
- line-height: 1.5;
- border-radius: 3px;
-}
-
-select.input-sm {
- height: 30px;
- line-height: 30px;
-}
-
-textarea.input-sm {
- height: auto;
-}
-
-.input-lg {
- height: 45px;
- padding: 10px 16px;
- font-size: 18px;
- line-height: 1.33;
- border-radius: 6px;
-}
-
-select.input-lg {
- height: 45px;
- line-height: 45px;
-}
-
-textarea.input-lg {
- height: auto;
-}
-
-.has-warning .help-block,
-.has-warning .control-label,
-.has-warning .radio,
-.has-warning .checkbox,
-.has-warning .radio-inline,
-.has-warning .checkbox-inline {
- color: #c09853;
-}
-
-.has-warning .form-control {
- border-color: #c09853;
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
-}
-
-.has-warning .form-control:focus {
- border-color: #a47e3c;
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e;
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e;
-}
-
-.has-warning .input-group-addon {
- color: #c09853;
- background-color: #fcf8e3;
- border-color: #c09853;
-}
-
-.has-error .help-block,
-.has-error .control-label,
-.has-error .radio,
-.has-error .checkbox,
-.has-error .radio-inline,
-.has-error .checkbox-inline {
- color: #b94a48;
-}
-
-.has-error .form-control {
- border-color: #b94a48;
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
-}
-
-.has-error .form-control:focus {
- border-color: #953b39;
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
-}
-
-.has-error .input-group-addon {
- color: #b94a48;
- background-color: #f2dede;
- border-color: #b94a48;
-}
-
-.has-success .help-block,
-.has-success .control-label,
-.has-success .radio,
-.has-success .checkbox,
-.has-success .radio-inline,
-.has-success .checkbox-inline {
- color: #468847;
-}
-
-.has-success .form-control {
- border-color: #468847;
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
-}
-
-.has-success .form-control:focus {
- border-color: #356635;
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b;
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b;
-}
-
-.has-success .input-group-addon {
- color: #468847;
- background-color: #dff0d8;
- border-color: #468847;
-}
-
-.form-control-static {
- margin-bottom: 0;
-}
-
-.help-block {
- display: block;
- margin-top: 5px;
- margin-bottom: 10px;
- color: #737373;
-}
-
-@media (min-width: 768px) {
- .form-inline .form-group {
- display: inline-block;
- margin-bottom: 0;
- vertical-align: middle;
- }
- .form-inline .form-control {
- display: inline-block;
- }
- .form-inline .radio,
- .form-inline .checkbox {
- display: inline-block;
- padding-left: 0;
- margin-top: 0;
- margin-bottom: 0;
- }
- .form-inline .radio input[type="radio"],
- .form-inline .checkbox input[type="checkbox"] {
- float: none;
- margin-left: 0;
- }
-}
-
-.form-horizontal .control-label,
-.form-horizontal .radio,
-.form-horizontal .checkbox,
-.form-horizontal .radio-inline,
-.form-horizontal .checkbox-inline {
- padding-top: 7px;
- margin-top: 0;
- margin-bottom: 0;
-}
-
-.form-horizontal .form-group {
- margin-right: -15px;
- margin-left: -15px;
-}
-
-.form-horizontal .form-group:before,
-.form-horizontal .form-group:after {
- display: table;
- content: " ";
-}
-
-.form-horizontal .form-group:after {
- clear: both;
-}
-
-.form-horizontal .form-group:before,
-.form-horizontal .form-group:after {
- display: table;
- content: " ";
-}
-
-.form-horizontal .form-group:after {
- clear: both;
-}
-
-.form-horizontal .form-control-static {
- padding-top: 7px;
-}
-
-@media (min-width: 768px) {
- .form-horizontal .control-label {
- text-align: right;
- }
-}
-
-.btn {
- display: inline-block;
- padding: 6px 12px;
- margin-bottom: 0;
- font-size: 14px;
- font-weight: normal;
- line-height: 1.428571429;
- text-align: center;
- white-space: nowrap;
- vertical-align: middle;
- cursor: pointer;
- background-image: none;
- border: 1px solid transparent;
- border-radius: 4px;
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- -o-user-select: none;
- user-select: none;
-}
-
-.btn:focus {
- outline: thin dotted #333;
- outline: 5px auto -webkit-focus-ring-color;
- outline-offset: -2px;
-}
-
-.btn:hover,
-.btn:focus {
- color: #333333;
- text-decoration: none;
-}
-
-.btn:active,
-.btn.active {
- background-image: none;
- outline: 0;
- -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
- box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
-}
-
-.btn.disabled,
-.btn[disabled],
-fieldset[disabled] .btn {
- pointer-events: none;
- cursor: not-allowed;
- opacity: 0.65;
- filter: alpha(opacity=65);
- -webkit-box-shadow: none;
- box-shadow: none;
-}
-
-.btn-default {
- color: #333333;
- background-color: #ffffff;
- border-color: #cccccc;
-}
-
-.btn-default:hover,
-.btn-default:focus,
-.btn-default:active,
-.btn-default.active,
-.open .dropdown-toggle.btn-default {
- color: #333333;
- background-color: #ebebeb;
- border-color: #adadad;
-}
-
-.btn-default:active,
-.btn-default.active,
-.open .dropdown-toggle.btn-default {
- background-image: none;
-}
-
-.btn-default.disabled,
-.btn-default[disabled],
-fieldset[disabled] .btn-default,
-.btn-default.disabled:hover,
-.btn-default[disabled]:hover,
-fieldset[disabled] .btn-default:hover,
-.btn-default.disabled:focus,
-.btn-default[disabled]:focus,
-fieldset[disabled] .btn-default:focus,
-.btn-default.disabled:active,
-.btn-default[disabled]:active,
-fieldset[disabled] .btn-default:active,
-.btn-default.disabled.active,
-.btn-default[disabled].active,
-fieldset[disabled] .btn-default.active {
- background-color: #ffffff;
- border-color: #cccccc;
-}
-
-.btn-primary {
- color: #ffffff;
- background-color: #428bca;
- border-color: #357ebd;
-}
-
-.btn-primary:hover,
-.btn-primary:focus,
-.btn-primary:active,
-.btn-primary.active,
-.open .dropdown-toggle.btn-primary {
- color: #ffffff;
- background-color: #3276b1;
- border-color: #285e8e;
-}
-
-.btn-primary:active,
-.btn-primary.active,
-.open .dropdown-toggle.btn-primary {
- background-image: none;
-}
-
-.btn-primary.disabled,
-.btn-primary[disabled],
-fieldset[disabled] .btn-primary,
-.btn-primary.disabled:hover,
-.btn-primary[disabled]:hover,
-fieldset[disabled] .btn-primary:hover,
-.btn-primary.disabled:focus,
-.btn-primary[disabled]:focus,
-fieldset[disabled] .btn-primary:focus,
-.btn-primary.disabled:active,
-.btn-primary[disabled]:active,
-fieldset[disabled] .btn-primary:active,
-.btn-primary.disabled.active,
-.btn-primary[disabled].active,
-fieldset[disabled] .btn-primary.active {
- background-color: #428bca;
- border-color: #357ebd;
-}
-
-.btn-warning {
- color: #ffffff;
- background-color: #f0ad4e;
- border-color: #eea236;
-}
-
-.btn-warning:hover,
-.btn-warning:focus,
-.btn-warning:active,
-.btn-warning.active,
-.open .dropdown-toggle.btn-warning {
- color: #ffffff;
- background-color: #ed9c28;
- border-color: #d58512;
-}
-
-.btn-warning:active,
-.btn-warning.active,
-.open .dropdown-toggle.btn-warning {
- background-image: none;
-}
-
-.btn-warning.disabled,
-.btn-warning[disabled],
-fieldset[disabled] .btn-warning,
-.btn-warning.disabled:hover,
-.btn-warning[disabled]:hover,
-fieldset[disabled] .btn-warning:hover,
-.btn-warning.disabled:focus,
-.btn-warning[disabled]:focus,
-fieldset[disabled] .btn-warning:focus,
-.btn-warning.disabled:active,
-.btn-warning[disabled]:active,
-fieldset[disabled] .btn-warning:active,
-.btn-warning.disabled.active,
-.btn-warning[disabled].active,
-fieldset[disabled] .btn-warning.active {
- background-color: #f0ad4e;
- border-color: #eea236;
-}
-
-.btn-danger {
- color: #ffffff;
- background-color: #d9534f;
- border-color: #d43f3a;
-}
-
-.btn-danger:hover,
-.btn-danger:focus,
-.btn-danger:active,
-.btn-danger.active,
-.open .dropdown-toggle.btn-danger {
- color: #ffffff;
- background-color: #d2322d;
- border-color: #ac2925;
-}
-
-.btn-danger:active,
-.btn-danger.active,
-.open .dropdown-toggle.btn-danger {
- background-image: none;
-}
-
-.btn-danger.disabled,
-.btn-danger[disabled],
-fieldset[disabled] .btn-danger,
-.btn-danger.disabled:hover,
-.btn-danger[disabled]:hover,
-fieldset[disabled] .btn-danger:hover,
-.btn-danger.disabled:focus,
-.btn-danger[disabled]:focus,
-fieldset[disabled] .btn-danger:focus,
-.btn-danger.disabled:active,
-.btn-danger[disabled]:active,
-fieldset[disabled] .btn-danger:active,
-.btn-danger.disabled.active,
-.btn-danger[disabled].active,
-fieldset[disabled] .btn-danger.active {
- background-color: #d9534f;
- border-color: #d43f3a;
-}
-
-.btn-success {
- color: #ffffff;
- background-color: #5cb85c;
- border-color: #4cae4c;
-}
-
-.btn-success:hover,
-.btn-success:focus,
-.btn-success:active,
-.btn-success.active,
-.open .dropdown-toggle.btn-success {
- color: #ffffff;
- background-color: #47a447;
- border-color: #398439;
-}
-
-.btn-success:active,
-.btn-success.active,
-.open .dropdown-toggle.btn-success {
- background-image: none;
-}
-
-.btn-success.disabled,
-.btn-success[disabled],
-fieldset[disabled] .btn-success,
-.btn-success.disabled:hover,
-.btn-success[disabled]:hover,
-fieldset[disabled] .btn-success:hover,
-.btn-success.disabled:focus,
-.btn-success[disabled]:focus,
-fieldset[disabled] .btn-success:focus,
-.btn-success.disabled:active,
-.btn-success[disabled]:active,
-fieldset[disabled] .btn-success:active,
-.btn-success.disabled.active,
-.btn-success[disabled].active,
-fieldset[disabled] .btn-success.active {
- background-color: #5cb85c;
- border-color: #4cae4c;
-}
-
-.btn-info {
- color: #ffffff;
- background-color: #5bc0de;
- border-color: #46b8da;
-}
-
-.btn-info:hover,
-.btn-info:focus,
-.btn-info:active,
-.btn-info.active,
-.open .dropdown-toggle.btn-info {
- color: #ffffff;
- background-color: #39b3d7;
- border-color: #269abc;
-}
-
-.btn-info:active,
-.btn-info.active,
-.open .dropdown-toggle.btn-info {
- background-image: none;
-}
-
-.btn-info.disabled,
-.btn-info[disabled],
-fieldset[disabled] .btn-info,
-.btn-info.disabled:hover,
-.btn-info[disabled]:hover,
-fieldset[disabled] .btn-info:hover,
-.btn-info.disabled:focus,
-.btn-info[disabled]:focus,
-fieldset[disabled] .btn-info:focus,
-.btn-info.disabled:active,
-.btn-info[disabled]:active,
-fieldset[disabled] .btn-info:active,
-.btn-info.disabled.active,
-.btn-info[disabled].active,
-fieldset[disabled] .btn-info.active {
- background-color: #5bc0de;
- border-color: #46b8da;
-}
-
-.btn-link {
- font-weight: normal;
- color: #428bca;
- cursor: pointer;
- border-radius: 0;
-}
-
-.btn-link,
-.btn-link:active,
-.btn-link[disabled],
-fieldset[disabled] .btn-link {
- background-color: transparent;
- -webkit-box-shadow: none;
- box-shadow: none;
-}
-
-.btn-link,
-.btn-link:hover,
-.btn-link:focus,
-.btn-link:active {
- border-color: transparent;
-}
-
-.btn-link:hover,
-.btn-link:focus {
- color: #2a6496;
- text-decoration: underline;
- background-color: transparent;
-}
-
-.btn-link[disabled]:hover,
-fieldset[disabled] .btn-link:hover,
-.btn-link[disabled]:focus,
-fieldset[disabled] .btn-link:focus {
- color: #999999;
- text-decoration: none;
-}
-
-.btn-lg {
- padding: 10px 16px;
- font-size: 18px;
- line-height: 1.33;
- border-radius: 6px;
-}
-
-.btn-sm,
-.btn-xs {
- padding: 5px 10px;
- font-size: 12px;
- line-height: 1.5;
- border-radius: 3px;
-}
-
-.btn-xs {
- padding: 1px 5px;
-}
-
-.btn-block {
- display: block;
- width: 100%;
- padding-right: 0;
- padding-left: 0;
-}
-
-.btn-block + .btn-block {
- margin-top: 5px;
-}
-
-input[type="submit"].btn-block,
-input[type="reset"].btn-block,
-input[type="button"].btn-block {
- width: 100%;
-}
-
-.fade {
- opacity: 0;
- -webkit-transition: opacity 0.15s linear;
- transition: opacity 0.15s linear;
-}
-
-.fade.in {
- opacity: 1;
-}
-
-.collapse {
- display: none;
-}
-
-.collapse.in {
- display: block;
-}
-
-.collapsing {
- position: relative;
- height: 0;
- overflow: hidden;
- -webkit-transition: height 0.35s ease;
- transition: height 0.35s ease;
-}
-
-@font-face {
- font-family: 'Glyphicons Halflings';
- src: url('../fonts/glyphicons-halflings-regular.eot');
- src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
-}
-
-.glyphicon {
- position: relative;
- top: 1px;
- display: inline-block;
- font-family: 'Glyphicons Halflings';
- -webkit-font-smoothing: antialiased;
- font-style: normal;
- font-weight: normal;
- line-height: 1;
- -moz-osx-font-smoothing: grayscale;
-}
-
-.glyphicon:empty {
- width: 1em;
-}
-
-.glyphicon-asterisk:before {
- content: "\2a";
-}
-
-.glyphicon-plus:before {
- content: "\2b";
-}
-
-.glyphicon-euro:before {
- content: "\20ac";
-}
-
-.glyphicon-minus:before {
- content: "\2212";
-}
-
-.glyphicon-cloud:before {
- content: "\2601";
-}
-
-.glyphicon-envelope:before {
- content: "\2709";
-}
-
-.glyphicon-pencil:before {
- content: "\270f";
-}
-
-.glyphicon-glass:before {
- content: "\e001";
-}
-
-.glyphicon-music:before {
- content: "\e002";
-}
-
-.glyphicon-search:before {
- content: "\e003";
-}
-
-.glyphicon-heart:before {
- content: "\e005";
-}
-
-.glyphicon-star:before {
- content: "\e006";
-}
-
-.glyphicon-star-empty:before {
- content: "\e007";
-}
-
-.glyphicon-user:before {
- content: "\e008";
-}
-
-.glyphicon-film:before {
- content: "\e009";
-}
-
-.glyphicon-th-large:before {
- content: "\e010";
-}
-
-.glyphicon-th:before {
- content: "\e011";
-}
-
-.glyphicon-th-list:before {
- content: "\e012";
-}
-
-.glyphicon-ok:before {
- content: "\e013";
-}
-
-.glyphicon-remove:before {
- content: "\e014";
-}
-
-.glyphicon-zoom-in:before {
- content: "\e015";
-}
-
-.glyphicon-zoom-out:before {
- content: "\e016";
-}
-
-.glyphicon-off:before {
- content: "\e017";
-}
-
-.glyphicon-signal:before {
- content: "\e018";
-}
-
-.glyphicon-cog:before {
- content: "\e019";
-}
-
-.glyphicon-trash:before {
- content: "\e020";
-}
-
-.glyphicon-home:before {
- content: "\e021";
-}
-
-.glyphicon-file:before {
- content: "\e022";
-}
-
-.glyphicon-time:before {
- content: "\e023";
-}
-
-.glyphicon-road:before {
- content: "\e024";
-}
-
-.glyphicon-download-alt:before {
- content: "\e025";
-}
-
-.glyphicon-download:before {
- content: "\e026";
-}
-
-.glyphicon-upload:before {
- content: "\e027";
-}
-
-.glyphicon-inbox:before {
- content: "\e028";
-}
-
-.glyphicon-play-circle:before {
- content: "\e029";
-}
-
-.glyphicon-repeat:before {
- content: "\e030";
-}
-
-.glyphicon-refresh:before {
- content: "\e031";
-}
-
-.glyphicon-list-alt:before {
- content: "\e032";
-}
-
-.glyphicon-lock:before {
- content: "\e033";
-}
-
-.glyphicon-flag:before {
- content: "\e034";
-}
-
-.glyphicon-headphones:before {
- content: "\e035";
-}
-
-.glyphicon-volume-off:before {
- content: "\e036";
-}
-
-.glyphicon-volume-down:before {
- content: "\e037";
-}
-
-.glyphicon-volume-up:before {
- content: "\e038";
-}
-
-.glyphicon-qrcode:before {
- content: "\e039";
-}
-
-.glyphicon-barcode:before {
- content: "\e040";
-}
-
-.glyphicon-tag:before {
- content: "\e041";
-}
-
-.glyphicon-tags:before {
- content: "\e042";
-}
-
-.glyphicon-book:before {
- content: "\e043";
-}
-
-.glyphicon-bookmark:before {
- content: "\e044";
-}
-
-.glyphicon-print:before {
- content: "\e045";
-}
-
-.glyphicon-camera:before {
- content: "\e046";
-}
-
-.glyphicon-font:before {
- content: "\e047";
-}
-
-.glyphicon-bold:before {
- content: "\e048";
-}
-
-.glyphicon-italic:before {
- content: "\e049";
-}
-
-.glyphicon-text-height:before {
- content: "\e050";
-}
-
-.glyphicon-text-width:before {
- content: "\e051";
-}
-
-.glyphicon-align-left:before {
- content: "\e052";
-}
-
-.glyphicon-align-center:before {
- content: "\e053";
-}
-
-.glyphicon-align-right:before {
- content: "\e054";
-}
-
-.glyphicon-align-justify:before {
- content: "\e055";
-}
-
-.glyphicon-list:before {
- content: "\e056";
-}
-
-.glyphicon-indent-left:before {
- content: "\e057";
-}
-
-.glyphicon-indent-right:before {
- content: "\e058";
-}
-
-.glyphicon-facetime-video:before {
- content: "\e059";
-}
-
-.glyphicon-picture:before {
- content: "\e060";
-}
-
-.glyphicon-map-marker:before {
- content: "\e062";
-}
-
-.glyphicon-adjust:before {
- content: "\e063";
-}
-
-.glyphicon-tint:before {
- content: "\e064";
-}
-
-.glyphicon-edit:before {
- content: "\e065";
-}
-
-.glyphicon-share:before {
- content: "\e066";
-}
-
-.glyphicon-check:before {
- content: "\e067";
-}
-
-.glyphicon-move:before {
- content: "\e068";
-}
-
-.glyphicon-step-backward:before {
- content: "\e069";
-}
-
-.glyphicon-fast-backward:before {
- content: "\e070";
-}
-
-.glyphicon-backward:before {
- content: "\e071";
-}
-
-.glyphicon-play:before {
- content: "\e072";
-}
-
-.glyphicon-pause:before {
- content: "\e073";
-}
-
-.glyphicon-stop:before {
- content: "\e074";
-}
-
-.glyphicon-forward:before {
- content: "\e075";
-}
-
-.glyphicon-fast-forward:before {
- content: "\e076";
-}
-
-.glyphicon-step-forward:before {
- content: "\e077";
-}
-
-.glyphicon-eject:before {
- content: "\e078";
-}
-
-.glyphicon-chevron-left:before {
- content: "\e079";
-}
-
-.glyphicon-chevron-right:before {
- content: "\e080";
-}
-
-.glyphicon-plus-sign:before {
- content: "\e081";
-}
-
-.glyphicon-minus-sign:before {
- content: "\e082";
-}
-
-.glyphicon-remove-sign:before {
- content: "\e083";
-}
-
-.glyphicon-ok-sign:before {
- content: "\e084";
-}
-
-.glyphicon-question-sign:before {
- content: "\e085";
-}
-
-.glyphicon-info-sign:before {
- content: "\e086";
-}
-
-.glyphicon-screenshot:before {
- content: "\e087";
-}
-
-.glyphicon-remove-circle:before {
- content: "\e088";
-}
-
-.glyphicon-ok-circle:before {
- content: "\e089";
-}
-
-.glyphicon-ban-circle:before {
- content: "\e090";
-}
-
-.glyphicon-arrow-left:before {
- content: "\e091";
-}
-
-.glyphicon-arrow-right:before {
- content: "\e092";
-}
-
-.glyphicon-arrow-up:before {
- content: "\e093";
-}
-
-.glyphicon-arrow-down:before {
- content: "\e094";
-}
-
-.glyphicon-share-alt:before {
- content: "\e095";
-}
-
-.glyphicon-resize-full:before {
- content: "\e096";
-}
-
-.glyphicon-resize-small:before {
- content: "\e097";
-}
-
-.glyphicon-exclamation-sign:before {
- content: "\e101";
-}
-
-.glyphicon-gift:before {
- content: "\e102";
-}
-
-.glyphicon-leaf:before {
- content: "\e103";
-}
-
-.glyphicon-fire:before {
- content: "\e104";
-}
-
-.glyphicon-eye-open:before {
- content: "\e105";
-}
-
-.glyphicon-eye-close:before {
- content: "\e106";
-}
-
-.glyphicon-warning-sign:before {
- content: "\e107";
-}
-
-.glyphicon-plane:before {
- content: "\e108";
-}
-
-.glyphicon-calendar:before {
- content: "\e109";
-}
-
-.glyphicon-random:before {
- content: "\e110";
-}
-
-.glyphicon-comment:before {
- content: "\e111";
-}
-
-.glyphicon-magnet:before {
- content: "\e112";
-}
-
-.glyphicon-chevron-up:before {
- content: "\e113";
-}
-
-.glyphicon-chevron-down:before {
- content: "\e114";
-}
-
-.glyphicon-retweet:before {
- content: "\e115";
-}
-
-.glyphicon-shopping-cart:before {
- content: "\e116";
-}
-
-.glyphicon-folder-close:before {
- content: "\e117";
-}
-
-.glyphicon-folder-open:before {
- content: "\e118";
-}
-
-.glyphicon-resize-vertical:before {
- content: "\e119";
-}
-
-.glyphicon-resize-horizontal:before {
- content: "\e120";
-}
-
-.glyphicon-hdd:before {
- content: "\e121";
-}
-
-.glyphicon-bullhorn:before {
- content: "\e122";
-}
-
-.glyphicon-bell:before {
- content: "\e123";
-}
-
-.glyphicon-certificate:before {
- content: "\e124";
-}
-
-.glyphicon-thumbs-up:before {
- content: "\e125";
-}
-
-.glyphicon-thumbs-down:before {
- content: "\e126";
-}
-
-.glyphicon-hand-right:before {
- content: "\e127";
-}
-
-.glyphicon-hand-left:before {
- content: "\e128";
-}
-
-.glyphicon-hand-up:before {
- content: "\e129";
-}
-
-.glyphicon-hand-down:before {
- content: "\e130";
-}
-
-.glyphicon-circle-arrow-right:before {
- content: "\e131";
-}
-
-.glyphicon-circle-arrow-left:before {
- content: "\e132";
-}
-
-.glyphicon-circle-arrow-up:before {
- content: "\e133";
-}
-
-.glyphicon-circle-arrow-down:before {
- content: "\e134";
-}
-
-.glyphicon-globe:before {
- content: "\e135";
-}
-
-.glyphicon-wrench:before {
- content: "\e136";
-}
-
-.glyphicon-tasks:before {
- content: "\e137";
-}
-
-.glyphicon-filter:before {
- content: "\e138";
-}
-
-.glyphicon-briefcase:before {
- content: "\e139";
-}
-
-.glyphicon-fullscreen:before {
- content: "\e140";
-}
-
-.glyphicon-dashboard:before {
- content: "\e141";
-}
-
-.glyphicon-paperclip:before {
- content: "\e142";
-}
-
-.glyphicon-heart-empty:before {
- content: "\e143";
-}
-
-.glyphicon-link:before {
- content: "\e144";
-}
-
-.glyphicon-phone:before {
- content: "\e145";
-}
-
-.glyphicon-pushpin:before {
- content: "\e146";
-}
-
-.glyphicon-usd:before {
- content: "\e148";
-}
-
-.glyphicon-gbp:before {
- content: "\e149";
-}
-
-.glyphicon-sort:before {
- content: "\e150";
-}
-
-.glyphicon-sort-by-alphabet:before {
- content: "\e151";
-}
-
-.glyphicon-sort-by-alphabet-alt:before {
- content: "\e152";
-}
-
-.glyphicon-sort-by-order:before {
- content: "\e153";
-}
-
-.glyphicon-sort-by-order-alt:before {
- content: "\e154";
-}
-
-.glyphicon-sort-by-attributes:before {
- content: "\e155";
-}
-
-.glyphicon-sort-by-attributes-alt:before {
- content: "\e156";
-}
-
-.glyphicon-unchecked:before {
- content: "\e157";
-}
-
-.glyphicon-expand:before {
- content: "\e158";
-}
-
-.glyphicon-collapse-down:before {
- content: "\e159";
-}
-
-.glyphicon-collapse-up:before {
- content: "\e160";
-}
-
-.glyphicon-log-in:before {
- content: "\e161";
-}
-
-.glyphicon-flash:before {
- content: "\e162";
-}
-
-.glyphicon-log-out:before {
- content: "\e163";
-}
-
-.glyphicon-new-window:before {
- content: "\e164";
-}
-
-.glyphicon-record:before {
- content: "\e165";
-}
-
-.glyphicon-save:before {
- content: "\e166";
-}
-
-.glyphicon-open:before {
- content: "\e167";
-}
-
-.glyphicon-saved:before {
- content: "\e168";
-}
-
-.glyphicon-import:before {
- content: "\e169";
-}
-
-.glyphicon-export:before {
- content: "\e170";
-}
-
-.glyphicon-send:before {
- content: "\e171";
-}
-
-.glyphicon-floppy-disk:before {
- content: "\e172";
-}
-
-.glyphicon-floppy-saved:before {
- content: "\e173";
-}
-
-.glyphicon-floppy-remove:before {
- content: "\e174";
-}
-
-.glyphicon-floppy-save:before {
- content: "\e175";
-}
-
-.glyphicon-floppy-open:before {
- content: "\e176";
-}
-
-.glyphicon-credit-card:before {
- content: "\e177";
-}
-
-.glyphicon-transfer:before {
- content: "\e178";
-}
-
-.glyphicon-cutlery:before {
- content: "\e179";
-}
-
-.glyphicon-header:before {
- content: "\e180";
-}
-
-.glyphicon-compressed:before {
- content: "\e181";
-}
-
-.glyphicon-earphone:before {
- content: "\e182";
-}
-
-.glyphicon-phone-alt:before {
- content: "\e183";
-}
-
-.glyphicon-tower:before {
- content: "\e184";
-}
-
-.glyphicon-stats:before {
- content: "\e185";
-}
-
-.glyphicon-sd-video:before {
- content: "\e186";
-}
-
-.glyphicon-hd-video:before {
- content: "\e187";
-}
-
-.glyphicon-subtitles:before {
- content: "\e188";
-}
-
-.glyphicon-sound-stereo:before {
- content: "\e189";
-}
-
-.glyphicon-sound-dolby:before {
- content: "\e190";
-}
-
-.glyphicon-sound-5-1:before {
- content: "\e191";
-}
-
-.glyphicon-sound-6-1:before {
- content: "\e192";
-}
-
-.glyphicon-sound-7-1:before {
- content: "\e193";
-}
-
-.glyphicon-copyright-mark:before {
- content: "\e194";
-}
-
-.glyphicon-registration-mark:before {
- content: "\e195";
-}
-
-.glyphicon-cloud-download:before {
- content: "\e197";
-}
-
-.glyphicon-cloud-upload:before {
- content: "\e198";
-}
-
-.glyphicon-tree-conifer:before {
- content: "\e199";
-}
-
-.glyphicon-tree-deciduous:before {
- content: "\e200";
-}
-
-.caret {
- display: inline-block;
- width: 0;
- height: 0;
- margin-left: 2px;
- vertical-align: middle;
- border-top: 4px solid #000000;
- border-right: 4px solid transparent;
- border-bottom: 0 dotted;
- border-left: 4px solid transparent;
-}
-
-.dropdown {
- position: relative;
-}
-
-.dropdown-toggle:focus {
- outline: 0;
-}
-
-.dropdown-menu {
- position: absolute;
- top: 100%;
- left: 0;
- z-index: 1000;
- display: none;
- float: left;
- min-width: 160px;
- padding: 5px 0;
- margin: 2px 0 0;
- font-size: 14px;
- list-style: none;
- background-color: #ffffff;
- border: 1px solid #cccccc;
- border: 1px solid rgba(0, 0, 0, 0.15);
- border-radius: 4px;
- -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
- box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
- background-clip: padding-box;
-}
-
-.dropdown-menu.pull-right {
- right: 0;
- left: auto;
-}
-
-.dropdown-menu .divider {
- height: 1px;
- margin: 9px 0;
- overflow: hidden;
- background-color: #e5e5e5;
-}
-
-.dropdown-menu > li > a {
- display: block;
- padding: 3px 20px;
- clear: both;
- font-weight: normal;
- line-height: 1.428571429;
- color: #333333;
- white-space: nowrap;
-}
-
-.dropdown-menu > li > a:hover,
-.dropdown-menu > li > a:focus {
- color: #262626;
- text-decoration: none;
- background-color: #f5f5f5;
-}
-
-.dropdown-menu > .active > a,
-.dropdown-menu > .active > a:hover,
-.dropdown-menu > .active > a:focus {
- color: #ffffff;
- text-decoration: none;
- background-color: #428bca;
- outline: 0;
-}
-
-.dropdown-menu > .disabled > a,
-.dropdown-menu > .disabled > a:hover,
-.dropdown-menu > .disabled > a:focus {
- color: #999999;
-}
-
-.dropdown-menu > .disabled > a:hover,
-.dropdown-menu > .disabled > a:focus {
- text-decoration: none;
- cursor: not-allowed;
- background-color: transparent;
- background-image: none;
- filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
-}
-
-.open > .dropdown-menu {
- display: block;
-}
-
-.open > a {
- outline: 0;
-}
-
-.dropdown-header {
- display: block;
- padding: 3px 20px;
- font-size: 12px;
- line-height: 1.428571429;
- color: #999999;
-}
-
-.dropdown-backdrop {
- position: fixed;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- z-index: 990;
-}
-
-.pull-right > .dropdown-menu {
- right: 0;
- left: auto;
-}
-
-.dropup .caret,
-.navbar-fixed-bottom .dropdown .caret {
- border-top: 0 dotted;
- border-bottom: 4px solid #000000;
- content: "";
-}
-
-.dropup .dropdown-menu,
-.navbar-fixed-bottom .dropdown .dropdown-menu {
- top: auto;
- bottom: 100%;
- margin-bottom: 1px;
-}
-
-@media (min-width: 768px) {
- .navbar-right .dropdown-menu {
- right: 0;
- left: auto;
- }
-}
-
-.btn-default .caret {
- border-top-color: #333333;
-}
-
-.btn-primary .caret,
-.btn-success .caret,
-.btn-warning .caret,
-.btn-danger .caret,
-.btn-info .caret {
- border-top-color: #fff;
-}
-
-.dropup .btn-default .caret {
- border-bottom-color: #333333;
-}
-
-.dropup .btn-primary .caret,
-.dropup .btn-success .caret,
-.dropup .btn-warning .caret,
-.dropup .btn-danger .caret,
-.dropup .btn-info .caret {
- border-bottom-color: #fff;
-}
-
-.btn-group,
-.btn-group-vertical {
- position: relative;
- display: inline-block;
- vertical-align: middle;
-}
-
-.btn-group > .btn,
-.btn-group-vertical > .btn {
- position: relative;
- float: left;
-}
-
-.btn-group > .btn:hover,
-.btn-group-vertical > .btn:hover,
-.btn-group > .btn:focus,
-.btn-group-vertical > .btn:focus,
-.btn-group > .btn:active,
-.btn-group-vertical > .btn:active,
-.btn-group > .btn.active,
-.btn-group-vertical > .btn.active {
- z-index: 2;
-}
-
-.btn-group > .btn:focus,
-.btn-group-vertical > .btn:focus {
- outline: none;
-}
-
-.btn-group .btn + .btn,
-.btn-group .btn + .btn-group,
-.btn-group .btn-group + .btn,
-.btn-group .btn-group + .btn-group {
- margin-left: -1px;
-}
-
-.btn-toolbar:before,
-.btn-toolbar:after {
- display: table;
- content: " ";
-}
-
-.btn-toolbar:after {
- clear: both;
-}
-
-.btn-toolbar:before,
-.btn-toolbar:after {
- display: table;
- content: " ";
-}
-
-.btn-toolbar:after {
- clear: both;
-}
-
-.btn-toolbar .btn-group {
- float: left;
-}
-
-.btn-toolbar > .btn + .btn,
-.btn-toolbar > .btn-group + .btn,
-.btn-toolbar > .btn + .btn-group,
-.btn-toolbar > .btn-group + .btn-group {
- margin-left: 5px;
-}
-
-.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
- border-radius: 0;
-}
-
-.btn-group > .btn:first-child {
- margin-left: 0;
-}
-
-.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
- border-top-right-radius: 0;
- border-bottom-right-radius: 0;
-}
-
-.btn-group > .btn:last-child:not(:first-child),
-.btn-group > .dropdown-toggle:not(:first-child) {
- border-bottom-left-radius: 0;
- border-top-left-radius: 0;
-}
-
-.btn-group > .btn-group {
- float: left;
-}
-
-.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
- border-radius: 0;
-}
-
-.btn-group > .btn-group:first-child > .btn:last-child,
-.btn-group > .btn-group:first-child > .dropdown-toggle {
- border-top-right-radius: 0;
- border-bottom-right-radius: 0;
-}
-
-.btn-group > .btn-group:last-child > .btn:first-child {
- border-bottom-left-radius: 0;
- border-top-left-radius: 0;
-}
-
-.btn-group .dropdown-toggle:active,
-.btn-group.open .dropdown-toggle {
- outline: 0;
-}
-
-.btn-group-xs > .btn {
- padding: 5px 10px;
- padding: 1px 5px;
- font-size: 12px;
- line-height: 1.5;
- border-radius: 3px;
-}
-
-.btn-group-sm > .btn {
- padding: 5px 10px;
- font-size: 12px;
- line-height: 1.5;
- border-radius: 3px;
-}
-
-.btn-group-lg > .btn {
- padding: 10px 16px;
- font-size: 18px;
- line-height: 1.33;
- border-radius: 6px;
-}
-
-.btn-group > .btn + .dropdown-toggle {
- padding-right: 8px;
- padding-left: 8px;
-}
-
-.btn-group > .btn-lg + .dropdown-toggle {
- padding-right: 12px;
- padding-left: 12px;
-}
-
-.btn-group.open .dropdown-toggle {
- -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
- box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
-}
-
-.btn-group.open .dropdown-toggle.btn-link {
- -webkit-box-shadow: none;
- box-shadow: none;
-}
-
-.btn .caret {
- margin-left: 0;
-}
-
-.btn-lg .caret {
- border-width: 5px 5px 0;
- border-bottom-width: 0;
-}
-
-.dropup .btn-lg .caret {
- border-width: 0 5px 5px;
-}
-
-.btn-group-vertical > .btn,
-.btn-group-vertical > .btn-group {
- display: block;
- float: none;
- width: 100%;
- max-width: 100%;
-}
-
-.btn-group-vertical > .btn-group:before,
-.btn-group-vertical > .btn-group:after {
- display: table;
- content: " ";
-}
-
-.btn-group-vertical > .btn-group:after {
- clear: both;
-}
-
-.btn-group-vertical > .btn-group:before,
-.btn-group-vertical > .btn-group:after {
- display: table;
- content: " ";
-}
-
-.btn-group-vertical > .btn-group:after {
- clear: both;
-}
-
-.btn-group-vertical > .btn-group > .btn {
- float: none;
-}
-
-.btn-group-vertical > .btn + .btn,
-.btn-group-vertical > .btn + .btn-group,
-.btn-group-vertical > .btn-group + .btn,
-.btn-group-vertical > .btn-group + .btn-group {
- margin-top: -1px;
- margin-left: 0;
-}
-
-.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
- border-radius: 0;
-}
-
-.btn-group-vertical > .btn:first-child:not(:last-child) {
- border-top-right-radius: 4px;
- border-bottom-right-radius: 0;
- border-bottom-left-radius: 0;
-}
-
-.btn-group-vertical > .btn:last-child:not(:first-child) {
- border-top-right-radius: 0;
- border-bottom-left-radius: 4px;
- border-top-left-radius: 0;
-}
-
-.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
- border-radius: 0;
-}
-
-.btn-group-vertical > .btn-group:first-child > .btn:last-child,
-.btn-group-vertical > .btn-group:first-child > .dropdown-toggle {
- border-bottom-right-radius: 0;
- border-bottom-left-radius: 0;
-}
-
-.btn-group-vertical > .btn-group:last-child > .btn:first-child {
- border-top-right-radius: 0;
- border-top-left-radius: 0;
-}
-
-.btn-group-justified {
- display: table;
- width: 100%;
- border-collapse: separate;
- table-layout: fixed;
-}
-
-.btn-group-justified .btn {
- display: table-cell;
- float: none;
- width: 1%;
-}
-
-[data-toggle="buttons"] > .btn > input[type="radio"],
-[data-toggle="buttons"] > .btn > input[type="checkbox"] {
- display: none;
-}
-
-.input-group {
- position: relative;
- display: table;
- border-collapse: separate;
-}
-
-.input-group.col {
- float: none;
- padding-right: 0;
- padding-left: 0;
-}
-
-.input-group .form-control {
- width: 100%;
- margin-bottom: 0;
-}
-
-.input-group-lg > .form-control,
-.input-group-lg > .input-group-addon,
-.input-group-lg > .input-group-btn > .btn {
- height: 45px;
- padding: 10px 16px;
- font-size: 18px;
- line-height: 1.33;
- border-radius: 6px;
-}
-
-select.input-group-lg > .form-control,
-select.input-group-lg > .input-group-addon,
-select.input-group-lg > .input-group-btn > .btn {
- height: 45px;
- line-height: 45px;
-}
-
-textarea.input-group-lg > .form-control,
-textarea.input-group-lg > .input-group-addon,
-textarea.input-group-lg > .input-group-btn > .btn {
- height: auto;
-}
-
-.input-group-sm > .form-control,
-.input-group-sm > .input-group-addon,
-.input-group-sm > .input-group-btn > .btn {
- height: 30px;
- padding: 5px 10px;
- font-size: 12px;
- line-height: 1.5;
- border-radius: 3px;
-}
-
-select.input-group-sm > .form-control,
-select.input-group-sm > .input-group-addon,
-select.input-group-sm > .input-group-btn > .btn {
- height: 30px;
- line-height: 30px;
-}
-
-textarea.input-group-sm > .form-control,
-textarea.input-group-sm > .input-group-addon,
-textarea.input-group-sm > .input-group-btn > .btn {
- height: auto;
-}
-
-.input-group-addon,
-.input-group-btn,
-.input-group .form-control {
- display: table-cell;
-}
-
-.input-group-addon:not(:first-child):not(:last-child),
-.input-group-btn:not(:first-child):not(:last-child),
-.input-group .form-control:not(:first-child):not(:last-child) {
- border-radius: 0;
-}
-
-.input-group-addon,
-.input-group-btn {
- width: 1%;
- white-space: nowrap;
- vertical-align: middle;
-}
-
-.input-group-addon {
- padding: 6px 12px;
- font-size: 14px;
- font-weight: normal;
- line-height: 1;
- color: #555555;
- text-align: center;
- background-color: #eeeeee;
- border: 1px solid #cccccc;
- border-radius: 4px;
-}
-
-.input-group-addon.input-sm {
- padding: 5px 10px;
- font-size: 12px;
- border-radius: 3px;
-}
-
-.input-group-addon.input-lg {
- padding: 10px 16px;
- font-size: 18px;
- border-radius: 6px;
-}
-
-.input-group-addon input[type="radio"],
-.input-group-addon input[type="checkbox"] {
- margin-top: 0;
-}
-
-.input-group .form-control:first-child,
-.input-group-addon:first-child,
-.input-group-btn:first-child > .btn,
-.input-group-btn:first-child > .dropdown-toggle,
-.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {
- border-top-right-radius: 0;
- border-bottom-right-radius: 0;
-}
-
-.input-group-addon:first-child {
- border-right: 0;
-}
-
-.input-group .form-control:last-child,
-.input-group-addon:last-child,
-.input-group-btn:last-child > .btn,
-.input-group-btn:last-child > .dropdown-toggle,
-.input-group-btn:first-child > .btn:not(:first-child) {
- border-bottom-left-radius: 0;
- border-top-left-radius: 0;
-}
-
-.input-group-addon:last-child {
- border-left: 0;
-}
-
-.input-group-btn {
- position: relative;
- white-space: nowrap;
-}
-
-.input-group-btn:first-child > .btn {
- margin-right: -1px;
-}
-
-.input-group-btn:last-child > .btn {
- margin-left: -1px;
-}
-
-.input-group-btn > .btn {
- position: relative;
-}
-
-.input-group-btn > .btn + .btn {
- margin-left: -4px;
-}
-
-.input-group-btn > .btn:hover,
-.input-group-btn > .btn:active {
- z-index: 2;
-}
-
-.nav {
- padding-left: 0;
- margin-bottom: 0;
- list-style: none;
-}
-
-.nav:before,
-.nav:after {
- display: table;
- content: " ";
-}
-
-.nav:after {
- clear: both;
-}
-
-.nav:before,
-.nav:after {
- display: table;
- content: " ";
-}
-
-.nav:after {
- clear: both;
-}
-
-.nav > li {
- position: relative;
- display: block;
-}
-
-.nav > li > a {
- position: relative;
- display: block;
- padding: 10px 15px;
-}
-
-.nav > li > a:hover,
-.nav > li > a:focus {
- text-decoration: none;
- background-color: #eeeeee;
-}
-
-.nav > li.disabled > a {
- color: #999999;
-}
-
-.nav > li.disabled > a:hover,
-.nav > li.disabled > a:focus {
- color: #999999;
- text-decoration: none;
- cursor: not-allowed;
- background-color: transparent;
-}
-
-.nav .open > a,
-.nav .open > a:hover,
-.nav .open > a:focus {
- background-color: #eeeeee;
- border-color: #428bca;
-}
-
-.nav .open > a .caret,
-.nav .open > a:hover .caret,
-.nav .open > a:focus .caret {
- border-top-color: #2a6496;
- border-bottom-color: #2a6496;
-}
-
-.nav .nav-divider {
- height: 1px;
- margin: 9px 0;
- overflow: hidden;
- background-color: #e5e5e5;
-}
-
-.nav > li > a > img {
- max-width: none;
-}
-
-.nav-tabs {
- border-bottom: 1px solid #dddddd;
-}
-
-.nav-tabs > li {
- float: left;
- margin-bottom: -1px;
-}
-
-.nav-tabs > li > a {
- margin-right: 2px;
- line-height: 1.428571429;
- border: 1px solid transparent;
- border-radius: 4px 4px 0 0;
-}
-
-.nav-tabs > li > a:hover {
- border-color: #eeeeee #eeeeee #dddddd;
-}
-
-.nav-tabs > li.active > a,
-.nav-tabs > li.active > a:hover,
-.nav-tabs > li.active > a:focus {
- color: #555555;
- cursor: default;
- background-color: #ffffff;
- border: 1px solid #dddddd;
- border-bottom-color: transparent;
-}
-
-.nav-tabs.nav-justified {
- width: 100%;
- border-bottom: 0;
-}
-
-.nav-tabs.nav-justified > li {
- float: none;
-}
-
-.nav-tabs.nav-justified > li > a {
- margin-bottom: 5px;
- text-align: center;
-}
-
-.nav-tabs.nav-justified > .dropdown .dropdown-menu {
- top: auto;
- left: auto;
-}
-
-@media (min-width: 768px) {
- .nav-tabs.nav-justified > li {
- display: table-cell;
- width: 1%;
- }
- .nav-tabs.nav-justified > li > a {
- margin-bottom: 0;
- }
-}
-
-.nav-tabs.nav-justified > li > a {
- margin-right: 0;
- border-radius: 4px;
-}
-
-.nav-tabs.nav-justified > .active > a,
-.nav-tabs.nav-justified > .active > a:hover,
-.nav-tabs.nav-justified > .active > a:focus {
- border: 1px solid #dddddd;
-}
-
-@media (min-width: 768px) {
- .nav-tabs.nav-justified > li > a {
- border-bottom: 1px solid #dddddd;
- border-radius: 4px 4px 0 0;
- }
- .nav-tabs.nav-justified > .active > a,
- .nav-tabs.nav-justified > .active > a:hover,
- .nav-tabs.nav-justified > .active > a:focus {
- border-bottom-color: #ffffff;
- }
-}
-
-.nav-pills > li {
- float: left;
-}
-
-.nav-pills > li > a {
- border-radius: 4px;
-}
-
-.nav-pills > li + li {
- margin-left: 2px;
-}
-
-.nav-pills > li.active > a,
-.nav-pills > li.active > a:hover,
-.nav-pills > li.active > a:focus {
- color: #ffffff;
- background-color: #428bca;
-}
-
-.nav-pills > li.active > a .caret,
-.nav-pills > li.active > a:hover .caret,
-.nav-pills > li.active > a:focus .caret {
- border-top-color: #ffffff;
- border-bottom-color: #ffffff;
-}
-
-.nav-stacked > li {
- float: none;
-}
-
-.nav-stacked > li + li {
- margin-top: 2px;
- margin-left: 0;
-}
-
-.nav-justified {
- width: 100%;
-}
-
-.nav-justified > li {
- float: none;
-}
-
-.nav-justified > li > a {
- margin-bottom: 5px;
- text-align: center;
-}
-
-.nav-justified > .dropdown .dropdown-menu {
- top: auto;
- left: auto;
-}
-
-@media (min-width: 768px) {
- .nav-justified > li {
- display: table-cell;
- width: 1%;
- }
- .nav-justified > li > a {
- margin-bottom: 0;
- }
-}
-
-.nav-tabs-justified {
- border-bottom: 0;
-}
-
-.nav-tabs-justified > li > a {
- margin-right: 0;
- border-radius: 4px;
-}
-
-.nav-tabs-justified > .active > a,
-.nav-tabs-justified > .active > a:hover,
-.nav-tabs-justified > .active > a:focus {
- border: 1px solid #dddddd;
-}
-
-@media (min-width: 768px) {
- .nav-tabs-justified > li > a {
- border-bottom: 1px solid #dddddd;
- border-radius: 4px 4px 0 0;
- }
- .nav-tabs-justified > .active > a,
- .nav-tabs-justified > .active > a:hover,
- .nav-tabs-justified > .active > a:focus {
- border-bottom-color: #ffffff;
- }
-}
-
-.tab-content > .tab-pane {
- display: none;
-}
-
-.tab-content > .active {
- display: block;
-}
-
-.nav .caret {
- border-top-color: #428bca;
- border-bottom-color: #428bca;
-}
-
-.nav a:hover .caret {
- border-top-color: #2a6496;
- border-bottom-color: #2a6496;
-}
-
-.nav-tabs .dropdown-menu {
- margin-top: -1px;
- border-top-right-radius: 0;
- border-top-left-radius: 0;
-}
-
-.navbar {
- position: relative;
- min-height: 50px;
- margin-bottom: 20px;
- border: 1px solid transparent;
-}
-
-.navbar:before,
-.navbar:after {
- display: table;
- content: " ";
-}
-
-.navbar:after {
- clear: both;
-}
-
-.navbar:before,
-.navbar:after {
- display: table;
- content: " ";
-}
-
-.navbar:after {
- clear: both;
-}
-
-@media (min-width: 768px) {
- .navbar {
- border-radius: 4px;
- }
-}
-
-.navbar-header:before,
-.navbar-header:after {
- display: table;
- content: " ";
-}
-
-.navbar-header:after {
- clear: both;
-}
-
-.navbar-header:before,
-.navbar-header:after {
- display: table;
- content: " ";
-}
-
-.navbar-header:after {
- clear: both;
-}
-
-@media (min-width: 768px) {
- .navbar-header {
- float: left;
- }
-}
-
-.navbar-collapse {
- max-height: 340px;
- padding-right: 15px;
- padding-left: 15px;
- overflow-x: visible;
- border-top: 1px solid transparent;
- box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
- -webkit-overflow-scrolling: touch;
-}
-
-.navbar-collapse:before,
-.navbar-collapse:after {
- display: table;
- content: " ";
-}
-
-.navbar-collapse:after {
- clear: both;
-}
-
-.navbar-collapse:before,
-.navbar-collapse:after {
- display: table;
- content: " ";
-}
-
-.navbar-collapse:after {
- clear: both;
-}
-
-.navbar-collapse.in {
- overflow-y: auto;
-}
-
-@media (min-width: 768px) {
- .navbar-collapse {
- width: auto;
- border-top: 0;
- box-shadow: none;
- }
- .navbar-collapse.collapse {
- display: block !important;
- height: auto !important;
- padding-bottom: 0;
- overflow: visible !important;
- }
- .navbar-collapse.in {
- overflow-y: auto;
- }
- .navbar-collapse .navbar-nav.navbar-left:first-child {
- margin-left: -15px;
- }
- .navbar-collapse .navbar-nav.navbar-right:last-child {
- margin-right: -15px;
- }
- .navbar-collapse .navbar-text:last-child {
- margin-right: 0;
- }
-}
-
-.container > .navbar-header,
-.container > .navbar-collapse {
- margin-right: -15px;
- margin-left: -15px;
-}
-
-@media (min-width: 768px) {
- .container > .navbar-header,
- .container > .navbar-collapse {
- margin-right: 0;
- margin-left: 0;
- }
-}
-
-.navbar-static-top {
- z-index: 1000;
- border-width: 0 0 1px;
-}
-
-@media (min-width: 768px) {
- .navbar-static-top {
- border-radius: 0;
- }
-}
-
-.navbar-fixed-top,
-.navbar-fixed-bottom {
- position: fixed;
- right: 0;
- left: 0;
- z-index: 1030;
-}
-
-@media (min-width: 768px) {
- .navbar-fixed-top,
- .navbar-fixed-bottom {
- border-radius: 0;
- }
-}
-
-.navbar-fixed-top {
- top: 0;
- border-width: 0 0 1px;
-}
-
-.navbar-fixed-bottom {
- bottom: 0;
- margin-bottom: 0;
- border-width: 1px 0 0;
-}
-
-.navbar-brand {
- float: left;
- padding: 15px 15px;
- font-size: 18px;
- line-height: 20px;
-}
-
-.navbar-brand:hover,
-.navbar-brand:focus {
- text-decoration: none;
-}
-
-@media (min-width: 768px) {
- .navbar > .container .navbar-brand {
- margin-left: -15px;
- }
-}
-
-.navbar-toggle {
- position: relative;
- float: right;
- padding: 9px 10px;
- margin-top: 8px;
- margin-right: 15px;
- margin-bottom: 8px;
- background-color: transparent;
- border: 1px solid transparent;
- border-radius: 4px;
-}
-
-.navbar-toggle .icon-bar {
- display: block;
- width: 22px;
- height: 2px;
- border-radius: 1px;
-}
-
-.navbar-toggle .icon-bar + .icon-bar {
- margin-top: 4px;
-}
-
-@media (min-width: 768px) {
- .navbar-toggle {
- display: none;
- }
-}
-
-.navbar-nav {
- margin: 7.5px -15px;
-}
-
-.navbar-nav > li > a {
- padding-top: 10px;
- padding-bottom: 10px;
- line-height: 20px;
-}
-
-@media (max-width: 767px) {
- .navbar-nav .open .dropdown-menu {
- position: static;
- float: none;
- width: auto;
- margin-top: 0;
- background-color: transparent;
- border: 0;
- box-shadow: none;
- }
- .navbar-nav .open .dropdown-menu > li > a,
- .navbar-nav .open .dropdown-menu .dropdown-header {
- padding: 5px 15px 5px 25px;
- }
- .navbar-nav .open .dropdown-menu > li > a {
- line-height: 20px;
- }
- .navbar-nav .open .dropdown-menu > li > a:hover,
- .navbar-nav .open .dropdown-menu > li > a:focus {
- background-image: none;
- }
-}
-
-@media (min-width: 768px) {
- .navbar-nav {
- float: left;
- margin: 0;
- }
- .navbar-nav > li {
- float: left;
- }
- .navbar-nav > li > a {
- padding-top: 15px;
- padding-bottom: 15px;
- }
-}
-
-@media (min-width: 768px) {
- .navbar-left {
- float: left !important;
- }
- .navbar-right {
- float: right !important;
- }
-}
-
-.navbar-form {
- padding: 10px 15px;
- margin-top: 8px;
- margin-right: -15px;
- margin-bottom: 8px;
- margin-left: -15px;
- border-top: 1px solid transparent;
- border-bottom: 1px solid transparent;
- -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
- box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
-}
-
-@media (min-width: 768px) {
- .navbar-form .form-group {
- display: inline-block;
- margin-bottom: 0;
- vertical-align: middle;
- }
- .navbar-form .form-control {
- display: inline-block;
- }
- .navbar-form .radio,
- .navbar-form .checkbox {
- display: inline-block;
- padding-left: 0;
- margin-top: 0;
- margin-bottom: 0;
- }
- .navbar-form .radio input[type="radio"],
- .navbar-form .checkbox input[type="checkbox"] {
- float: none;
- margin-left: 0;
- }
-}
-
-@media (max-width: 767px) {
- .navbar-form .form-group {
- margin-bottom: 5px;
- }
-}
-
-@media (min-width: 768px) {
- .navbar-form {
- width: auto;
- padding-top: 0;
- padding-bottom: 0;
- margin-right: 0;
- margin-left: 0;
- border: 0;
- -webkit-box-shadow: none;
- box-shadow: none;
- }
-}
-
-.navbar-nav > li > .dropdown-menu {
- margin-top: 0;
- border-top-right-radius: 0;
- border-top-left-radius: 0;
-}
-
-.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
- border-bottom-right-radius: 0;
- border-bottom-left-radius: 0;
-}
-
-.navbar-nav.pull-right > li > .dropdown-menu,
-.navbar-nav > li > .dropdown-menu.pull-right {
- right: 0;
- left: auto;
-}
-
-.navbar-btn {
- margin-top: 8px;
- margin-bottom: 8px;
-}
-
-.navbar-text {
- float: left;
- margin-top: 15px;
- margin-bottom: 15px;
-}
-
-@media (min-width: 768px) {
- .navbar-text {
- margin-right: 15px;
- margin-left: 15px;
- }
-}
-
-.navbar-default {
- background-color: #f8f8f8;
- border-color: #e7e7e7;
-}
-
-.navbar-default .navbar-brand {
- color: #777777;
-}
-
-.navbar-default .navbar-brand:hover,
-.navbar-default .navbar-brand:focus {
- color: #5e5e5e;
- background-color: transparent;
-}
-
-.navbar-default .navbar-text {
- color: #777777;
-}
-
-.navbar-default .navbar-nav > li > a {
- color: #777777;
-}
-
-.navbar-default .navbar-nav > li > a:hover,
-.navbar-default .navbar-nav > li > a:focus {
- color: #333333;
- background-color: transparent;
-}
-
-.navbar-default .navbar-nav > .active > a,
-.navbar-default .navbar-nav > .active > a:hover,
-.navbar-default .navbar-nav > .active > a:focus {
- color: #555555;
- background-color: #e7e7e7;
-}
-
-.navbar-default .navbar-nav > .disabled > a,
-.navbar-default .navbar-nav > .disabled > a:hover,
-.navbar-default .navbar-nav > .disabled > a:focus {
- color: #cccccc;
- background-color: transparent;
-}
-
-.navbar-default .navbar-toggle {
- border-color: #dddddd;
-}
-
-.navbar-default .navbar-toggle:hover,
-.navbar-default .navbar-toggle:focus {
- background-color: #dddddd;
-}
-
-.navbar-default .navbar-toggle .icon-bar {
- background-color: #cccccc;
-}
-
-.navbar-default .navbar-collapse,
-.navbar-default .navbar-form {
- border-color: #e7e7e7;
-}
-
-.navbar-default .navbar-nav > .dropdown > a:hover .caret,
-.navbar-default .navbar-nav > .dropdown > a:focus .caret {
- border-top-color: #333333;
- border-bottom-color: #333333;
-}
-
-.navbar-default .navbar-nav > .open > a,
-.navbar-default .navbar-nav > .open > a:hover,
-.navbar-default .navbar-nav > .open > a:focus {
- color: #555555;
- background-color: #e7e7e7;
-}
-
-.navbar-default .navbar-nav > .open > a .caret,
-.navbar-default .navbar-nav > .open > a:hover .caret,
-.navbar-default .navbar-nav > .open > a:focus .caret {
- border-top-color: #555555;
- border-bottom-color: #555555;
-}
-
-.navbar-default .navbar-nav > .dropdown > a .caret {
- border-top-color: #777777;
- border-bottom-color: #777777;
-}
-
-@media (max-width: 767px) {
- .navbar-default .navbar-nav .open .dropdown-menu > li > a {
- color: #777777;
- }
- .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
- .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
- color: #333333;
- background-color: transparent;
- }
- .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
- .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
- .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
- color: #555555;
- background-color: #e7e7e7;
- }
- .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
- .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
- .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
- color: #cccccc;
- background-color: transparent;
- }
-}
-
-.navbar-default .navbar-link {
- color: #777777;
-}
-
-.navbar-default .navbar-link:hover {
- color: #333333;
-}
-
-.navbar-inverse {
- background-color: #222222;
- border-color: #080808;
-}
-
-.navbar-inverse .navbar-brand {
- color: #999999;
-}
-
-.navbar-inverse .navbar-brand:hover,
-.navbar-inverse .navbar-brand:focus {
- color: #ffffff;
- background-color: transparent;
-}
-
-.navbar-inverse .navbar-text {
- color: #999999;
-}
-
-.navbar-inverse .navbar-nav > li > a {
- color: #999999;
-}
-
-.navbar-inverse .navbar-nav > li > a:hover,
-.navbar-inverse .navbar-nav > li > a:focus {
- color: #ffffff;
- background-color: transparent;
-}
-
-.navbar-inverse .navbar-nav > .active > a,
-.navbar-inverse .navbar-nav > .active > a:hover,
-.navbar-inverse .navbar-nav > .active > a:focus {
- color: #ffffff;
- background-color: #080808;
-}
-
-.navbar-inverse .navbar-nav > .disabled > a,
-.navbar-inverse .navbar-nav > .disabled > a:hover,
-.navbar-inverse .navbar-nav > .disabled > a:focus {
- color: #444444;
- background-color: transparent;
-}
-
-.navbar-inverse .navbar-toggle {
- border-color: #333333;
-}
-
-.navbar-inverse .navbar-toggle:hover,
-.navbar-inverse .navbar-toggle:focus {
- background-color: #333333;
-}
-
-.navbar-inverse .navbar-toggle .icon-bar {
- background-color: #ffffff;
-}
-
-.navbar-inverse .navbar-collapse,
-.navbar-inverse .navbar-form {
- border-color: #101010;
-}
-
-.navbar-inverse .navbar-nav > .open > a,
-.navbar-inverse .navbar-nav > .open > a:hover,
-.navbar-inverse .navbar-nav > .open > a:focus {
- color: #ffffff;
- background-color: #080808;
-}
-
-.navbar-inverse .navbar-nav > .dropdown > a:hover .caret {
- border-top-color: #ffffff;
- border-bottom-color: #ffffff;
-}
-
-.navbar-inverse .navbar-nav > .dropdown > a .caret {
- border-top-color: #999999;
- border-bottom-color: #999999;
-}
-
-.navbar-inverse .navbar-nav > .open > a .caret,
-.navbar-inverse .navbar-nav > .open > a:hover .caret,
-.navbar-inverse .navbar-nav > .open > a:focus .caret {
- border-top-color: #ffffff;
- border-bottom-color: #ffffff;
-}
-
-@media (max-width: 767px) {
- .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
- border-color: #080808;
- }
- .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
- color: #999999;
- }
- .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
- .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
- color: #ffffff;
- background-color: transparent;
- }
- .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
- .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
- .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
- color: #ffffff;
- background-color: #080808;
- }
- .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
- .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
- .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
- color: #444444;
- background-color: transparent;
- }
-}
-
-.navbar-inverse .navbar-link {
- color: #999999;
-}
-
-.navbar-inverse .navbar-link:hover {
- color: #ffffff;
-}
-
-.breadcrumb {
- padding: 8px 15px;
- margin-bottom: 20px;
- list-style: none;
- background-color: #f5f5f5;
- border-radius: 4px;
-}
-
-.breadcrumb > li {
- display: inline-block;
-}
-
-.breadcrumb > li + li:before {
- padding: 0 5px;
- color: #cccccc;
- content: "/\00a0";
-}
-
-.breadcrumb > .active {
- color: #999999;
-}
-
-.pagination {
- display: inline-block;
- padding-left: 0;
- margin: 20px 0;
- border-radius: 4px;
-}
-
-.pagination > li {
- display: inline;
-}
-
-.pagination > li > a,
-.pagination > li > span {
- position: relative;
- float: left;
- padding: 6px 12px;
- margin-left: -1px;
- line-height: 1.428571429;
- text-decoration: none;
- background-color: #ffffff;
- border: 1px solid #dddddd;
-}
-
-.pagination > li:first-child > a,
-.pagination > li:first-child > span {
- margin-left: 0;
- border-bottom-left-radius: 4px;
- border-top-left-radius: 4px;
-}
-
-.pagination > li:last-child > a,
-.pagination > li:last-child > span {
- border-top-right-radius: 4px;
- border-bottom-right-radius: 4px;
-}
-
-.pagination > li > a:hover,
-.pagination > li > span:hover,
-.pagination > li > a:focus,
-.pagination > li > span:focus {
- background-color: #eeeeee;
-}
-
-.pagination > .active > a,
-.pagination > .active > span,
-.pagination > .active > a:hover,
-.pagination > .active > span:hover,
-.pagination > .active > a:focus,
-.pagination > .active > span:focus {
- z-index: 2;
- color: #ffffff;
- cursor: default;
- background-color: #428bca;
- border-color: #428bca;
-}
-
-.pagination > .disabled > span,
-.pagination > .disabled > span:hover,
-.pagination > .disabled > span:focus,
-.pagination > .disabled > a,
-.pagination > .disabled > a:hover,
-.pagination > .disabled > a:focus {
- color: #999999;
- cursor: not-allowed;
- background-color: #ffffff;
- border-color: #dddddd;
-}
-
-.pagination-lg > li > a,
-.pagination-lg > li > span {
- padding: 10px 16px;
- font-size: 18px;
-}
-
-.pagination-lg > li:first-child > a,
-.pagination-lg > li:first-child > span {
- border-bottom-left-radius: 6px;
- border-top-left-radius: 6px;
-}
-
-.pagination-lg > li:last-child > a,
-.pagination-lg > li:last-child > span {
- border-top-right-radius: 6px;
- border-bottom-right-radius: 6px;
-}
-
-.pagination-sm > li > a,
-.pagination-sm > li > span {
- padding: 5px 10px;
- font-size: 12px;
-}
-
-.pagination-sm > li:first-child > a,
-.pagination-sm > li:first-child > span {
- border-bottom-left-radius: 3px;
- border-top-left-radius: 3px;
-}
-
-.pagination-sm > li:last-child > a,
-.pagination-sm > li:last-child > span {
- border-top-right-radius: 3px;
- border-bottom-right-radius: 3px;
-}
-
-.pager {
- padding-left: 0;
- margin: 20px 0;
- text-align: center;
- list-style: none;
-}
-
-.pager:before,
-.pager:after {
- display: table;
- content: " ";
-}
-
-.pager:after {
- clear: both;
-}
-
-.pager:before,
-.pager:after {
- display: table;
- content: " ";
-}
-
-.pager:after {
- clear: both;
-}
-
-.pager li {
- display: inline;
-}
-
-.pager li > a,
-.pager li > span {
- display: inline-block;
- padding: 5px 14px;
- background-color: #ffffff;
- border: 1px solid #dddddd;
- border-radius: 15px;
-}
-
-.pager li > a:hover,
-.pager li > a:focus {
- text-decoration: none;
- background-color: #eeeeee;
-}
-
-.pager .next > a,
-.pager .next > span {
- float: right;
-}
-
-.pager .previous > a,
-.pager .previous > span {
- float: left;
-}
-
-.pager .disabled > a,
-.pager .disabled > a:hover,
-.pager .disabled > a:focus,
-.pager .disabled > span {
- color: #999999;
- cursor: not-allowed;
- background-color: #ffffff;
-}
-
-.label {
- display: inline;
- padding: .2em .6em .3em;
- font-size: 75%;
- font-weight: bold;
- line-height: 1;
- color: #ffffff;
- text-align: center;
- white-space: nowrap;
- vertical-align: baseline;
- border-radius: .25em;
-}
-
-.label[href]:hover,
-.label[href]:focus {
- color: #ffffff;
- text-decoration: none;
- cursor: pointer;
-}
-
-.label:empty {
- display: none;
-}
-
-.label-default {
- background-color: #999999;
-}
-
-.label-default[href]:hover,
-.label-default[href]:focus {
- background-color: #808080;
-}
-
-.label-primary {
- background-color: #428bca;
-}
-
-.label-primary[href]:hover,
-.label-primary[href]:focus {
- background-color: #3071a9;
-}
-
-.label-success {
- background-color: #5cb85c;
-}
-
-.label-success[href]:hover,
-.label-success[href]:focus {
- background-color: #449d44;
-}
-
-.label-info {
- background-color: #5bc0de;
-}
-
-.label-info[href]:hover,
-.label-info[href]:focus {
- background-color: #31b0d5;
-}
-
-.label-warning {
- background-color: #f0ad4e;
-}
-
-.label-warning[href]:hover,
-.label-warning[href]:focus {
- background-color: #ec971f;
-}
-
-.label-danger {
- background-color: #d9534f;
-}
-
-.label-danger[href]:hover,
-.label-danger[href]:focus {
- background-color: #c9302c;
-}
-
-.badge {
- display: inline-block;
- min-width: 10px;
- padding: 3px 7px;
- font-size: 12px;
- font-weight: bold;
- line-height: 1;
- color: #ffffff;
- text-align: center;
- white-space: nowrap;
- vertical-align: baseline;
- background-color: #999999;
- border-radius: 10px;
-}
-
-.badge:empty {
- display: none;
-}
-
-a.badge:hover,
-a.badge:focus {
- color: #ffffff;
- text-decoration: none;
- cursor: pointer;
-}
-
-.btn .badge {
- position: relative;
- top: -1px;
-}
-
-a.list-group-item.active > .badge,
-.nav-pills > .active > a > .badge {
- color: #428bca;
- background-color: #ffffff;
-}
-
-.nav-pills > li > a > .badge {
- margin-left: 3px;
-}
-
-.jumbotron {
- padding: 30px;
- margin-bottom: 30px;
- font-size: 21px;
- font-weight: 200;
- line-height: 2.1428571435;
- color: inherit;
- background-color: #eeeeee;
-}
-
-.jumbotron h1 {
- line-height: 1;
- color: inherit;
-}
-
-.jumbotron p {
- line-height: 1.4;
-}
-
-.container .jumbotron {
- border-radius: 6px;
-}
-
-@media screen and (min-width: 768px) {
- .jumbotron {
- padding-top: 48px;
- padding-bottom: 48px;
- }
- .container .jumbotron {
- padding-right: 60px;
- padding-left: 60px;
- }
- .jumbotron h1 {
- font-size: 63px;
- }
-}
-
-.thumbnail {
- display: inline-block;
- display: block;
- height: auto;
- max-width: 100%;
- padding: 4px;
- margin-bottom: 20px;
- line-height: 1.428571429;
- background-color: #ffffff;
- border: 1px solid #dddddd;
- border-radius: 4px;
- -webkit-transition: all 0.2s ease-in-out;
- transition: all 0.2s ease-in-out;
-}
-
-.thumbnail > img {
- display: block;
- height: auto;
- max-width: 100%;
- margin-right: auto;
- margin-left: auto;
-}
-
-a.thumbnail:hover,
-a.thumbnail:focus,
-a.thumbnail.active {
- border-color: #428bca;
-}
-
-.thumbnail .caption {
- padding: 9px;
- color: #333333;
-}
-
-.alert {
- padding: 15px;
- margin-bottom: 20px;
- border: 1px solid transparent;
- border-radius: 4px;
-}
-
-.alert h4 {
- margin-top: 0;
- color: inherit;
-}
-
-.alert .alert-link {
- font-weight: bold;
-}
-
-.alert > p,
-.alert > ul {
- margin-bottom: 0;
-}
-
-.alert > p + p {
- margin-top: 5px;
-}
-
-.alert-dismissable {
- padding-right: 35px;
-}
-
-.alert-dismissable .close {
- position: relative;
- top: -2px;
- right: -21px;
- color: inherit;
-}
-
-.alert-success {
- color: #468847;
- background-color: #dff0d8;
- border-color: #d6e9c6;
-}
-
-.alert-success hr {
- border-top-color: #c9e2b3;
-}
-
-.alert-success .alert-link {
- color: #356635;
-}
-
-.alert-info {
- color: #3a87ad;
- background-color: #d9edf7;
- border-color: #bce8f1;
-}
-
-.alert-info hr {
- border-top-color: #a6e1ec;
-}
-
-.alert-info .alert-link {
- color: #2d6987;
-}
-
-.alert-warning {
- color: #c09853;
- background-color: #fcf8e3;
- border-color: #faebcc;
-}
-
-.alert-warning hr {
- border-top-color: #f7e1b5;
-}
-
-.alert-warning .alert-link {
- color: #a47e3c;
-}
-
-.alert-danger {
- color: #b94a48;
- background-color: #f2dede;
- border-color: #ebccd1;
-}
-
-.alert-danger hr {
- border-top-color: #e4b9c0;
-}
-
-.alert-danger .alert-link {
- color: #953b39;
-}
-
-@-webkit-keyframes progress-bar-stripes {
- from {
- background-position: 40px 0;
- }
- to {
- background-position: 0 0;
- }
-}
-
-@-moz-keyframes progress-bar-stripes {
- from {
- background-position: 40px 0;
- }
- to {
- background-position: 0 0;
- }
-}
-
-@-o-keyframes progress-bar-stripes {
- from {
- background-position: 0 0;
- }
- to {
- background-position: 40px 0;
- }
-}
-
-@keyframes progress-bar-stripes {
- from {
- background-position: 40px 0;
- }
- to {
- background-position: 0 0;
- }
-}
-
-.progress {
- height: 20px;
- margin-bottom: 20px;
- overflow: hidden;
- background-color: #f5f5f5;
- border-radius: 4px;
- -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
- box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
-}
-
-.progress-bar {
- float: left;
- width: 0;
- height: 100%;
- font-size: 12px;
- line-height: 20px;
- color: #ffffff;
- text-align: center;
- background-color: #428bca;
- -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
- box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
- -webkit-transition: width 0.6s ease;
- transition: width 0.6s ease;
-}
-
-.progress-striped .progress-bar {
- background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
- background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-size: 40px 40px;
-}
-
-.progress.active .progress-bar {
- -webkit-animation: progress-bar-stripes 2s linear infinite;
- animation: progress-bar-stripes 2s linear infinite;
-}
-
-.progress-bar-success {
- background-color: #5cb85c;
-}
-
-.progress-striped .progress-bar-success {
- background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
- background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
-}
-
-.progress-bar-info {
- background-color: #5bc0de;
-}
-
-.progress-striped .progress-bar-info {
- background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
- background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
-}
-
-.progress-bar-warning {
- background-color: #f0ad4e;
-}
-
-.progress-striped .progress-bar-warning {
- background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
- background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
-}
-
-.progress-bar-danger {
- background-color: #d9534f;
-}
-
-.progress-striped .progress-bar-danger {
- background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
- background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
-}
-
-.media,
-.media-body {
- overflow: hidden;
- zoom: 1;
-}
-
-.media,
-.media .media {
- margin-top: 15px;
-}
-
-.media:first-child {
- margin-top: 0;
-}
-
-.media-object {
- display: block;
-}
-
-.media-heading {
- margin: 0 0 5px;
-}
-
-.media > .pull-left {
- margin-right: 10px;
-}
-
-.media > .pull-right {
- margin-left: 10px;
-}
-
-.media-list {
- padding-left: 0;
- list-style: none;
-}
-
-.list-group {
- padding-left: 0;
- margin-bottom: 20px;
-}
-
-.list-group-item {
- position: relative;
- display: block;
- padding: 10px 15px;
- margin-bottom: -1px;
- background-color: #ffffff;
- border: 1px solid #dddddd;
-}
-
-.list-group-item:first-child {
- border-top-right-radius: 4px;
- border-top-left-radius: 4px;
-}
-
-.list-group-item:last-child {
- margin-bottom: 0;
- border-bottom-right-radius: 4px;
- border-bottom-left-radius: 4px;
-}
-
-.list-group-item > .badge {
- float: right;
-}
-
-.list-group-item > .badge + .badge {
- margin-right: 5px;
-}
-
-a.list-group-item {
- color: #555555;
-}
-
-a.list-group-item .list-group-item-heading {
- color: #333333;
-}
-
-a.list-group-item:hover,
-a.list-group-item:focus {
- text-decoration: none;
- background-color: #f5f5f5;
-}
-
-a.list-group-item.active,
-a.list-group-item.active:hover,
-a.list-group-item.active:focus {
- z-index: 2;
- color: #ffffff;
- background-color: #428bca;
- border-color: #428bca;
-}
-
-a.list-group-item.active .list-group-item-heading,
-a.list-group-item.active:hover .list-group-item-heading,
-a.list-group-item.active:focus .list-group-item-heading {
- color: inherit;
-}
-
-a.list-group-item.active .list-group-item-text,
-a.list-group-item.active:hover .list-group-item-text,
-a.list-group-item.active:focus .list-group-item-text {
- color: #e1edf7;
-}
-
-.list-group-item-heading {
- margin-top: 0;
- margin-bottom: 5px;
-}
-
-.list-group-item-text {
- margin-bottom: 0;
- line-height: 1.3;
-}
-
-.panel {
- margin-bottom: 20px;
- background-color: #ffffff;
- border: 1px solid transparent;
- border-radius: 4px;
- -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
-}
-
-.panel-body {
- padding: 15px;
-}
-
-.panel-body:before,
-.panel-body:after {
- display: table;
- content: " ";
-}
-
-.panel-body:after {
- clear: both;
-}
-
-.panel-body:before,
-.panel-body:after {
- display: table;
- content: " ";
-}
-
-.panel-body:after {
- clear: both;
-}
-
-.panel > .list-group {
- margin-bottom: 0;
-}
-
-.panel > .list-group .list-group-item {
- border-width: 1px 0;
-}
-
-.panel > .list-group .list-group-item:first-child {
- border-top-right-radius: 0;
- border-top-left-radius: 0;
-}
-
-.panel > .list-group .list-group-item:last-child {
- border-bottom: 0;
-}
-
-.panel-heading + .list-group .list-group-item:first-child {
- border-top-width: 0;
-}
-
-.panel > .table,
-.panel > .table-responsive {
- margin-bottom: 0;
-}
-
-.panel > .panel-body + .table,
-.panel > .panel-body + .table-responsive {
- border-top: 1px solid #dddddd;
-}
-
-.panel > .table-bordered,
-.panel > .table-responsive > .table-bordered {
- border: 0;
-}
-
-.panel > .table-bordered > thead > tr > th:first-child,
-.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
-.panel > .table-bordered > tbody > tr > th:first-child,
-.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
-.panel > .table-bordered > tfoot > tr > th:first-child,
-.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
-.panel > .table-bordered > thead > tr > td:first-child,
-.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
-.panel > .table-bordered > tbody > tr > td:first-child,
-.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
-.panel > .table-bordered > tfoot > tr > td:first-child,
-.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
- border-left: 0;
-}
-
-.panel > .table-bordered > thead > tr > th:last-child,
-.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
-.panel > .table-bordered > tbody > tr > th:last-child,
-.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
-.panel > .table-bordered > tfoot > tr > th:last-child,
-.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
-.panel > .table-bordered > thead > tr > td:last-child,
-.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
-.panel > .table-bordered > tbody > tr > td:last-child,
-.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
-.panel > .table-bordered > tfoot > tr > td:last-child,
-.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
- border-right: 0;
-}
-
-.panel > .table-bordered > thead > tr:last-child > th,
-.panel > .table-responsive > .table-bordered > thead > tr:last-child > th,
-.panel > .table-bordered > tbody > tr:last-child > th,
-.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
-.panel > .table-bordered > tfoot > tr:last-child > th,
-.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th,
-.panel > .table-bordered > thead > tr:last-child > td,
-.panel > .table-responsive > .table-bordered > thead > tr:last-child > td,
-.panel > .table-bordered > tbody > tr:last-child > td,
-.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
-.panel > .table-bordered > tfoot > tr:last-child > td,
-.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td {
- border-bottom: 0;
-}
-
-.panel-heading {
- padding: 10px 15px;
- border-bottom: 1px solid transparent;
- border-top-right-radius: 3px;
- border-top-left-radius: 3px;
-}
-
-.panel-heading > .dropdown .dropdown-toggle {
- color: inherit;
-}
-
-.panel-title {
- margin-top: 0;
- margin-bottom: 0;
- font-size: 16px;
-}
-
-.panel-title > a {
- color: inherit;
-}
-
-.panel-footer {
- padding: 10px 15px;
- background-color: #f5f5f5;
- border-top: 1px solid #dddddd;
- border-bottom-right-radius: 3px;
- border-bottom-left-radius: 3px;
-}
-
-.panel-group .panel {
- margin-bottom: 0;
- overflow: hidden;
- border-radius: 4px;
-}
-
-.panel-group .panel + .panel {
- margin-top: 5px;
-}
-
-.panel-group .panel-heading {
- border-bottom: 0;
-}
-
-.panel-group .panel-heading + .panel-collapse .panel-body {
- border-top: 1px solid #dddddd;
-}
-
-.panel-group .panel-footer {
- border-top: 0;
-}
-
-.panel-group .panel-footer + .panel-collapse .panel-body {
- border-bottom: 1px solid #dddddd;
-}
-
-.panel-default {
- border-color: #dddddd;
-}
-
-.panel-default > .panel-heading {
- color: #333333;
- background-color: #f5f5f5;
- border-color: #dddddd;
-}
-
-.panel-default > .panel-heading + .panel-collapse .panel-body {
- border-top-color: #dddddd;
-}
-
-.panel-default > .panel-heading > .dropdown .caret {
- border-color: #333333 transparent;
-}
-
-.panel-default > .panel-footer + .panel-collapse .panel-body {
- border-bottom-color: #dddddd;
-}
-
-.panel-primary {
- border-color: #428bca;
-}
-
-.panel-primary > .panel-heading {
- color: #ffffff;
- background-color: #428bca;
- border-color: #428bca;
-}
-
-.panel-primary > .panel-heading + .panel-collapse .panel-body {
- border-top-color: #428bca;
-}
-
-.panel-primary > .panel-heading > .dropdown .caret {
- border-color: #ffffff transparent;
-}
-
-.panel-primary > .panel-footer + .panel-collapse .panel-body {
- border-bottom-color: #428bca;
-}
-
-.panel-success {
- border-color: #d6e9c6;
-}
-
-.panel-success > .panel-heading {
- color: #468847;
- background-color: #dff0d8;
- border-color: #d6e9c6;
-}
-
-.panel-success > .panel-heading + .panel-collapse .panel-body {
- border-top-color: #d6e9c6;
-}
-
-.panel-success > .panel-heading > .dropdown .caret {
- border-color: #468847 transparent;
-}
-
-.panel-success > .panel-footer + .panel-collapse .panel-body {
- border-bottom-color: #d6e9c6;
-}
-
-.panel-warning {
- border-color: #faebcc;
-}
-
-.panel-warning > .panel-heading {
- color: #c09853;
- background-color: #fcf8e3;
- border-color: #faebcc;
-}
-
-.panel-warning > .panel-heading + .panel-collapse .panel-body {
- border-top-color: #faebcc;
-}
-
-.panel-warning > .panel-heading > .dropdown .caret {
- border-color: #c09853 transparent;
-}
-
-.panel-warning > .panel-footer + .panel-collapse .panel-body {
- border-bottom-color: #faebcc;
-}
-
-.panel-danger {
- border-color: #ebccd1;
-}
-
-.panel-danger > .panel-heading {
- color: #b94a48;
- background-color: #f2dede;
- border-color: #ebccd1;
-}
-
-.panel-danger > .panel-heading + .panel-collapse .panel-body {
- border-top-color: #ebccd1;
-}
-
-.panel-danger > .panel-heading > .dropdown .caret {
- border-color: #b94a48 transparent;
-}
-
-.panel-danger > .panel-footer + .panel-collapse .panel-body {
- border-bottom-color: #ebccd1;
-}
-
-.panel-info {
- border-color: #bce8f1;
-}
-
-.panel-info > .panel-heading {
- color: #3a87ad;
- background-color: #d9edf7;
- border-color: #bce8f1;
-}
-
-.panel-info > .panel-heading + .panel-collapse .panel-body {
- border-top-color: #bce8f1;
-}
-
-.panel-info > .panel-heading > .dropdown .caret {
- border-color: #3a87ad transparent;
-}
-
-.panel-info > .panel-footer + .panel-collapse .panel-body {
- border-bottom-color: #bce8f1;
-}
-
-.well {
- min-height: 20px;
- padding: 19px;
- margin-bottom: 20px;
- background-color: #f5f5f5;
- border: 1px solid #e3e3e3;
- border-radius: 4px;
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
-}
-
-.well blockquote {
- border-color: #ddd;
- border-color: rgba(0, 0, 0, 0.15);
-}
-
-.well-lg {
- padding: 24px;
- border-radius: 6px;
-}
-
-.well-sm {
- padding: 9px;
- border-radius: 3px;
-}
-
-.close {
- float: right;
- font-size: 21px;
- font-weight: bold;
- line-height: 1;
- color: #000000;
- text-shadow: 0 1px 0 #ffffff;
- opacity: 0.2;
- filter: alpha(opacity=20);
-}
-
-.close:hover,
-.close:focus {
- color: #000000;
- text-decoration: none;
- cursor: pointer;
- opacity: 0.5;
- filter: alpha(opacity=50);
-}
-
-button.close {
- padding: 0;
- cursor: pointer;
- background: transparent;
- border: 0;
- -webkit-appearance: none;
-}
-
-.modal-open {
- overflow: hidden;
-}
-
-.modal {
- position: fixed;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- z-index: 1040;
- display: none;
- overflow: auto;
- overflow-y: scroll;
-}
-
-.modal.fade .modal-dialog {
- -webkit-transform: translate(0, -25%);
- -ms-transform: translate(0, -25%);
- transform: translate(0, -25%);
- -webkit-transition: -webkit-transform 0.3s ease-out;
- -moz-transition: -moz-transform 0.3s ease-out;
- -o-transition: -o-transform 0.3s ease-out;
- transition: transform 0.3s ease-out;
-}
-
-.modal.in .modal-dialog {
- -webkit-transform: translate(0, 0);
- -ms-transform: translate(0, 0);
- transform: translate(0, 0);
-}
-
-.modal-dialog {
- position: relative;
- z-index: 1050;
- width: auto;
- padding: 10px;
- margin-right: auto;
- margin-left: auto;
-}
-
-.modal-content {
- position: relative;
- background-color: #ffffff;
- border: 1px solid #999999;
- border: 1px solid rgba(0, 0, 0, 0.2);
- border-radius: 6px;
- outline: none;
- -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
- box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
- background-clip: padding-box;
-}
-
-.modal-backdrop {
- position: fixed;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- z-index: 1030;
- background-color: #000000;
-}
-
-.modal-backdrop.fade {
- opacity: 0;
- filter: alpha(opacity=0);
-}
-
-.modal-backdrop.in {
- opacity: 0.5;
- filter: alpha(opacity=50);
-}
-
-.modal-header {
- min-height: 16.428571429px;
- padding: 15px;
- border-bottom: 1px solid #e5e5e5;
-}
-
-.modal-header .close {
- margin-top: -2px;
-}
-
-.modal-title {
- margin: 0;
- line-height: 1.428571429;
-}
-
-.modal-body {
- position: relative;
- padding: 20px;
-}
-
-.modal-footer {
- padding: 19px 20px 20px;
- margin-top: 15px;
- text-align: right;
- border-top: 1px solid #e5e5e5;
-}
-
-.modal-footer:before,
-.modal-footer:after {
- display: table;
- content: " ";
-}
-
-.modal-footer:after {
- clear: both;
-}
-
-.modal-footer:before,
-.modal-footer:after {
- display: table;
- content: " ";
-}
-
-.modal-footer:after {
- clear: both;
-}
-
-.modal-footer .btn + .btn {
- margin-bottom: 0;
- margin-left: 5px;
-}
-
-.modal-footer .btn-group .btn + .btn {
- margin-left: -1px;
-}
-
-.modal-footer .btn-block + .btn-block {
- margin-left: 0;
-}
-
-@media screen and (min-width: 768px) {
- .modal-dialog {
- width: 600px;
- padding-top: 30px;
- padding-bottom: 30px;
- }
- .modal-content {
- -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
- box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
- }
-}
-
-.tooltip {
- position: absolute;
- z-index: 1030;
- display: block;
- font-size: 12px;
- line-height: 1.4;
- opacity: 0;
- filter: alpha(opacity=0);
- visibility: visible;
-}
-
-.tooltip.in {
- opacity: 0.9;
- filter: alpha(opacity=90);
-}
-
-.tooltip.top {
- padding: 5px 0;
- margin-top: -3px;
-}
-
-.tooltip.right {
- padding: 0 5px;
- margin-left: 3px;
-}
-
-.tooltip.bottom {
- padding: 5px 0;
- margin-top: 3px;
-}
-
-.tooltip.left {
- padding: 0 5px;
- margin-left: -3px;
-}
-
-.tooltip-inner {
- max-width: 200px;
- padding: 3px 8px;
- color: #ffffff;
- text-align: center;
- text-decoration: none;
- background-color: #000000;
- border-radius: 4px;
-}
-
-.tooltip-arrow {
- position: absolute;
- width: 0;
- height: 0;
- border-color: transparent;
- border-style: solid;
-}
-
-.tooltip.top .tooltip-arrow {
- bottom: 0;
- left: 50%;
- margin-left: -5px;
- border-top-color: #000000;
- border-width: 5px 5px 0;
-}
-
-.tooltip.top-left .tooltip-arrow {
- bottom: 0;
- left: 5px;
- border-top-color: #000000;
- border-width: 5px 5px 0;
-}
-
-.tooltip.top-right .tooltip-arrow {
- right: 5px;
- bottom: 0;
- border-top-color: #000000;
- border-width: 5px 5px 0;
-}
-
-.tooltip.right .tooltip-arrow {
- top: 50%;
- left: 0;
- margin-top: -5px;
- border-right-color: #000000;
- border-width: 5px 5px 5px 0;
-}
-
-.tooltip.left .tooltip-arrow {
- top: 50%;
- right: 0;
- margin-top: -5px;
- border-left-color: #000000;
- border-width: 5px 0 5px 5px;
-}
-
-.tooltip.bottom .tooltip-arrow {
- top: 0;
- left: 50%;
- margin-left: -5px;
- border-bottom-color: #000000;
- border-width: 0 5px 5px;
-}
-
-.tooltip.bottom-left .tooltip-arrow {
- top: 0;
- left: 5px;
- border-bottom-color: #000000;
- border-width: 0 5px 5px;
-}
-
-.tooltip.bottom-right .tooltip-arrow {
- top: 0;
- right: 5px;
- border-bottom-color: #000000;
- border-width: 0 5px 5px;
-}
-
-.popover {
- position: absolute;
- top: 0;
- left: 0;
- z-index: 1010;
- display: none;
- max-width: 276px;
- padding: 1px;
- text-align: left;
- white-space: normal;
- background-color: #ffffff;
- border: 1px solid #cccccc;
- border: 1px solid rgba(0, 0, 0, 0.2);
- border-radius: 6px;
- -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
- box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
- background-clip: padding-box;
-}
-
-.popover.top {
- margin-top: -10px;
-}
-
-.popover.right {
- margin-left: 10px;
-}
-
-.popover.bottom {
- margin-top: 10px;
-}
-
-.popover.left {
- margin-left: -10px;
-}
-
-.popover-title {
- padding: 8px 14px;
- margin: 0;
- font-size: 14px;
- font-weight: normal;
- line-height: 18px;
- background-color: #f7f7f7;
- border-bottom: 1px solid #ebebeb;
- border-radius: 5px 5px 0 0;
-}
-
-.popover-content {
- padding: 9px 14px;
-}
-
-.popover .arrow,
-.popover .arrow:after {
- position: absolute;
- display: block;
- width: 0;
- height: 0;
- border-color: transparent;
- border-style: solid;
-}
-
-.popover .arrow {
- border-width: 11px;
-}
-
-.popover .arrow:after {
- border-width: 10px;
- content: "";
-}
-
-.popover.top .arrow {
- bottom: -11px;
- left: 50%;
- margin-left: -11px;
- border-top-color: #999999;
- border-top-color: rgba(0, 0, 0, 0.25);
- border-bottom-width: 0;
-}
-
-.popover.top .arrow:after {
- bottom: 1px;
- margin-left: -10px;
- border-top-color: #ffffff;
- border-bottom-width: 0;
- content: " ";
-}
-
-.popover.right .arrow {
- top: 50%;
- left: -11px;
- margin-top: -11px;
- border-right-color: #999999;
- border-right-color: rgba(0, 0, 0, 0.25);
- border-left-width: 0;
-}
-
-.popover.right .arrow:after {
- bottom: -10px;
- left: 1px;
- border-right-color: #ffffff;
- border-left-width: 0;
- content: " ";
-}
-
-.popover.bottom .arrow {
- top: -11px;
- left: 50%;
- margin-left: -11px;
- border-bottom-color: #999999;
- border-bottom-color: rgba(0, 0, 0, 0.25);
- border-top-width: 0;
-}
-
-.popover.bottom .arrow:after {
- top: 1px;
- margin-left: -10px;
- border-bottom-color: #ffffff;
- border-top-width: 0;
- content: " ";
-}
-
-.popover.left .arrow {
- top: 50%;
- right: -11px;
- margin-top: -11px;
- border-left-color: #999999;
- border-left-color: rgba(0, 0, 0, 0.25);
- border-right-width: 0;
-}
-
-.popover.left .arrow:after {
- right: 1px;
- bottom: -10px;
- border-left-color: #ffffff;
- border-right-width: 0;
- content: " ";
-}
-
-.carousel {
- position: relative;
-}
-
-.carousel-inner {
- position: relative;
- width: 100%;
- overflow: hidden;
-}
-
-.carousel-inner > .item {
- position: relative;
- display: none;
- -webkit-transition: 0.6s ease-in-out left;
- transition: 0.6s ease-in-out left;
-}
-
-.carousel-inner > .item > img,
-.carousel-inner > .item > a > img {
- display: block;
- height: auto;
- max-width: 100%;
- line-height: 1;
-}
-
-.carousel-inner > .active,
-.carousel-inner > .next,
-.carousel-inner > .prev {
- display: block;
-}
-
-.carousel-inner > .active {
- left: 0;
-}
-
-.carousel-inner > .next,
-.carousel-inner > .prev {
- position: absolute;
- top: 0;
- width: 100%;
-}
-
-.carousel-inner > .next {
- left: 100%;
-}
-
-.carousel-inner > .prev {
- left: -100%;
-}
-
-.carousel-inner > .next.left,
-.carousel-inner > .prev.right {
- left: 0;
-}
-
-.carousel-inner > .active.left {
- left: -100%;
-}
-
-.carousel-inner > .active.right {
- left: 100%;
-}
-
-.carousel-control {
- position: absolute;
- top: 0;
- bottom: 0;
- left: 0;
- width: 15%;
- font-size: 20px;
- color: #ffffff;
- text-align: center;
- text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
- opacity: 0.5;
- filter: alpha(opacity=50);
-}
-
-.carousel-control.left {
- background-image: -webkit-gradient(linear, 0 top, 100% top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));
- background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.5) 0), color-stop(rgba(0, 0, 0, 0.0001) 100%));
- background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);
- background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
-}
-
-.carousel-control.right {
- right: 0;
- left: auto;
- background-image: -webkit-gradient(linear, 0 top, 100% top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));
- background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.0001) 0), color-stop(rgba(0, 0, 0, 0.5) 100%));
- background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);
- background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
-}
-
-.carousel-control:hover,
-.carousel-control:focus {
- color: #ffffff;
- text-decoration: none;
- opacity: 0.9;
- filter: alpha(opacity=90);
-}
-
-.carousel-control .icon-prev,
-.carousel-control .icon-next,
-.carousel-control .glyphicon-chevron-left,
-.carousel-control .glyphicon-chevron-right {
- position: absolute;
- top: 50%;
- z-index: 5;
- display: inline-block;
-}
-
-.carousel-control .icon-prev,
-.carousel-control .glyphicon-chevron-left {
- left: 50%;
-}
-
-.carousel-control .icon-next,
-.carousel-control .glyphicon-chevron-right {
- right: 50%;
-}
-
-.carousel-control .icon-prev,
-.carousel-control .icon-next {
- width: 20px;
- height: 20px;
- margin-top: -10px;
- margin-left: -10px;
- font-family: serif;
-}
-
-.carousel-control .icon-prev:before {
- content: '\2039';
-}
-
-.carousel-control .icon-next:before {
- content: '\203a';
-}
-
-.carousel-indicators {
- position: absolute;
- bottom: 10px;
- left: 50%;
- z-index: 15;
- width: 60%;
- padding-left: 0;
- margin-left: -30%;
- text-align: center;
- list-style: none;
-}
-
-.carousel-indicators li {
- display: inline-block;
- width: 10px;
- height: 10px;
- margin: 1px;
- text-indent: -999px;
- cursor: pointer;
- background-color: #000 \9;
- background-color: rgba(0, 0, 0, 0);
- border: 1px solid #ffffff;
- border-radius: 10px;
-}
-
-.carousel-indicators .active {
- width: 12px;
- height: 12px;
- margin: 0;
- background-color: #ffffff;
-}
-
-.carousel-caption {
- position: absolute;
- right: 15%;
- bottom: 20px;
- left: 15%;
- z-index: 10;
- padding-top: 20px;
- padding-bottom: 20px;
- color: #ffffff;
- text-align: center;
- text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
-}
-
-.carousel-caption .btn {
- text-shadow: none;
-}
-
-@media screen and (min-width: 768px) {
- .carousel-control .glyphicons-chevron-left,
- .carousel-control .glyphicons-chevron-right,
- .carousel-control .icon-prev,
- .carousel-control .icon-next {
- width: 30px;
- height: 30px;
- margin-top: -15px;
- margin-left: -15px;
- font-size: 30px;
- }
- .carousel-caption {
- right: 20%;
- left: 20%;
- padding-bottom: 30px;
- }
- .carousel-indicators {
- bottom: 20px;
- }
-}
-
-.clearfix:before,
-.clearfix:after {
- display: table;
- content: " ";
-}
-
-.clearfix:after {
- clear: both;
-}
-
-.center-block {
- display: block;
- margin-right: auto;
- margin-left: auto;
-}
-
-.pull-right {
- float: right !important;
-}
-
-.pull-left {
- float: left !important;
-}
-
-.hide {
- display: none !important;
-}
-
-.show {
- display: block !important;
-}
-
-.invisible {
- visibility: hidden;
-}
-
-.text-hide {
- font: 0/0 a;
- color: transparent;
- text-shadow: none;
- background-color: transparent;
- border: 0;
-}
-
-.hidden {
- display: none !important;
- visibility: hidden !important;
-}
-
-.affix {
- position: fixed;
-}
-
-@-ms-viewport {
- width: device-width;
-}
-
-.visible-xs,
-tr.visible-xs,
-th.visible-xs,
-td.visible-xs {
- display: none !important;
-}
-
-@media (max-width: 767px) {
- .visible-xs {
- display: block !important;
- }
- tr.visible-xs {
- display: table-row !important;
- }
- th.visible-xs,
- td.visible-xs {
- display: table-cell !important;
- }
-}
-
-@media (min-width: 768px) and (max-width: 991px) {
- .visible-xs.visible-sm {
- display: block !important;
- }
- tr.visible-xs.visible-sm {
- display: table-row !important;
- }
- th.visible-xs.visible-sm,
- td.visible-xs.visible-sm {
- display: table-cell !important;
- }
-}
-
-@media (min-width: 992px) and (max-width: 1199px) {
- .visible-xs.visible-md {
- display: block !important;
- }
- tr.visible-xs.visible-md {
- display: table-row !important;
- }
- th.visible-xs.visible-md,
- td.visible-xs.visible-md {
- display: table-cell !important;
- }
-}
-
-@media (min-width: 1200px) {
- .visible-xs.visible-lg {
- display: block !important;
- }
- tr.visible-xs.visible-lg {
- display: table-row !important;
- }
- th.visible-xs.visible-lg,
- td.visible-xs.visible-lg {
- display: table-cell !important;
- }
-}
-
-.visible-sm,
-tr.visible-sm,
-th.visible-sm,
-td.visible-sm {
- display: none !important;
-}
-
-@media (max-width: 767px) {
- .visible-sm.visible-xs {
- display: block !important;
- }
- tr.visible-sm.visible-xs {
- display: table-row !important;
- }
- th.visible-sm.visible-xs,
- td.visible-sm.visible-xs {
- display: table-cell !important;
- }
-}
-
-@media (min-width: 768px) and (max-width: 991px) {
- .visible-sm {
- display: block !important;
- }
- tr.visible-sm {
- display: table-row !important;
- }
- th.visible-sm,
- td.visible-sm {
- display: table-cell !important;
- }
-}
-
-@media (min-width: 992px) and (max-width: 1199px) {
- .visible-sm.visible-md {
- display: block !important;
- }
- tr.visible-sm.visible-md {
- display: table-row !important;
- }
- th.visible-sm.visible-md,
- td.visible-sm.visible-md {
- display: table-cell !important;
- }
-}
-
-@media (min-width: 1200px) {
- .visible-sm.visible-lg {
- display: block !important;
- }
- tr.visible-sm.visible-lg {
- display: table-row !important;
- }
- th.visible-sm.visible-lg,
- td.visible-sm.visible-lg {
- display: table-cell !important;
- }
-}
-
-.visible-md,
-tr.visible-md,
-th.visible-md,
-td.visible-md {
- display: none !important;
-}
-
-@media (max-width: 767px) {
- .visible-md.visible-xs {
- display: block !important;
- }
- tr.visible-md.visible-xs {
- display: table-row !important;
- }
- th.visible-md.visible-xs,
- td.visible-md.visible-xs {
- display: table-cell !important;
- }
-}
-
-@media (min-width: 768px) and (max-width: 991px) {
- .visible-md.visible-sm {
- display: block !important;
- }
- tr.visible-md.visible-sm {
- display: table-row !important;
- }
- th.visible-md.visible-sm,
- td.visible-md.visible-sm {
- display: table-cell !important;
- }
-}
-
-@media (min-width: 992px) and (max-width: 1199px) {
- .visible-md {
- display: block !important;
- }
- tr.visible-md {
- display: table-row !important;
- }
- th.visible-md,
- td.visible-md {
- display: table-cell !important;
- }
-}
-
-@media (min-width: 1200px) {
- .visible-md.visible-lg {
- display: block !important;
- }
- tr.visible-md.visible-lg {
- display: table-row !important;
- }
- th.visible-md.visible-lg,
- td.visible-md.visible-lg {
- display: table-cell !important;
- }
-}
-
-.visible-lg,
-tr.visible-lg,
-th.visible-lg,
-td.visible-lg {
- display: none !important;
-}
-
-@media (max-width: 767px) {
- .visible-lg.visible-xs {
- display: block !important;
- }
- tr.visible-lg.visible-xs {
- display: table-row !important;
- }
- th.visible-lg.visible-xs,
- td.visible-lg.visible-xs {
- display: table-cell !important;
- }
-}
-
-@media (min-width: 768px) and (max-width: 991px) {
- .visible-lg.visible-sm {
- display: block !important;
- }
- tr.visible-lg.visible-sm {
- display: table-row !important;
- }
- th.visible-lg.visible-sm,
- td.visible-lg.visible-sm {
- display: table-cell !important;
- }
-}
-
-@media (min-width: 992px) and (max-width: 1199px) {
- .visible-lg.visible-md {
- display: block !important;
- }
- tr.visible-lg.visible-md {
- display: table-row !important;
- }
- th.visible-lg.visible-md,
- td.visible-lg.visible-md {
- display: table-cell !important;
- }
-}
-
-@media (min-width: 1200px) {
- .visible-lg {
- display: block !important;
- }
- tr.visible-lg {
- display: table-row !important;
- }
- th.visible-lg,
- td.visible-lg {
- display: table-cell !important;
- }
-}
-
-.hidden-xs {
- display: block !important;
-}
-
-tr.hidden-xs {
- display: table-row !important;
-}
-
-th.hidden-xs,
-td.hidden-xs {
- display: table-cell !important;
-}
-
-@media (max-width: 767px) {
- .hidden-xs,
- tr.hidden-xs,
- th.hidden-xs,
- td.hidden-xs {
- display: none !important;
- }
-}
-
-@media (min-width: 768px) and (max-width: 991px) {
- .hidden-xs.hidden-sm,
- tr.hidden-xs.hidden-sm,
- th.hidden-xs.hidden-sm,
- td.hidden-xs.hidden-sm {
- display: none !important;
- }
-}
-
-@media (min-width: 992px) and (max-width: 1199px) {
- .hidden-xs.hidden-md,
- tr.hidden-xs.hidden-md,
- th.hidden-xs.hidden-md,
- td.hidden-xs.hidden-md {
- display: none !important;
- }
-}
-
-@media (min-width: 1200px) {
- .hidden-xs.hidden-lg,
- tr.hidden-xs.hidden-lg,
- th.hidden-xs.hidden-lg,
- td.hidden-xs.hidden-lg {
- display: none !important;
- }
-}
-
-.hidden-sm {
- display: block !important;
-}
-
-tr.hidden-sm {
- display: table-row !important;
-}
-
-th.hidden-sm,
-td.hidden-sm {
- display: table-cell !important;
-}
-
-@media (max-width: 767px) {
- .hidden-sm.hidden-xs,
- tr.hidden-sm.hidden-xs,
- th.hidden-sm.hidden-xs,
- td.hidden-sm.hidden-xs {
- display: none !important;
- }
-}
-
-@media (min-width: 768px) and (max-width: 991px) {
- .hidden-sm,
- tr.hidden-sm,
- th.hidden-sm,
- td.hidden-sm {
- display: none !important;
- }
-}
-
-@media (min-width: 992px) and (max-width: 1199px) {
- .hidden-sm.hidden-md,
- tr.hidden-sm.hidden-md,
- th.hidden-sm.hidden-md,
- td.hidden-sm.hidden-md {
- display: none !important;
- }
-}
-
-@media (min-width: 1200px) {
- .hidden-sm.hidden-lg,
- tr.hidden-sm.hidden-lg,
- th.hidden-sm.hidden-lg,
- td.hidden-sm.hidden-lg {
- display: none !important;
- }
-}
-
-.hidden-md {
- display: block !important;
-}
-
-tr.hidden-md {
- display: table-row !important;
-}
-
-th.hidden-md,
-td.hidden-md {
- display: table-cell !important;
-}
-
-@media (max-width: 767px) {
- .hidden-md.hidden-xs,
- tr.hidden-md.hidden-xs,
- th.hidden-md.hidden-xs,
- td.hidden-md.hidden-xs {
- display: none !important;
- }
-}
-
-@media (min-width: 768px) and (max-width: 991px) {
- .hidden-md.hidden-sm,
- tr.hidden-md.hidden-sm,
- th.hidden-md.hidden-sm,
- td.hidden-md.hidden-sm {
- display: none !important;
- }
-}
-
-@media (min-width: 992px) and (max-width: 1199px) {
- .hidden-md,
- tr.hidden-md,
- th.hidden-md,
- td.hidden-md {
- display: none !important;
- }
-}
-
-@media (min-width: 1200px) {
- .hidden-md.hidden-lg,
- tr.hidden-md.hidden-lg,
- th.hidden-md.hidden-lg,
- td.hidden-md.hidden-lg {
- display: none !important;
- }
-}
-
-.hidden-lg {
- display: block !important;
-}
-
-tr.hidden-lg {
- display: table-row !important;
-}
-
-th.hidden-lg,
-td.hidden-lg {
- display: table-cell !important;
-}
-
-@media (max-width: 767px) {
- .hidden-lg.hidden-xs,
- tr.hidden-lg.hidden-xs,
- th.hidden-lg.hidden-xs,
- td.hidden-lg.hidden-xs {
- display: none !important;
- }
-}
-
-@media (min-width: 768px) and (max-width: 991px) {
- .hidden-lg.hidden-sm,
- tr.hidden-lg.hidden-sm,
- th.hidden-lg.hidden-sm,
- td.hidden-lg.hidden-sm {
- display: none !important;
- }
-}
-
-@media (min-width: 992px) and (max-width: 1199px) {
- .hidden-lg.hidden-md,
- tr.hidden-lg.hidden-md,
- th.hidden-lg.hidden-md,
- td.hidden-lg.hidden-md {
- display: none !important;
- }
-}
-
-@media (min-width: 1200px) {
- .hidden-lg,
- tr.hidden-lg,
- th.hidden-lg,
- td.hidden-lg {
- display: none !important;
- }
-}
-
-.visible-print,
-tr.visible-print,
-th.visible-print,
-td.visible-print {
- display: none !important;
-}
-
-@media print {
- .visible-print {
- display: block !important;
- }
- tr.visible-print {
- display: table-row !important;
- }
- th.visible-print,
- td.visible-print {
- display: table-cell !important;
- }
- .hidden-print,
- tr.hidden-print,
- th.hidden-print,
- td.hidden-print {
- display: none !important;
- }
-}
\ No newline at end of file
diff --git a/AgileWorks/WebContent/css/gadget/bootstrap.min.css b/AgileWorks/WebContent/css/gadget/bootstrap.min.css
deleted file mode 100644
index 3deec348874c1f43014e5a32acedcda5e14ead47..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/gadget/bootstrap.min.css
+++ /dev/null
@@ -1,9 +0,0 @@
-/*!
- * Bootstrap v3.0.2 by @fat and @mdo
- * Copyright 2013 Twitter, Inc.
- * Licensed under http://www.apache.org/licenses/LICENSE-2.0
- *
- * Designed and built with all the love in the world by @mdo and @fat.
- */
-
-/*! normalize.css v2.1.3 | MIT License | git.io/normalize */article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,video{display:inline-block}audio:not([controls]){display:none;height:0}[hidden],template{display:none}html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}a{background:transparent}a:focus{outline:thin dotted}a:active,a:hover{outline:0}h1{margin:.67em 0;font-size:2em}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}hr{height:0;-moz-box-sizing:content-box;box-sizing:content-box}mark{color:#000;background:#ff0}code,kbd,pre,samp{font-family:monospace,serif;font-size:1em}pre{white-space:pre-wrap}q{quotes:"\201C" "\201D" "\2018" "\2019"}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:0}fieldset{padding:.35em .625em .75em;margin:0 2px;border:1px solid #c0c0c0}legend{padding:0;border:0}button,input,select,textarea{margin:0;font-family:inherit;font-size:100%}button,input{line-height:normal}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{cursor:pointer;-webkit-appearance:button}button[disabled],html input[disabled]{cursor:default}input[type="checkbox"],input[type="radio"]{padding:0;box-sizing:border-box}input[type="search"]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0}textarea{overflow:auto;vertical-align:top}table{border-collapse:collapse;border-spacing:0}@media print{*{color:#000!important;text-shadow:none!important;background:transparent!important;box-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="javascript:"]:after,a[href^="#"]:after{content:""}pre,blockquote{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}img{max-width:100%!important}@page{margin:2cm .5cm}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}select{background:#fff!important}.navbar{display:none}.table td,.table th{background-color:#fff!important}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{border:1px solid #000}.table{border-collapse:collapse!important}.table-bordered th,.table-bordered td{border:1px solid #ddd!important}}*,*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:62.5%;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.428571429;color:#333;background-color:#fff}input,button,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#428bca;text-decoration:none}a:hover,a:focus{color:#2a6496;text-decoration:underline}a:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}img{vertical-align:middle}.img-responsive{display:block;height:auto;max-width:100%}.img-rounded{border-radius:6px}.img-thumbnail{display:inline-block;height:auto;max-width:100%;padding:4px;line-height:1.428571429;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:200;line-height:1.4}@media(min-width:768px){.lead{font-size:21px}}small,.small{font-size:85%}cite{font-style:normal}.text-muted{color:#999}.text-primary{color:#428bca}.text-primary:hover{color:#3071a9}.text-warning{color:#c09853}.text-warning:hover{color:#a47e3c}.text-danger{color:#b94a48}.text-danger:hover{color:#953b39}.text-success{color:#468847}.text-success:hover{color:#356635}.text-info{color:#3a87ad}.text-info:hover{color:#2d6987}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-weight:500;line-height:1.1;color:inherit}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,.h1 small,.h2 small,.h3 small,.h4 small,.h5 small,.h6 small,h1 .small,h2 .small,h3 .small,h4 .small,h5 .small,h6 .small,.h1 .small,.h2 .small,.h3 .small,.h4 .small,.h5 .small,.h6 .small{font-weight:normal;line-height:1;color:#999}h1,h2,h3{margin-top:20px;margin-bottom:10px}h1 small,h2 small,h3 small,h1 .small,h2 .small,h3 .small{font-size:65%}h4,h5,h6{margin-top:10px;margin-bottom:10px}h4 small,h5 small,h6 small,h4 .small,h5 .small,h6 .small{font-size:75%}h1,.h1{font-size:36px}h2,.h2{font-size:30px}h3,.h3{font-size:24px}h4,.h4{font-size:18px}h5,.h5{font-size:14px}h6,.h6{font-size:12px}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ul,ol{margin-top:0;margin-bottom:10px}ul ul,ol ul,ul ol,ol ol{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline>li{display:inline-block;padding-right:5px;padding-left:5px}.list-inline>li:first-child{padding-left:0}dl{margin-bottom:20px}dt,dd{line-height:1.428571429}dt{font-weight:bold}dd{margin-left:0}@media(min-width:768px){.dl-horizontal dt{float:left;width:160px;overflow:hidden;clear:left;text-align:right;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}.dl-horizontal dd:before,.dl-horizontal dd:after{display:table;content:" "}.dl-horizontal dd:after{clear:both}.dl-horizontal dd:before,.dl-horizontal dd:after{display:table;content:" "}.dl-horizontal dd:after{clear:both}}abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #999}abbr.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;border-left:5px solid #eee}blockquote p{font-size:17.5px;font-weight:300;line-height:1.25}blockquote p:last-child{margin-bottom:0}blockquote small{display:block;line-height:1.428571429;color:#999}blockquote small:before{content:'\2014 \00A0'}blockquote.pull-right{padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0}blockquote.pull-right p,blockquote.pull-right small,blockquote.pull-right .small{text-align:right}blockquote.pull-right small:before,blockquote.pull-right .small:before{content:''}blockquote.pull-right small:after,blockquote.pull-right .small:after{content:'\00A0 \2014'}blockquote:before,blockquote:after{content:""}address{margin-bottom:20px;font-style:normal;line-height:1.428571429}code,kbd,pre,samp{font-family:Monaco,Menlo,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;white-space:nowrap;background-color:#f9f2f4;border-radius:4px}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.428571429;color:#333;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.container:before,.container:after{display:table;content:" "}.container:after{clear:both}.container:before,.container:after{display:table;content:" "}.container:after{clear:both}.row{margin-right:-15px;margin-left:-15px}.row:before,.row:after{display:table;content:" "}.row:after{clear:both}.row:before,.row:after{display:table;content:" "}.row:after{clear:both}.col-xs-1,.col-sm-1,.col-md-1,.col-lg-1,.col-xs-2,.col-sm-2,.col-md-2,.col-lg-2,.col-xs-3,.col-sm-3,.col-md-3,.col-lg-3,.col-xs-4,.col-sm-4,.col-md-4,.col-lg-4,.col-xs-5,.col-sm-5,.col-md-5,.col-lg-5,.col-xs-6,.col-sm-6,.col-md-6,.col-lg-6,.col-xs-7,.col-sm-7,.col-md-7,.col-lg-7,.col-xs-8,.col-sm-8,.col-md-8,.col-lg-8,.col-xs-9,.col-sm-9,.col-md-9,.col-lg-9,.col-xs-10,.col-sm-10,.col-md-10,.col-lg-10,.col-xs-11,.col-sm-11,.col-md-11,.col-lg-11,.col-xs-12,.col-sm-12,.col-md-12,.col-lg-12{position:relative;min-height:1px;padding-right:15px;padding-left:15px}.col-xs-1,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.col-xs-10,.col-xs-11{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666666666666%}.col-xs-10{width:83.33333333333334%}.col-xs-9{width:75%}.col-xs-8{width:66.66666666666666%}.col-xs-7{width:58.333333333333336%}.col-xs-6{width:50%}.col-xs-5{width:41.66666666666667%}.col-xs-4{width:33.33333333333333%}.col-xs-3{width:25%}.col-xs-2{width:16.666666666666664%}.col-xs-1{width:8.333333333333332%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666666666666%}.col-xs-pull-10{right:83.33333333333334%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666666666666%}.col-xs-pull-7{right:58.333333333333336%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666666666667%}.col-xs-pull-4{right:33.33333333333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.666666666666664%}.col-xs-pull-1{right:8.333333333333332%}.col-xs-pull-0{right:0}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666666666666%}.col-xs-push-10{left:83.33333333333334%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666666666666%}.col-xs-push-7{left:58.333333333333336%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666666666667%}.col-xs-push-4{left:33.33333333333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.666666666666664%}.col-xs-push-1{left:8.333333333333332%}.col-xs-push-0{left:0}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666666666666%}.col-xs-offset-10{margin-left:83.33333333333334%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666666666666%}.col-xs-offset-7{margin-left:58.333333333333336%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666666666667%}.col-xs-offset-4{margin-left:33.33333333333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.666666666666664%}.col-xs-offset-1{margin-left:8.333333333333332%}.col-xs-offset-0{margin-left:0}@media(min-width:768px){.container{width:750px}.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666666666666%}.col-sm-10{width:83.33333333333334%}.col-sm-9{width:75%}.col-sm-8{width:66.66666666666666%}.col-sm-7{width:58.333333333333336%}.col-sm-6{width:50%}.col-sm-5{width:41.66666666666667%}.col-sm-4{width:33.33333333333333%}.col-sm-3{width:25%}.col-sm-2{width:16.666666666666664%}.col-sm-1{width:8.333333333333332%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666666666666%}.col-sm-pull-10{right:83.33333333333334%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666666666666%}.col-sm-pull-7{right:58.333333333333336%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666666666667%}.col-sm-pull-4{right:33.33333333333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.666666666666664%}.col-sm-pull-1{right:8.333333333333332%}.col-sm-pull-0{right:0}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666666666666%}.col-sm-push-10{left:83.33333333333334%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666666666666%}.col-sm-push-7{left:58.333333333333336%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666666666667%}.col-sm-push-4{left:33.33333333333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.666666666666664%}.col-sm-push-1{left:8.333333333333332%}.col-sm-push-0{left:0}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666666666666%}.col-sm-offset-10{margin-left:83.33333333333334%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666666666666%}.col-sm-offset-7{margin-left:58.333333333333336%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666666666667%}.col-sm-offset-4{margin-left:33.33333333333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.666666666666664%}.col-sm-offset-1{margin-left:8.333333333333332%}.col-sm-offset-0{margin-left:0}}@media(min-width:992px){.container{width:970px}.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666666666666%}.col-md-10{width:83.33333333333334%}.col-md-9{width:75%}.col-md-8{width:66.66666666666666%}.col-md-7{width:58.333333333333336%}.col-md-6{width:50%}.col-md-5{width:41.66666666666667%}.col-md-4{width:33.33333333333333%}.col-md-3{width:25%}.col-md-2{width:16.666666666666664%}.col-md-1{width:8.333333333333332%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666666666666%}.col-md-pull-10{right:83.33333333333334%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666666666666%}.col-md-pull-7{right:58.333333333333336%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666666666667%}.col-md-pull-4{right:33.33333333333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.666666666666664%}.col-md-pull-1{right:8.333333333333332%}.col-md-pull-0{right:0}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666666666666%}.col-md-push-10{left:83.33333333333334%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666666666666%}.col-md-push-7{left:58.333333333333336%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666666666667%}.col-md-push-4{left:33.33333333333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.666666666666664%}.col-md-push-1{left:8.333333333333332%}.col-md-push-0{left:0}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666666666666%}.col-md-offset-10{margin-left:83.33333333333334%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666666666666%}.col-md-offset-7{margin-left:58.333333333333336%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666666666667%}.col-md-offset-4{margin-left:33.33333333333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.666666666666664%}.col-md-offset-1{margin-left:8.333333333333332%}.col-md-offset-0{margin-left:0}}@media(min-width:1200px){.container{width:1170px}.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666666666666%}.col-lg-10{width:83.33333333333334%}.col-lg-9{width:75%}.col-lg-8{width:66.66666666666666%}.col-lg-7{width:58.333333333333336%}.col-lg-6{width:50%}.col-lg-5{width:41.66666666666667%}.col-lg-4{width:33.33333333333333%}.col-lg-3{width:25%}.col-lg-2{width:16.666666666666664%}.col-lg-1{width:8.333333333333332%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666666666666%}.col-lg-pull-10{right:83.33333333333334%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666666666666%}.col-lg-pull-7{right:58.333333333333336%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666666666667%}.col-lg-pull-4{right:33.33333333333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.666666666666664%}.col-lg-pull-1{right:8.333333333333332%}.col-lg-pull-0{right:0}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666666666666%}.col-lg-push-10{left:83.33333333333334%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666666666666%}.col-lg-push-7{left:58.333333333333336%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666666666667%}.col-lg-push-4{left:33.33333333333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.666666666666664%}.col-lg-push-1{left:8.333333333333332%}.col-lg-push-0{left:0}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666666666666%}.col-lg-offset-10{margin-left:83.33333333333334%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666666666666%}.col-lg-offset-7{margin-left:58.333333333333336%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666666666667%}.col-lg-offset-4{margin-left:33.33333333333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.666666666666664%}.col-lg-offset-1{margin-left:8.333333333333332%}.col-lg-offset-0{margin-left:0}}table{max-width:100%;background-color:transparent}th{text-align:left}.table{width:100%;margin-bottom:20px}.table>thead>tr>th,.table>tbody>tr>th,.table>tfoot>tr>th,.table>thead>tr>td,.table>tbody>tr>td,.table>tfoot>tr>td{padding:8px;line-height:1.428571429;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>th,.table>caption+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>td,.table>thead:first-child>tr:first-child>td{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>thead>tr>th,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>tbody>tr>td,.table-condensed>tfoot>tr>td{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>tbody>tr>td,.table-bordered>tfoot>tr>td{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>thead>tr>td{border-bottom-width:2px}.table-striped>tbody>tr:nth-child(odd)>td,.table-striped>tbody>tr:nth-child(odd)>th{background-color:#f9f9f9}.table-hover>tbody>tr:hover>td,.table-hover>tbody>tr:hover>th{background-color:#f5f5f5}table col[class*="col-"]{display:table-column;float:none}table td[class*="col-"],table th[class*="col-"]{display:table-cell;float:none}.table>thead>tr>td.active,.table>tbody>tr>td.active,.table>tfoot>tr>td.active,.table>thead>tr>th.active,.table>tbody>tr>th.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>tbody>tr.active>td,.table>tfoot>tr.active>td,.table>thead>tr.active>th,.table>tbody>tr.active>th,.table>tfoot>tr.active>th{background-color:#f5f5f5}.table>thead>tr>td.success,.table>tbody>tr>td.success,.table>tfoot>tr>td.success,.table>thead>tr>th.success,.table>tbody>tr>th.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>tbody>tr.success>td,.table>tfoot>tr.success>td,.table>thead>tr.success>th,.table>tbody>tr.success>th,.table>tfoot>tr.success>th{background-color:#dff0d8}.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover,.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th{background-color:#d0e9c6}.table>thead>tr>td.danger,.table>tbody>tr>td.danger,.table>tfoot>tr>td.danger,.table>thead>tr>th.danger,.table>tbody>tr>th.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>tbody>tr.danger>td,.table>tfoot>tr.danger>td,.table>thead>tr.danger>th,.table>tbody>tr.danger>th,.table>tfoot>tr.danger>th{background-color:#f2dede}.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover,.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th{background-color:#ebcccc}.table>thead>tr>td.warning,.table>tbody>tr>td.warning,.table>tfoot>tr>td.warning,.table>thead>tr>th.warning,.table>tbody>tr>th.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>tbody>tr.warning>td,.table>tfoot>tr.warning>td,.table>thead>tr.warning>th,.table>tbody>tr.warning>th,.table>tfoot>tr.warning>th{background-color:#fcf8e3}.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover,.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th{background-color:#faf2cc}@media(max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-x:scroll;overflow-y:hidden;border:1px solid #ddd;-ms-overflow-style:-ms-autohiding-scrollbar;-webkit-overflow-scrolling:touch}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>thead>tr>th,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tfoot>tr>td{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>thead>tr>th:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.table-responsive>.table-bordered>thead>tr>th:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>th,.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>td{border-bottom:0}}fieldset{padding:0;margin:0;border:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;margin-bottom:5px;font-weight:bold}input[type="search"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type="radio"],input[type="checkbox"]{margin:4px 0 0;margin-top:1px \9;line-height:normal}input[type="file"]{display:block}select[multiple],select[size]{height:auto}select optgroup{font-family:inherit;font-size:inherit;font-style:inherit}input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}input[type="number"]::-webkit-outer-spin-button,input[type="number"]::-webkit-inner-spin-button{height:auto}output{display:block;padding-top:7px;font-size:14px;line-height:1.428571429;color:#555;vertical-align:middle}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.428571429;color:#555;vertical-align:middle;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-webkit-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(102,175,233,0.6);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(102,175,233,0.6)}.form-control:-moz-placeholder{color:#999}.form-control::-moz-placeholder{color:#999}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{cursor:not-allowed;background-color:#eee}textarea.form-control{height:auto}.form-group{margin-bottom:15px}.radio,.checkbox{display:block;min-height:20px;padding-left:20px;margin-top:10px;margin-bottom:10px;vertical-align:middle}.radio label,.checkbox label{display:inline;margin-bottom:0;font-weight:normal;cursor:pointer}.radio input[type="radio"],.radio-inline input[type="radio"],.checkbox input[type="checkbox"],.checkbox-inline input[type="checkbox"]{float:left;margin-left:-20px}.radio+.radio,.checkbox+.checkbox{margin-top:-5px}.radio-inline,.checkbox-inline{display:inline-block;padding-left:20px;margin-bottom:0;font-weight:normal;vertical-align:middle;cursor:pointer}.radio-inline+.radio-inline,.checkbox-inline+.checkbox-inline{margin-top:0;margin-left:10px}input[type="radio"][disabled],input[type="checkbox"][disabled],.radio[disabled],.radio-inline[disabled],.checkbox[disabled],.checkbox-inline[disabled],fieldset[disabled] input[type="radio"],fieldset[disabled] input[type="checkbox"],fieldset[disabled] .radio,fieldset[disabled] .radio-inline,fieldset[disabled] .checkbox,fieldset[disabled] .checkbox-inline{cursor:not-allowed}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}textarea.input-sm{height:auto}.input-lg{height:45px;padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}select.input-lg{height:45px;line-height:45px}textarea.input-lg{height:auto}.has-warning .help-block,.has-warning .control-label,.has-warning .radio,.has-warning .checkbox,.has-warning .radio-inline,.has-warning .checkbox-inline{color:#c09853}.has-warning .form-control{border-color:#c09853;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-warning .form-control:focus{border-color:#a47e3c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #dbc59e;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #dbc59e}.has-warning .input-group-addon{color:#c09853;background-color:#fcf8e3;border-color:#c09853}.has-error .help-block,.has-error .control-label,.has-error .radio,.has-error .checkbox,.has-error .radio-inline,.has-error .checkbox-inline{color:#b94a48}.has-error .form-control{border-color:#b94a48;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-error .form-control:focus{border-color:#953b39;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #d59392;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #d59392}.has-error .input-group-addon{color:#b94a48;background-color:#f2dede;border-color:#b94a48}.has-success .help-block,.has-success .control-label,.has-success .radio,.has-success .checkbox,.has-success .radio-inline,.has-success .checkbox-inline{color:#468847}.has-success .form-control{border-color:#468847;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-success .form-control:focus{border-color:#356635;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7aba7b;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7aba7b}.has-success .input-group-addon{color:#468847;background-color:#dff0d8;border-color:#468847}.form-control-static{margin-bottom:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media(min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block}.form-inline .radio,.form-inline .checkbox{display:inline-block;padding-left:0;margin-top:0;margin-bottom:0}.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{float:none;margin-left:0}}.form-horizontal .control-label,.form-horizontal .radio,.form-horizontal .checkbox,.form-horizontal .radio-inline,.form-horizontal .checkbox-inline{padding-top:7px;margin-top:0;margin-bottom:0}.form-horizontal .form-group{margin-right:-15px;margin-left:-15px}.form-horizontal .form-group:before,.form-horizontal .form-group:after{display:table;content:" "}.form-horizontal .form-group:after{clear:both}.form-horizontal .form-group:before,.form-horizontal .form-group:after{display:table;content:" "}.form-horizontal .form-group:after{clear:both}.form-horizontal .form-control-static{padding-top:7px}@media(min-width:768px){.form-horizontal .control-label{text-align:right}}.btn{display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:normal;line-height:1.428571429;text-align:center;white-space:nowrap;vertical-align:middle;cursor:pointer;background-image:none;border:1px solid transparent;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none}.btn:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn:hover,.btn:focus{color:#333;text-decoration:none}.btn:active,.btn.active{background-image:none;outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{pointer-events:none;cursor:not-allowed;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default:hover,.btn-default:focus,.btn-default:active,.btn-default.active,.open .dropdown-toggle.btn-default{color:#333;background-color:#ebebeb;border-color:#adadad}.btn-default:active,.btn-default.active,.open .dropdown-toggle.btn-default{background-image:none}.btn-default.disabled,.btn-default[disabled],fieldset[disabled] .btn-default,.btn-default.disabled:hover,.btn-default[disabled]:hover,fieldset[disabled] .btn-default:hover,.btn-default.disabled:focus,.btn-default[disabled]:focus,fieldset[disabled] .btn-default:focus,.btn-default.disabled:active,.btn-default[disabled]:active,fieldset[disabled] .btn-default:active,.btn-default.disabled.active,.btn-default[disabled].active,fieldset[disabled] .btn-default.active{background-color:#fff;border-color:#ccc}.btn-primary{color:#fff;background-color:#428bca;border-color:#357ebd}.btn-primary:hover,.btn-primary:focus,.btn-primary:active,.btn-primary.active,.open .dropdown-toggle.btn-primary{color:#fff;background-color:#3276b1;border-color:#285e8e}.btn-primary:active,.btn-primary.active,.open .dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled,.btn-primary[disabled],fieldset[disabled] .btn-primary,.btn-primary.disabled:hover,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary:hover,.btn-primary.disabled:focus,.btn-primary[disabled]:focus,fieldset[disabled] .btn-primary:focus,.btn-primary.disabled:active,.btn-primary[disabled]:active,fieldset[disabled] .btn-primary:active,.btn-primary.disabled.active,.btn-primary[disabled].active,fieldset[disabled] .btn-primary.active{background-color:#428bca;border-color:#357ebd}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning:hover,.btn-warning:focus,.btn-warning:active,.btn-warning.active,.open .dropdown-toggle.btn-warning{color:#fff;background-color:#ed9c28;border-color:#d58512}.btn-warning:active,.btn-warning.active,.open .dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled,.btn-warning[disabled],fieldset[disabled] .btn-warning,.btn-warning.disabled:hover,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning:hover,.btn-warning.disabled:focus,.btn-warning[disabled]:focus,fieldset[disabled] .btn-warning:focus,.btn-warning.disabled:active,.btn-warning[disabled]:active,fieldset[disabled] .btn-warning:active,.btn-warning.disabled.active,.btn-warning[disabled].active,fieldset[disabled] .btn-warning.active{background-color:#f0ad4e;border-color:#eea236}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger:hover,.btn-danger:focus,.btn-danger:active,.btn-danger.active,.open .dropdown-toggle.btn-danger{color:#fff;background-color:#d2322d;border-color:#ac2925}.btn-danger:active,.btn-danger.active,.open .dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled,.btn-danger[disabled],fieldset[disabled] .btn-danger,.btn-danger.disabled:hover,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger:hover,.btn-danger.disabled:focus,.btn-danger[disabled]:focus,fieldset[disabled] .btn-danger:focus,.btn-danger.disabled:active,.btn-danger[disabled]:active,fieldset[disabled] .btn-danger:active,.btn-danger.disabled.active,.btn-danger[disabled].active,fieldset[disabled] .btn-danger.active{background-color:#d9534f;border-color:#d43f3a}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success:hover,.btn-success:focus,.btn-success:active,.btn-success.active,.open .dropdown-toggle.btn-success{color:#fff;background-color:#47a447;border-color:#398439}.btn-success:active,.btn-success.active,.open .dropdown-toggle.btn-success{background-image:none}.btn-success.disabled,.btn-success[disabled],fieldset[disabled] .btn-success,.btn-success.disabled:hover,.btn-success[disabled]:hover,fieldset[disabled] .btn-success:hover,.btn-success.disabled:focus,.btn-success[disabled]:focus,fieldset[disabled] .btn-success:focus,.btn-success.disabled:active,.btn-success[disabled]:active,fieldset[disabled] .btn-success:active,.btn-success.disabled.active,.btn-success[disabled].active,fieldset[disabled] .btn-success.active{background-color:#5cb85c;border-color:#4cae4c}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info:hover,.btn-info:focus,.btn-info:active,.btn-info.active,.open .dropdown-toggle.btn-info{color:#fff;background-color:#39b3d7;border-color:#269abc}.btn-info:active,.btn-info.active,.open .dropdown-toggle.btn-info{background-image:none}.btn-info.disabled,.btn-info[disabled],fieldset[disabled] .btn-info,.btn-info.disabled:hover,.btn-info[disabled]:hover,fieldset[disabled] .btn-info:hover,.btn-info.disabled:focus,.btn-info[disabled]:focus,fieldset[disabled] .btn-info:focus,.btn-info.disabled:active,.btn-info[disabled]:active,fieldset[disabled] .btn-info:active,.btn-info.disabled.active,.btn-info[disabled].active,fieldset[disabled] .btn-info.active{background-color:#5bc0de;border-color:#46b8da}.btn-link{font-weight:normal;color:#428bca;cursor:pointer;border-radius:0}.btn-link,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:hover,.btn-link:focus,.btn-link:active{border-color:transparent}.btn-link:hover,.btn-link:focus{color:#2a6496;text-decoration:underline;background-color:transparent}.btn-link[disabled]:hover,fieldset[disabled] .btn-link:hover,.btn-link[disabled]:focus,fieldset[disabled] .btn-link:focus{color:#999;text-decoration:none}.btn-lg{padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}.btn-sm,.btn-xs{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-xs{padding:1px 5px}.btn-block{display:block;width:100%;padding-right:0;padding-left:0}.btn-block+.btn-block{margin-top:5px}input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition:height .35s ease;transition:height .35s ease}@font-face{font-family:'Glyphicons Halflings';src:url('../fonts/glyphicons-halflings-regular.eot');src:url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'),url('../fonts/glyphicons-halflings-regular.woff') format('woff'),url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'),url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';-webkit-font-smoothing:antialiased;font-style:normal;font-weight:normal;line-height:1;-moz-osx-font-smoothing:grayscale}.glyphicon:empty{width:1em}.glyphicon-asterisk:before{content:"\2a"}.glyphicon-plus:before{content:"\2b"}.glyphicon-euro:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px solid #000;border-right:4px solid transparent;border-bottom:0 dotted;border-left:4px solid transparent}.dropdown{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:14px;list-style:none;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,0.175);box-shadow:0 6px 12px rgba(0,0,0,0.175);background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:1.428571429;color:#333;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{color:#262626;text-decoration:none;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;background-color:#428bca;outline:0}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#999}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.428571429;color:#999}.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0 dotted;border-bottom:4px solid #000;content:""}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:1px}@media(min-width:768px){.navbar-right .dropdown-menu{right:0;left:auto}}.btn-default .caret{border-top-color:#333}.btn-primary .caret,.btn-success .caret,.btn-warning .caret,.btn-danger .caret,.btn-info .caret{border-top-color:#fff}.dropup .btn-default .caret{border-bottom-color:#333}.dropup .btn-primary .caret,.dropup .btn-success .caret,.dropup .btn-warning .caret,.dropup .btn-danger .caret,.dropup .btn-info .caret{border-bottom-color:#fff}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;float:left}.btn-group>.btn:hover,.btn-group-vertical>.btn:hover,.btn-group>.btn:focus,.btn-group-vertical>.btn:focus,.btn-group>.btn:active,.btn-group-vertical>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn.active{z-index:2}.btn-group>.btn:focus,.btn-group-vertical>.btn:focus{outline:0}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar:before,.btn-toolbar:after{display:table;content:" "}.btn-toolbar:after{clear:both}.btn-toolbar:before,.btn-toolbar:after{display:table;content:" "}.btn-toolbar:after{clear:both}.btn-toolbar .btn-group{float:left}.btn-toolbar>.btn+.btn,.btn-toolbar>.btn-group+.btn,.btn-toolbar>.btn+.btn-group,.btn-toolbar>.btn-group+.btn-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child>.btn:last-child,.btn-group>.btn-group:first-child>.dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:last-child>.btn:first-child{border-bottom-left-radius:0;border-top-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group-xs>.btn{padding:5px 10px;padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-group-sm>.btn{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-group-lg>.btn{padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}.btn-group>.btn+.dropdown-toggle{padding-right:8px;padding-left:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-right:12px;padding-left:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group:before,.btn-group-vertical>.btn-group:after{display:table;content:" "}.btn-group-vertical>.btn-group:after{clear:both}.btn-group-vertical>.btn-group:before,.btn-group-vertical>.btn-group:after{display:table;content:" "}.btn-group-vertical>.btn-group:after{clear:both}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-top-right-radius:0;border-bottom-left-radius:4px;border-top-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child>.btn:last-child,.btn-group-vertical>.btn-group:first-child>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child>.btn:first-child{border-top-right-radius:0;border-top-left-radius:0}.btn-group-justified{display:table;width:100%;border-collapse:separate;table-layout:fixed}.btn-group-justified .btn{display:table-cell;float:none;width:1%}[data-toggle="buttons"]>.btn>input[type="radio"],[data-toggle="buttons"]>.btn>input[type="checkbox"]{display:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group.col{float:none;padding-right:0;padding-left:0}.input-group .form-control{width:100%;margin-bottom:0}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:45px;padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:45px;line-height:45px}textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn{height:auto}.input-group-addon,.input-group-btn,.input-group .form-control{display:table-cell}.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child),.input-group .form-control:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:normal;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type="radio"],.input-group-addon input[type="checkbox"]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:last-child>.btn,.input-group-btn:last-child>.dropdown-toggle,.input-group-btn:first-child>.btn:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;white-space:nowrap}.input-group-btn:first-child>.btn{margin-right:-1px}.input-group-btn:last-child>.btn{margin-left:-1px}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-4px}.input-group-btn>.btn:hover,.input-group-btn>.btn:active{z-index:2}.nav{padding-left:0;margin-bottom:0;list-style:none}.nav:before,.nav:after{display:table;content:" "}.nav:after{clear:both}.nav:before,.nav:after{display:table;content:" "}.nav:after{clear:both}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#999}.nav>li.disabled>a:hover,.nav>li.disabled>a:focus{color:#999;text-decoration:none;cursor:not-allowed;background-color:transparent}.nav .open>a,.nav .open>a:hover,.nav .open>a:focus{background-color:#eee;border-color:#428bca}.nav .open>a .caret,.nav .open>a:hover .caret,.nav .open>a:focus .caret{border-top-color:#2a6496;border-bottom-color:#2a6496}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.428571429;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:hover,.nav-tabs>li.active>a:focus{color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media(min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border:1px solid #ddd}@media(min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:hover,.nav-pills>li.active>a:focus{color:#fff;background-color:#428bca}.nav-pills>li.active>a .caret,.nav-pills>li.active>a:hover .caret,.nav-pills>li.active>a:focus .caret{border-top-color:#fff;border-bottom-color:#fff}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media(min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border:1px solid #ddd}@media(min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav .caret{border-top-color:#428bca;border-bottom-color:#428bca}.nav a:hover .caret{border-top-color:#2a6496;border-bottom-color:#2a6496}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}.navbar:before,.navbar:after{display:table;content:" "}.navbar:after{clear:both}.navbar:before,.navbar:after{display:table;content:" "}.navbar:after{clear:both}@media(min-width:768px){.navbar{border-radius:4px}}.navbar-header:before,.navbar-header:after{display:table;content:" "}.navbar-header:after{clear:both}.navbar-header:before,.navbar-header:after{display:table;content:" "}.navbar-header:after{clear:both}@media(min-width:768px){.navbar-header{float:left}}.navbar-collapse{max-height:340px;padding-right:15px;padding-left:15px;overflow-x:visible;border-top:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,0.1);-webkit-overflow-scrolling:touch}.navbar-collapse:before,.navbar-collapse:after{display:table;content:" "}.navbar-collapse:after{clear:both}.navbar-collapse:before,.navbar-collapse:after{display:table;content:" "}.navbar-collapse:after{clear:both}.navbar-collapse.in{overflow-y:auto}@media(min-width:768px){.navbar-collapse{width:auto;border-top:0;box-shadow:none}.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.navbar-collapse.in{overflow-y:auto}.navbar-collapse .navbar-nav.navbar-left:first-child{margin-left:-15px}.navbar-collapse .navbar-nav.navbar-right:last-child{margin-right:-15px}.navbar-collapse .navbar-text:last-child{margin-right:0}}.container>.navbar-header,.container>.navbar-collapse{margin-right:-15px;margin-left:-15px}@media(min-width:768px){.container>.navbar-header,.container>.navbar-collapse{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media(min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030}@media(min-width:768px){.navbar-fixed-top,.navbar-fixed-bottom{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;padding:15px 15px;font-size:18px;line-height:20px}.navbar-brand:hover,.navbar-brand:focus{text-decoration:none}@media(min-width:768px){.navbar>.container .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;padding:9px 10px;margin-top:8px;margin-right:15px;margin-bottom:8px;background-color:transparent;border:1px solid transparent;border-radius:4px}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media(min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media(max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;box-shadow:none}.navbar-nav .open .dropdown-menu>li>a,.navbar-nav .open .dropdown-menu .dropdown-header{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:hover,.navbar-nav .open .dropdown-menu>li>a:focus{background-image:none}}@media(min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}@media(min-width:768px){.navbar-left{float:left!important}.navbar-right{float:right!important}}.navbar-form{padding:10px 15px;margin-top:8px;margin-right:-15px;margin-bottom:8px;margin-left:-15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1)}@media(min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block}.navbar-form .radio,.navbar-form .checkbox{display:inline-block;padding-left:0;margin-top:0;margin-bottom:0}.navbar-form .radio input[type="radio"],.navbar-form .checkbox input[type="checkbox"]{float:none;margin-left:0}}@media(max-width:767px){.navbar-form .form-group{margin-bottom:5px}}@media(min-width:768px){.navbar-form{width:auto;padding-top:0;padding-bottom:0;margin-right:0;margin-left:0;border:0;-webkit-box-shadow:none;box-shadow:none}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-right-radius:0;border-top-left-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-nav.pull-right>li>.dropdown-menu,.navbar-nav>li>.dropdown-menu.pull-right{right:0;left:auto}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-text{float:left;margin-top:15px;margin-bottom:15px}@media(min-width:768px){.navbar-text{margin-right:15px;margin-left:15px}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:hover,.navbar-default .navbar-brand:focus{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:hover,.navbar-default .navbar-nav>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:hover,.navbar-default .navbar-nav>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:hover,.navbar-default .navbar-nav>.disabled>a:focus{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:hover,.navbar-default .navbar-toggle:focus{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#ccc}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.dropdown>a:hover .caret,.navbar-default .navbar-nav>.dropdown>a:focus .caret{border-top-color:#333;border-bottom-color:#333}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:hover,.navbar-default .navbar-nav>.open>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.open>a .caret,.navbar-default .navbar-nav>.open>a:hover .caret,.navbar-default .navbar-nav>.open>a:focus .caret{border-top-color:#555;border-bottom-color:#555}.navbar-default .navbar-nav>.dropdown>a .caret{border-top-color:#777;border-bottom-color:#777}@media(max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#999}.navbar-inverse .navbar-brand:hover,.navbar-inverse .navbar-brand:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#999}.navbar-inverse .navbar-nav>li>a{color:#999}.navbar-inverse .navbar-nav>li>a:hover,.navbar-inverse .navbar-nav>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:hover,.navbar-inverse .navbar-nav>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:hover,.navbar-inverse .navbar-nav>.disabled>a:focus{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:hover,.navbar-inverse .navbar-toggle:focus{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:hover,.navbar-inverse .navbar-nav>.open>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.dropdown>a:hover .caret{border-top-color:#fff;border-bottom-color:#fff}.navbar-inverse .navbar-nav>.dropdown>a .caret{border-top-color:#999;border-bottom-color:#999}.navbar-inverse .navbar-nav>.open>a .caret,.navbar-inverse .navbar-nav>.open>a:hover .caret,.navbar-inverse .navbar-nav>.open>a:focus .caret{border-top-color:#fff;border-bottom-color:#fff}@media(max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#999}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#999}.navbar-inverse .navbar-link:hover{color:#fff}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{padding:0 5px;color:#ccc;content:"/\00a0"}.breadcrumb>.active{color:#999}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;margin-left:-1px;line-height:1.428571429;text-decoration:none;background-color:#fff;border:1px solid #ddd}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-bottom-left-radius:4px;border-top-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-top-right-radius:4px;border-bottom-right-radius:4px}.pagination>li>a:hover,.pagination>li>span:hover,.pagination>li>a:focus,.pagination>li>span:focus{background-color:#eee}.pagination>.active>a,.pagination>.active>span,.pagination>.active>a:hover,.pagination>.active>span:hover,.pagination>.active>a:focus,.pagination>.active>span:focus{z-index:2;color:#fff;cursor:default;background-color:#428bca;border-color:#428bca}.pagination>.disabled>span,.pagination>.disabled>span:hover,.pagination>.disabled>span:focus,.pagination>.disabled>a,.pagination>.disabled>a:hover,.pagination>.disabled>a:focus{color:#999;cursor:not-allowed;background-color:#fff;border-color:#ddd}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-bottom-left-radius:6px;border-top-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-top-right-radius:6px;border-bottom-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-bottom-left-radius:3px;border-top-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-top-right-radius:3px;border-bottom-right-radius:3px}.pager{padding-left:0;margin:20px 0;text-align:center;list-style:none}.pager:before,.pager:after{display:table;content:" "}.pager:after{clear:both}.pager:before,.pager:after{display:table;content:" "}.pager:after{clear:both}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:hover,.pager li>a:focus{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:hover,.pager .disabled>a:focus,.pager .disabled>span{color:#999;cursor:not-allowed;background-color:#fff}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:bold;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}.label[href]:hover,.label[href]:focus{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.label-default{background-color:#999}.label-default[href]:hover,.label-default[href]:focus{background-color:#808080}.label-primary{background-color:#428bca}.label-primary[href]:hover,.label-primary[href]:focus{background-color:#3071a9}.label-success{background-color:#5cb85c}.label-success[href]:hover,.label-success[href]:focus{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:hover,.label-info[href]:focus{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:hover,.label-warning[href]:focus{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:hover,.label-danger[href]:focus{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:bold;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;background-color:#999;border-radius:10px}.badge:empty{display:none}a.badge:hover,a.badge:focus{color:#fff;text-decoration:none;cursor:pointer}.btn .badge{position:relative;top:-1px}a.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#428bca;background-color:#fff}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding:30px;margin-bottom:30px;font-size:21px;font-weight:200;line-height:2.1428571435;color:inherit;background-color:#eee}.jumbotron h1{line-height:1;color:inherit}.jumbotron p{line-height:1.4}.container .jumbotron{border-radius:6px}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron{padding-right:60px;padding-left:60px}.jumbotron h1{font-size:63px}}.thumbnail{display:inline-block;display:block;height:auto;max-width:100%;padding:4px;margin-bottom:20px;line-height:1.428571429;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.thumbnail>img{display:block;height:auto;max-width:100%;margin-right:auto;margin-left:auto}a.thumbnail:hover,a.thumbnail:focus,a.thumbnail.active{border-color:#428bca}.thumbnail .caption{padding:9px;color:#333}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:bold}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable{padding-right:35px}.alert-dismissable .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{color:#468847;background-color:#dff0d8;border-color:#d6e9c6}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#356635}.alert-info{color:#3a87ad;background-color:#d9edf7;border-color:#bce8f1}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#2d6987}.alert-warning{color:#c09853;background-color:#fcf8e3;border-color:#faebcc}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#a47e3c}.alert-danger{color:#b94a48;background-color:#f2dede;border-color:#ebccd1}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#953b39}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-moz-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:0 0}to{background-position:40px 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{height:20px;margin-bottom:20px;overflow:hidden;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);box-shadow:inset 0 1px 2px rgba(0,0,0,0.1)}.progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#428bca;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);-webkit-transition:width .6s ease;transition:width .6s ease}.progress-striped .progress-bar{background-image:-webkit-gradient(linear,0 100%,100% 0,color-stop(0.25,rgba(255,255,255,0.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,0.15)),color-stop(0.75,rgba(255,255,255,0.15)),color-stop(0.75,transparent),to(transparent));background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-size:40px 40px}.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-gradient(linear,0 100%,100% 0,color-stop(0.25,rgba(255,255,255,0.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,0.15)),color-stop(0.75,rgba(255,255,255,0.15)),color-stop(0.75,transparent),to(transparent));background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:-webkit-gradient(linear,0 100%,100% 0,color-stop(0.25,rgba(255,255,255,0.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,0.15)),color-stop(0.75,rgba(255,255,255,0.15)),color-stop(0.75,transparent),to(transparent));background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:-webkit-gradient(linear,0 100%,100% 0,color-stop(0.25,rgba(255,255,255,0.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,0.15)),color-stop(0.75,rgba(255,255,255,0.15)),color-stop(0.75,transparent),to(transparent));background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-gradient(linear,0 100%,100% 0,color-stop(0.25,rgba(255,255,255,0.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,0.15)),color-stop(0.75,rgba(255,255,255,0.15)),color-stop(0.75,transparent),to(transparent));background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent)}.media,.media-body{overflow:hidden;zoom:1}.media,.media .media{margin-top:15px}.media:first-child{margin-top:0}.media-object{display:block}.media-heading{margin:0 0 5px}.media>.pull-left{margin-right:10px}.media>.pull-right{margin-left:10px}.media-list{padding-left:0;list-style:none}.list-group{padding-left:0;margin-bottom:20px}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-right-radius:4px;border-top-left-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}a.list-group-item{color:#555}a.list-group-item .list-group-item-heading{color:#333}a.list-group-item:hover,a.list-group-item:focus{text-decoration:none;background-color:#f5f5f5}a.list-group-item.active,a.list-group-item.active:hover,a.list-group-item.active:focus{z-index:2;color:#fff;background-color:#428bca;border-color:#428bca}a.list-group-item.active .list-group-item-heading,a.list-group-item.active:hover .list-group-item-heading,a.list-group-item.active:focus .list-group-item-heading{color:inherit}a.list-group-item.active .list-group-item-text,a.list-group-item.active:hover .list-group-item-text,a.list-group-item.active:focus .list-group-item-text{color:#e1edf7}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.05);box-shadow:0 1px 1px rgba(0,0,0,0.05)}.panel-body{padding:15px}.panel-body:before,.panel-body:after{display:table;content:" "}.panel-body:after{clear:both}.panel-body:before,.panel-body:after{display:table;content:" "}.panel-body:after{clear:both}.panel>.list-group{margin-bottom:0}.panel>.list-group .list-group-item{border-width:1px 0}.panel>.list-group .list-group-item:first-child{border-top-right-radius:0;border-top-left-radius:0}.panel>.list-group .list-group-item:last-child{border-bottom:0}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.panel>.table,.panel>.table-responsive{margin-bottom:0}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive{border-top:1px solid #ddd}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.panel>.table-bordered>thead>tr:last-child>th,.panel>.table-responsive>.table-bordered>thead>tr:last-child>th,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th,.panel>.table-bordered>thead>tr:last-child>td,.panel>.table-responsive>.table-bordered>thead>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td{border-bottom:0}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-right-radius:3px;border-top-left-radius:3px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px}.panel-title>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel-group .panel{margin-bottom:0;overflow:hidden;border-radius:4px}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse .panel-body{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse .panel-body{border-top-color:#ddd}.panel-default>.panel-heading>.dropdown .caret{border-color:#333 transparent}.panel-default>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#428bca}.panel-primary>.panel-heading{color:#fff;background-color:#428bca;border-color:#428bca}.panel-primary>.panel-heading+.panel-collapse .panel-body{border-top-color:#428bca}.panel-primary>.panel-heading>.dropdown .caret{border-color:#fff transparent}.panel-primary>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#428bca}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#468847;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse .panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading>.dropdown .caret{border-color:#468847 transparent}.panel-success>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#d6e9c6}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#c09853;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse .panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading>.dropdown .caret{border-color:#c09853 transparent}.panel-warning>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#b94a48;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse .panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading>.dropdown .caret{border-color:#b94a48 transparent}.panel-danger>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#ebccd1}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#3a87ad;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse .panel-body{border-top-color:#bce8f1}.panel-info>.panel-heading>.dropdown .caret{border-color:#3a87ad transparent}.panel-info>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#bce8f1}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);box-shadow:inset 0 1px 1px rgba(0,0,0,0.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,0.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:21px;font-weight:bold;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}.close:hover,.close:focus{color:#000;text-decoration:none;cursor:pointer;opacity:.5;filter:alpha(opacity=50)}button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none}.modal-open{overflow:hidden}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;display:none;overflow:auto;overflow-y:scroll}.modal.fade .modal-dialog{-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);transform:translate(0,-25%);-webkit-transition:-webkit-transform .3s ease-out;-moz-transition:-moz-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out}.modal.in .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);transform:translate(0,0)}.modal-dialog{position:relative;z-index:1050;width:auto;padding:10px;margin-right:auto;margin-left:auto}.modal-content{position:relative;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,0.2);border-radius:6px;outline:0;-webkit-box-shadow:0 3px 9px rgba(0,0,0,0.5);box-shadow:0 3px 9px rgba(0,0,0,0.5);background-clip:padding-box}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1030;background-color:#000}.modal-backdrop.fade{opacity:0;filter:alpha(opacity=0)}.modal-backdrop.in{opacity:.5;filter:alpha(opacity=50)}.modal-header{min-height:16.428571429px;padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.428571429}.modal-body{position:relative;padding:20px}.modal-footer{padding:19px 20px 20px;margin-top:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer:before,.modal-footer:after{display:table;content:" "}.modal-footer:after{clear:both}.modal-footer:before,.modal-footer:after{display:table;content:" "}.modal-footer:after{clear:both}.modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}@media screen and (min-width:768px){.modal-dialog{width:600px;padding-top:30px;padding-bottom:30px}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,0.5);box-shadow:0 5px 15px rgba(0,0,0,0.5)}}.tooltip{position:absolute;z-index:1030;display:block;font-size:12px;line-height:1.4;opacity:0;filter:alpha(opacity=0);visibility:visible}.tooltip.in{opacity:.9;filter:alpha(opacity=90)}.tooltip.top{padding:5px 0;margin-top:-3px}.tooltip.right{padding:0 5px;margin-left:3px}.tooltip.bottom{padding:5px 0;margin-top:3px}.tooltip.left{padding:0 5px;margin-left:-3px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;text-decoration:none;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-top-color:#000;border-width:5px 5px 0}.tooltip.top-left .tooltip-arrow{bottom:0;left:5px;border-top-color:#000;border-width:5px 5px 0}.tooltip.top-right .tooltip-arrow{right:5px;bottom:0;border-top-color:#000;border-width:5px 5px 0}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-right-color:#000;border-width:5px 5px 5px 0}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-left-color:#000;border-width:5px 0 5px 5px}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-bottom-color:#000;border-width:0 5px 5px}.tooltip.bottom-left .tooltip-arrow{top:0;left:5px;border-bottom-color:#000;border-width:0 5px 5px}.tooltip.bottom-right .tooltip-arrow{top:0;right:5px;border-bottom-color:#000;border-width:0 5px 5px}.popover{position:absolute;top:0;left:0;z-index:1010;display:none;max-width:276px;padding:1px;text-align:left;white-space:normal;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2);background-clip:padding-box}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{padding:8px 14px;margin:0;font-size:14px;font-weight:normal;line-height:18px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover .arrow,.popover .arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover .arrow{border-width:11px}.popover .arrow:after{border-width:10px;content:""}.popover.top .arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,0.25);border-bottom-width:0}.popover.top .arrow:after{bottom:1px;margin-left:-10px;border-top-color:#fff;border-bottom-width:0;content:" "}.popover.right .arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,0.25);border-left-width:0}.popover.right .arrow:after{bottom:-10px;left:1px;border-right-color:#fff;border-left-width:0;content:" "}.popover.bottom .arrow{top:-11px;left:50%;margin-left:-11px;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,0.25);border-top-width:0}.popover.bottom .arrow:after{top:1px;margin-left:-10px;border-bottom-color:#fff;border-top-width:0;content:" "}.popover.left .arrow{top:50%;right:-11px;margin-top:-11px;border-left-color:#999;border-left-color:rgba(0,0,0,0.25);border-right-width:0}.popover.left .arrow:after{right:1px;bottom:-10px;border-left-color:#fff;border-right-width:0;content:" "}.carousel{position:relative}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner>.item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>img,.carousel-inner>.item>a>img{display:block;height:auto;max-width:100%;line-height:1}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;bottom:0;left:0;width:15%;font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6);opacity:.5;filter:alpha(opacity=50)}.carousel-control.left{background-image:-webkit-gradient(linear,0 top,100% top,from(rgba(0,0,0,0.5)),to(rgba(0,0,0,0.0001)));background-image:-webkit-linear-gradient(left,color-stop(rgba(0,0,0,0.5) 0),color-stop(rgba(0,0,0,0.0001) 100%));background-image:-moz-linear-gradient(left,rgba(0,0,0,0.5) 0,rgba(0,0,0,0.0001) 100%);background-image:linear-gradient(to right,rgba(0,0,0,0.5) 0,rgba(0,0,0,0.0001) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000',endColorstr='#00000000',GradientType=1)}.carousel-control.right{right:0;left:auto;background-image:-webkit-gradient(linear,0 top,100% top,from(rgba(0,0,0,0.0001)),to(rgba(0,0,0,0.5)));background-image:-webkit-linear-gradient(left,color-stop(rgba(0,0,0,0.0001) 0),color-stop(rgba(0,0,0,0.5) 100%));background-image:-moz-linear-gradient(left,rgba(0,0,0,0.0001) 0,rgba(0,0,0,0.5) 100%);background-image:linear-gradient(to right,rgba(0,0,0,0.0001) 0,rgba(0,0,0,0.5) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000',endColorstr='#80000000',GradientType=1)}.carousel-control:hover,.carousel-control:focus{color:#fff;text-decoration:none;opacity:.9;filter:alpha(opacity=90)}.carousel-control .icon-prev,.carousel-control .icon-next,.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right{position:absolute;top:50%;z-index:5;display:inline-block}.carousel-control .icon-prev,.carousel-control .glyphicon-chevron-left{left:50%}.carousel-control .icon-next,.carousel-control .glyphicon-chevron-right{right:50%}.carousel-control .icon-prev,.carousel-control .icon-next{width:20px;height:20px;margin-top:-10px;margin-left:-10px;font-family:serif}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;padding-left:0;margin-left:-30%;text-align:center;list-style:none}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;cursor:pointer;background-color:#000 \9;background-color:rgba(0,0,0,0);border:1px solid #fff;border-radius:10px}.carousel-indicators .active{width:12px;height:12px;margin:0;background-color:#fff}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicons-chevron-left,.carousel-control .glyphicons-chevron-right,.carousel-control .icon-prev,.carousel-control .icon-next{width:30px;height:30px;margin-top:-15px;margin-left:-15px;font-size:30px}.carousel-caption{right:20%;left:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.clearfix:before,.clearfix:after{display:table;content:" "}.clearfix:after{clear:both}.center-block{display:block;margin-right:auto;margin-left:auto}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none!important;visibility:hidden!important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-xs,tr.visible-xs,th.visible-xs,td.visible-xs{display:none!important}@media(max-width:767px){.visible-xs{display:block!important}tr.visible-xs{display:table-row!important}th.visible-xs,td.visible-xs{display:table-cell!important}}@media(min-width:768px) and (max-width:991px){.visible-xs.visible-sm{display:block!important}tr.visible-xs.visible-sm{display:table-row!important}th.visible-xs.visible-sm,td.visible-xs.visible-sm{display:table-cell!important}}@media(min-width:992px) and (max-width:1199px){.visible-xs.visible-md{display:block!important}tr.visible-xs.visible-md{display:table-row!important}th.visible-xs.visible-md,td.visible-xs.visible-md{display:table-cell!important}}@media(min-width:1200px){.visible-xs.visible-lg{display:block!important}tr.visible-xs.visible-lg{display:table-row!important}th.visible-xs.visible-lg,td.visible-xs.visible-lg{display:table-cell!important}}.visible-sm,tr.visible-sm,th.visible-sm,td.visible-sm{display:none!important}@media(max-width:767px){.visible-sm.visible-xs{display:block!important}tr.visible-sm.visible-xs{display:table-row!important}th.visible-sm.visible-xs,td.visible-sm.visible-xs{display:table-cell!important}}@media(min-width:768px) and (max-width:991px){.visible-sm{display:block!important}tr.visible-sm{display:table-row!important}th.visible-sm,td.visible-sm{display:table-cell!important}}@media(min-width:992px) and (max-width:1199px){.visible-sm.visible-md{display:block!important}tr.visible-sm.visible-md{display:table-row!important}th.visible-sm.visible-md,td.visible-sm.visible-md{display:table-cell!important}}@media(min-width:1200px){.visible-sm.visible-lg{display:block!important}tr.visible-sm.visible-lg{display:table-row!important}th.visible-sm.visible-lg,td.visible-sm.visible-lg{display:table-cell!important}}.visible-md,tr.visible-md,th.visible-md,td.visible-md{display:none!important}@media(max-width:767px){.visible-md.visible-xs{display:block!important}tr.visible-md.visible-xs{display:table-row!important}th.visible-md.visible-xs,td.visible-md.visible-xs{display:table-cell!important}}@media(min-width:768px) and (max-width:991px){.visible-md.visible-sm{display:block!important}tr.visible-md.visible-sm{display:table-row!important}th.visible-md.visible-sm,td.visible-md.visible-sm{display:table-cell!important}}@media(min-width:992px) and (max-width:1199px){.visible-md{display:block!important}tr.visible-md{display:table-row!important}th.visible-md,td.visible-md{display:table-cell!important}}@media(min-width:1200px){.visible-md.visible-lg{display:block!important}tr.visible-md.visible-lg{display:table-row!important}th.visible-md.visible-lg,td.visible-md.visible-lg{display:table-cell!important}}.visible-lg,tr.visible-lg,th.visible-lg,td.visible-lg{display:none!important}@media(max-width:767px){.visible-lg.visible-xs{display:block!important}tr.visible-lg.visible-xs{display:table-row!important}th.visible-lg.visible-xs,td.visible-lg.visible-xs{display:table-cell!important}}@media(min-width:768px) and (max-width:991px){.visible-lg.visible-sm{display:block!important}tr.visible-lg.visible-sm{display:table-row!important}th.visible-lg.visible-sm,td.visible-lg.visible-sm{display:table-cell!important}}@media(min-width:992px) and (max-width:1199px){.visible-lg.visible-md{display:block!important}tr.visible-lg.visible-md{display:table-row!important}th.visible-lg.visible-md,td.visible-lg.visible-md{display:table-cell!important}}@media(min-width:1200px){.visible-lg{display:block!important}tr.visible-lg{display:table-row!important}th.visible-lg,td.visible-lg{display:table-cell!important}}.hidden-xs{display:block!important}tr.hidden-xs{display:table-row!important}th.hidden-xs,td.hidden-xs{display:table-cell!important}@media(max-width:767px){.hidden-xs,tr.hidden-xs,th.hidden-xs,td.hidden-xs{display:none!important}}@media(min-width:768px) and (max-width:991px){.hidden-xs.hidden-sm,tr.hidden-xs.hidden-sm,th.hidden-xs.hidden-sm,td.hidden-xs.hidden-sm{display:none!important}}@media(min-width:992px) and (max-width:1199px){.hidden-xs.hidden-md,tr.hidden-xs.hidden-md,th.hidden-xs.hidden-md,td.hidden-xs.hidden-md{display:none!important}}@media(min-width:1200px){.hidden-xs.hidden-lg,tr.hidden-xs.hidden-lg,th.hidden-xs.hidden-lg,td.hidden-xs.hidden-lg{display:none!important}}.hidden-sm{display:block!important}tr.hidden-sm{display:table-row!important}th.hidden-sm,td.hidden-sm{display:table-cell!important}@media(max-width:767px){.hidden-sm.hidden-xs,tr.hidden-sm.hidden-xs,th.hidden-sm.hidden-xs,td.hidden-sm.hidden-xs{display:none!important}}@media(min-width:768px) and (max-width:991px){.hidden-sm,tr.hidden-sm,th.hidden-sm,td.hidden-sm{display:none!important}}@media(min-width:992px) and (max-width:1199px){.hidden-sm.hidden-md,tr.hidden-sm.hidden-md,th.hidden-sm.hidden-md,td.hidden-sm.hidden-md{display:none!important}}@media(min-width:1200px){.hidden-sm.hidden-lg,tr.hidden-sm.hidden-lg,th.hidden-sm.hidden-lg,td.hidden-sm.hidden-lg{display:none!important}}.hidden-md{display:block!important}tr.hidden-md{display:table-row!important}th.hidden-md,td.hidden-md{display:table-cell!important}@media(max-width:767px){.hidden-md.hidden-xs,tr.hidden-md.hidden-xs,th.hidden-md.hidden-xs,td.hidden-md.hidden-xs{display:none!important}}@media(min-width:768px) and (max-width:991px){.hidden-md.hidden-sm,tr.hidden-md.hidden-sm,th.hidden-md.hidden-sm,td.hidden-md.hidden-sm{display:none!important}}@media(min-width:992px) and (max-width:1199px){.hidden-md,tr.hidden-md,th.hidden-md,td.hidden-md{display:none!important}}@media(min-width:1200px){.hidden-md.hidden-lg,tr.hidden-md.hidden-lg,th.hidden-md.hidden-lg,td.hidden-md.hidden-lg{display:none!important}}.hidden-lg{display:block!important}tr.hidden-lg{display:table-row!important}th.hidden-lg,td.hidden-lg{display:table-cell!important}@media(max-width:767px){.hidden-lg.hidden-xs,tr.hidden-lg.hidden-xs,th.hidden-lg.hidden-xs,td.hidden-lg.hidden-xs{display:none!important}}@media(min-width:768px) and (max-width:991px){.hidden-lg.hidden-sm,tr.hidden-lg.hidden-sm,th.hidden-lg.hidden-sm,td.hidden-lg.hidden-sm{display:none!important}}@media(min-width:992px) and (max-width:1199px){.hidden-lg.hidden-md,tr.hidden-lg.hidden-md,th.hidden-lg.hidden-md,td.hidden-lg.hidden-md{display:none!important}}@media(min-width:1200px){.hidden-lg,tr.hidden-lg,th.hidden-lg,td.hidden-lg{display:none!important}}.visible-print,tr.visible-print,th.visible-print,td.visible-print{display:none!important}@media print{.visible-print{display:block!important}tr.visible-print{display:table-row!important}th.visible-print,td.visible-print{display:table-cell!important}.hidden-print,tr.hidden-print,th.hidden-print,td.hidden-print{display:none!important}}
\ No newline at end of file
diff --git a/AgileWorks/WebContent/css/livehtml/band-div.css b/AgileWorks/WebContent/css/livehtml/band-div.css
deleted file mode 100644
index 3233b0befdbd3838a4172c79202d917200a5110c..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/livehtml/band-div.css
+++ /dev/null
@@ -1,59 +0,0 @@
-/*
- * band-div.css?build31910
- *
- * Bandを利用した固定テーブルレイアウトを描画する際に必要なCSSクラスセレクタを定義します
- */
-
-.aw-band-div {
- border-style:solid;
- border-width:1px 0px 1px 1px;
- border-color:#aaaaaa;
-}
-
-.aw-band-div-thead {
- height:25px;
-}
-
-.aw-band-div-th {
- float:left;
- height:25px;
- line-height:25px;
- color:#000000;
- font-weight:bold;
- border-style:solid;
- border-width:0px 1px 0px 0px;
- border-color:#aaaaaa;
- white-space:pre;
- word-break:keep-all;
- overflow:hidden;
- text-align:center;
- background-image: url( '../../images/emma/default/background/grid_header.gif?build31910' );
-}
-
-.aw-band-div-tr {
- height:25px;
- background-color:#ffffff;
-}
-
-.aw-band-div-tr-even {
- height:25px;
- background-color:#f5f5f5;
-}
-
-.aw-band-div-td {
- height:25px;
- line-height:25px;
- float:left;
- border-style:solid;
- border-width:0px 1px 0px 0px;
- border-color:#aaaaaa;
-}
-
-.aw-band-div-td-even {
- height:25px;
- line-height:25px;
- float:left;
- border-style:solid;
- border-width:0px 1px 0px 0px;
- border-color:#aaaaaa;
-}
diff --git a/AgileWorks/WebContent/css/livehtml/band-table.css b/AgileWorks/WebContent/css/livehtml/band-table.css
deleted file mode 100644
index d501297273c09dc56bf12e1861a83c848cc40a07..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/livehtml/band-table.css
+++ /dev/null
@@ -1,84 +0,0 @@
-/*
- * band-table.css?build31910
- *
- * Bandを利用したリキッドテーブルレイアウトを描画する際に必要なCSSクラスセレクタを定義します
- */
-
-.aw-band-table-header {
- border-style:solid;
- border-width:1px 0px 1px 1px;
- border-color:#aaaaaa;
- table-layout: fixed;
-}
-
-.aw-band-table-list {
- border-style:solid;
- border-width:0px 0px 1px 1px;
- border-color:#aaaaaa;
- table-layout: fixed;
-}
-
-.aw-band-table-list-even {
- border-style:solid;
- border-width:0px 0px 1px 1px;
- border-color:#aaaaaa;
- table-layout: fixed;
-}
-
-.aw-band-table-list-highlight {
- border-style:solid;
- border-width:0px 0px 1px 1px;
- border-color:#aaaaaa;
- table-layout: fixed;
-}
-
-.aw-band-table-tr {
- height:25px;
- background-color:#ffffff;
-}
-
-.aw-band-table-tr-even {
- height:25px;
- background-color:#f5f5f5;
-}
-
-.aw-band-table-tr-highlight {
- height:25px;
- background-color:#ffffcc;
-}
-
-.aw-band-table-th {
- height:25px;
- color:#000000;
- font-weight:bold;
- border-style:solid;
- border-width:0px 1px 0px 0px;
- border-color:#aaaaaa;
- white-space:pre;
- word-break:keep-all;
- overflow:hidden;
- text-align:center;
- background-image: url( '../../images/emma/default/background/grid_header.gif?build31910' );
- padding:0px 4px 0px 4px;
-}
-
-.aw-band-table-td {
- border-style:solid;
- border-width:0px 1px 0px 0px;
- border-color:#aaaaaa;
- padding:4px;
-}
-
-.aw-band-table-td-even {
- border-style:solid;
- border-width:0px 1px 0px 0px;
- border-color:#aaaaaa;
- padding:4px;
-}
-
-.aw-band-table-td-highlight {
- border-style:solid;
- border-width:0px 1px 0px 0px;
- border-color:#aaaaaa;
- padding:4px;
-}
diff --git a/AgileWorks/WebContent/css/livehtml/calendar.css b/AgileWorks/WebContent/css/livehtml/calendar.css
deleted file mode 100644
index 1779764f8342fbb10639e2bb53c9bf246403872d..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/livehtml/calendar.css
+++ /dev/null
@@ -1,106 +0,0 @@
-/*
- * calendar.css?build31910
- *
- * Calendarで使用されるCSSセレクタを定義します
- */
-
-.calendar {
- border-style:solid;
- border-color:#666666;
- border-width:1px;
- font-size:12px;
- box-shadow: 2px 2px 5px #666666;
- -moz-box-shadow: 2px 2px 5px #666666;
- -webkit-box-shadow: 2px 2px 5px #666666;
-}
-
-.calendar-header {
- text-align:center;
- background-color:#0067ce;
- color:#ffffff;
- font-size:13px;
-}
-
-.calendar-header th {
- word-break:keep-all;
- white-space:nowrap;
-}
-
-.calendar-header .function {
- cursor:pointer;
-}
-
-.calendar-day {
- text-align:center;
- background-color:#dddddd;
-}
-
-.calendar-date {
- text-align:right;
- background-color:#ffffff;
- cursor:pointer;
-}
-
-.calendar-date td {
- width:20px;
-}
-
-.calendar-date .selected {
- text-align:right;
- background-color:#0067ce;
- color:#ffffff;
- cursor:pointer;
-}
-
-.calendar-date .today {
- text-align:right;
- background-color:#ffffcc;
- cursor:pointer;
-}
-
-.calendar-date .outside {
- text-align:right;
- color:#aaaaaa;
- cursor:auto;
-}
-
-.calendar-date .saturday {
- text-align:right;
- background-color:#eaefff;
- color:#0000ff;
- cursor:pointer;
-}
-
-.calendar-date .sunday {
- text-align:right;
- background-color:#fde0e0;
- color:#ff0000;
- cursor:pointer;
-}
-
-.calendar-date .over {
- text-align:right;
- background-color:#ddecfe;
- color:#0000ff;
- cursor:pointer;
-}
-
-.calendar-date .rangeover {
- color:#aaaaaa;
- cursor:auto;
-}
-
-.calendar-footer {
- background-color:#dddddd;
- text-align:center;
-}
-
-.calendar-footer input {
- font-size:10px;
- width:70px;
- height:20px;
-}
-
-.calendar-footer .thismonth {
- margin-right:10px;
-}
diff --git a/AgileWorks/WebContent/css/livehtml/combobox-type.css b/AgileWorks/WebContent/css/livehtml/combobox-type.css
deleted file mode 100644
index d56e779a268adf6388763781bb45497405625d91..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/livehtml/combobox-type.css
+++ /dev/null
@@ -1,2667 +0,0 @@
-/*
- * combobox-type.css?build31910
- */
-
-/* ----------------------------------------------- */
-/* CSS-Sprite */
-/* ----------------------------------------------- */
-
-/* object sprite start */
-
-.combobox .addon {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -10px;
- background-repeat: no-repeat;
-}
-.combobox-select .addon {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -10px;
- background-repeat: no-repeat;
-}
-
-.combobox .allunit {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -40px;
- background-repeat: no-repeat;
-}
-.combobox-select .allunit {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -40px;
- background-repeat: no-repeat;
-}
-
-.combobox .anyone {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -70px;
- background-repeat: no-repeat;
-}
-.combobox-select .anyone {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -70px;
- background-repeat: no-repeat;
-}
-
-.combobox .applyunit {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -100px;
- background-repeat: no-repeat;
-}
-.combobox-select .applyunit {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -100px;
- background-repeat: no-repeat;
-}
-
-.combobox .archive {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -130px;
- background-repeat: no-repeat;
-}
-.combobox-select .archive {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -130px;
- background-repeat: no-repeat;
-}
-
-.combobox .archived_form {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -160px;
- background-repeat: no-repeat;
-}
-.combobox-select .archived_form {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -160px;
- background-repeat: no-repeat;
-}
-
-.combobox .asb_sa {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -190px;
- background-repeat: no-repeat;
-}
-.combobox-select .asb_sa {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -190px;
- background-repeat: no-repeat;
-}
-
-.combobox .attachment {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -220px;
- background-repeat: no-repeat;
-}
-.combobox-select .attachment {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -220px;
- background-repeat: no-repeat;
-}
-
-.combobox .bricklet {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -250px;
- background-repeat: no-repeat;
-}
-.combobox-select .bricklet {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -250px;
- background-repeat: no-repeat;
-}
-
-.combobox .bricklet_association {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -280px;
- background-repeat: no-repeat;
-}
-.combobox-select .bricklet_association {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -280px;
- background-repeat: no-repeat;
-}
-
-.combobox .calendar {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -310px;
- background-repeat: no-repeat;
-}
-.combobox-select .calendar {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -310px;
- background-repeat: no-repeat;
-}
-
-.combobox .childonly {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -340px;
- background-repeat: no-repeat;
-}
-.combobox-select .childonly {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -340px;
- background-repeat: no-repeat;
-}
-
-.combobox .comment {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -370px;
- background-repeat: no-repeat;
-}
-.combobox-select .comment {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -370px;
- background-repeat: no-repeat;
-}
-
-.combobox .component_mwin {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -400px;
- background-repeat: no-repeat;
-}
-.combobox-select .component_mwin {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -400px;
- background-repeat: no-repeat;
-}
-
-.combobox .currentdoc {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -430px;
- background-repeat: no-repeat;
-}
-.combobox-select .currentdoc {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -430px;
- background-repeat: no-repeat;
-}
-
-.combobox .currentsheet {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -460px;
- background-repeat: no-repeat;
-}
-.combobox-select .currentsheet {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -460px;
- background-repeat: no-repeat;
-}
-
-.combobox .customer {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -490px;
- background-repeat: no-repeat;
-}
-.combobox-select .customer {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -490px;
- background-repeat: no-repeat;
-}
-
-.combobox .datasource {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -520px;
- background-repeat: no-repeat;
-}
-.combobox-select .datasource {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -520px;
- background-repeat: no-repeat;
-}
-
-.combobox .delete {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -550px;
- background-repeat: no-repeat;
-}
-.combobox-select .delete {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -550px;
- background-repeat: no-repeat;
-}
-
-.combobox .doc {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -580px;
- background-repeat: no-repeat;
-}
-.combobox-select .doc {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -580px;
- background-repeat: no-repeat;
-}
-
-.combobox .esb {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -610px;
- background-repeat: no-repeat;
-}
-.combobox-select .esb {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -610px;
- background-repeat: no-repeat;
-}
-
-.combobox .esb_serverconf {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -640px;
- background-repeat: no-repeat;
-}
-.combobox-select .esb_serverconf {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -640px;
- background-repeat: no-repeat;
-}
-
-.combobox .extlib {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -670px;
- background-repeat: no-repeat;
-}
-.combobox-select .extlib {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -670px;
- background-repeat: no-repeat;
-}
-
-.combobox .folder {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -700px;
- background-repeat: no-repeat;
-}
-.combobox-select .folder {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -700px;
- background-repeat: no-repeat;
-}
-
-.combobox .folder_close {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -730px;
- background-repeat: no-repeat;
-}
-.combobox-select .folder_close {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -730px;
- background-repeat: no-repeat;
-}
-
-.combobox .folder_current {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -760px;
- background-repeat: no-repeat;
-}
-.combobox-select .folder_current {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -760px;
- background-repeat: no-repeat;
-}
-
-.combobox .folder_open {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -790px;
- background-repeat: no-repeat;
-}
-.combobox-select .folder_open {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -790px;
- background-repeat: no-repeat;
-}
-
-.combobox .form {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -820px;
- background-repeat: no-repeat;
-}
-.combobox-select .form {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -820px;
- background-repeat: no-repeat;
-}
-
-.combobox .gadget {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -850px;
- background-repeat: no-repeat;
-}
-.combobox-select .gadget {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -850px;
- background-repeat: no-repeat;
-}
-
-.combobox .general {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -880px;
- background-repeat: no-repeat;
-}
-.combobox-select .general {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -880px;
- background-repeat: no-repeat;
-}
-
-.combobox .go-sign {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -910px;
- background-repeat: no-repeat;
-}
-.combobox-select .go-sign {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -910px;
- background-repeat: no-repeat;
-}
-
-.combobox .help {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -940px;
- background-repeat: no-repeat;
-}
-.combobox-select .help {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -940px;
- background-repeat: no-repeat;
-}
-
-.combobox .information {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -970px;
- background-repeat: no-repeat;
-}
-.combobox-select .information {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -970px;
- background-repeat: no-repeat;
-}
-
-.combobox .jar {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1000px;
- background-repeat: no-repeat;
-}
-.combobox-select .jar {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1000px;
- background-repeat: no-repeat;
-}
-
-.combobox .job {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1030px;
- background-repeat: no-repeat;
-}
-.combobox-select .job {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1030px;
- background-repeat: no-repeat;
-}
-
-.combobox .jobconf {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1060px;
- background-repeat: no-repeat;
-}
-.combobox-select .jobconf {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1060px;
- background-repeat: no-repeat;
-}
-
-.combobox .master_doc {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1090px;
- background-repeat: no-repeat;
-}
-.combobox-select .master_doc {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1090px;
- background-repeat: no-repeat;
-}
-
-.combobox .master_table {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1120px;
- background-repeat: no-repeat;
-}
-.combobox-select .master_table {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1120px;
- background-repeat: no-repeat;
-}
-
-.combobox .master_view {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1150px;
- background-repeat: no-repeat;
-}
-.combobox-select .master_view {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1150px;
- background-repeat: no-repeat;
-}
-
-.combobox .moveleft {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1180px;
- background-repeat: no-repeat;
-}
-.combobox-select .moveleft {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1180px;
- background-repeat: no-repeat;
-}
-
-.combobox .moveright {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1210px;
- background-repeat: no-repeat;
-}
-.combobox-select .moveright {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1210px;
- background-repeat: no-repeat;
-}
-
-.combobox .mwin {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1240px;
- background-repeat: no-repeat;
-}
-.combobox-select .mwin {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1240px;
- background-repeat: no-repeat;
-}
-
-.combobox .noticebox {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1270px;
- background-repeat: no-repeat;
-}
-.combobox-select .noticebox {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1270px;
- background-repeat: no-repeat;
-}
-
-.combobox .notice_comment {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1300px;
- background-repeat: no-repeat;
-}
-.combobox-select .notice_comment {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1300px;
- background-repeat: no-repeat;
-}
-
-.combobox .notice_message {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1330px;
- background-repeat: no-repeat;
-}
-.combobox-select .notice_message {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1330px;
- background-repeat: no-repeat;
-}
-
-.combobox .notice_proxy {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1360px;
- background-repeat: no-repeat;
-}
-.combobox-select .notice_proxy {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1360px;
- background-repeat: no-repeat;
-}
-
-.combobox .notice_todo {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1390px;
- background-repeat: no-repeat;
-}
-.combobox-select .notice_todo {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1390px;
- background-repeat: no-repeat;
-}
-
-.combobox .notifyfilter {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1420px;
- background-repeat: no-repeat;
-}
-.combobox-select .notifyfilter {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1420px;
- background-repeat: no-repeat;
-}
-
-.combobox .numbering {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1450px;
- background-repeat: no-repeat;
-}
-.combobox-select .numbering {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1450px;
- background-repeat: no-repeat;
-}
-
-.combobox .parentchild {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1480px;
- background-repeat: no-repeat;
-}
-.combobox-select .parentchild {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1480px;
- background-repeat: no-repeat;
-}
-
-.combobox .parentonly {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1510px;
- background-repeat: no-repeat;
-}
-.combobox-select .parentonly {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1510px;
- background-repeat: no-repeat;
-}
-
-.combobox .private_group {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1540px;
- background-repeat: no-repeat;
-}
-.combobox-select .private_group {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1540px;
- background-repeat: no-repeat;
-}
-
-.combobox .private_group_current {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1570px;
- background-repeat: no-repeat;
-}
-.combobox-select .private_group_current {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1570px;
- background-repeat: no-repeat;
-}
-
-.combobox .private_role {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1600px;
- background-repeat: no-repeat;
-}
-.combobox-select .private_role {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1600px;
- background-repeat: no-repeat;
-}
-
-.combobox .private_root {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1630px;
- background-repeat: no-repeat;
-}
-.combobox-select .private_root {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1630px;
- background-repeat: no-repeat;
-}
-
-.combobox .project {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1660px;
- background-repeat: no-repeat;
-}
-.combobox-select .project {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1660px;
- background-repeat: no-repeat;
-}
-
-.combobox .project_close {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1690px;
- background-repeat: no-repeat;
-}
-.combobox-select .project_close {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1690px;
- background-repeat: no-repeat;
-}
-
-.combobox .project_current {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1720px;
- background-repeat: no-repeat;
-}
-.combobox-select .project_current {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1720px;
- background-repeat: no-repeat;
-}
-
-.combobox .project_open {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1750px;
- background-repeat: no-repeat;
-}
-.combobox-select .project_open {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1750px;
- background-repeat: no-repeat;
-}
-
-.combobox .pubfolder {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1780px;
- background-repeat: no-repeat;
-}
-.combobox-select .pubfolder {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1780px;
- background-repeat: no-repeat;
-}
-
-.combobox .pubfolder_accessible {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1810px;
- background-repeat: no-repeat;
-}
-.combobox-select .pubfolder_accessible {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1810px;
- background-repeat: no-repeat;
-}
-
-.combobox .pubfolder_accessible_close {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1840px;
- background-repeat: no-repeat;
-}
-.combobox-select .pubfolder_accessible_close {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1840px;
- background-repeat: no-repeat;
-}
-
-.combobox .pubfolder_accessible_current {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1870px;
- background-repeat: no-repeat;
-}
-.combobox-select .pubfolder_accessible_current {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1870px;
- background-repeat: no-repeat;
-}
-
-.combobox .pubfolder_accessible_open {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1900px;
- background-repeat: no-repeat;
-}
-.combobox-select .pubfolder_accessible_open {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1900px;
- background-repeat: no-repeat;
-}
-
-.combobox .pubfolder_apply_node {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1930px;
- background-repeat: no-repeat;
-}
-.combobox-select .pubfolder_apply_node {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1930px;
- background-repeat: no-repeat;
-}
-
-.combobox .pubfolder_apply_node_current {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1960px;
- background-repeat: no-repeat;
-}
-.combobox-select .pubfolder_apply_node_current {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1960px;
- background-repeat: no-repeat;
-}
-
-.combobox .pubfolder_apply_root {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1990px;
- background-repeat: no-repeat;
-}
-.combobox-select .pubfolder_apply_root {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1990px;
- background-repeat: no-repeat;
-}
-
-.combobox .pubfolder_apply_root_current {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2020px;
- background-repeat: no-repeat;
-}
-.combobox-select .pubfolder_apply_root_current {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2020px;
- background-repeat: no-repeat;
-}
-
-.combobox .pubfolder_close {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2050px;
- background-repeat: no-repeat;
-}
-.combobox-select .pubfolder_close {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2050px;
- background-repeat: no-repeat;
-}
-
-.combobox .pubfolder_current {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2080px;
- background-repeat: no-repeat;
-}
-.combobox-select .pubfolder_current {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2080px;
- background-repeat: no-repeat;
-}
-
-.combobox .pubfolder_formreference_node {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2110px;
- background-repeat: no-repeat;
-}
-.combobox-select .pubfolder_formreference_node {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2110px;
- background-repeat: no-repeat;
-}
-
-.combobox .pubfolder_formreference_node_current {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2140px;
- background-repeat: no-repeat;
-}
-.combobox-select .pubfolder_formreference_node_current {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2140px;
- background-repeat: no-repeat;
-}
-
-.combobox .pubfolder_formreference_root {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2170px;
- background-repeat: no-repeat;
-}
-.combobox-select .pubfolder_formreference_root {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2170px;
- background-repeat: no-repeat;
-}
-
-.combobox .pubfolder_formreference_root_current {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2200px;
- background-repeat: no-repeat;
-}
-.combobox-select .pubfolder_formreference_root_current {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2200px;
- background-repeat: no-repeat;
-}
-
-.combobox .pubfolder_open {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2230px;
- background-repeat: no-repeat;
-}
-.combobox-select .pubfolder_open {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2230px;
- background-repeat: no-repeat;
-}
-
-.combobox .pubfolder_subsheet_node {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2260px;
- background-repeat: no-repeat;
-}
-.combobox-select .pubfolder_subsheet_node {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2260px;
- background-repeat: no-repeat;
-}
-
-.combobox .pubfolder_subsheet_node_current {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2290px;
- background-repeat: no-repeat;
-}
-.combobox-select .pubfolder_subsheet_node_current {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2290px;
- background-repeat: no-repeat;
-}
-
-.combobox .pubfolder_subsheet_root {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2320px;
- background-repeat: no-repeat;
-}
-.combobox-select .pubfolder_subsheet_root {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2320px;
- background-repeat: no-repeat;
-}
-
-.combobox .pubfolder_subsheet_root_current {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2350px;
- background-repeat: no-repeat;
-}
-.combobox-select .pubfolder_subsheet_root_current {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2350px;
- background-repeat: no-repeat;
-}
-
-.combobox .reference {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2380px;
- background-repeat: no-repeat;
-}
-.combobox-select .reference {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2380px;
- background-repeat: no-repeat;
-}
-
-.combobox .registry {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2410px;
- background-repeat: no-repeat;
-}
-.combobox-select .registry {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2410px;
- background-repeat: no-repeat;
-}
-
-.combobox .relation_form {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2440px;
- background-repeat: no-repeat;
-}
-.combobox-select .relation_form {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2440px;
- background-repeat: no-repeat;
-}
-
-.combobox .rule {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2470px;
- background-repeat: no-repeat;
-}
-.combobox-select .rule {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2470px;
- background-repeat: no-repeat;
-}
-
-.combobox .running {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2500px;
- background-repeat: no-repeat;
-}
-.combobox-select .running {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2500px;
- background-repeat: no-repeat;
-}
-
-.combobox .section_class {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2530px;
- background-repeat: no-repeat;
-}
-.combobox-select .section_class {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2530px;
- background-repeat: no-repeat;
-}
-
-.combobox .section_class_current {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2560px;
- background-repeat: no-repeat;
-}
-.combobox-select .section_class_current {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2560px;
- background-repeat: no-repeat;
-}
-
-.combobox .section_class_root {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2590px;
- background-repeat: no-repeat;
-}
-.combobox-select .section_class_root {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2590px;
- background-repeat: no-repeat;
-}
-
-.combobox .section_class_root_current {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2620px;
- background-repeat: no-repeat;
-}
-.combobox-select .section_class_root_current {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2620px;
- background-repeat: no-repeat;
-}
-
-.combobox .section_group {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2650px;
- background-repeat: no-repeat;
-}
-.combobox-select .section_group {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2650px;
- background-repeat: no-repeat;
-}
-
-.combobox .section_group_current {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2680px;
- background-repeat: no-repeat;
-}
-.combobox-select .section_group_current {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2680px;
- background-repeat: no-repeat;
-}
-
-.combobox .section_role {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2710px;
- background-repeat: no-repeat;
-}
-.combobox-select .section_role {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2710px;
- background-repeat: no-repeat;
-}
-
-.combobox .section_root {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2740px;
- background-repeat: no-repeat;
-}
-.combobox-select .section_root {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2740px;
- background-repeat: no-repeat;
-}
-
-.combobox .security_group {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2770px;
- background-repeat: no-repeat;
-}
-.combobox-select .security_group {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2770px;
- background-repeat: no-repeat;
-}
-
-.combobox .security_group_current {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2800px;
- background-repeat: no-repeat;
-}
-.combobox-select .security_group_current {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2800px;
- background-repeat: no-repeat;
-}
-
-.combobox .security_role {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2830px;
- background-repeat: no-repeat;
-}
-.combobox-select .security_role {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2830px;
- background-repeat: no-repeat;
-}
-
-.combobox .security_root {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2860px;
- background-repeat: no-repeat;
-}
-.combobox-select .security_root {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2860px;
- background-repeat: no-repeat;
-}
-
-.combobox .sheet {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2890px;
- background-repeat: no-repeat;
-}
-.combobox-select .sheet {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2890px;
- background-repeat: no-repeat;
-}
-
-.combobox .site {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2920px;
- background-repeat: no-repeat;
-}
-.combobox-select .site {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2920px;
- background-repeat: no-repeat;
-}
-
-.combobox .spoofing_user {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2950px;
- background-repeat: no-repeat;
-}
-.combobox-select .spoofing_user {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2950px;
- background-repeat: no-repeat;
-}
-
-.combobox .stop-sign {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2980px;
- background-repeat: no-repeat;
-}
-.combobox-select .stop-sign {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2980px;
- background-repeat: no-repeat;
-}
-
-.combobox .stopping {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3010px;
- background-repeat: no-repeat;
-}
-.combobox-select .stopping {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3010px;
- background-repeat: no-repeat;
-}
-
-.combobox .subsheet {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3040px;
- background-repeat: no-repeat;
-}
-.combobox-select .subsheet {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3040px;
- background-repeat: no-repeat;
-}
-
-.combobox .tenant {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3070px;
- background-repeat: no-repeat;
-}
-.combobox-select .tenant {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3070px;
- background-repeat: no-repeat;
-}
-
-.combobox .tenement {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3100px;
- background-repeat: no-repeat;
-}
-.combobox-select .tenement {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3100px;
- background-repeat: no-repeat;
-}
-
-.combobox .unit {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3130px;
- background-repeat: no-repeat;
-}
-.combobox-select .unit {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3130px;
- background-repeat: no-repeat;
-}
-
-.combobox .universal_group {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3160px;
- background-repeat: no-repeat;
-}
-.combobox-select .universal_group {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3160px;
- background-repeat: no-repeat;
-}
-
-.combobox .universal_group_current {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3190px;
- background-repeat: no-repeat;
-}
-.combobox-select .universal_group_current {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3190px;
- background-repeat: no-repeat;
-}
-
-.combobox .universal_role {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3220px;
- background-repeat: no-repeat;
-}
-.combobox-select .universal_role {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3220px;
- background-repeat: no-repeat;
-}
-
-.combobox .universal_root {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3250px;
- background-repeat: no-repeat;
-}
-.combobox-select .universal_root {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3250px;
- background-repeat: no-repeat;
-}
-
-.combobox .url {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3280px;
- background-repeat: no-repeat;
-}
-.combobox-select .url {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3280px;
- background-repeat: no-repeat;
-}
-
-.combobox .user {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3310px;
- background-repeat: no-repeat;
-}
-.combobox-select .user {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3310px;
- background-repeat: no-repeat;
-}
-
-.combobox .warning {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3340px;
- background-repeat: no-repeat;
-}
-.combobox-select .warning {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3340px;
- background-repeat: no-repeat;
-}
-
-.combobox .window {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3370px;
- background-repeat: no-repeat;
-}
-.combobox-select .window {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3370px;
- background-repeat: no-repeat;
-}
-
-/* object sprite end */
-
-/* action sprite start */
-
-.combobox .abort {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -10px;
- background-repeat: no-repeat;
-}
-.combobox-select .abort {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -10px;
- background-repeat: no-repeat;
-}
-
-.combobox .add_down {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -40px;
- background-repeat: no-repeat;
-}
-.combobox-select .add_down {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -40px;
- background-repeat: no-repeat;
-}
-
-.combobox .add_effect {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -70px;
- background-repeat: no-repeat;
-}
-.combobox-select .add_effect {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -70px;
- background-repeat: no-repeat;
-}
-
-.combobox .allsheetandtrailprint {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -100px;
- background-repeat: no-repeat;
-}
-.combobox-select .allsheetandtrailprint {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -100px;
- background-repeat: no-repeat;
-}
-
-.combobox .allsheetprint {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -130px;
- background-repeat: no-repeat;
-}
-.combobox-select .allsheetprint {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -130px;
- background-repeat: no-repeat;
-}
-
-.combobox .apply {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -160px;
- background-repeat: no-repeat;
-}
-.combobox-select .apply {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -160px;
- background-repeat: no-repeat;
-}
-
-.combobox .approve {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -190px;
- background-repeat: no-repeat;
-}
-.combobox-select .approve {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -190px;
- background-repeat: no-repeat;
-}
-
-.combobox .approve_withcomment {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -220px;
- background-repeat: no-repeat;
-}
-.combobox-select .approve_withcomment {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -220px;
- background-repeat: no-repeat;
-}
-
-.combobox .batchdelete {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -250px;
- background-repeat: no-repeat;
-}
-.combobox-select .batchdelete {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -250px;
- background-repeat: no-repeat;
-}
-
-.combobox .cancel {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -280px;
- background-repeat: no-repeat;
-}
-.combobox-select .cancel {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -280px;
- background-repeat: no-repeat;
-}
-
-.combobox .changedate {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -310px;
- background-repeat: no-repeat;
-}
-.combobox-select .changedate {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -310px;
- background-repeat: no-repeat;
-}
-
-.combobox .check {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -340px;
- background-repeat: no-repeat;
-}
-.combobox-select .check {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -340px;
- background-repeat: no-repeat;
-}
-
-.combobox .checked_action {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -370px;
- background-repeat: no-repeat;
-}
-.combobox-select .checked_action {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -370px;
- background-repeat: no-repeat;
-}
-
-.combobox .check_disabled {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -400px;
- background-repeat: no-repeat;
-}
-.combobox-select .check_disabled {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -400px;
- background-repeat: no-repeat;
-}
-
-.combobox .check_required {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -430px;
- background-repeat: no-repeat;
-}
-.combobox-select .check_required {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -430px;
- background-repeat: no-repeat;
-}
-
-.combobox .close {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -460px;
- background-repeat: no-repeat;
-}
-.combobox-select .close {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -460px;
- background-repeat: no-repeat;
-}
-
-.combobox .config {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -490px;
- background-repeat: no-repeat;
-}
-.combobox-select .config {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -490px;
- background-repeat: no-repeat;
-}
-
-.combobox .confirm {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -520px;
- background-repeat: no-repeat;
-}
-.combobox-select .confirm {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -520px;
- background-repeat: no-repeat;
-}
-
-.combobox .copy {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -550px;
- background-repeat: no-repeat;
-}
-.combobox-select .copy {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -550px;
- background-repeat: no-repeat;
-}
-
-.combobox .copynew {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -580px;
- background-repeat: no-repeat;
-}
-.combobox-select .copynew {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -580px;
- background-repeat: no-repeat;
-}
-
-.combobox .custom {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -610px;
- background-repeat: no-repeat;
-}
-.combobox-select .custom {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -610px;
- background-repeat: no-repeat;
-}
-
-.combobox .cut {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -640px;
- background-repeat: no-repeat;
-}
-.combobox-select .cut {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -640px;
- background-repeat: no-repeat;
-}
-
-.combobox .decline {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -670px;
- background-repeat: no-repeat;
-}
-.combobox-select .decline {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -670px;
- background-repeat: no-repeat;
-}
-
-.combobox .delete {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -700px;
- background-repeat: no-repeat;
-}
-.combobox-select .delete {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -700px;
- background-repeat: no-repeat;
-}
-
-.combobox .deleterecord {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -730px;
- background-repeat: no-repeat;
-}
-.combobox-select .deleterecord {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -730px;
- background-repeat: no-repeat;
-}
-
-.combobox .delete_effect {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -760px;
- background-repeat: no-repeat;
-}
-.combobox-select .delete_effect {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -760px;
- background-repeat: no-repeat;
-}
-
-.combobox .disable {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -790px;
- background-repeat: no-repeat;
-}
-.combobox-select .disable {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -790px;
- background-repeat: no-repeat;
-}
-
-.combobox .draft {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -820px;
- background-repeat: no-repeat;
-}
-.combobox-select .draft {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -820px;
- background-repeat: no-repeat;
-}
-
-.combobox .edit {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -850px;
- background-repeat: no-repeat;
-}
-.combobox-select .edit {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -850px;
- background-repeat: no-repeat;
-}
-
-.combobox .enable {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -880px;
- background-repeat: no-repeat;
-}
-.combobox-select .enable {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -880px;
- background-repeat: no-repeat;
-}
-
-.combobox .exec {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -910px;
- background-repeat: no-repeat;
-}
-.combobox-select .exec {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -910px;
- background-repeat: no-repeat;
-}
-
-.combobox .export {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -940px;
- background-repeat: no-repeat;
-}
-.combobox-select .export {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -940px;
- background-repeat: no-repeat;
-}
-
-.combobox .folder_up {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -970px;
- background-repeat: no-repeat;
-}
-.combobox-select .folder_up {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -970px;
- background-repeat: no-repeat;
-}
-
-.combobox .formpreview {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1000px;
- background-repeat: no-repeat;
-}
-.combobox-select .formpreview {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1000px;
- background-repeat: no-repeat;
-}
-
-.combobox .formupload {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1030px;
- background-repeat: no-repeat;
-}
-.combobox-select .formupload {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1030px;
- background-repeat: no-repeat;
-}
-
-.combobox .import {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1060px;
- background-repeat: no-repeat;
-}
-.combobox-select .import {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1060px;
- background-repeat: no-repeat;
-}
-
-.combobox .insertrecord {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1090px;
- background-repeat: no-repeat;
-}
-.combobox-select .insertrecord {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1090px;
- background-repeat: no-repeat;
-}
-
-.combobox .list {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1120px;
- background-repeat: no-repeat;
-}
-.combobox-select .list {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1120px;
- background-repeat: no-repeat;
-}
-
-.combobox .login {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1150px;
- background-repeat: no-repeat;
-}
-.combobox-select .login {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1150px;
- background-repeat: no-repeat;
-}
-
-.combobox .maximize {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1180px;
- background-repeat: no-repeat;
-}
-.combobox-select .maximize {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1180px;
- background-repeat: no-repeat;
-}
-
-.combobox .minimize {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1210px;
- background-repeat: no-repeat;
-}
-.combobox-select .minimize {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1210px;
- background-repeat: no-repeat;
-}
-
-.combobox .minus {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1240px;
- background-repeat: no-repeat;
-}
-.combobox-select .minus {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1240px;
- background-repeat: no-repeat;
-}
-
-.combobox .moveleft {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1270px;
- background-repeat: no-repeat;
-}
-.combobox-select .moveleft {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1270px;
- background-repeat: no-repeat;
-}
-
-.combobox .moveleft2 {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1300px;
- background-repeat: no-repeat;
-}
-.combobox-select .moveleft2 {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1300px;
- background-repeat: no-repeat;
-}
-
-.combobox .moveleft2_disabled {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1330px;
- background-repeat: no-repeat;
-}
-.combobox-select .moveleft2_disabled {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1330px;
- background-repeat: no-repeat;
-}
-
-.combobox .moveleft_disabled {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1360px;
- background-repeat: no-repeat;
-}
-.combobox-select .moveleft_disabled {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1360px;
- background-repeat: no-repeat;
-}
-
-.combobox .moveright {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1390px;
- background-repeat: no-repeat;
-}
-.combobox-select .moveright {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1390px;
- background-repeat: no-repeat;
-}
-
-.combobox .moveright2 {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1420px;
- background-repeat: no-repeat;
-}
-.combobox-select .moveright2 {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1420px;
- background-repeat: no-repeat;
-}
-
-.combobox .moveright2_disabled {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1450px;
- background-repeat: no-repeat;
-}
-.combobox-select .moveright2_disabled {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1450px;
- background-repeat: no-repeat;
-}
-
-.combobox .moveright_disabled {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1480px;
- background-repeat: no-repeat;
-}
-.combobox-select .moveright_disabled {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1480px;
- background-repeat: no-repeat;
-}
-
-.combobox .moveup {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1510px;
- background-repeat: no-repeat;
-}
-.combobox-select .moveup {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1510px;
- background-repeat: no-repeat;
-}
-
-.combobox .multiprint {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1540px;
- background-repeat: no-repeat;
-}
-.combobox-select .multiprint {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1540px;
- background-repeat: no-repeat;
-}
-
-.combobox .new {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1570px;
- background-repeat: no-repeat;
-}
-.combobox-select .new {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1570px;
- background-repeat: no-repeat;
-}
-
-.combobox .newwindow {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1600px;
- background-repeat: no-repeat;
-}
-.combobox-select .newwindow {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1600px;
- background-repeat: no-repeat;
-}
-
-.combobox .opendoc {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1630px;
- background-repeat: no-repeat;
-}
-.combobox-select .opendoc {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1630px;
- background-repeat: no-repeat;
-}
-
-.combobox .opendoc2 {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1660px;
- background-repeat: no-repeat;
-}
-.combobox-select .opendoc2 {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1660px;
- background-repeat: no-repeat;
-}
-
-.combobox .opendoc3 {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1690px;
- background-repeat: no-repeat;
-}
-.combobox-select .opendoc3 {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1690px;
- background-repeat: no-repeat;
-}
-
-.combobox .openlayer {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1720px;
- background-repeat: no-repeat;
-}
-.combobox-select .openlayer {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1720px;
- background-repeat: no-repeat;
-}
-
-.combobox .openproperty {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1750px;
- background-repeat: no-repeat;
-}
-.combobox-select .openproperty {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1750px;
- background-repeat: no-repeat;
-}
-
-.combobox .order_bottom {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1780px;
- background-repeat: no-repeat;
-}
-.combobox-select .order_bottom {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1780px;
- background-repeat: no-repeat;
-}
-
-.combobox .order_down {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1810px;
- background-repeat: no-repeat;
-}
-.combobox-select .order_down {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1810px;
- background-repeat: no-repeat;
-}
-
-.combobox .order_down_disabled {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1840px;
- background-repeat: no-repeat;
-}
-.combobox-select .order_down_disabled {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1840px;
- background-repeat: no-repeat;
-}
-
-.combobox .order_top {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1870px;
- background-repeat: no-repeat;
-}
-.combobox-select .order_top {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1870px;
- background-repeat: no-repeat;
-}
-
-.combobox .order_up {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1900px;
- background-repeat: no-repeat;
-}
-.combobox-select .order_up {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1900px;
- background-repeat: no-repeat;
-}
-
-.combobox .order_up_disabled {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1930px;
- background-repeat: no-repeat;
-}
-.combobox-select .order_up_disabled {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1930px;
- background-repeat: no-repeat;
-}
-
-.combobox .passback {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1960px;
- background-repeat: no-repeat;
-}
-.combobox-select .passback {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1960px;
- background-repeat: no-repeat;
-}
-
-.combobox .paste {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1990px;
- background-repeat: no-repeat;
-}
-.combobox-select .paste {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1990px;
- background-repeat: no-repeat;
-}
-
-.combobox .pause {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2020px;
- background-repeat: no-repeat;
-}
-.combobox-select .pause {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2020px;
- background-repeat: no-repeat;
-}
-
-.combobox .pdf {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2050px;
- background-repeat: no-repeat;
-}
-.combobox-select .pdf {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2050px;
- background-repeat: no-repeat;
-}
-
-.combobox .plus {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2080px;
- background-repeat: no-repeat;
-}
-.combobox-select .plus {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2080px;
- background-repeat: no-repeat;
-}
-
-.combobox .preparation {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2110px;
- background-repeat: no-repeat;
-}
-.combobox-select .preparation {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2110px;
- background-repeat: no-repeat;
-}
-
-.combobox .preview {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2140px;
- background-repeat: no-repeat;
-}
-.combobox-select .preview {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2140px;
- background-repeat: no-repeat;
-}
-
-.combobox .print {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2170px;
- background-repeat: no-repeat;
-}
-.combobox-select .print {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2170px;
- background-repeat: no-repeat;
-}
-
-.combobox .read {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2200px;
- background-repeat: no-repeat;
-}
-.combobox-select .read {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2200px;
- background-repeat: no-repeat;
-}
-
-.combobox .reload {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2230px;
- background-repeat: no-repeat;
-}
-.combobox-select .reload {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2230px;
- background-repeat: no-repeat;
-}
-
-.combobox .reload_disabled {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2260px;
- background-repeat: no-repeat;
-}
-.combobox-select .reload_disabled {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2260px;
- background-repeat: no-repeat;
-}
-
-.combobox .remove_up {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2290px;
- background-repeat: no-repeat;
-}
-.combobox-select .remove_up {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2290px;
- background-repeat: no-repeat;
-}
-
-.combobox .restore {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2320px;
- background-repeat: no-repeat;
-}
-.combobox-select .restore {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2320px;
- background-repeat: no-repeat;
-}
-
-.combobox .save {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2350px;
- background-repeat: no-repeat;
-}
-.combobox-select .save {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2350px;
- background-repeat: no-repeat;
-}
-
-.combobox .saveconf {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2380px;
- background-repeat: no-repeat;
-}
-.combobox-select .saveconf {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2380px;
- background-repeat: no-repeat;
-}
-
-.combobox .search {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2410px;
- background-repeat: no-repeat;
-}
-.combobox-select .search {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2410px;
- background-repeat: no-repeat;
-}
-
-.combobox .showunittranslayer {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2440px;
- background-repeat: no-repeat;
-}
-.combobox-select .showunittranslayer {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2440px;
- background-repeat: no-repeat;
-}
-
-.combobox .sortconfig {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2470px;
- background-repeat: no-repeat;
-}
-.combobox-select .sortconfig {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2470px;
- background-repeat: no-repeat;
-}
-
-.combobox .startup {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2500px;
- background-repeat: no-repeat;
-}
-.combobox-select .startup {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2500px;
- background-repeat: no-repeat;
-}
-
-.combobox .takeback {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2530px;
- background-repeat: no-repeat;
-}
-.combobox-select .takeback {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2530px;
- background-repeat: no-repeat;
-}
-
-.combobox .trailprint {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2560px;
- background-repeat: no-repeat;
-}
-.combobox-select .trailprint {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2560px;
- background-repeat: no-repeat;
-}
-
-.combobox .unchecked_action {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2590px;
- background-repeat: no-repeat;
-}
-.combobox-select .unchecked_action {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2590px;
- background-repeat: no-repeat;
-}
-
-.combobox .unit_up {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2620px;
- background-repeat: no-repeat;
-}
-.combobox-select .unit_up {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2620px;
- background-repeat: no-repeat;
-}
-
-.combobox .unread {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2650px;
- background-repeat: no-repeat;
-}
-.combobox-select .unread {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2650px;
- background-repeat: no-repeat;
-}
-
-.combobox .update_effect {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2680px;
- background-repeat: no-repeat;
-}
-.combobox-select .update_effect {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2680px;
- background-repeat: no-repeat;
-}
-
-.combobox .withdraw {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2710px;
- background-repeat: no-repeat;
-}
-.combobox-select .withdraw {
- padding-left: 24px !important;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2710px;
- background-repeat: no-repeat;
-}
-
-/* action sprite end */
diff --git a/AgileWorks/WebContent/css/livehtml/combobox.css b/AgileWorks/WebContent/css/livehtml/combobox.css
deleted file mode 100644
index f90ade5c57bc78cf0803d2e0029676f962a2de10..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/livehtml/combobox.css
+++ /dev/null
@@ -1,91 +0,0 @@
-/*
- * combobox.css?build31910
- *
- * ComboBoxで使用されるCSSセレクタを定義します
- */
-
-.combobox {
- background-color:#ffffff;
- border-style:solid;
- border-width:1px;
- border-color:#aaaaaa;
- height:20px;
- padding-left:1px;
-}
-
-.combobox input {
- border-width:0px;
- height:18px;
- line-height:18px;
-}
-
-.combobox-select {
- cursor:default;
- position:absolute;
- background-color:#ffffff;
- border-style:solid;
- border-color:#000000;
- border-width:1px;
- overflow-x:hidden;
- overflow-y:auto;
- font-size:12px;
-}
-
-.combobox-select div {
- white-space:pre;
- word-break:keep-all;
- overflow:hidden;
- text-align:left !important;
-}
-
-.combobox-select div.option {
- height: 18px;
- line-height: 18px;
- padding:1px 2px 1px 2px;
-}
-
-.combobox-select div.option.current {
- background-color: #5e81bc;
- color:#ffffff;
-}
-
-.combobox-select div.option.over {
- background-color: #5e81bc;
- color:#ffffff;
-}
-
-.listbox-select {
- cursor:default;
- background-color:#ffffff;
- border-style:solid;
- border-color:#aaaaaa;
- border-width:1px;
- overflow-x:hidden;
- overflow-y:auto;
- font-size:12px;
-}
-
-.listbox-select div {
- white-space:pre;
- word-break:keep-all;
- overflow:hidden;
- text-align:left !important;
-}
-
-.listbox-select div.option {
- height: 18px;
- line-height: 18px;
- padding:1px 2px 1px 2px;
- color:#000000;
- -moz-user-select: none;
-}
-
-.listbox-select div.option.current {
- background-color: #5e81bc;
- color:#ffffff;
-}
-
-.listbox-select div.option.over {
- background-color: #5e81bc;
- color:#ffffff;
-}
diff --git a/AgileWorks/WebContent/css/livehtml/common.css b/AgileWorks/WebContent/css/livehtml/common.css
deleted file mode 100644
index 8491ae8020e21a68e46e21d1dcdadd7d6a301b0b..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/livehtml/common.css
+++ /dev/null
@@ -1,62 +0,0 @@
-
-/*
- * LiveHTMLの Invisual Tag に指定するクラスセレクタ
- */
-.invisual {
- display: none;
-}
-
-.inline {
- display: inline;
-}
-
-/*
- * Hacking Yahoo! UI
- */
-#_yuiResizeMonitor {
- display:none;
-}
-
-.width50 { width:50px; }
-.width60 { width:60px; }
-.width70 { width:70px; }
-.width80 { width:80px; }
-.width90 { width:90px; }
-.width100 { width:100px; }
-
-.text-left { text-align:left; }
-.text-center { text-align:center; }
-.text-right { text-align:right; }
-
-/*
- * 改行文字を表示する場合に指定するクラスセレクタ
- */
-.pre {
- white-space:pre;
- word-break:break-all;
- word-wrap:break-word;
- overflow:hidden;
-}
-
-/*
- * ボタン非表示
- */
-.nonebutton {
- background: none;
- border: none;
- padding:0px;
- margin:0px;
-}
-
-.tooltip {
- position:absolute;
- font-size:12px;
- padding: 5px;
- max-width: 200px;
- color: #303030;
- background-color: ivory;
- border: 1px solid #000000;
- -moz-box-shadow: 1px 1px 3px #000;
- -webkit-box-shadow: 3px 3px 3px #aaa;
- z-index:100000;
-}
diff --git a/AgileWorks/WebContent/css/livehtml/grid-type.css b/AgileWorks/WebContent/css/livehtml/grid-type.css
deleted file mode 100644
index 86130d10423f1f918e302080320d3f1a42893c59..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/livehtml/grid-type.css
+++ /dev/null
@@ -1,1507 +0,0 @@
-/*
- * grid-type.css?build31910
- *
- * Gridで使用されるType毎�?CSSセレクタを定義しま??�?
- */
-
-/* ----------------------------------------------- */
-/* 以下�?CSS-Sprite適用??�???�??�??�?*/
-/* ----------------------------------------------- */
-
-/* アカウントロ??�???�??� [accountlock] */
-.grid-table .accountlock {
- padding:0px 4px 0px 24px;
- background-image:url(../../images/common/icon/etc/accountlock.gif?build31910);
- background-position:center;
- background-repeat:no-repeat;
-}
-
-/* フォル??�?[folder] */
-.grid-table .folder {
- padding:0px 4px 0px 24px;
- background-image:url(../../images/common/icon/object/folder_close20.gif?build31910);
- background-position:left center;
- background-repeat:no-repeat;
-}
-
-/* file [file] */
-.grid-table .file {
- padding:0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/doc20.gif?build31910);
- background-position:left center;
- background-repeat:no-repeat;
-}
-
-/* コンポ�?ネン??�?マスタ検索 [msearch] */
-.grid-table .msearch {
- padding:0px 4px 0px 24px;
- background-image:url(../../images/common/icon/object/msearch20.gif?build31910);
- background-position:left center;
- background-repeat:no-repeat;
-}
-
-/* チェ??�???�??� [check] */
-.grid-table .check {
- padding:0px 4px 0px 24px;
- background-image:url(../../images/common/icon/action/checked_action.gif?build31910);
- background-position:center center;
- background-repeat:no-repeat;
-}
-
-/* チェ??�???�??�無効 [check_disabled] */
-.grid-table .check_disabled {
- padding:0px 4px 0px 24px;
- background-image:url(../../images/common/icon/action/check_disabled.gif?build31910);
- background-position:center center;
- background-repeat:no-repeat;
-}
-
-/* チェ??�???�??�??�?? [check_required] */
-.grid-table .check_required {
- padding:0px 4px 0px 24px;
- background-image:url(../../images/common/icon/action/check_required.gif?build31910);
- background-position:center center;
- background-repeat:no-repeat;
-}
-
-/* 青信号 [go-sign] */
-.grid-table .go-sign {
- border-style:solid;
- border-width:0px 1px 0px 0px;
- border-color:#aaaaaa;
- white-space:pre;
- word-break:keep-all;
- overflow:hidden;
- padding:0px 4px 0px 24px;
- background-image:url(../../images/common/icon/object/go-sign20.gif?build31910);
- background-position:left center;
- background-repeat:no-repeat;
-}
-
-/* 赤信号 [stop-sign] */
-.grid-table .stop-sign {
- padding:0px 4px 0px 24px;
- background-image:url(../../images/common/icon/object/stop-sign20.gif?build31910);
- background-position:left center;
- background-repeat:no-repeat;
-}
-
-/* 選択済み [selected] */
-.grid-table .selected {
- padding:0px 4px 0px 24px;
- background-image:url(../../images/common/icon/action/checked_action.gif?build31910);
- background-position:left center;
- background-repeat:no-repeat;
-}
-
-/* 通知未読 [message-notopen] */
-.grid-table .message-notopen {
- padding:0px 4px 0px 24px;
- background-image:url(../../images/common/icon/etc/mail_unread.gif?build31910);
- background-position:center center;
- background-repeat:no-repeat;
-}
-
-/* 検索 [search] */
-.grid-table .search {
- padding:0px 4px 0px 24px;
- background-image:url(../../images/common/icon/action/search.gif?build31910);
- background-position:left center;
- background-repeat:no-repeat;
-}
-
-/* 検索 [search] */
-.grid-table .search {
- padding:0px 4px 0px 24px;
- background-image:url(../../images/common/icon/action/search.gif?build31910);
- background-position:left center;
- background-repeat:no-repeat;
-}
-
-/* 未読 [unread] */
-.grid-table .unread {
- padding:0px 4px 0px 24px;
- background-image:url(../../images/common/icon/etc/mail_unread.gif?build31910);
- background-position:center 2px;
- background-repeat:no-repeat;
-}
-
-/* 既読 [read] */
-.grid-table .read {
- padding:0px 4px 0px 24px;
- background-image:url(../../images/common/icon/etc/mail_read.gif?build31910);
- background-position:center center;
- background-repeat:no-repeat;
-}
-
-/* 読み込み中 [loading] */
-.grid-table .loading {
- padding:0px 4px 0px 24px;
- background-image:url(../../images/common/icon/etc/loading.gif?build31910);
- background-position:left center;
- background-repeat:no-repeat;
-}
-
-/* ----------------------------------------------- */
-/* CSS-Sprite */
-/* ----------------------------------------------- */
-
-/* object sprite start */
-
-.grid-table .addon {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -7px;
- background-repeat: no-repeat;
-}
-.grid-table .addon_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -5px;
- background-repeat: no-repeat;
-}
-
-.grid-table .allunit {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -37px;
- background-repeat: no-repeat;
-}
-.grid-table .allunit_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -35px;
- background-repeat: no-repeat;
-}
-
-.grid-table .anyone {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -67px;
- background-repeat: no-repeat;
-}
-.grid-table .anyone_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -65px;
- background-repeat: no-repeat;
-}
-
-.grid-table .applyunit {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -97px;
- background-repeat: no-repeat;
-}
-.grid-table .applyunit_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -95px;
- background-repeat: no-repeat;
-}
-
-.grid-table .archive {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -127px;
- background-repeat: no-repeat;
-}
-.grid-table .archive_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -125px;
- background-repeat: no-repeat;
-}
-
-.grid-table .archived_form {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -157px;
- background-repeat: no-repeat;
-}
-.grid-table .archived_form_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -155px;
- background-repeat: no-repeat;
-}
-
-.grid-table .asb_sa {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -187px;
- background-repeat: no-repeat;
-}
-.grid-table .asb_sa_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -185px;
- background-repeat: no-repeat;
-}
-
-.grid-table .attachment {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -217px;
- background-repeat: no-repeat;
-}
-.grid-table .attachment_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -215px;
- background-repeat: no-repeat;
-}
-
-.grid-table .bricklet {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -247px;
- background-repeat: no-repeat;
-}
-.grid-table .bricklet_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -245px;
- background-repeat: no-repeat;
-}
-
-.grid-table .bricklet_association {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -277px;
- background-repeat: no-repeat;
-}
-.grid-table .bricklet_association_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -275px;
- background-repeat: no-repeat;
-}
-
-.grid-table .calendar {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -307px;
- background-repeat: no-repeat;
-}
-.grid-table .calendar_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -305px;
- background-repeat: no-repeat;
-}
-
-.grid-table .childonly {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -337px;
- background-repeat: no-repeat;
-}
-.grid-table .childonly_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -335px;
- background-repeat: no-repeat;
-}
-
-.grid-table .comment {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -367px;
- background-repeat: no-repeat;
-}
-.grid-table .comment_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -365px;
- background-repeat: no-repeat;
-}
-
-.grid-table .component_mwin {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -397px;
- background-repeat: no-repeat;
-}
-.grid-table .component_mwin_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -395px;
- background-repeat: no-repeat;
-}
-
-.grid-table .currentdoc {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -427px;
- background-repeat: no-repeat;
-}
-.grid-table .currentdoc_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -425px;
- background-repeat: no-repeat;
-}
-
-.grid-table .currentsheet {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -457px;
- background-repeat: no-repeat;
-}
-.grid-table .currentsheet_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -455px;
- background-repeat: no-repeat;
-}
-
-.grid-table .customer {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -487px;
- background-repeat: no-repeat;
-}
-.grid-table .customer_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -485px;
- background-repeat: no-repeat;
-}
-
-.grid-table .datasource {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -517px;
- background-repeat: no-repeat;
-}
-.grid-table .datasource_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -515px;
- background-repeat: no-repeat;
-}
-
-.grid-table .delete {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -547px;
- background-repeat: no-repeat;
-}
-.grid-table .delete_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -545px;
- background-repeat: no-repeat;
-}
-
-.grid-table .doc {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -577px;
- background-repeat: no-repeat;
-}
-.grid-table .doc_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -575px;
- background-repeat: no-repeat;
-}
-
-.grid-table .esb {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -607px;
- background-repeat: no-repeat;
-}
-.grid-table .esb_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -605px;
- background-repeat: no-repeat;
-}
-
-.grid-table .esb_serverconf {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -637px;
- background-repeat: no-repeat;
-}
-.grid-table .esb_serverconf_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -635px;
- background-repeat: no-repeat;
-}
-
-.grid-table .extlib {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -667px;
- background-repeat: no-repeat;
-}
-.grid-table .extlib_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -665px;
- background-repeat: no-repeat;
-}
-
-.grid-table .folder {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -697px;
- background-repeat: no-repeat;
-}
-.grid-table .folder_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -695px;
- background-repeat: no-repeat;
-}
-
-.grid-table .folder_close {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -727px;
- background-repeat: no-repeat;
-}
-.grid-table .folder_close_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -725px;
- background-repeat: no-repeat;
-}
-
-.grid-table .folder_current {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -757px;
- background-repeat: no-repeat;
-}
-.grid-table .folder_current_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -755px;
- background-repeat: no-repeat;
-}
-
-.grid-table .folder_open {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -787px;
- background-repeat: no-repeat;
-}
-.grid-table .folder_open_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -785px;
- background-repeat: no-repeat;
-}
-
-.grid-table .form {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -817px;
- background-repeat: no-repeat;
-}
-.grid-table .form_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -815px;
- background-repeat: no-repeat;
-}
-
-.grid-table .gadget {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -847px;
- background-repeat: no-repeat;
-}
-.grid-table .gadget_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -845px;
- background-repeat: no-repeat;
-}
-
-.grid-table .general {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -877px;
- background-repeat: no-repeat;
-}
-.grid-table .general_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -875px;
- background-repeat: no-repeat;
-}
-
-.grid-table .go-sign {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -907px;
- background-repeat: no-repeat;
-}
-.grid-table .go-sign_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -905px;
- background-repeat: no-repeat;
-}
-
-.grid-table .help {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -937px;
- background-repeat: no-repeat;
-}
-.grid-table .help_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -935px;
- background-repeat: no-repeat;
-}
-
-.grid-table .information {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -967px;
- background-repeat: no-repeat;
-}
-.grid-table .information_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -965px;
- background-repeat: no-repeat;
-}
-
-.grid-table .jar {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -997px;
- background-repeat: no-repeat;
-}
-.grid-table .jar_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -995px;
- background-repeat: no-repeat;
-}
-
-.grid-table .job {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1027px;
- background-repeat: no-repeat;
-}
-.grid-table .job_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -1025px;
- background-repeat: no-repeat;
-}
-
-.grid-table .jobconf {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1057px;
- background-repeat: no-repeat;
-}
-.grid-table .jobconf_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -1055px;
- background-repeat: no-repeat;
-}
-
-.grid-table .master_doc {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1087px;
- background-repeat: no-repeat;
-}
-.grid-table .master_doc_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -1085px;
- background-repeat: no-repeat;
-}
-
-.grid-table .master_table {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1117px;
- background-repeat: no-repeat;
-}
-.grid-table .master_table_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -1115px;
- background-repeat: no-repeat;
-}
-
-.grid-table .master_view {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1147px;
- background-repeat: no-repeat;
-}
-.grid-table .master_view_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -1145px;
- background-repeat: no-repeat;
-}
-
-.grid-table .moveleft {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1177px;
- background-repeat: no-repeat;
-}
-.grid-table .moveleft_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -1175px;
- background-repeat: no-repeat;
-}
-
-.grid-table .moveright {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1207px;
- background-repeat: no-repeat;
-}
-.grid-table .moveright_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -1205px;
- background-repeat: no-repeat;
-}
-
-.grid-table .mwin {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1237px;
- background-repeat: no-repeat;
-}
-.grid-table .mwin_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -1235px;
- background-repeat: no-repeat;
-}
-
-.grid-table .noticebox {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1267px;
- background-repeat: no-repeat;
-}
-.grid-table .noticebox_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -1265px;
- background-repeat: no-repeat;
-}
-
-.grid-table .notice_comment {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1297px;
- background-repeat: no-repeat;
-}
-.grid-table .notice_comment_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -1295px;
- background-repeat: no-repeat;
-}
-
-.grid-table .notice_message {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1327px;
- background-repeat: no-repeat;
-}
-.grid-table .notice_message_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -1325px;
- background-repeat: no-repeat;
-}
-
-.grid-table .notice_proxy {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1357px;
- background-repeat: no-repeat;
-}
-.grid-table .notice_proxy_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -1355px;
- background-repeat: no-repeat;
-}
-
-.grid-table .notice_todo {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1387px;
- background-repeat: no-repeat;
-}
-.grid-table .notice_todo_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -1385px;
- background-repeat: no-repeat;
-}
-
-.grid-table .notifyfilter {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1417px;
- background-repeat: no-repeat;
-}
-.grid-table .notifyfilter_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -1415px;
- background-repeat: no-repeat;
-}
-
-.grid-table .numbering {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1447px;
- background-repeat: no-repeat;
-}
-.grid-table .numbering_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -1445px;
- background-repeat: no-repeat;
-}
-
-.grid-table .parentchild {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1477px;
- background-repeat: no-repeat;
-}
-.grid-table .parentchild_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -1475px;
- background-repeat: no-repeat;
-}
-
-.grid-table .parentonly {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1507px;
- background-repeat: no-repeat;
-}
-.grid-table .parentonly_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -1505px;
- background-repeat: no-repeat;
-}
-
-.grid-table .private_group {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1537px;
- background-repeat: no-repeat;
-}
-.grid-table .private_group_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -1535px;
- background-repeat: no-repeat;
-}
-
-.grid-table .private_group_current {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1567px;
- background-repeat: no-repeat;
-}
-.grid-table .private_group_current_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -1565px;
- background-repeat: no-repeat;
-}
-
-.grid-table .private_role {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1597px;
- background-repeat: no-repeat;
-}
-.grid-table .private_role_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -1595px;
- background-repeat: no-repeat;
-}
-
-.grid-table .private_root {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1627px;
- background-repeat: no-repeat;
-}
-.grid-table .private_root_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -1625px;
- background-repeat: no-repeat;
-}
-
-.grid-table .project {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1657px;
- background-repeat: no-repeat;
-}
-.grid-table .project_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -1655px;
- background-repeat: no-repeat;
-}
-
-.grid-table .project_close {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1687px;
- background-repeat: no-repeat;
-}
-.grid-table .project_close_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -1685px;
- background-repeat: no-repeat;
-}
-
-.grid-table .project_current {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1717px;
- background-repeat: no-repeat;
-}
-.grid-table .project_current_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -1715px;
- background-repeat: no-repeat;
-}
-
-.grid-table .project_open {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1747px;
- background-repeat: no-repeat;
-}
-.grid-table .project_open_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -1745px;
- background-repeat: no-repeat;
-}
-
-.grid-table .pubfolder {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1777px;
- background-repeat: no-repeat;
-}
-.grid-table .pubfolder_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -1775px;
- background-repeat: no-repeat;
-}
-
-.grid-table .pubfolder_accessible {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1807px;
- background-repeat: no-repeat;
-}
-.grid-table .pubfolder_accessible_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -1805px;
- background-repeat: no-repeat;
-}
-
-.grid-table .pubfolder_accessible_close {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1837px;
- background-repeat: no-repeat;
-}
-.grid-table .pubfolder_accessible_close_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -1835px;
- background-repeat: no-repeat;
-}
-
-.grid-table .pubfolder_accessible_current {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1867px;
- background-repeat: no-repeat;
-}
-.grid-table .pubfolder_accessible_current_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -1865px;
- background-repeat: no-repeat;
-}
-
-.grid-table .pubfolder_accessible_open {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1897px;
- background-repeat: no-repeat;
-}
-.grid-table .pubfolder_accessible_open_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -1895px;
- background-repeat: no-repeat;
-}
-
-.grid-table .pubfolder_apply_node {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1927px;
- background-repeat: no-repeat;
-}
-.grid-table .pubfolder_apply_node_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -1925px;
- background-repeat: no-repeat;
-}
-
-.grid-table .pubfolder_apply_node_current {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1957px;
- background-repeat: no-repeat;
-}
-.grid-table .pubfolder_apply_node_current_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -1955px;
- background-repeat: no-repeat;
-}
-
-.grid-table .pubfolder_apply_root {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1987px;
- background-repeat: no-repeat;
-}
-.grid-table .pubfolder_apply_root_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -1985px;
- background-repeat: no-repeat;
-}
-
-.grid-table .pubfolder_apply_root_current {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2017px;
- background-repeat: no-repeat;
-}
-.grid-table .pubfolder_apply_root_current_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -2015px;
- background-repeat: no-repeat;
-}
-
-.grid-table .pubfolder_close {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2047px;
- background-repeat: no-repeat;
-}
-.grid-table .pubfolder_close_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -2045px;
- background-repeat: no-repeat;
-}
-
-.grid-table .pubfolder_current {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2077px;
- background-repeat: no-repeat;
-}
-.grid-table .pubfolder_current_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -2075px;
- background-repeat: no-repeat;
-}
-
-.grid-table .pubfolder_formreference_node {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2107px;
- background-repeat: no-repeat;
-}
-.grid-table .pubfolder_formreference_node_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -2105px;
- background-repeat: no-repeat;
-}
-
-.grid-table .pubfolder_formreference_node_current {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2137px;
- background-repeat: no-repeat;
-}
-.grid-table .pubfolder_formreference_node_current_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -2135px;
- background-repeat: no-repeat;
-}
-
-.grid-table .pubfolder_formreference_root {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2167px;
- background-repeat: no-repeat;
-}
-.grid-table .pubfolder_formreference_root_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -2165px;
- background-repeat: no-repeat;
-}
-
-.grid-table .pubfolder_formreference_root_current {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2197px;
- background-repeat: no-repeat;
-}
-.grid-table .pubfolder_formreference_root_current_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -2195px;
- background-repeat: no-repeat;
-}
-
-.grid-table .pubfolder_open {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2227px;
- background-repeat: no-repeat;
-}
-.grid-table .pubfolder_open_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -2225px;
- background-repeat: no-repeat;
-}
-
-.grid-table .pubfolder_subsheet_node {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2257px;
- background-repeat: no-repeat;
-}
-.grid-table .pubfolder_subsheet_node_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -2255px;
- background-repeat: no-repeat;
-}
-
-.grid-table .pubfolder_subsheet_node_current {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2287px;
- background-repeat: no-repeat;
-}
-.grid-table .pubfolder_subsheet_node_current_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -2285px;
- background-repeat: no-repeat;
-}
-
-.grid-table .pubfolder_subsheet_root {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2317px;
- background-repeat: no-repeat;
-}
-.grid-table .pubfolder_subsheet_root_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -2315px;
- background-repeat: no-repeat;
-}
-
-.grid-table .pubfolder_subsheet_root_current {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2347px;
- background-repeat: no-repeat;
-}
-.grid-table .pubfolder_subsheet_root_current_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -2345px;
- background-repeat: no-repeat;
-}
-
-.grid-table .reference {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2377px;
- background-repeat: no-repeat;
-}
-.grid-table .reference_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -2375px;
- background-repeat: no-repeat;
-}
-
-.grid-table .registry {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2407px;
- background-repeat: no-repeat;
-}
-.grid-table .registry_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -2405px;
- background-repeat: no-repeat;
-}
-
-.grid-table .relation_form {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2437px;
- background-repeat: no-repeat;
-}
-.grid-table .relation_form_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -2435px;
- background-repeat: no-repeat;
-}
-
-.grid-table .rule {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2467px;
- background-repeat: no-repeat;
-}
-.grid-table .rule_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -2465px;
- background-repeat: no-repeat;
-}
-
-.grid-table .running {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2497px;
- background-repeat: no-repeat;
-}
-.grid-table .running_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -2495px;
- background-repeat: no-repeat;
-}
-
-.grid-table .section_class {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2527px;
- background-repeat: no-repeat;
-}
-.grid-table .section_class_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -2525px;
- background-repeat: no-repeat;
-}
-
-.grid-table .section_class_current {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2557px;
- background-repeat: no-repeat;
-}
-.grid-table .section_class_current_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -2555px;
- background-repeat: no-repeat;
-}
-
-.grid-table .section_class_root {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2587px;
- background-repeat: no-repeat;
-}
-.grid-table .section_class_root_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -2585px;
- background-repeat: no-repeat;
-}
-
-.grid-table .section_class_root_current {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2617px;
- background-repeat: no-repeat;
-}
-.grid-table .section_class_root_current_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -2615px;
- background-repeat: no-repeat;
-}
-
-.grid-table .section_group {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2647px;
- background-repeat: no-repeat;
-}
-.grid-table .section_group_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -2645px;
- background-repeat: no-repeat;
-}
-
-.grid-table .section_group_current {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2677px;
- background-repeat: no-repeat;
-}
-.grid-table .section_group_current_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -2675px;
- background-repeat: no-repeat;
-}
-
-.grid-table .section_role {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2707px;
- background-repeat: no-repeat;
-}
-.grid-table .section_role_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -2705px;
- background-repeat: no-repeat;
-}
-
-.grid-table .section_root {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2737px;
- background-repeat: no-repeat;
-}
-.grid-table .section_root_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -2735px;
- background-repeat: no-repeat;
-}
-
-.grid-table .security_group {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2767px;
- background-repeat: no-repeat;
-}
-.grid-table .security_group_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -2765px;
- background-repeat: no-repeat;
-}
-
-.grid-table .security_group_current {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2797px;
- background-repeat: no-repeat;
-}
-.grid-table .security_group_current_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -2795px;
- background-repeat: no-repeat;
-}
-
-.grid-table .security_role {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2827px;
- background-repeat: no-repeat;
-}
-.grid-table .security_role_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -2825px;
- background-repeat: no-repeat;
-}
-
-.grid-table .security_root {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2857px;
- background-repeat: no-repeat;
-}
-.grid-table .security_root_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -2855px;
- background-repeat: no-repeat;
-}
-
-.grid-table .sheet {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2887px;
- background-repeat: no-repeat;
-}
-.grid-table .sheet_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -2885px;
- background-repeat: no-repeat;
-}
-
-.grid-table .site {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2917px;
- background-repeat: no-repeat;
-}
-.grid-table .site_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -2915px;
- background-repeat: no-repeat;
-}
-
-.grid-table .spoofing_user {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2947px;
- background-repeat: no-repeat;
-}
-.grid-table .spoofing_user_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -2945px;
- background-repeat: no-repeat;
-}
-
-.grid-table .stop-sign {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2977px;
- background-repeat: no-repeat;
-}
-.grid-table .stop-sign_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -2975px;
- background-repeat: no-repeat;
-}
-
-.grid-table .stopping {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3007px;
- background-repeat: no-repeat;
-}
-.grid-table .stopping_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -3005px;
- background-repeat: no-repeat;
-}
-
-.grid-table .subsheet {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3037px;
- background-repeat: no-repeat;
-}
-.grid-table .subsheet_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -3035px;
- background-repeat: no-repeat;
-}
-
-.grid-table .tenant {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3067px;
- background-repeat: no-repeat;
-}
-.grid-table .tenant_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -3065px;
- background-repeat: no-repeat;
-}
-
-.grid-table .tenement {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3097px;
- background-repeat: no-repeat;
-}
-.grid-table .tenement_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -3095px;
- background-repeat: no-repeat;
-}
-
-.grid-table .unit {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3127px;
- background-repeat: no-repeat;
-}
-.grid-table .unit_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -3125px;
- background-repeat: no-repeat;
-}
-
-.grid-table .universal_group {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3157px;
- background-repeat: no-repeat;
-}
-.grid-table .universal_group_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -3155px;
- background-repeat: no-repeat;
-}
-
-.grid-table .universal_group_current {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3187px;
- background-repeat: no-repeat;
-}
-.grid-table .universal_group_current_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -3185px;
- background-repeat: no-repeat;
-}
-
-.grid-table .universal_role {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3217px;
- background-repeat: no-repeat;
-}
-.grid-table .universal_role_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -3215px;
- background-repeat: no-repeat;
-}
-
-.grid-table .universal_root {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3247px;
- background-repeat: no-repeat;
-}
-.grid-table .universal_root_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -3245px;
- background-repeat: no-repeat;
-}
-
-.grid-table .url {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3277px;
- background-repeat: no-repeat;
-}
-.grid-table .url_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -3275px;
- background-repeat: no-repeat;
-}
-
-.grid-table .user {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3307px;
- background-repeat: no-repeat;
-}
-.grid-table .user_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -3305px;
- background-repeat: no-repeat;
-}
-
-.grid-table .warning {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3337px;
- background-repeat: no-repeat;
-}
-.grid-table .warning_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -3335px;
- background-repeat: no-repeat;
-}
-
-.grid-table .window {
- padding: 0px 4px 0px 24px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3367px;
- background-repeat: no-repeat;
-}
-.grid-table .window_center {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: center -3365px;
- background-repeat: no-repeat;
-}
-
-/* object sprite end */
diff --git a/AgileWorks/WebContent/css/livehtml/help.css b/AgileWorks/WebContent/css/livehtml/help.css
deleted file mode 100644
index fe6a67ec2f39d725f28ce82708cbc44310260125..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/livehtml/help.css
+++ /dev/null
@@ -1,15 +0,0 @@
-.help-title {
- padding:15px 5px 15px 35px;
- font-weight:bold;
- font-size:132%;
- background-image:url('../../images/common/icon/etc/help30.gif?build31910');
- background-position:left center;
- background-repeat:no-repeat;
- background-color:#ffffff;
- color:#2E6AA5;
-}
-
-.help-content {
- padding:5px;
- font-weight:normal;
-}
diff --git a/AgileWorks/WebContent/css/livehtml/hyperlinks.css b/AgileWorks/WebContent/css/livehtml/hyperlinks.css
deleted file mode 100644
index eccba85097f2c742ec3f0a794a56d4c6bde02c05..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/livehtml/hyperlinks.css
+++ /dev/null
@@ -1,14 +0,0 @@
-/*
- * hyperlinks.css?build31910
- *
- * HyperLinksを描画するために必要なCSSセレクタを定義します
- */
-
-.hlinks-ul {
-}
-
-.hlinks-li {
-}
-
-.hlinks-separator {
-}
diff --git a/AgileWorks/WebContent/css/livehtml/livehtml.css b/AgileWorks/WebContent/css/livehtml/livehtml.css
deleted file mode 100644
index 4da19e81bfc0ea7371c0d20dd1136ff8f7e58cda..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/livehtml/livehtml.css
+++ /dev/null
@@ -1,13 +0,0 @@
-.aw-band-div{border-style:solid;border-width:1px 0 1px 1px;border-color:#aaa;}.aw-band-div-thead{height:25px;}.aw-band-div-th{float:left;height:25px;line-height:25px;color:#000;font-weight:bold;border-style:solid;border-width:0 1px 0 0;border-color:#aaa;white-space:pre;word-break:keep-all;overflow:hidden;text-align:center;background-image:url('../../images/emma/default/background/grid_header.gif?build31910');}.aw-band-div-tr{height:25px;background-color:#fff;}.aw-band-div-tr-even{height:25px;background-color:#f5f5f5;}.aw-band-div-td{height:25px;line-height:25px;float:left;border-style:solid;border-width:0 1px 0 0;border-color:#aaa;}.aw-band-div-td-even{height:25px;line-height:25px;float:left;border-style:solid;border-width:0 1px 0 0;border-color:#aaa;}
-.aw-band-table-header{border-style:solid;border-width:1px 0 1px 1px;border-color:#aaa;table-layout:fixed;}.aw-band-table-list{border-style:solid;border-width:0 0 1px 1px;border-color:#aaa;table-layout:fixed;}.aw-band-table-list-even{border-style:solid;border-width:0 0 1px 1px;border-color:#aaa;table-layout:fixed;}.aw-band-table-list-highlight{border-style:solid;border-width:0 0 1px 1px;border-color:#aaa;table-layout:fixed;}.aw-band-table-tr{height:25px;background-color:#fff;}.aw-band-table-tr-even{height:25px;background-color:#f5f5f5;}.aw-band-table-tr-highlight{height:25px;background-color:#ffc;}.aw-band-table-th{height:25px;color:#000;font-weight:bold;border-style:solid;border-width:0 1px 0 0;border-color:#aaa;white-space:pre;word-break:keep-all;overflow:hidden;text-align:center;background-image:url('../../images/emma/default/background/grid_header.gif?build31910');padding:0 4px 0 4px;}.aw-band-table-td{border-style:solid;border-width:0 1px 0 0;border-color:#aaa;padding:4px;}.aw-band-table-td-even{border-style:solid;border-width:0 1px 0 0;border-color:#aaa;padding:4px;}.aw-band-table-td-highlight{border-style:solid;border-width:0 1px 0 0;border-color:#aaa;padding:4px;}
-.calendar{border-style:solid;border-color:#666;border-width:1px;font-size:12px;box-shadow:2px 2px 5px #666;-moz-box-shadow:2px 2px 5px #666;-webkit-box-shadow:2px 2px 5px #666;}.calendar-header{text-align:center;background-color:#0067ce;color:#fff;font-size:13px;}.calendar-header th{word-break:keep-all;white-space:nowrap;}.calendar-header .function{cursor:pointer;}.calendar-day{text-align:center;background-color:#ddd;}.calendar-date{text-align:right;background-color:#fff;cursor:pointer;}.calendar-date td{width:20px;}.calendar-date .selected{text-align:right;background-color:#0067ce;color:#fff;cursor:pointer;}.calendar-date .today{text-align:right;background-color:#ffc;cursor:pointer;}.calendar-date .outside{text-align:right;color:#aaa;cursor:auto;}.calendar-date .saturday{text-align:right;background-color:#eaefff;color:#00f;cursor:pointer;}.calendar-date .sunday{text-align:right;background-color:#fde0e0;color:#f00;cursor:pointer;}.calendar-date .over{text-align:right;background-color:#ddecfe;color:#00f;cursor:pointer;}.calendar-date .rangeover{color:#aaa;cursor:auto;}.calendar-footer{background-color:#ddd;text-align:center;}.calendar-footer input{font-size:10px;width:70px;height:20px;}.calendar-footer .thismonth{margin-right:10px;}
-.combobox .addon{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -10px;background-repeat:no-repeat;}.combobox-select .addon{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -10px;background-repeat:no-repeat;}.combobox .allunit{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -40px;background-repeat:no-repeat;}.combobox-select .allunit{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -40px;background-repeat:no-repeat;}.combobox .anyone{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -70px;background-repeat:no-repeat;}.combobox-select .anyone{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -70px;background-repeat:no-repeat;}.combobox .applyunit{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -100px;background-repeat:no-repeat;}.combobox-select .applyunit{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -100px;background-repeat:no-repeat;}.combobox .archive{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -130px;background-repeat:no-repeat;}.combobox-select .archive{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -130px;background-repeat:no-repeat;}.combobox .archived_form{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -160px;background-repeat:no-repeat;}.combobox-select .archived_form{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -160px;background-repeat:no-repeat;}.combobox .asb_sa{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -190px;background-repeat:no-repeat;}.combobox-select .asb_sa{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -190px;background-repeat:no-repeat;}.combobox .attachment{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -220px;background-repeat:no-repeat;}.combobox-select .attachment{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -220px;background-repeat:no-repeat;}.combobox .bricklet{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -250px;background-repeat:no-repeat;}.combobox-select .bricklet{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -250px;background-repeat:no-repeat;}.combobox .bricklet_association{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -280px;background-repeat:no-repeat;}.combobox-select .bricklet_association{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -280px;background-repeat:no-repeat;}.combobox .calendar{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -310px;background-repeat:no-repeat;}.combobox-select .calendar{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -310px;background-repeat:no-repeat;}.combobox .childonly{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -340px;background-repeat:no-repeat;}.combobox-select .childonly{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -340px;background-repeat:no-repeat;}.combobox .comment{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -370px;background-repeat:no-repeat;}.combobox-select .comment{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -370px;background-repeat:no-repeat;}.combobox .component_mwin{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -400px;background-repeat:no-repeat;}.combobox-select .component_mwin{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -400px;background-repeat:no-repeat;}.combobox .currentdoc{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -430px;background-repeat:no-repeat;}.combobox-select .currentdoc{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -430px;background-repeat:no-repeat;}.combobox .currentsheet{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -460px;background-repeat:no-repeat;}.combobox-select .currentsheet{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -460px;background-repeat:no-repeat;}.combobox .customer{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -490px;background-repeat:no-repeat;}.combobox-select .customer{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -490px;background-repeat:no-repeat;}.combobox .datasource{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -520px;background-repeat:no-repeat;}.combobox-select .datasource{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -520px;background-repeat:no-repeat;}.combobox .delete{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -550px;background-repeat:no-repeat;}.combobox-select .delete{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -550px;background-repeat:no-repeat;}.combobox .doc{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -580px;background-repeat:no-repeat;}.combobox-select .doc{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -580px;background-repeat:no-repeat;}.combobox .esb{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -610px;background-repeat:no-repeat;}.combobox-select .esb{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -610px;background-repeat:no-repeat;}.combobox .esb_serverconf{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -640px;background-repeat:no-repeat;}.combobox-select .esb_serverconf{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -640px;background-repeat:no-repeat;}.combobox .extlib{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -670px;background-repeat:no-repeat;}.combobox-select .extlib{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -670px;background-repeat:no-repeat;}.combobox .folder{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -700px;background-repeat:no-repeat;}.combobox-select .folder{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -700px;background-repeat:no-repeat;}.combobox .folder_close{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -730px;background-repeat:no-repeat;}.combobox-select .folder_close{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -730px;background-repeat:no-repeat;}.combobox .folder_current{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -760px;background-repeat:no-repeat;}.combobox-select .folder_current{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -760px;background-repeat:no-repeat;}.combobox .folder_open{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -790px;background-repeat:no-repeat;}.combobox-select .folder_open{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -790px;background-repeat:no-repeat;}.combobox .form{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -820px;background-repeat:no-repeat;}.combobox-select .form{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -820px;background-repeat:no-repeat;}.combobox .gadget{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -850px;background-repeat:no-repeat;}.combobox-select .gadget{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -850px;background-repeat:no-repeat;}.combobox .general{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -880px;background-repeat:no-repeat;}.combobox-select .general{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -880px;background-repeat:no-repeat;}.combobox .go-sign{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -910px;background-repeat:no-repeat;}.combobox-select .go-sign{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -910px;background-repeat:no-repeat;}.combobox .help{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -940px;background-repeat:no-repeat;}.combobox-select .help{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -940px;background-repeat:no-repeat;}.combobox .information{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -970px;background-repeat:no-repeat;}.combobox-select .information{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -970px;background-repeat:no-repeat;}.combobox .jar{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1000px;background-repeat:no-repeat;}.combobox-select .jar{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1000px;background-repeat:no-repeat;}.combobox .job{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1030px;background-repeat:no-repeat;}.combobox-select .job{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1030px;background-repeat:no-repeat;}.combobox .jobconf{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1060px;background-repeat:no-repeat;}.combobox-select .jobconf{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1060px;background-repeat:no-repeat;}.combobox .master_doc{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1090px;background-repeat:no-repeat;}.combobox-select .master_doc{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1090px;background-repeat:no-repeat;}.combobox .master_table{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1120px;background-repeat:no-repeat;}.combobox-select .master_table{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1120px;background-repeat:no-repeat;}.combobox .master_view{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1150px;background-repeat:no-repeat;}.combobox-select .master_view{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1150px;background-repeat:no-repeat;}.combobox .moveleft{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1180px;background-repeat:no-repeat;}.combobox-select .moveleft{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1180px;background-repeat:no-repeat;}.combobox .moveright{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1210px;background-repeat:no-repeat;}.combobox-select .moveright{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1210px;background-repeat:no-repeat;}.combobox .mwin{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1240px;background-repeat:no-repeat;}.combobox-select .mwin{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1240px;background-repeat:no-repeat;}.combobox .noticebox{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1270px;background-repeat:no-repeat;}.combobox-select .noticebox{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1270px;background-repeat:no-repeat;}.combobox .notice_comment{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1300px;background-repeat:no-repeat;}.combobox-select .notice_comment{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1300px;background-repeat:no-repeat;}.combobox .notice_message{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1330px;background-repeat:no-repeat;}.combobox-select .notice_message{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1330px;background-repeat:no-repeat;}.combobox .notice_proxy{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1360px;background-repeat:no-repeat;}.combobox-select .notice_proxy{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1360px;background-repeat:no-repeat;}.combobox .notice_todo{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1390px;background-repeat:no-repeat;}.combobox-select .notice_todo{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1390px;background-repeat:no-repeat;}.combobox .notifyfilter{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1420px;background-repeat:no-repeat;}.combobox-select .notifyfilter{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1420px;background-repeat:no-repeat;}.combobox .numbering{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1450px;background-repeat:no-repeat;}.combobox-select .numbering{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1450px;background-repeat:no-repeat;}.combobox .parentchild{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1480px;background-repeat:no-repeat;}.combobox-select .parentchild{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1480px;background-repeat:no-repeat;}.combobox .parentonly{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1510px;background-repeat:no-repeat;}.combobox-select .parentonly{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1510px;background-repeat:no-repeat;}.combobox .private_group{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1540px;background-repeat:no-repeat;}.combobox-select .private_group{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1540px;background-repeat:no-repeat;}.combobox .private_group_current{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1570px;background-repeat:no-repeat;}.combobox-select .private_group_current{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1570px;background-repeat:no-repeat;}.combobox .private_role{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1600px;background-repeat:no-repeat;}.combobox-select .private_role{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1600px;background-repeat:no-repeat;}.combobox .private_root{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1630px;background-repeat:no-repeat;}.combobox-select .private_root{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1630px;background-repeat:no-repeat;}.combobox .project{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1660px;background-repeat:no-repeat;}.combobox-select .project{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1660px;background-repeat:no-repeat;}.combobox .project_close{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1690px;background-repeat:no-repeat;}.combobox-select .project_close{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1690px;background-repeat:no-repeat;}.combobox .project_current{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1720px;background-repeat:no-repeat;}.combobox-select .project_current{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1720px;background-repeat:no-repeat;}.combobox .project_open{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1750px;background-repeat:no-repeat;}.combobox-select .project_open{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1750px;background-repeat:no-repeat;}.combobox .pubfolder{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1780px;background-repeat:no-repeat;}.combobox-select .pubfolder{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1780px;background-repeat:no-repeat;}.combobox .pubfolder_accessible{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1810px;background-repeat:no-repeat;}.combobox-select .pubfolder_accessible{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1810px;background-repeat:no-repeat;}.combobox .pubfolder_accessible_close{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1840px;background-repeat:no-repeat;}.combobox-select .pubfolder_accessible_close{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1840px;background-repeat:no-repeat;}.combobox .pubfolder_accessible_current{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1870px;background-repeat:no-repeat;}.combobox-select .pubfolder_accessible_current{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1870px;background-repeat:no-repeat;}.combobox .pubfolder_accessible_open{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1900px;background-repeat:no-repeat;}.combobox-select .pubfolder_accessible_open{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1900px;background-repeat:no-repeat;}.combobox .pubfolder_apply_node{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1930px;background-repeat:no-repeat;}.combobox-select .pubfolder_apply_node{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1930px;background-repeat:no-repeat;}.combobox .pubfolder_apply_node_current{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1960px;background-repeat:no-repeat;}.combobox-select .pubfolder_apply_node_current{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1960px;background-repeat:no-repeat;}.combobox .pubfolder_apply_root{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1990px;background-repeat:no-repeat;}.combobox-select .pubfolder_apply_root{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1990px;background-repeat:no-repeat;}.combobox .pubfolder_apply_root_current{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2020px;background-repeat:no-repeat;}.combobox-select .pubfolder_apply_root_current{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2020px;background-repeat:no-repeat;}.combobox .pubfolder_close{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2050px;background-repeat:no-repeat;}.combobox-select .pubfolder_close{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2050px;background-repeat:no-repeat;}.combobox .pubfolder_current{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2080px;background-repeat:no-repeat;}.combobox-select .pubfolder_current{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2080px;background-repeat:no-repeat;}.combobox .pubfolder_formreference_node{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2110px;background-repeat:no-repeat;}.combobox-select .pubfolder_formreference_node{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2110px;background-repeat:no-repeat;}.combobox .pubfolder_formreference_node_current{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2140px;background-repeat:no-repeat;}.combobox-select .pubfolder_formreference_node_current{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2140px;background-repeat:no-repeat;}.combobox .pubfolder_formreference_root{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2170px;background-repeat:no-repeat;}.combobox-select .pubfolder_formreference_root{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2170px;background-repeat:no-repeat;}.combobox .pubfolder_formreference_root_current{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2200px;background-repeat:no-repeat;}.combobox-select .pubfolder_formreference_root_current{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2200px;background-repeat:no-repeat;}.combobox .pubfolder_open{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2230px;background-repeat:no-repeat;}.combobox-select .pubfolder_open{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2230px;background-repeat:no-repeat;}.combobox .pubfolder_subsheet_node{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2260px;background-repeat:no-repeat;}.combobox-select .pubfolder_subsheet_node{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2260px;background-repeat:no-repeat;}.combobox .pubfolder_subsheet_node_current{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2290px;background-repeat:no-repeat;}.combobox-select .pubfolder_subsheet_node_current{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2290px;background-repeat:no-repeat;}.combobox .pubfolder_subsheet_root{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2320px;background-repeat:no-repeat;}.combobox-select .pubfolder_subsheet_root{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2320px;background-repeat:no-repeat;}.combobox .pubfolder_subsheet_root_current{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2350px;background-repeat:no-repeat;}.combobox-select .pubfolder_subsheet_root_current{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2350px;background-repeat:no-repeat;}.combobox .reference{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2380px;background-repeat:no-repeat;}.combobox-select .reference{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2380px;background-repeat:no-repeat;}.combobox .registry{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2410px;background-repeat:no-repeat;}.combobox-select .registry{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2410px;background-repeat:no-repeat;}.combobox .relation_form{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2440px;background-repeat:no-repeat;}.combobox-select .relation_form{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2440px;background-repeat:no-repeat;}.combobox .rule{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2470px;background-repeat:no-repeat;}.combobox-select .rule{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2470px;background-repeat:no-repeat;}.combobox .running{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2500px;background-repeat:no-repeat;}.combobox-select .running{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2500px;background-repeat:no-repeat;}.combobox .section_class{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2530px;background-repeat:no-repeat;}.combobox-select .section_class{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2530px;background-repeat:no-repeat;}.combobox .section_class_current{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2560px;background-repeat:no-repeat;}.combobox-select .section_class_current{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2560px;background-repeat:no-repeat;}.combobox .section_class_root{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2590px;background-repeat:no-repeat;}.combobox-select .section_class_root{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2590px;background-repeat:no-repeat;}.combobox .section_class_root_current{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2620px;background-repeat:no-repeat;}.combobox-select .section_class_root_current{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2620px;background-repeat:no-repeat;}.combobox .section_group{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2650px;background-repeat:no-repeat;}.combobox-select .section_group{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2650px;background-repeat:no-repeat;}.combobox .section_group_current{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2680px;background-repeat:no-repeat;}.combobox-select .section_group_current{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2680px;background-repeat:no-repeat;}.combobox .section_role{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2710px;background-repeat:no-repeat;}.combobox-select .section_role{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2710px;background-repeat:no-repeat;}.combobox .section_root{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2740px;background-repeat:no-repeat;}.combobox-select .section_root{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2740px;background-repeat:no-repeat;}.combobox .security_group{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2770px;background-repeat:no-repeat;}.combobox-select .security_group{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2770px;background-repeat:no-repeat;}.combobox .security_group_current{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2800px;background-repeat:no-repeat;}.combobox-select .security_group_current{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2800px;background-repeat:no-repeat;}.combobox .security_role{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2830px;background-repeat:no-repeat;}.combobox-select .security_role{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2830px;background-repeat:no-repeat;}.combobox .security_root{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2860px;background-repeat:no-repeat;}.combobox-select .security_root{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2860px;background-repeat:no-repeat;}.combobox .sheet{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2890px;background-repeat:no-repeat;}.combobox-select .sheet{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2890px;background-repeat:no-repeat;}.combobox .site{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2920px;background-repeat:no-repeat;}.combobox-select .site{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2920px;background-repeat:no-repeat;}.combobox .spoofing_user{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2950px;background-repeat:no-repeat;}.combobox-select .spoofing_user{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2950px;background-repeat:no-repeat;}.combobox .stop-sign{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2980px;background-repeat:no-repeat;}.combobox-select .stop-sign{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2980px;background-repeat:no-repeat;}.combobox .stopping{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3010px;background-repeat:no-repeat;}.combobox-select .stopping{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3010px;background-repeat:no-repeat;}.combobox .subsheet{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3040px;background-repeat:no-repeat;}.combobox-select .subsheet{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3040px;background-repeat:no-repeat;}.combobox .tenant{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3070px;background-repeat:no-repeat;}.combobox-select .tenant{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3070px;background-repeat:no-repeat;}.combobox .tenement{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3100px;background-repeat:no-repeat;}.combobox-select .tenement{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3100px;background-repeat:no-repeat;}.combobox .unit{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3130px;background-repeat:no-repeat;}.combobox-select .unit{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3130px;background-repeat:no-repeat;}.combobox .universal_group{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3160px;background-repeat:no-repeat;}.combobox-select .universal_group{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3160px;background-repeat:no-repeat;}.combobox .universal_group_current{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3190px;background-repeat:no-repeat;}.combobox-select .universal_group_current{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3190px;background-repeat:no-repeat;}.combobox .universal_role{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3220px;background-repeat:no-repeat;}.combobox-select .universal_role{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3220px;background-repeat:no-repeat;}.combobox .universal_root{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3250px;background-repeat:no-repeat;}.combobox-select .universal_root{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3250px;background-repeat:no-repeat;}.combobox .url{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3280px;background-repeat:no-repeat;}.combobox-select .url{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3280px;background-repeat:no-repeat;}.combobox .user{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3310px;background-repeat:no-repeat;}.combobox-select .user{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3310px;background-repeat:no-repeat;}.combobox .warning{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3340px;background-repeat:no-repeat;}.combobox-select .warning{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3340px;background-repeat:no-repeat;}.combobox .window{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3370px;background-repeat:no-repeat;}.combobox-select .window{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3370px;background-repeat:no-repeat;}.combobox .abort{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -10px;background-repeat:no-repeat;}.combobox-select .abort{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -10px;background-repeat:no-repeat;}.combobox .add_down{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -40px;background-repeat:no-repeat;}.combobox-select .add_down{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -40px;background-repeat:no-repeat;}.combobox .add_effect{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -70px;background-repeat:no-repeat;}.combobox-select .add_effect{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -70px;background-repeat:no-repeat;}.combobox .allsheetandtrailprint{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -100px;background-repeat:no-repeat;}.combobox-select .allsheetandtrailprint{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -100px;background-repeat:no-repeat;}.combobox .allsheetprint{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -130px;background-repeat:no-repeat;}.combobox-select .allsheetprint{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -130px;background-repeat:no-repeat;}.combobox .apply{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -160px;background-repeat:no-repeat;}.combobox-select .apply{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -160px;background-repeat:no-repeat;}.combobox .approve{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -190px;background-repeat:no-repeat;}.combobox-select .approve{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -190px;background-repeat:no-repeat;}.combobox .approve_withcomment{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -220px;background-repeat:no-repeat;}.combobox-select .approve_withcomment{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -220px;background-repeat:no-repeat;}.combobox .batchdelete{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -250px;background-repeat:no-repeat;}.combobox-select .batchdelete{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -250px;background-repeat:no-repeat;}.combobox .cancel{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -280px;background-repeat:no-repeat;}.combobox-select .cancel{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -280px;background-repeat:no-repeat;}.combobox .changedate{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -310px;background-repeat:no-repeat;}.combobox-select .changedate{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -310px;background-repeat:no-repeat;}.combobox .check{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -340px;background-repeat:no-repeat;}.combobox-select .check{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -340px;background-repeat:no-repeat;}.combobox .checked_action{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -370px;background-repeat:no-repeat;}.combobox-select .checked_action{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -370px;background-repeat:no-repeat;}.combobox .check_disabled{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -400px;background-repeat:no-repeat;}.combobox-select .check_disabled{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -400px;background-repeat:no-repeat;}.combobox .check_required{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -430px;background-repeat:no-repeat;}.combobox-select .check_required{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -430px;background-repeat:no-repeat;}.combobox .close{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -460px;background-repeat:no-repeat;}.combobox-select .close{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -460px;background-repeat:no-repeat;}.combobox .config{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -490px;background-repeat:no-repeat;}.combobox-select .config{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -490px;background-repeat:no-repeat;}.combobox .confirm{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -520px;background-repeat:no-repeat;}.combobox-select .confirm{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -520px;background-repeat:no-repeat;}.combobox .copy{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -550px;background-repeat:no-repeat;}.combobox-select .copy{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -550px;background-repeat:no-repeat;}.combobox .copynew{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -580px;background-repeat:no-repeat;}.combobox-select .copynew{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -580px;background-repeat:no-repeat;}.combobox .custom{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -610px;background-repeat:no-repeat;}.combobox-select .custom{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -610px;background-repeat:no-repeat;}.combobox .cut{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -640px;background-repeat:no-repeat;}.combobox-select .cut{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -640px;background-repeat:no-repeat;}.combobox .decline{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -670px;background-repeat:no-repeat;}.combobox-select .decline{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -670px;background-repeat:no-repeat;}.combobox .delete{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -700px;background-repeat:no-repeat;}.combobox-select .delete{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -700px;background-repeat:no-repeat;}.combobox .deleterecord{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -730px;background-repeat:no-repeat;}.combobox-select .deleterecord{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -730px;background-repeat:no-repeat;}.combobox .delete_effect{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -760px;background-repeat:no-repeat;}.combobox-select .delete_effect{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -760px;background-repeat:no-repeat;}.combobox .disable{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -790px;background-repeat:no-repeat;}.combobox-select .disable{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -790px;background-repeat:no-repeat;}.combobox .draft{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -820px;background-repeat:no-repeat;}.combobox-select .draft{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -820px;background-repeat:no-repeat;}.combobox .edit{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -850px;background-repeat:no-repeat;}.combobox-select .edit{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -850px;background-repeat:no-repeat;}.combobox .enable{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -880px;background-repeat:no-repeat;}.combobox-select .enable{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -880px;background-repeat:no-repeat;}.combobox .exec{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -910px;background-repeat:no-repeat;}.combobox-select .exec{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -910px;background-repeat:no-repeat;}.combobox .export{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -940px;background-repeat:no-repeat;}.combobox-select .export{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -940px;background-repeat:no-repeat;}.combobox .folder_up{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -970px;background-repeat:no-repeat;}.combobox-select .folder_up{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -970px;background-repeat:no-repeat;}.combobox .formpreview{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1000px;background-repeat:no-repeat;}.combobox-select .formpreview{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1000px;background-repeat:no-repeat;}.combobox .formupload{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1030px;background-repeat:no-repeat;}.combobox-select .formupload{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1030px;background-repeat:no-repeat;}.combobox .import{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1060px;background-repeat:no-repeat;}.combobox-select .import{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1060px;background-repeat:no-repeat;}.combobox .insertrecord{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1090px;background-repeat:no-repeat;}.combobox-select .insertrecord{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1090px;background-repeat:no-repeat;}.combobox .list{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1120px;background-repeat:no-repeat;}.combobox-select .list{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1120px;background-repeat:no-repeat;}.combobox .login{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1150px;background-repeat:no-repeat;}.combobox-select .login{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1150px;background-repeat:no-repeat;}.combobox .maximize{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1180px;background-repeat:no-repeat;}.combobox-select .maximize{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1180px;background-repeat:no-repeat;}.combobox .minimize{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1210px;background-repeat:no-repeat;}.combobox-select .minimize{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1210px;background-repeat:no-repeat;}.combobox .minus{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1240px;background-repeat:no-repeat;}.combobox-select .minus{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1240px;background-repeat:no-repeat;}.combobox .moveleft{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1270px;background-repeat:no-repeat;}.combobox-select .moveleft{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1270px;background-repeat:no-repeat;}.combobox .moveleft2{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1300px;background-repeat:no-repeat;}.combobox-select .moveleft2{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1300px;background-repeat:no-repeat;}.combobox .moveleft2_disabled{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1330px;background-repeat:no-repeat;}.combobox-select .moveleft2_disabled{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1330px;background-repeat:no-repeat;}.combobox .moveleft_disabled{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1360px;background-repeat:no-repeat;}.combobox-select .moveleft_disabled{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1360px;background-repeat:no-repeat;}.combobox .moveright{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1390px;background-repeat:no-repeat;}.combobox-select .moveright{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1390px;background-repeat:no-repeat;}.combobox .moveright2{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1420px;background-repeat:no-repeat;}.combobox-select .moveright2{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1420px;background-repeat:no-repeat;}.combobox .moveright2_disabled{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1450px;background-repeat:no-repeat;}.combobox-select .moveright2_disabled{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1450px;background-repeat:no-repeat;}.combobox .moveright_disabled{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1480px;background-repeat:no-repeat;}.combobox-select .moveright_disabled{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1480px;background-repeat:no-repeat;}.combobox .moveup{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1510px;background-repeat:no-repeat;}.combobox-select .moveup{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1510px;background-repeat:no-repeat;}.combobox .multiprint{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1540px;background-repeat:no-repeat;}.combobox-select .multiprint{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1540px;background-repeat:no-repeat;}.combobox .new{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1570px;background-repeat:no-repeat;}.combobox-select .new{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1570px;background-repeat:no-repeat;}.combobox .newwindow{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1600px;background-repeat:no-repeat;}.combobox-select .newwindow{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1600px;background-repeat:no-repeat;}.combobox .opendoc{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1630px;background-repeat:no-repeat;}.combobox-select .opendoc{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1630px;background-repeat:no-repeat;}.combobox .opendoc2{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1660px;background-repeat:no-repeat;}.combobox-select .opendoc2{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1660px;background-repeat:no-repeat;}.combobox .opendoc3{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1690px;background-repeat:no-repeat;}.combobox-select .opendoc3{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1690px;background-repeat:no-repeat;}.combobox .openlayer{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1720px;background-repeat:no-repeat;}.combobox-select .openlayer{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1720px;background-repeat:no-repeat;}.combobox .openproperty{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1750px;background-repeat:no-repeat;}.combobox-select .openproperty{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1750px;background-repeat:no-repeat;}.combobox .order_bottom{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1780px;background-repeat:no-repeat;}.combobox-select .order_bottom{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1780px;background-repeat:no-repeat;}.combobox .order_down{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1810px;background-repeat:no-repeat;}.combobox-select .order_down{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1810px;background-repeat:no-repeat;}.combobox .order_down_disabled{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1840px;background-repeat:no-repeat;}.combobox-select .order_down_disabled{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1840px;background-repeat:no-repeat;}.combobox .order_top{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1870px;background-repeat:no-repeat;}.combobox-select .order_top{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1870px;background-repeat:no-repeat;}.combobox .order_up{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1900px;background-repeat:no-repeat;}.combobox-select .order_up{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1900px;background-repeat:no-repeat;}.combobox .order_up_disabled{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1930px;background-repeat:no-repeat;}.combobox-select .order_up_disabled{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1930px;background-repeat:no-repeat;}.combobox .passback{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1960px;background-repeat:no-repeat;}.combobox-select .passback{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1960px;background-repeat:no-repeat;}.combobox .paste{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1990px;background-repeat:no-repeat;}.combobox-select .paste{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1990px;background-repeat:no-repeat;}.combobox .pause{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2020px;background-repeat:no-repeat;}.combobox-select .pause{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2020px;background-repeat:no-repeat;}.combobox .pdf{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2050px;background-repeat:no-repeat;}.combobox-select .pdf{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2050px;background-repeat:no-repeat;}.combobox .plus{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2080px;background-repeat:no-repeat;}.combobox-select .plus{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2080px;background-repeat:no-repeat;}.combobox .preparation{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2110px;background-repeat:no-repeat;}.combobox-select .preparation{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2110px;background-repeat:no-repeat;}.combobox .preview{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2140px;background-repeat:no-repeat;}.combobox-select .preview{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2140px;background-repeat:no-repeat;}.combobox .print{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2170px;background-repeat:no-repeat;}.combobox-select .print{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2170px;background-repeat:no-repeat;}.combobox .read{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2200px;background-repeat:no-repeat;}.combobox-select .read{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2200px;background-repeat:no-repeat;}.combobox .reload{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2230px;background-repeat:no-repeat;}.combobox-select .reload{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2230px;background-repeat:no-repeat;}.combobox .reload_disabled{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2260px;background-repeat:no-repeat;}.combobox-select .reload_disabled{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2260px;background-repeat:no-repeat;}.combobox .remove_up{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2290px;background-repeat:no-repeat;}.combobox-select .remove_up{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2290px;background-repeat:no-repeat;}.combobox .restore{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2320px;background-repeat:no-repeat;}.combobox-select .restore{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2320px;background-repeat:no-repeat;}.combobox .save{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2350px;background-repeat:no-repeat;}.combobox-select .save{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2350px;background-repeat:no-repeat;}.combobox .saveconf{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2380px;background-repeat:no-repeat;}.combobox-select .saveconf{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2380px;background-repeat:no-repeat;}.combobox .search{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2410px;background-repeat:no-repeat;}.combobox-select .search{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2410px;background-repeat:no-repeat;}.combobox .showunittranslayer{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2440px;background-repeat:no-repeat;}.combobox-select .showunittranslayer{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2440px;background-repeat:no-repeat;}.combobox .sortconfig{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2470px;background-repeat:no-repeat;}.combobox-select .sortconfig{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2470px;background-repeat:no-repeat;}.combobox .startup{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2500px;background-repeat:no-repeat;}.combobox-select .startup{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2500px;background-repeat:no-repeat;}.combobox .takeback{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2530px;background-repeat:no-repeat;}.combobox-select .takeback{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2530px;background-repeat:no-repeat;}.combobox .trailprint{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2560px;background-repeat:no-repeat;}.combobox-select .trailprint{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2560px;background-repeat:no-repeat;}.combobox .unchecked_action{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2590px;background-repeat:no-repeat;}.combobox-select .unchecked_action{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2590px;background-repeat:no-repeat;}.combobox .unit_up{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2620px;background-repeat:no-repeat;}.combobox-select .unit_up{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2620px;background-repeat:no-repeat;}.combobox .unread{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2650px;background-repeat:no-repeat;}.combobox-select .unread{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2650px;background-repeat:no-repeat;}.combobox .update_effect{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2680px;background-repeat:no-repeat;}.combobox-select .update_effect{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2680px;background-repeat:no-repeat;}.combobox .withdraw{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2710px;background-repeat:no-repeat;}.combobox-select .withdraw{padding-left:24px!important;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2710px;background-repeat:no-repeat;}
-.combobox{background-color:#fff;border-style:solid;border-width:1px;border-color:#aaa;height:20px;padding-left:1px;}.combobox input{border-width:0;height:18px;line-height:18px;}.combobox-select{cursor:default;position:absolute;background-color:#fff;border-style:solid;border-color:#000;border-width:1px;overflow-x:hidden;overflow-y:auto;font-size:12px;}.combobox-select div{white-space:pre;word-break:keep-all;overflow:hidden;text-align:left!important;}.combobox-select div.option{height:18px;line-height:18px;padding:1px 2px 1px 2px;}.combobox-select div.option.current{background-color:#5e81bc;color:#fff;}.combobox-select div.option.over{background-color:#5e81bc;color:#fff;}.listbox-select{cursor:default;background-color:#fff;border-style:solid;border-color:#aaa;border-width:1px;overflow-x:hidden;overflow-y:auto;font-size:12px;}.listbox-select div{white-space:pre;word-break:keep-all;overflow:hidden;text-align:left!important;}.listbox-select div.option{height:18px;line-height:18px;padding:1px 2px 1px 2px;color:#000;-moz-user-select:none;}.listbox-select div.option.current{background-color:#5e81bc;color:#fff;}.listbox-select div.option.over{background-color:#5e81bc;color:#fff;}
-.invisual{display:none;}.inline{display:inline;}#_yuiResizeMonitor{display:none;}.width50{width:50px;}.width60{width:60px;}.width70{width:70px;}.width80{width:80px;}.width90{width:90px;}.width100{width:100px;}.text-left{text-align:left;}.text-center{text-align:center;}.text-right{text-align:right;}.pre{white-space:pre;word-break:break-all;word-wrap:break-word;overflow:hidden;}.nonebutton{background:none;border:none;padding:0;margin:0;}.tooltip{position:absolute;font-size:12px;padding:5px;max-width:200px;color:#303030;background-color:ivory;border:1px solid #000;-moz-box-shadow:1px 1px 3px #000;-webkit-box-shadow:3px 3px 3px #aaa;z-index:100000;}
-.grid-table .accountlock{padding:0 4px 0 24px;background-image:url(../../images/common/icon/etc/accountlock.gif?build31910);background-position:center;background-repeat:no-repeat;}.grid-table .folder{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/folder_close20.gif?build31910);background-position:left center;background-repeat:no-repeat;}.grid-table .file{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/doc20.gif?build31910);background-position:left center;background-repeat:no-repeat;}.grid-table .msearch{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/msearch20.gif?build31910);background-position:left center;background-repeat:no-repeat;}.grid-table .check{padding:0 4px 0 24px;background-image:url(../../images/common/icon/action/checked_action.gif?build31910);background-position:center center;background-repeat:no-repeat;}.grid-table .check_disabled{padding:0 4px 0 24px;background-image:url(../../images/common/icon/action/check_disabled.gif?build31910);background-position:center center;background-repeat:no-repeat;}.grid-table .check_required{padding:0 4px 0 24px;background-image:url(../../images/common/icon/action/check_required.gif?build31910);background-position:center center;background-repeat:no-repeat;}.grid-table .go-sign{border-style:solid;border-width:0 1px 0 0;border-color:#aaa;white-space:pre;word-break:keep-all;overflow:hidden;padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/go-sign20.gif?build31910);background-position:left center;background-repeat:no-repeat;}.grid-table .stop-sign{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/stop-sign20.gif?build31910);background-position:left center;background-repeat:no-repeat;}.grid-table .selected{padding:0 4px 0 24px;background-image:url(../../images/common/icon/action/checked_action.gif?build31910);background-position:left center;background-repeat:no-repeat;}.grid-table .message-notopen{padding:0 4px 0 24px;background-image:url(../../images/common/icon/etc/mail_unread.gif?build31910);background-position:center center;background-repeat:no-repeat;}.grid-table .search{padding:0 4px 0 24px;background-image:url(../../images/common/icon/action/search.gif?build31910);background-position:left center;background-repeat:no-repeat;}.grid-table .search{padding:0 4px 0 24px;background-image:url(../../images/common/icon/action/search.gif?build31910);background-position:left center;background-repeat:no-repeat;}.grid-table .unread{padding:0 4px 0 24px;background-image:url(../../images/common/icon/etc/mail_unread.gif?build31910);background-position:center 2px;background-repeat:no-repeat;}.grid-table .read{padding:0 4px 0 24px;background-image:url(../../images/common/icon/etc/mail_read.gif?build31910);background-position:center center;background-repeat:no-repeat;}.grid-table .loading{padding:0 4px 0 24px;background-image:url(../../images/common/icon/etc/loading.gif?build31910);background-position:left center;background-repeat:no-repeat;}.grid-table .addon{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -7px;background-repeat:no-repeat;}.grid-table .addon_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -5px;background-repeat:no-repeat;}.grid-table .allunit{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -37px;background-repeat:no-repeat;}.grid-table .allunit_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -35px;background-repeat:no-repeat;}.grid-table .anyone{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -67px;background-repeat:no-repeat;}.grid-table .anyone_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -65px;background-repeat:no-repeat;}.grid-table .applyunit{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -97px;background-repeat:no-repeat;}.grid-table .applyunit_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -95px;background-repeat:no-repeat;}.grid-table .archive{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -127px;background-repeat:no-repeat;}.grid-table .archive_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -125px;background-repeat:no-repeat;}.grid-table .archived_form{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -157px;background-repeat:no-repeat;}.grid-table .archived_form_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -155px;background-repeat:no-repeat;}.grid-table .asb_sa{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -187px;background-repeat:no-repeat;}.grid-table .asb_sa_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -185px;background-repeat:no-repeat;}.grid-table .attachment{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -217px;background-repeat:no-repeat;}.grid-table .attachment_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -215px;background-repeat:no-repeat;}.grid-table .bricklet{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -247px;background-repeat:no-repeat;}.grid-table .bricklet_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -245px;background-repeat:no-repeat;}.grid-table .bricklet_association{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -277px;background-repeat:no-repeat;}.grid-table .bricklet_association_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -275px;background-repeat:no-repeat;}.grid-table .calendar{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -307px;background-repeat:no-repeat;}.grid-table .calendar_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -305px;background-repeat:no-repeat;}.grid-table .childonly{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -337px;background-repeat:no-repeat;}.grid-table .childonly_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -335px;background-repeat:no-repeat;}.grid-table .comment{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -367px;background-repeat:no-repeat;}.grid-table .comment_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -365px;background-repeat:no-repeat;}.grid-table .component_mwin{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -397px;background-repeat:no-repeat;}.grid-table .component_mwin_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -395px;background-repeat:no-repeat;}.grid-table .currentdoc{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -427px;background-repeat:no-repeat;}.grid-table .currentdoc_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -425px;background-repeat:no-repeat;}.grid-table .currentsheet{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -457px;background-repeat:no-repeat;}.grid-table .currentsheet_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -455px;background-repeat:no-repeat;}.grid-table .customer{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -487px;background-repeat:no-repeat;}.grid-table .customer_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -485px;background-repeat:no-repeat;}.grid-table .datasource{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -517px;background-repeat:no-repeat;}.grid-table .datasource_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -515px;background-repeat:no-repeat;}.grid-table .delete{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -547px;background-repeat:no-repeat;}.grid-table .delete_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -545px;background-repeat:no-repeat;}.grid-table .doc{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -577px;background-repeat:no-repeat;}.grid-table .doc_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -575px;background-repeat:no-repeat;}.grid-table .esb{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -607px;background-repeat:no-repeat;}.grid-table .esb_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -605px;background-repeat:no-repeat;}.grid-table .esb_serverconf{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -637px;background-repeat:no-repeat;}.grid-table .esb_serverconf_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -635px;background-repeat:no-repeat;}.grid-table .extlib{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -667px;background-repeat:no-repeat;}.grid-table .extlib_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -665px;background-repeat:no-repeat;}.grid-table .folder{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -697px;background-repeat:no-repeat;}.grid-table .folder_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -695px;background-repeat:no-repeat;}.grid-table .folder_close{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -727px;background-repeat:no-repeat;}.grid-table .folder_close_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -725px;background-repeat:no-repeat;}.grid-table .folder_current{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -757px;background-repeat:no-repeat;}.grid-table .folder_current_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -755px;background-repeat:no-repeat;}.grid-table .folder_open{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -787px;background-repeat:no-repeat;}.grid-table .folder_open_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -785px;background-repeat:no-repeat;}.grid-table .form{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -817px;background-repeat:no-repeat;}.grid-table .form_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -815px;background-repeat:no-repeat;}.grid-table .gadget{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -847px;background-repeat:no-repeat;}.grid-table .gadget_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -845px;background-repeat:no-repeat;}.grid-table .general{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -877px;background-repeat:no-repeat;}.grid-table .general_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -875px;background-repeat:no-repeat;}.grid-table .go-sign{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -907px;background-repeat:no-repeat;}.grid-table .go-sign_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -905px;background-repeat:no-repeat;}.grid-table .help{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -937px;background-repeat:no-repeat;}.grid-table .help_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -935px;background-repeat:no-repeat;}.grid-table .information{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -967px;background-repeat:no-repeat;}.grid-table .information_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -965px;background-repeat:no-repeat;}.grid-table .jar{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -997px;background-repeat:no-repeat;}.grid-table .jar_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -995px;background-repeat:no-repeat;}.grid-table .job{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1027px;background-repeat:no-repeat;}.grid-table .job_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -1025px;background-repeat:no-repeat;}.grid-table .jobconf{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1057px;background-repeat:no-repeat;}.grid-table .jobconf_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -1055px;background-repeat:no-repeat;}.grid-table .master_doc{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1087px;background-repeat:no-repeat;}.grid-table .master_doc_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -1085px;background-repeat:no-repeat;}.grid-table .master_table{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1117px;background-repeat:no-repeat;}.grid-table .master_table_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -1115px;background-repeat:no-repeat;}.grid-table .master_view{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1147px;background-repeat:no-repeat;}.grid-table .master_view_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -1145px;background-repeat:no-repeat;}.grid-table .moveleft{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1177px;background-repeat:no-repeat;}.grid-table .moveleft_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -1175px;background-repeat:no-repeat;}.grid-table .moveright{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1207px;background-repeat:no-repeat;}.grid-table .moveright_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -1205px;background-repeat:no-repeat;}.grid-table .mwin{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1237px;background-repeat:no-repeat;}.grid-table .mwin_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -1235px;background-repeat:no-repeat;}.grid-table .noticebox{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1267px;background-repeat:no-repeat;}.grid-table .noticebox_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -1265px;background-repeat:no-repeat;}.grid-table .notice_comment{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1297px;background-repeat:no-repeat;}.grid-table .notice_comment_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -1295px;background-repeat:no-repeat;}.grid-table .notice_message{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1327px;background-repeat:no-repeat;}.grid-table .notice_message_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -1325px;background-repeat:no-repeat;}.grid-table .notice_proxy{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1357px;background-repeat:no-repeat;}.grid-table .notice_proxy_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -1355px;background-repeat:no-repeat;}.grid-table .notice_todo{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1387px;background-repeat:no-repeat;}.grid-table .notice_todo_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -1385px;background-repeat:no-repeat;}.grid-table .notifyfilter{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1417px;background-repeat:no-repeat;}.grid-table .notifyfilter_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -1415px;background-repeat:no-repeat;}.grid-table .numbering{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1447px;background-repeat:no-repeat;}.grid-table .numbering_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -1445px;background-repeat:no-repeat;}.grid-table .parentchild{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1477px;background-repeat:no-repeat;}.grid-table .parentchild_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -1475px;background-repeat:no-repeat;}.grid-table .parentonly{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1507px;background-repeat:no-repeat;}.grid-table .parentonly_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -1505px;background-repeat:no-repeat;}.grid-table .private_group{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1537px;background-repeat:no-repeat;}.grid-table .private_group_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -1535px;background-repeat:no-repeat;}.grid-table .private_group_current{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1567px;background-repeat:no-repeat;}.grid-table .private_group_current_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -1565px;background-repeat:no-repeat;}.grid-table .private_role{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1597px;background-repeat:no-repeat;}.grid-table .private_role_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -1595px;background-repeat:no-repeat;}.grid-table .private_root{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1627px;background-repeat:no-repeat;}.grid-table .private_root_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -1625px;background-repeat:no-repeat;}.grid-table .project{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1657px;background-repeat:no-repeat;}.grid-table .project_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -1655px;background-repeat:no-repeat;}.grid-table .project_close{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1687px;background-repeat:no-repeat;}.grid-table .project_close_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -1685px;background-repeat:no-repeat;}.grid-table .project_current{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1717px;background-repeat:no-repeat;}.grid-table .project_current_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -1715px;background-repeat:no-repeat;}.grid-table .project_open{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1747px;background-repeat:no-repeat;}.grid-table .project_open_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -1745px;background-repeat:no-repeat;}.grid-table .pubfolder{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1777px;background-repeat:no-repeat;}.grid-table .pubfolder_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -1775px;background-repeat:no-repeat;}.grid-table .pubfolder_accessible{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1807px;background-repeat:no-repeat;}.grid-table .pubfolder_accessible_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -1805px;background-repeat:no-repeat;}.grid-table .pubfolder_accessible_close{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1837px;background-repeat:no-repeat;}.grid-table .pubfolder_accessible_close_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -1835px;background-repeat:no-repeat;}.grid-table .pubfolder_accessible_current{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1867px;background-repeat:no-repeat;}.grid-table .pubfolder_accessible_current_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -1865px;background-repeat:no-repeat;}.grid-table .pubfolder_accessible_open{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1897px;background-repeat:no-repeat;}.grid-table .pubfolder_accessible_open_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -1895px;background-repeat:no-repeat;}.grid-table .pubfolder_apply_node{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1927px;background-repeat:no-repeat;}.grid-table .pubfolder_apply_node_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -1925px;background-repeat:no-repeat;}.grid-table .pubfolder_apply_node_current{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1957px;background-repeat:no-repeat;}.grid-table .pubfolder_apply_node_current_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -1955px;background-repeat:no-repeat;}.grid-table .pubfolder_apply_root{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1987px;background-repeat:no-repeat;}.grid-table .pubfolder_apply_root_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -1985px;background-repeat:no-repeat;}.grid-table .pubfolder_apply_root_current{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2017px;background-repeat:no-repeat;}.grid-table .pubfolder_apply_root_current_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -2015px;background-repeat:no-repeat;}.grid-table .pubfolder_close{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2047px;background-repeat:no-repeat;}.grid-table .pubfolder_close_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -2045px;background-repeat:no-repeat;}.grid-table .pubfolder_current{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2077px;background-repeat:no-repeat;}.grid-table .pubfolder_current_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -2075px;background-repeat:no-repeat;}.grid-table .pubfolder_formreference_node{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2107px;background-repeat:no-repeat;}.grid-table .pubfolder_formreference_node_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -2105px;background-repeat:no-repeat;}.grid-table .pubfolder_formreference_node_current{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2137px;background-repeat:no-repeat;}.grid-table .pubfolder_formreference_node_current_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -2135px;background-repeat:no-repeat;}.grid-table .pubfolder_formreference_root{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2167px;background-repeat:no-repeat;}.grid-table .pubfolder_formreference_root_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -2165px;background-repeat:no-repeat;}.grid-table .pubfolder_formreference_root_current{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2197px;background-repeat:no-repeat;}.grid-table .pubfolder_formreference_root_current_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -2195px;background-repeat:no-repeat;}.grid-table .pubfolder_open{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2227px;background-repeat:no-repeat;}.grid-table .pubfolder_open_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -2225px;background-repeat:no-repeat;}.grid-table .pubfolder_subsheet_node{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2257px;background-repeat:no-repeat;}.grid-table .pubfolder_subsheet_node_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -2255px;background-repeat:no-repeat;}.grid-table .pubfolder_subsheet_node_current{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2287px;background-repeat:no-repeat;}.grid-table .pubfolder_subsheet_node_current_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -2285px;background-repeat:no-repeat;}.grid-table .pubfolder_subsheet_root{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2317px;background-repeat:no-repeat;}.grid-table .pubfolder_subsheet_root_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -2315px;background-repeat:no-repeat;}.grid-table .pubfolder_subsheet_root_current{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2347px;background-repeat:no-repeat;}.grid-table .pubfolder_subsheet_root_current_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -2345px;background-repeat:no-repeat;}.grid-table .reference{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2377px;background-repeat:no-repeat;}.grid-table .reference_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -2375px;background-repeat:no-repeat;}.grid-table .registry{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2407px;background-repeat:no-repeat;}.grid-table .registry_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -2405px;background-repeat:no-repeat;}.grid-table .relation_form{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2437px;background-repeat:no-repeat;}.grid-table .relation_form_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -2435px;background-repeat:no-repeat;}.grid-table .rule{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2467px;background-repeat:no-repeat;}.grid-table .rule_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -2465px;background-repeat:no-repeat;}.grid-table .running{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2497px;background-repeat:no-repeat;}.grid-table .running_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -2495px;background-repeat:no-repeat;}.grid-table .section_class{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2527px;background-repeat:no-repeat;}.grid-table .section_class_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -2525px;background-repeat:no-repeat;}.grid-table .section_class_current{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2557px;background-repeat:no-repeat;}.grid-table .section_class_current_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -2555px;background-repeat:no-repeat;}.grid-table .section_class_root{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2587px;background-repeat:no-repeat;}.grid-table .section_class_root_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -2585px;background-repeat:no-repeat;}.grid-table .section_class_root_current{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2617px;background-repeat:no-repeat;}.grid-table .section_class_root_current_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -2615px;background-repeat:no-repeat;}.grid-table .section_group{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2647px;background-repeat:no-repeat;}.grid-table .section_group_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -2645px;background-repeat:no-repeat;}.grid-table .section_group_current{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2677px;background-repeat:no-repeat;}.grid-table .section_group_current_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -2675px;background-repeat:no-repeat;}.grid-table .section_role{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2707px;background-repeat:no-repeat;}.grid-table .section_role_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -2705px;background-repeat:no-repeat;}.grid-table .section_root{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2737px;background-repeat:no-repeat;}.grid-table .section_root_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -2735px;background-repeat:no-repeat;}.grid-table .security_group{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2767px;background-repeat:no-repeat;}.grid-table .security_group_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -2765px;background-repeat:no-repeat;}.grid-table .security_group_current{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2797px;background-repeat:no-repeat;}.grid-table .security_group_current_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -2795px;background-repeat:no-repeat;}.grid-table .security_role{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2827px;background-repeat:no-repeat;}.grid-table .security_role_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -2825px;background-repeat:no-repeat;}.grid-table .security_root{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2857px;background-repeat:no-repeat;}.grid-table .security_root_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -2855px;background-repeat:no-repeat;}.grid-table .sheet{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2887px;background-repeat:no-repeat;}.grid-table .sheet_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -2885px;background-repeat:no-repeat;}.grid-table .site{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2917px;background-repeat:no-repeat;}.grid-table .site_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -2915px;background-repeat:no-repeat;}.grid-table .spoofing_user{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2947px;background-repeat:no-repeat;}.grid-table .spoofing_user_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -2945px;background-repeat:no-repeat;}.grid-table .stop-sign{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2977px;background-repeat:no-repeat;}.grid-table .stop-sign_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -2975px;background-repeat:no-repeat;}.grid-table .stopping{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3007px;background-repeat:no-repeat;}.grid-table .stopping_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -3005px;background-repeat:no-repeat;}.grid-table .subsheet{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3037px;background-repeat:no-repeat;}.grid-table .subsheet_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -3035px;background-repeat:no-repeat;}.grid-table .tenant{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3067px;background-repeat:no-repeat;}.grid-table .tenant_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -3065px;background-repeat:no-repeat;}.grid-table .tenement{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3097px;background-repeat:no-repeat;}.grid-table .tenement_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -3095px;background-repeat:no-repeat;}.grid-table .unit{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3127px;background-repeat:no-repeat;}.grid-table .unit_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -3125px;background-repeat:no-repeat;}.grid-table .universal_group{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3157px;background-repeat:no-repeat;}.grid-table .universal_group_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -3155px;background-repeat:no-repeat;}.grid-table .universal_group_current{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3187px;background-repeat:no-repeat;}.grid-table .universal_group_current_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -3185px;background-repeat:no-repeat;}.grid-table .universal_role{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3217px;background-repeat:no-repeat;}.grid-table .universal_role_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -3215px;background-repeat:no-repeat;}.grid-table .universal_root{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3247px;background-repeat:no-repeat;}.grid-table .universal_root_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -3245px;background-repeat:no-repeat;}.grid-table .url{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3277px;background-repeat:no-repeat;}.grid-table .url_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -3275px;background-repeat:no-repeat;}.grid-table .user{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3307px;background-repeat:no-repeat;}.grid-table .user_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -3305px;background-repeat:no-repeat;}.grid-table .warning{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3337px;background-repeat:no-repeat;}.grid-table .warning_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -3335px;background-repeat:no-repeat;}.grid-table .window{padding:0 4px 0 24px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3367px;background-repeat:no-repeat;}.grid-table .window_center{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:center -3365px;background-repeat:no-repeat;}
-.help-title{padding:15px 5px 15px 35px;font-weight:bold;font-size:132%;background-image:url('../../images/common/icon/etc/help30.gif?build31910');background-position:left center;background-repeat:no-repeat;background-color:#fff;color:#2E6AA5;}.help-content{padding:5px;font-weight:normal;}
-.menubar .menuitem.addon{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -5px;background-repeat:no-repeat;}.menubar .submenu .menuitem.addon{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -8px;background-repeat:no-repeat;}.menubar .menuitem.allunit{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -35px;background-repeat:no-repeat;}.menubar .submenu .menuitem.allunit{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -38px;background-repeat:no-repeat;}.menubar .menuitem.anyone{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -65px;background-repeat:no-repeat;}.menubar .submenu .menuitem.anyone{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -68px;background-repeat:no-repeat;}.menubar .menuitem.applyunit{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -95px;background-repeat:no-repeat;}.menubar .submenu .menuitem.applyunit{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -98px;background-repeat:no-repeat;}.menubar .menuitem.archive{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -125px;background-repeat:no-repeat;}.menubar .submenu .menuitem.archive{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -128px;background-repeat:no-repeat;}.menubar .menuitem.archived_form{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -155px;background-repeat:no-repeat;}.menubar .submenu .menuitem.archived_form{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -158px;background-repeat:no-repeat;}.menubar .menuitem.asb_sa{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -185px;background-repeat:no-repeat;}.menubar .submenu .menuitem.asb_sa{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -188px;background-repeat:no-repeat;}.menubar .menuitem.attachment{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -215px;background-repeat:no-repeat;}.menubar .submenu .menuitem.attachment{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -218px;background-repeat:no-repeat;}.menubar .menuitem.bricklet{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -245px;background-repeat:no-repeat;}.menubar .submenu .menuitem.bricklet{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -248px;background-repeat:no-repeat;}.menubar .menuitem.bricklet_association{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -275px;background-repeat:no-repeat;}.menubar .submenu .menuitem.bricklet_association{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -278px;background-repeat:no-repeat;}.menubar .menuitem.calendar{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -305px;background-repeat:no-repeat;}.menubar .submenu .menuitem.calendar{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -308px;background-repeat:no-repeat;}.menubar .menuitem.childonly{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -335px;background-repeat:no-repeat;}.menubar .submenu .menuitem.childonly{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -338px;background-repeat:no-repeat;}.menubar .menuitem.comment{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -365px;background-repeat:no-repeat;}.menubar .submenu .menuitem.comment{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -368px;background-repeat:no-repeat;}.menubar .menuitem.component_mwin{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -395px;background-repeat:no-repeat;}.menubar .submenu .menuitem.component_mwin{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -398px;background-repeat:no-repeat;}.menubar .menuitem.currentdoc{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -425px;background-repeat:no-repeat;}.menubar .submenu .menuitem.currentdoc{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -428px;background-repeat:no-repeat;}.menubar .menuitem.currentsheet{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -455px;background-repeat:no-repeat;}.menubar .submenu .menuitem.currentsheet{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -458px;background-repeat:no-repeat;}.menubar .menuitem.customer{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -485px;background-repeat:no-repeat;}.menubar .submenu .menuitem.customer{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -488px;background-repeat:no-repeat;}.menubar .menuitem.datasource{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -515px;background-repeat:no-repeat;}.menubar .submenu .menuitem.datasource{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -518px;background-repeat:no-repeat;}.menubar .menuitem.delete{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -545px;background-repeat:no-repeat;}.menubar .submenu .menuitem.delete{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -548px;background-repeat:no-repeat;}.menubar .menuitem.doc{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -575px;background-repeat:no-repeat;}.menubar .submenu .menuitem.doc{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -578px;background-repeat:no-repeat;}.menubar .menuitem.esb{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -605px;background-repeat:no-repeat;}.menubar .submenu .menuitem.esb{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -608px;background-repeat:no-repeat;}.menubar .menuitem.esb_serverconf{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -635px;background-repeat:no-repeat;}.menubar .submenu .menuitem.esb_serverconf{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -638px;background-repeat:no-repeat;}.menubar .menuitem.extlib{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -665px;background-repeat:no-repeat;}.menubar .submenu .menuitem.extlib{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -668px;background-repeat:no-repeat;}.menubar .menuitem.folder{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -695px;background-repeat:no-repeat;}.menubar .submenu .menuitem.folder{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -698px;background-repeat:no-repeat;}.menubar .menuitem.folder_close{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -725px;background-repeat:no-repeat;}.menubar .submenu .menuitem.folder_close{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -728px;background-repeat:no-repeat;}.menubar .menuitem.folder_current{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -755px;background-repeat:no-repeat;}.menubar .submenu .menuitem.folder_current{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -758px;background-repeat:no-repeat;}.menubar .menuitem.folder_open{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -785px;background-repeat:no-repeat;}.menubar .submenu .menuitem.folder_open{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -788px;background-repeat:no-repeat;}.menubar .menuitem.form{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -815px;background-repeat:no-repeat;}.menubar .submenu .menuitem.form{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -818px;background-repeat:no-repeat;}.menubar .menuitem.gadget{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -845px;background-repeat:no-repeat;}.menubar .submenu .menuitem.gadget{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -848px;background-repeat:no-repeat;}.menubar .menuitem.general{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -875px;background-repeat:no-repeat;}.menubar .submenu .menuitem.general{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -878px;background-repeat:no-repeat;}.menubar .menuitem.go-sign{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -905px;background-repeat:no-repeat;}.menubar .submenu .menuitem.go-sign{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -908px;background-repeat:no-repeat;}.menubar .menuitem.help{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -935px;background-repeat:no-repeat;}.menubar .submenu .menuitem.help{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -938px;background-repeat:no-repeat;}.menubar .menuitem.information{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -965px;background-repeat:no-repeat;}.menubar .submenu .menuitem.information{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -968px;background-repeat:no-repeat;}.menubar .menuitem.jar{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -995px;background-repeat:no-repeat;}.menubar .submenu .menuitem.jar{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -998px;background-repeat:no-repeat;}.menubar .menuitem.job{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1025px;background-repeat:no-repeat;}.menubar .submenu .menuitem.job{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1028px;background-repeat:no-repeat;}.menubar .menuitem.jobconf{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1055px;background-repeat:no-repeat;}.menubar .submenu .menuitem.jobconf{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1058px;background-repeat:no-repeat;}.menubar .menuitem.master_doc{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1085px;background-repeat:no-repeat;}.menubar .submenu .menuitem.master_doc{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1088px;background-repeat:no-repeat;}.menubar .menuitem.master_table{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1115px;background-repeat:no-repeat;}.menubar .submenu .menuitem.master_table{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1118px;background-repeat:no-repeat;}.menubar .menuitem.master_view{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1145px;background-repeat:no-repeat;}.menubar .submenu .menuitem.master_view{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1148px;background-repeat:no-repeat;}.menubar .menuitem.moveleft{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1175px;background-repeat:no-repeat;}.menubar .submenu .menuitem.moveleft{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1178px;background-repeat:no-repeat;}.menubar .menuitem.moveright{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1205px;background-repeat:no-repeat;}.menubar .submenu .menuitem.moveright{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1208px;background-repeat:no-repeat;}.menubar .menuitem.mwin{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1235px;background-repeat:no-repeat;}.menubar .submenu .menuitem.mwin{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1238px;background-repeat:no-repeat;}.menubar .menuitem.noticebox{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1265px;background-repeat:no-repeat;}.menubar .submenu .menuitem.noticebox{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1268px;background-repeat:no-repeat;}.menubar .menuitem.notice_comment{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1295px;background-repeat:no-repeat;}.menubar .submenu .menuitem.notice_comment{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1298px;background-repeat:no-repeat;}.menubar .menuitem.notice_message{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1325px;background-repeat:no-repeat;}.menubar .submenu .menuitem.notice_message{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1328px;background-repeat:no-repeat;}.menubar .menuitem.notice_proxy{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1355px;background-repeat:no-repeat;}.menubar .submenu .menuitem.notice_proxy{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1358px;background-repeat:no-repeat;}.menubar .menuitem.notice_todo{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1385px;background-repeat:no-repeat;}.menubar .submenu .menuitem.notice_todo{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1388px;background-repeat:no-repeat;}.menubar .menuitem.notifyfilter{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1415px;background-repeat:no-repeat;}.menubar .submenu .menuitem.notifyfilter{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1418px;background-repeat:no-repeat;}.menubar .menuitem.numbering{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1445px;background-repeat:no-repeat;}.menubar .submenu .menuitem.numbering{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1448px;background-repeat:no-repeat;}.menubar .menuitem.parentchild{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1475px;background-repeat:no-repeat;}.menubar .submenu .menuitem.parentchild{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1478px;background-repeat:no-repeat;}.menubar .menuitem.parentonly{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1505px;background-repeat:no-repeat;}.menubar .submenu .menuitem.parentonly{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1508px;background-repeat:no-repeat;}.menubar .menuitem.private_group{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1535px;background-repeat:no-repeat;}.menubar .submenu .menuitem.private_group{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1538px;background-repeat:no-repeat;}.menubar .menuitem.private_group_current{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1565px;background-repeat:no-repeat;}.menubar .submenu .menuitem.private_group_current{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1568px;background-repeat:no-repeat;}.menubar .menuitem.private_role{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1595px;background-repeat:no-repeat;}.menubar .submenu .menuitem.private_role{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1598px;background-repeat:no-repeat;}.menubar .menuitem.private_root{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1625px;background-repeat:no-repeat;}.menubar .submenu .menuitem.private_root{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1628px;background-repeat:no-repeat;}.menubar .menuitem.project{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1655px;background-repeat:no-repeat;}.menubar .submenu .menuitem.project{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1658px;background-repeat:no-repeat;}.menubar .menuitem.project_close{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1685px;background-repeat:no-repeat;}.menubar .submenu .menuitem.project_close{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1688px;background-repeat:no-repeat;}.menubar .menuitem.project_current{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1715px;background-repeat:no-repeat;}.menubar .submenu .menuitem.project_current{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1718px;background-repeat:no-repeat;}.menubar .menuitem.project_open{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1745px;background-repeat:no-repeat;}.menubar .submenu .menuitem.project_open{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1748px;background-repeat:no-repeat;}.menubar .menuitem.pubfolder{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1775px;background-repeat:no-repeat;}.menubar .submenu .menuitem.pubfolder{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1778px;background-repeat:no-repeat;}.menubar .menuitem.pubfolder_accessible{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1805px;background-repeat:no-repeat;}.menubar .submenu .menuitem.pubfolder_accessible{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1808px;background-repeat:no-repeat;}.menubar .menuitem.pubfolder_accessible_close{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1835px;background-repeat:no-repeat;}.menubar .submenu .menuitem.pubfolder_accessible_close{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1838px;background-repeat:no-repeat;}.menubar .menuitem.pubfolder_accessible_current{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1865px;background-repeat:no-repeat;}.menubar .submenu .menuitem.pubfolder_accessible_current{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1868px;background-repeat:no-repeat;}.menubar .menuitem.pubfolder_accessible_open{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1895px;background-repeat:no-repeat;}.menubar .submenu .menuitem.pubfolder_accessible_open{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1898px;background-repeat:no-repeat;}.menubar .menuitem.pubfolder_apply_node{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1925px;background-repeat:no-repeat;}.menubar .submenu .menuitem.pubfolder_apply_node{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1928px;background-repeat:no-repeat;}.menubar .menuitem.pubfolder_apply_node_current{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1955px;background-repeat:no-repeat;}.menubar .submenu .menuitem.pubfolder_apply_node_current{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1958px;background-repeat:no-repeat;}.menubar .menuitem.pubfolder_apply_root{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1985px;background-repeat:no-repeat;}.menubar .submenu .menuitem.pubfolder_apply_root{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1988px;background-repeat:no-repeat;}.menubar .menuitem.pubfolder_apply_root_current{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2015px;background-repeat:no-repeat;}.menubar .submenu .menuitem.pubfolder_apply_root_current{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2018px;background-repeat:no-repeat;}.menubar .menuitem.pubfolder_close{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2045px;background-repeat:no-repeat;}.menubar .submenu .menuitem.pubfolder_close{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2048px;background-repeat:no-repeat;}.menubar .menuitem.pubfolder_current{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2075px;background-repeat:no-repeat;}.menubar .submenu .menuitem.pubfolder_current{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2078px;background-repeat:no-repeat;}.menubar .menuitem.pubfolder_formreference_node{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2105px;background-repeat:no-repeat;}.menubar .submenu .menuitem.pubfolder_formreference_node{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2108px;background-repeat:no-repeat;}.menubar .menuitem.pubfolder_formreference_node_current{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2135px;background-repeat:no-repeat;}.menubar .submenu .menuitem.pubfolder_formreference_node_current{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2138px;background-repeat:no-repeat;}.menubar .menuitem.pubfolder_formreference_root{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2165px;background-repeat:no-repeat;}.menubar .submenu .menuitem.pubfolder_formreference_root{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2168px;background-repeat:no-repeat;}.menubar .menuitem.pubfolder_formreference_root_current{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2195px;background-repeat:no-repeat;}.menubar .submenu .menuitem.pubfolder_formreference_root_current{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2198px;background-repeat:no-repeat;}.menubar .menuitem.pubfolder_open{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2225px;background-repeat:no-repeat;}.menubar .submenu .menuitem.pubfolder_open{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2228px;background-repeat:no-repeat;}.menubar .menuitem.pubfolder_subsheet_node{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2255px;background-repeat:no-repeat;}.menubar .submenu .menuitem.pubfolder_subsheet_node{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2258px;background-repeat:no-repeat;}.menubar .menuitem.pubfolder_subsheet_node_current{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2285px;background-repeat:no-repeat;}.menubar .submenu .menuitem.pubfolder_subsheet_node_current{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2288px;background-repeat:no-repeat;}.menubar .menuitem.pubfolder_subsheet_root{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2315px;background-repeat:no-repeat;}.menubar .submenu .menuitem.pubfolder_subsheet_root{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2318px;background-repeat:no-repeat;}.menubar .menuitem.pubfolder_subsheet_root_current{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2345px;background-repeat:no-repeat;}.menubar .submenu .menuitem.pubfolder_subsheet_root_current{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2348px;background-repeat:no-repeat;}.menubar .menuitem.reference{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2375px;background-repeat:no-repeat;}.menubar .submenu .menuitem.reference{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2378px;background-repeat:no-repeat;}.menubar .menuitem.registry{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2405px;background-repeat:no-repeat;}.menubar .submenu .menuitem.registry{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2408px;background-repeat:no-repeat;}.menubar .menuitem.relation_form{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2435px;background-repeat:no-repeat;}.menubar .submenu .menuitem.relation_form{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2438px;background-repeat:no-repeat;}.menubar .menuitem.rule{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2465px;background-repeat:no-repeat;}.menubar .submenu .menuitem.rule{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2468px;background-repeat:no-repeat;}.menubar .menuitem.running{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2495px;background-repeat:no-repeat;}.menubar .submenu .menuitem.running{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2498px;background-repeat:no-repeat;}.menubar .menuitem.section_class{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2525px;background-repeat:no-repeat;}.menubar .submenu .menuitem.section_class{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2528px;background-repeat:no-repeat;}.menubar .menuitem.section_class_current{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2555px;background-repeat:no-repeat;}.menubar .submenu .menuitem.section_class_current{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2558px;background-repeat:no-repeat;}.menubar .menuitem.section_class_root{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2585px;background-repeat:no-repeat;}.menubar .submenu .menuitem.section_class_root{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2588px;background-repeat:no-repeat;}.menubar .menuitem.section_class_root_current{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2615px;background-repeat:no-repeat;}.menubar .submenu .menuitem.section_class_root_current{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2618px;background-repeat:no-repeat;}.menubar .menuitem.section_group{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2645px;background-repeat:no-repeat;}.menubar .submenu .menuitem.section_group{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2648px;background-repeat:no-repeat;}.menubar .menuitem.section_group_current{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2675px;background-repeat:no-repeat;}.menubar .submenu .menuitem.section_group_current{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2678px;background-repeat:no-repeat;}.menubar .menuitem.section_role{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2705px;background-repeat:no-repeat;}.menubar .submenu .menuitem.section_role{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2708px;background-repeat:no-repeat;}.menubar .menuitem.section_root{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2735px;background-repeat:no-repeat;}.menubar .submenu .menuitem.section_root{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2738px;background-repeat:no-repeat;}.menubar .menuitem.security_group{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2765px;background-repeat:no-repeat;}.menubar .submenu .menuitem.security_group{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2768px;background-repeat:no-repeat;}.menubar .menuitem.security_group_current{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2795px;background-repeat:no-repeat;}.menubar .submenu .menuitem.security_group_current{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2798px;background-repeat:no-repeat;}.menubar .menuitem.security_role{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2825px;background-repeat:no-repeat;}.menubar .submenu .menuitem.security_role{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2828px;background-repeat:no-repeat;}.menubar .menuitem.security_root{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2855px;background-repeat:no-repeat;}.menubar .submenu .menuitem.security_root{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2858px;background-repeat:no-repeat;}.menubar .menuitem.sheet{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2885px;background-repeat:no-repeat;}.menubar .submenu .menuitem.sheet{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2888px;background-repeat:no-repeat;}.menubar .menuitem.site{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2915px;background-repeat:no-repeat;}.menubar .submenu .menuitem.site{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2918px;background-repeat:no-repeat;}.menubar .menuitem.spoofing_user{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2945px;background-repeat:no-repeat;}.menubar .submenu .menuitem.spoofing_user{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2948px;background-repeat:no-repeat;}.menubar .menuitem.stop-sign{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2975px;background-repeat:no-repeat;}.menubar .submenu .menuitem.stop-sign{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2978px;background-repeat:no-repeat;}.menubar .menuitem.stopping{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3005px;background-repeat:no-repeat;}.menubar .submenu .menuitem.stopping{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3008px;background-repeat:no-repeat;}.menubar .menuitem.subsheet{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3035px;background-repeat:no-repeat;}.menubar .submenu .menuitem.subsheet{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3038px;background-repeat:no-repeat;}.menubar .menuitem.tenant{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3065px;background-repeat:no-repeat;}.menubar .submenu .menuitem.tenant{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3068px;background-repeat:no-repeat;}.menubar .menuitem.tenement{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3095px;background-repeat:no-repeat;}.menubar .submenu .menuitem.tenement{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3098px;background-repeat:no-repeat;}.menubar .menuitem.unit{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3125px;background-repeat:no-repeat;}.menubar .submenu .menuitem.unit{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3128px;background-repeat:no-repeat;}.menubar .menuitem.universal_group{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3155px;background-repeat:no-repeat;}.menubar .submenu .menuitem.universal_group{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3158px;background-repeat:no-repeat;}.menubar .menuitem.universal_group_current{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3185px;background-repeat:no-repeat;}.menubar .submenu .menuitem.universal_group_current{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3188px;background-repeat:no-repeat;}.menubar .menuitem.universal_role{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3215px;background-repeat:no-repeat;}.menubar .submenu .menuitem.universal_role{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3218px;background-repeat:no-repeat;}.menubar .menuitem.universal_root{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3245px;background-repeat:no-repeat;}.menubar .submenu .menuitem.universal_root{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3248px;background-repeat:no-repeat;}.menubar .menuitem.url{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3275px;background-repeat:no-repeat;}.menubar .submenu .menuitem.url{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3278px;background-repeat:no-repeat;}.menubar .menuitem.user{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3305px;background-repeat:no-repeat;}.menubar .submenu .menuitem.user{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3308px;background-repeat:no-repeat;}.menubar .menuitem.warning{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3335px;background-repeat:no-repeat;}.menubar .submenu .menuitem.warning{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3338px;background-repeat:no-repeat;}.menubar .menuitem.window{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3365px;background-repeat:no-repeat;}.menubar .submenu .menuitem.window{background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3368px;background-repeat:no-repeat;}.menubar .menuitem.abort{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -5px;background-repeat:no-repeat;}.menubar .submenu .menuitem.abort{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -8px;background-repeat:no-repeat;}.menubar .menuitem.add_down{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -35px;background-repeat:no-repeat;}.menubar .submenu .menuitem.add_down{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -38px;background-repeat:no-repeat;}.menubar .menuitem.add_effect{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -65px;background-repeat:no-repeat;}.menubar .submenu .menuitem.add_effect{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -68px;background-repeat:no-repeat;}.menubar .menuitem.allsheetandtrailprint{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -95px;background-repeat:no-repeat;}.menubar .submenu .menuitem.allsheetandtrailprint{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -98px;background-repeat:no-repeat;}.menubar .menuitem.allsheetprint{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -125px;background-repeat:no-repeat;}.menubar .submenu .menuitem.allsheetprint{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -128px;background-repeat:no-repeat;}.menubar .menuitem.apply{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -155px;background-repeat:no-repeat;}.menubar .submenu .menuitem.apply{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -158px;background-repeat:no-repeat;}.menubar .menuitem.approve{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -185px;background-repeat:no-repeat;}.menubar .submenu .menuitem.approve{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -188px;background-repeat:no-repeat;}.menubar .menuitem.approve_withcomment{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -215px;background-repeat:no-repeat;}.menubar .submenu .menuitem.approve_withcomment{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -218px;background-repeat:no-repeat;}.menubar .menuitem.batchdelete{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -245px;background-repeat:no-repeat;}.menubar .submenu .menuitem.batchdelete{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -248px;background-repeat:no-repeat;}.menubar .menuitem.cancel{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -275px;background-repeat:no-repeat;}.menubar .submenu .menuitem.cancel{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -278px;background-repeat:no-repeat;}.menubar .menuitem.changedate{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -305px;background-repeat:no-repeat;}.menubar .submenu .menuitem.changedate{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -308px;background-repeat:no-repeat;}.menubar .menuitem.check{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -335px;background-repeat:no-repeat;}.menubar .submenu .menuitem.check{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -338px;background-repeat:no-repeat;}.menubar .menuitem.checked_action{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -365px;background-repeat:no-repeat;}.menubar .submenu .menuitem.checked_action{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -368px;background-repeat:no-repeat;}.menubar .menuitem.check_disabled{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -395px;background-repeat:no-repeat;}.menubar .submenu .menuitem.check_disabled{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -398px;background-repeat:no-repeat;}.menubar .menuitem.check_required{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -425px;background-repeat:no-repeat;}.menubar .submenu .menuitem.check_required{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -428px;background-repeat:no-repeat;}.menubar .menuitem.close{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -455px;background-repeat:no-repeat;}.menubar .submenu .menuitem.close{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -458px;background-repeat:no-repeat;}.menubar .menuitem.config{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -485px;background-repeat:no-repeat;}.menubar .submenu .menuitem.config{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -488px;background-repeat:no-repeat;}.menubar .menuitem.confirm{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -515px;background-repeat:no-repeat;}.menubar .submenu .menuitem.confirm{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -518px;background-repeat:no-repeat;}.menubar .menuitem.copy{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -545px;background-repeat:no-repeat;}.menubar .submenu .menuitem.copy{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -548px;background-repeat:no-repeat;}.menubar .menuitem.copynew{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -575px;background-repeat:no-repeat;}.menubar .submenu .menuitem.copynew{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -578px;background-repeat:no-repeat;}.menubar .menuitem.custom{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -605px;background-repeat:no-repeat;}.menubar .submenu .menuitem.custom{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -608px;background-repeat:no-repeat;}.menubar .menuitem.cut{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -635px;background-repeat:no-repeat;}.menubar .submenu .menuitem.cut{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -638px;background-repeat:no-repeat;}.menubar .menuitem.decline{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -665px;background-repeat:no-repeat;}.menubar .submenu .menuitem.decline{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -668px;background-repeat:no-repeat;}.menubar .menuitem.delete{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -695px;background-repeat:no-repeat;}.menubar .submenu .menuitem.delete{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -698px;background-repeat:no-repeat;}.menubar .menuitem.deleterecord{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -725px;background-repeat:no-repeat;}.menubar .submenu .menuitem.deleterecord{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -728px;background-repeat:no-repeat;}.menubar .menuitem.delete_effect{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -755px;background-repeat:no-repeat;}.menubar .submenu .menuitem.delete_effect{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -758px;background-repeat:no-repeat;}.menubar .menuitem.disable{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -785px;background-repeat:no-repeat;}.menubar .submenu .menuitem.disable{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -788px;background-repeat:no-repeat;}.menubar .menuitem.draft{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -815px;background-repeat:no-repeat;}.menubar .submenu .menuitem.draft{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -818px;background-repeat:no-repeat;}.menubar .menuitem.edit{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -845px;background-repeat:no-repeat;}.menubar .submenu .menuitem.edit{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -848px;background-repeat:no-repeat;}.menubar .menuitem.enable{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -875px;background-repeat:no-repeat;}.menubar .submenu .menuitem.enable{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -878px;background-repeat:no-repeat;}.menubar .menuitem.exec{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -905px;background-repeat:no-repeat;}.menubar .submenu .menuitem.exec{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -908px;background-repeat:no-repeat;}.menubar .menuitem.export{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -935px;background-repeat:no-repeat;}.menubar .submenu .menuitem.export{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -938px;background-repeat:no-repeat;}.menubar .menuitem.folder_up{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -965px;background-repeat:no-repeat;}.menubar .submenu .menuitem.folder_up{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -968px;background-repeat:no-repeat;}.menubar .menuitem.formpreview{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -995px;background-repeat:no-repeat;}.menubar .submenu .menuitem.formpreview{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -998px;background-repeat:no-repeat;}.menubar .menuitem.formupload{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -1025px;background-repeat:no-repeat;}.menubar .submenu .menuitem.formupload{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -1028px;background-repeat:no-repeat;}.menubar .menuitem.import{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -1055px;background-repeat:no-repeat;}.menubar .submenu .menuitem.import{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -1058px;background-repeat:no-repeat;}.menubar .menuitem.insertrecord{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -1085px;background-repeat:no-repeat;}.menubar .submenu .menuitem.insertrecord{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -1088px;background-repeat:no-repeat;}.menubar .menuitem.list{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -1115px;background-repeat:no-repeat;}.menubar .submenu .menuitem.list{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -1118px;background-repeat:no-repeat;}.menubar .menuitem.login{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -1145px;background-repeat:no-repeat;}.menubar .submenu .menuitem.login{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -1148px;background-repeat:no-repeat;}.menubar .menuitem.maximize{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -1175px;background-repeat:no-repeat;}.menubar .submenu .menuitem.maximize{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -1178px;background-repeat:no-repeat;}.menubar .menuitem.minimize{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -1205px;background-repeat:no-repeat;}.menubar .submenu .menuitem.minimize{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -1208px;background-repeat:no-repeat;}.menubar .menuitem.minus{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -1235px;background-repeat:no-repeat;}.menubar .submenu .menuitem.minus{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -1238px;background-repeat:no-repeat;}.menubar .menuitem.moveleft{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -1265px;background-repeat:no-repeat;}.menubar .submenu .menuitem.moveleft{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -1268px;background-repeat:no-repeat;}.menubar .menuitem.moveleft2{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -1295px;background-repeat:no-repeat;}.menubar .submenu .menuitem.moveleft2{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -1298px;background-repeat:no-repeat;}.menubar .menuitem.moveleft2_disabled{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -1325px;background-repeat:no-repeat;}.menubar .submenu .menuitem.moveleft2_disabled{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -1328px;background-repeat:no-repeat;}.menubar .menuitem.moveleft_disabled{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -1355px;background-repeat:no-repeat;}.menubar .submenu .menuitem.moveleft_disabled{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -1358px;background-repeat:no-repeat;}.menubar .menuitem.moveright{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -1385px;background-repeat:no-repeat;}.menubar .submenu .menuitem.moveright{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -1388px;background-repeat:no-repeat;}.menubar .menuitem.moveright2{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -1415px;background-repeat:no-repeat;}.menubar .submenu .menuitem.moveright2{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -1418px;background-repeat:no-repeat;}.menubar .menuitem.moveright2_disabled{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -1445px;background-repeat:no-repeat;}.menubar .submenu .menuitem.moveright2_disabled{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -1448px;background-repeat:no-repeat;}.menubar .menuitem.moveright_disabled{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -1475px;background-repeat:no-repeat;}.menubar .submenu .menuitem.moveright_disabled{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -1478px;background-repeat:no-repeat;}.menubar .menuitem.moveup{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -1505px;background-repeat:no-repeat;}.menubar .submenu .menuitem.moveup{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -1508px;background-repeat:no-repeat;}.menubar .menuitem.multiprint{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -1535px;background-repeat:no-repeat;}.menubar .submenu .menuitem.multiprint{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -1538px;background-repeat:no-repeat;}.menubar .menuitem.new{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -1565px;background-repeat:no-repeat;}.menubar .submenu .menuitem.new{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -1568px;background-repeat:no-repeat;}.menubar .menuitem.newwindow{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -1595px;background-repeat:no-repeat;}.menubar .submenu .menuitem.newwindow{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -1598px;background-repeat:no-repeat;}.menubar .menuitem.opendoc{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -1625px;background-repeat:no-repeat;}.menubar .submenu .menuitem.opendoc{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -1628px;background-repeat:no-repeat;}.menubar .menuitem.opendoc2{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -1655px;background-repeat:no-repeat;}.menubar .submenu .menuitem.opendoc2{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -1658px;background-repeat:no-repeat;}.menubar .menuitem.opendoc3{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -1685px;background-repeat:no-repeat;}.menubar .submenu .menuitem.opendoc3{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -1688px;background-repeat:no-repeat;}.menubar .menuitem.openlayer{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -1715px;background-repeat:no-repeat;}.menubar .submenu .menuitem.openlayer{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -1718px;background-repeat:no-repeat;}.menubar .menuitem.openproperty{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -1745px;background-repeat:no-repeat;}.menubar .submenu .menuitem.openproperty{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -1748px;background-repeat:no-repeat;}.menubar .menuitem.order_bottom{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -1775px;background-repeat:no-repeat;}.menubar .submenu .menuitem.order_bottom{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -1778px;background-repeat:no-repeat;}.menubar .menuitem.order_down{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -1805px;background-repeat:no-repeat;}.menubar .submenu .menuitem.order_down{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -1808px;background-repeat:no-repeat;}.menubar .menuitem.order_down_disabled{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -1835px;background-repeat:no-repeat;}.menubar .submenu .menuitem.order_down_disabled{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -1838px;background-repeat:no-repeat;}.menubar .menuitem.order_top{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -1865px;background-repeat:no-repeat;}.menubar .submenu .menuitem.order_top{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -1868px;background-repeat:no-repeat;}.menubar .menuitem.order_up{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -1895px;background-repeat:no-repeat;}.menubar .submenu .menuitem.order_up{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -1898px;background-repeat:no-repeat;}.menubar .menuitem.order_up_disabled{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -1925px;background-repeat:no-repeat;}.menubar .submenu .menuitem.order_up_disabled{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -1928px;background-repeat:no-repeat;}.menubar .menuitem.passback{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -1955px;background-repeat:no-repeat;}.menubar .submenu .menuitem.passback{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -1958px;background-repeat:no-repeat;}.menubar .menuitem.paste{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -1985px;background-repeat:no-repeat;}.menubar .submenu .menuitem.paste{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -1988px;background-repeat:no-repeat;}.menubar .menuitem.pause{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -2015px;background-repeat:no-repeat;}.menubar .submenu .menuitem.pause{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -2018px;background-repeat:no-repeat;}.menubar .menuitem.pdf{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -2045px;background-repeat:no-repeat;}.menubar .submenu .menuitem.pdf{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -2048px;background-repeat:no-repeat;}.menubar .menuitem.plus{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -2075px;background-repeat:no-repeat;}.menubar .submenu .menuitem.plus{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -2078px;background-repeat:no-repeat;}.menubar .menuitem.preparation{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -2105px;background-repeat:no-repeat;}.menubar .submenu .menuitem.preparation{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -2108px;background-repeat:no-repeat;}.menubar .menuitem.preview{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -2135px;background-repeat:no-repeat;}.menubar .submenu .menuitem.preview{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -2138px;background-repeat:no-repeat;}.menubar .menuitem.print{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -2165px;background-repeat:no-repeat;}.menubar .submenu .menuitem.print{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -2168px;background-repeat:no-repeat;}.menubar .menuitem.read{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -2195px;background-repeat:no-repeat;}.menubar .submenu .menuitem.read{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -2198px;background-repeat:no-repeat;}.menubar .menuitem.reload{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -2225px;background-repeat:no-repeat;}.menubar .submenu .menuitem.reload{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -2228px;background-repeat:no-repeat;}.menubar .menuitem.reload_disabled{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -2255px;background-repeat:no-repeat;}.menubar .submenu .menuitem.reload_disabled{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -2258px;background-repeat:no-repeat;}.menubar .menuitem.remove_up{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -2285px;background-repeat:no-repeat;}.menubar .submenu .menuitem.remove_up{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -2288px;background-repeat:no-repeat;}.menubar .menuitem.restore{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -2315px;background-repeat:no-repeat;}.menubar .submenu .menuitem.restore{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -2318px;background-repeat:no-repeat;}.menubar .menuitem.save{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -2345px;background-repeat:no-repeat;}.menubar .submenu .menuitem.save{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -2348px;background-repeat:no-repeat;}.menubar .menuitem.saveconf{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -2375px;background-repeat:no-repeat;}.menubar .submenu .menuitem.saveconf{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -2378px;background-repeat:no-repeat;}.menubar .menuitem.search{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -2405px;background-repeat:no-repeat;}.menubar .submenu .menuitem.search{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -2408px;background-repeat:no-repeat;}.menubar .menuitem.showunittranslayer{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -2435px;background-repeat:no-repeat;}.menubar .submenu .menuitem.showunittranslayer{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -2438px;background-repeat:no-repeat;}.menubar .menuitem.sortconfig{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -2465px;background-repeat:no-repeat;}.menubar .submenu .menuitem.sortconfig{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -2468px;background-repeat:no-repeat;}.menubar .menuitem.startup{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -2495px;background-repeat:no-repeat;}.menubar .submenu .menuitem.startup{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -2498px;background-repeat:no-repeat;}.menubar .menuitem.takeback{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -2525px;background-repeat:no-repeat;}.menubar .submenu .menuitem.takeback{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -2528px;background-repeat:no-repeat;}.menubar .menuitem.trailprint{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -2555px;background-repeat:no-repeat;}.menubar .submenu .menuitem.trailprint{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -2558px;background-repeat:no-repeat;}.menubar .menuitem.unchecked_action{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -2585px;background-repeat:no-repeat;}.menubar .submenu .menuitem.unchecked_action{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -2588px;background-repeat:no-repeat;}.menubar .menuitem.unit_up{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -2615px;background-repeat:no-repeat;}.menubar .submenu .menuitem.unit_up{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -2618px;background-repeat:no-repeat;}.menubar .menuitem.unread{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -2645px;background-repeat:no-repeat;}.menubar .submenu .menuitem.unread{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -2648px;background-repeat:no-repeat;}.menubar .menuitem.update_effect{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -2675px;background-repeat:no-repeat;}.menubar .submenu .menuitem.update_effect{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -2678px;background-repeat:no-repeat;}.menubar .menuitem.withdraw{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -2705px;background-repeat:no-repeat;}.menubar .submenu .menuitem.withdraw{background-image:url(../../images/common/icon/action/sprite20.gif?build34492);background-position:0 -2708px;background-repeat:no-repeat;}
-.message-header{background-color:#ddd;font-weight:bold;font-size:150%;padding:5px;}.message-body{height:500px;background-color:#fff;padding:10px;overflow:auto;}.message-header1{margin:0 0 10px 0;font-weight:bold;font-size:120%;}.message-header2{margin:0 0 10px 0;text-decoration:underline;}.message-content{margin:0 0 10px 0;}.message-table{border-style:solid;border-width:1px 0 1px 1px;border-color:#000;}.message-header-tr{height:20px;}.message-header-th{border-style:solid;border-width:0 1px 0 0;border-color:#000;background-color:#ddd;padding:2px;}.message-tr{height:20px;}.message-tr-even{height:20px;background-color:#eee;}.message-td{border-style:solid;border-width:0 1px 0 0;border-color:#000;padding:2px;}
-.ygtvtn{background-image:url(../../images/common/tree/tn.gif?build31910);background-repeat:no-repeat;width:17px;height:22px;}.ygtvtm{background-image:url(../../images/common/tree/tm.gif?build31910);background-repeat:no-repeat;width:16px;height:22px;cursor:pointer;}.ygtvtmh{background-image:url(../../images/common/tree/tmh.gif?build31910);background-repeat:no-repeat;width:16px;height:22px;cursor:pointer;}.ygtvtp{background-image:url(../../images/common/tree/tp.gif?build31910);background-repeat:no-repeat;width:16px;height:22px;cursor:pointer;}.ygtvtph{background-image:url(../../images/common/tree/tph.gif?build31910);background-repeat:no-repeat;width:16px;height:22px;cursor:pointer;}.ygtvln{background-image:url(../../images/common/tree/ln.gif?build31910);background-repeat:no-repeat;width:17px;height:22px;}.ygtvlm{background-image:url(../../images/common/tree/lm.gif?build31910);background-repeat:no-repeat;width:16px;height:22px;cursor:pointer;}.ygtvlmh{background-image:url(../../images/common/tree/lmh.gif?build31910);background-repeat:no-repeat;width:16px;height:22px;cursor:pointer;}.ygtvlp{background-image:url(../../images/common/tree/lp.gif?build31910);background-repeat:no-repeat;width:16px;height:22px;cursor:pointer;}.ygtvlph{background-image:url(../../images/common/tree/lph.gif?build31910);background-repeat:no-repeat;width:16px;height:22px;cursor:pointer;}.ygtvloading{background-image:url(../../images/common/tree/lph.gif?build31910);width:16px;height:22px;cursor:pointer;}.ygtvdepthcell{background-image:url(../../images/common/tree/vline.gif?build31910);background-repeat:no-repeat;width:17px;height:22px;}.ygtvblankdepthcell{width:17px;height:22px;}* html .ygtvchildren{height:1%;}.ygtvlabel,.ygtvlabel:link,.ygtvlabel:visited,.ygtvlabel:hover{margin-left:2px;text-decoration:none;}.ygtvspacer{width:17px;}
-.ygtvtd{padding:0;}.ygtvtd_current{background-color:#697683;border-style:solid;border-width:1px;border-color:#000;padding:0;}.ygtvitem a{word-break:keep-all;white-space:nowrap;}.ygtvitem a:link{word-break:keep-all;white-space:nowrap;}.ygtvitem a:active{word-break:keep-all;white-space:nowrap;}.ygtvitem a:visited{word-break:keep-all;white-space:nowrap;}.ygtvitem a:hover{word-break:keep-all;white-space:nowrap;}.ygtvtd a{word-break:keep-all;white-space:nowrap;}.ygtvtd a:link{word-break:keep-all;white-space:nowrap;}.ygtvtd a:active{word-break:keep-all;white-space:nowrap;}.ygtvtd a:visited{word-break:keep-all;white-space:nowrap;}.ygtvtd a:hover{word-break:keep-all;white-space:nowrap;}.ygtvtd_current a{color:#fff;word-break:keep-all;white-space:nowrap;}.ygtvtd_current a:link{color:#fff;word-break:keep-all;white-space:nowrap;}.ygtvtd_current a:active{color:#fff;word-break:keep-all;white-space:nowrap;}.ygtvtd_current a:visited{color:#fff;word-break:keep-all;white-space:nowrap;}.ygtvtd_current a:hover{color:#fff;word-break:keep-all;white-space:nowrap;}.ygtvnode_search{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/action/search.gif?build31910);background-repeat:no-repeat;}.ygtvnode_search_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/action/search.gif?build31910);background-repeat:no-repeat;}.ygtvnode_import{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/action/import.gif?build31910);background-repeat:no-repeat;}.ygtvnode_import_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/action/import.gif?build31910);background-repeat:no-repeat;}.ygtvnode_export{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/action/export.gif?build31910);background-repeat:no-repeat;}.ygtvnode_export_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/action/export.gif?build31910);background-repeat:no-repeat;}.ygtvnode_msearch{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/msearch20.gif?build31910);background-repeat:no-repeat;}.ygtvnode_msearch_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/msearch20.gif?build31910);background-repeat:no-repeat;}.ygtvnode_addon{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -10px;background-repeat:no-repeat;}.ygtvnode_addon_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -10px;background-repeat:no-repeat;}.ygtvnode_allunit{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -40px;background-repeat:no-repeat;}.ygtvnode_allunit_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -40px;background-repeat:no-repeat;}.ygtvnode_anyone{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -70px;background-repeat:no-repeat;}.ygtvnode_anyone_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -70px;background-repeat:no-repeat;}.ygtvnode_applyunit{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -100px;background-repeat:no-repeat;}.ygtvnode_applyunit_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -100px;background-repeat:no-repeat;}.ygtvnode_archive{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -130px;background-repeat:no-repeat;}.ygtvnode_archive_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -130px;background-repeat:no-repeat;}.ygtvnode_archived_form{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -160px;background-repeat:no-repeat;}.ygtvnode_archived_form_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -160px;background-repeat:no-repeat;}.ygtvnode_asb_sa{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -190px;background-repeat:no-repeat;}.ygtvnode_asb_sa_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -190px;background-repeat:no-repeat;}.ygtvnode_attachment{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -220px;background-repeat:no-repeat;}.ygtvnode_attachment_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -220px;background-repeat:no-repeat;}.ygtvnode_bricklet{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -250px;background-repeat:no-repeat;}.ygtvnode_bricklet_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -250px;background-repeat:no-repeat;}.ygtvnode_bricklet_association{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -280px;background-repeat:no-repeat;}.ygtvnode_bricklet_association_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -280px;background-repeat:no-repeat;}.ygtvnode_calendar{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -310px;background-repeat:no-repeat;}.ygtvnode_calendar_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -310px;background-repeat:no-repeat;}.ygtvnode_childonly{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -340px;background-repeat:no-repeat;}.ygtvnode_childonly_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -340px;background-repeat:no-repeat;}.ygtvnode_comment{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -370px;background-repeat:no-repeat;}.ygtvnode_comment_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -370px;background-repeat:no-repeat;}.ygtvnode_component_mwin{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -400px;background-repeat:no-repeat;}.ygtvnode_component_mwin_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -400px;background-repeat:no-repeat;}.ygtvnode_currentdoc{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -430px;background-repeat:no-repeat;}.ygtvnode_currentdoc_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -430px;background-repeat:no-repeat;}.ygtvnode_currentsheet{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -460px;background-repeat:no-repeat;}.ygtvnode_currentsheet_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -460px;background-repeat:no-repeat;}.ygtvnode_customer{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -490px;background-repeat:no-repeat;}.ygtvnode_customer_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -490px;background-repeat:no-repeat;}.ygtvnode_datasource{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -520px;background-repeat:no-repeat;}.ygtvnode_datasource_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -520px;background-repeat:no-repeat;}.ygtvnode_delete{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -550px;background-repeat:no-repeat;}.ygtvnode_delete_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -550px;background-repeat:no-repeat;}.ygtvnode_doc{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -580px;background-repeat:no-repeat;}.ygtvnode_doc_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -580px;background-repeat:no-repeat;}.ygtvnode_esb{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -610px;background-repeat:no-repeat;}.ygtvnode_esb_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -610px;background-repeat:no-repeat;}.ygtvnode_esb_serverconf{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -640px;background-repeat:no-repeat;}.ygtvnode_esb_serverconf_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -640px;background-repeat:no-repeat;}.ygtvnode_extlib{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -670px;background-repeat:no-repeat;}.ygtvnode_extlib_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -670px;background-repeat:no-repeat;}.ygtvnode_folder{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -700px;background-repeat:no-repeat;}.ygtvnode_folder_close{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -730px;background-repeat:no-repeat;}.ygtvnode_folder_close_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -730px;background-repeat:no-repeat;}.ygtvnode_default{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -730px;background-repeat:no-repeat;}.ygtvnode_folder_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -760px;background-repeat:no-repeat;}.ygtvnode_folder_open{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -790px;background-repeat:no-repeat;}.ygtvnode_folder_open_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -790px;background-repeat:no-repeat;}.ygtvnode_default_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -790px;background-repeat:no-repeat;}.ygtvnode_form{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -820px;background-repeat:no-repeat;}.ygtvnode_form_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -820px;background-repeat:no-repeat;}.ygtvnode_gadget{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -850px;background-repeat:no-repeat;}.ygtvnode_gadget_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -850px;background-repeat:no-repeat;}.ygtvnode_general{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -880px;background-repeat:no-repeat;}.ygtvnode_general_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -880px;background-repeat:no-repeat;}.ygtvnode_go-sign{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -910px;background-repeat:no-repeat;}.ygtvnode_go-sign_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -910px;background-repeat:no-repeat;}.ygtvnode_help{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -940px;background-repeat:no-repeat;}.ygtvnode_help_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -940px;background-repeat:no-repeat;}.ygtvnode_information{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -970px;background-repeat:no-repeat;}.ygtvnode_information_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -970px;background-repeat:no-repeat;}.ygtvnode_jar{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1000px;background-repeat:no-repeat;}.ygtvnode_jar_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1000px;background-repeat:no-repeat;}.ygtvnode_job{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1030px;background-repeat:no-repeat;}.ygtvnode_job_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1030px;background-repeat:no-repeat;}.ygtvnode_jobconf{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1060px;background-repeat:no-repeat;}.ygtvnode_jobconf_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1060px;background-repeat:no-repeat;}.ygtvnode_master_doc{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1090px;background-repeat:no-repeat;}.ygtvnode_master_doc_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1090px;background-repeat:no-repeat;}.ygtvnode_master_table{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1120px;background-repeat:no-repeat;}.ygtvnode_master_table_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1120px;background-repeat:no-repeat;}.ygtvnode_master_view{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1150px;background-repeat:no-repeat;}.ygtvnode_master_view_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1150px;background-repeat:no-repeat;}.ygtvnode_moveleft{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1180px;background-repeat:no-repeat;}.ygtvnode_moveleft_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1180px;background-repeat:no-repeat;}.ygtvnode_moveright{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1210px;background-repeat:no-repeat;}.ygtvnode_moveright_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1210px;background-repeat:no-repeat;}.ygtvnode_mwin{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1240px;background-repeat:no-repeat;}.ygtvnode_mwin_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1240px;background-repeat:no-repeat;}.ygtvnode_noticebox{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1270px;background-repeat:no-repeat;}.ygtvnode_noticebox_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1270px;background-repeat:no-repeat;}.ygtvnode_notice_comment{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1300px;background-repeat:no-repeat;}.ygtvnode_notice_comment_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1300px;background-repeat:no-repeat;}.ygtvnode_notice_message{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1330px;background-repeat:no-repeat;}.ygtvnode_notice_message_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1330px;background-repeat:no-repeat;}.ygtvnode_notice_proxy{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1360px;background-repeat:no-repeat;}.ygtvnode_notice_proxy_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1360px;background-repeat:no-repeat;}.ygtvnode_notice_todo{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1390px;background-repeat:no-repeat;}.ygtvnode_notice_todo_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1390px;background-repeat:no-repeat;}.ygtvnode_notifyfilter{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1420px;background-repeat:no-repeat;}.ygtvnode_notifyfilter_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1420px;background-repeat:no-repeat;}.ygtvnode_numbering{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1450px;background-repeat:no-repeat;}.ygtvnode_numbering_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1450px;background-repeat:no-repeat;}.ygtvnode_parentchild{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1480px;background-repeat:no-repeat;}.ygtvnode_parentchild_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1480px;background-repeat:no-repeat;}.ygtvnode_parentonly{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1510px;background-repeat:no-repeat;}.ygtvnode_parentonly_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1510px;background-repeat:no-repeat;}.ygtvnode_private_group{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1540px;background-repeat:no-repeat;}.ygtvnode_private_group_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1570px;background-repeat:no-repeat;}.ygtvnode_private_role{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1600px;background-repeat:no-repeat;}.ygtvnode_private_role_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1600px;background-repeat:no-repeat;}.ygtvnode_private_root{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1630px;background-repeat:no-repeat;}.ygtvnode_private_root_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1630px;background-repeat:no-repeat;}.ygtvnode_project{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1660px;background-repeat:no-repeat;}.ygtvnode_project_close{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1690px;background-repeat:no-repeat;}.ygtvnode_project_close_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1690px;background-repeat:no-repeat;}.ygtvnode_project_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1720px;background-repeat:no-repeat;}.ygtvnode_project_open{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1750px;background-repeat:no-repeat;}.ygtvnode_project_open_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1750px;background-repeat:no-repeat;}.ygtvnode_pubfolder{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1780px;background-repeat:no-repeat;}.ygtvnode_pubfolder_accessible{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1810px;background-repeat:no-repeat;}.ygtvnode_pubfolder_accessible_close{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1840px;background-repeat:no-repeat;}.ygtvnode_pubfolder_accessible_close_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1840px;background-repeat:no-repeat;}.ygtvnode_pubfolder_accessible_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1870px;background-repeat:no-repeat;}.ygtvnode_pubfolder_accessible_open{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1900px;background-repeat:no-repeat;}.ygtvnode_pubfolder_accessible_open_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1900px;background-repeat:no-repeat;}.ygtvnode_pubfolder_apply_node{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1930px;background-repeat:no-repeat;}.ygtvnode_pubfolder_apply_node_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1960px;background-repeat:no-repeat;}.ygtvnode_pubfolder_apply_root{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -1990px;background-repeat:no-repeat;}.ygtvnode_pubfolder_apply_root_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2020px;background-repeat:no-repeat;}.ygtvnode_pubfolder_close{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2050px;background-repeat:no-repeat;}.ygtvnode_pubfolder_close_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2050px;background-repeat:no-repeat;}.ygtvnode_pubfolder_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2080px;background-repeat:no-repeat;}.ygtvnode_pubfolder_formreference_node{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2110px;background-repeat:no-repeat;}.ygtvnode_pubfolder_formreference_node_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2140px;background-repeat:no-repeat;}.ygtvnode_pubfolder_formreference_root{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2170px;background-repeat:no-repeat;}.ygtvnode_pubfolder_formreference_root_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2200px;background-repeat:no-repeat;}.ygtvnode_pubfolder_open{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2230px;background-repeat:no-repeat;}.ygtvnode_pubfolder_open_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2230px;background-repeat:no-repeat;}.ygtvnode_pubfolder_subsheet_node{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2260px;background-repeat:no-repeat;}.ygtvnode_pubfolder_subsheet_node_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2290px;background-repeat:no-repeat;}.ygtvnode_pubfolder_subsheet_root{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2320px;background-repeat:no-repeat;}.ygtvnode_pubfolder_subsheet_root_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2350px;background-repeat:no-repeat;}.ygtvnode_reference{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2380px;background-repeat:no-repeat;}.ygtvnode_reference_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2380px;background-repeat:no-repeat;}.ygtvnode_registry{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2410px;background-repeat:no-repeat;}.ygtvnode_registry_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2410px;background-repeat:no-repeat;}.ygtvnode_relation_form{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2440px;background-repeat:no-repeat;}.ygtvnode_relation_form_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2440px;background-repeat:no-repeat;}.ygtvnode_rule{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2470px;background-repeat:no-repeat;}.ygtvnode_rule_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2470px;background-repeat:no-repeat;}.ygtvnode_running{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2500px;background-repeat:no-repeat;}.ygtvnode_running_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2500px;background-repeat:no-repeat;}.ygtvnode_section_class{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2530px;background-repeat:no-repeat;}.ygtvnode_section_class_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2560px;background-repeat:no-repeat;}.ygtvnode_section_class_root{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2590px;background-repeat:no-repeat;}.ygtvnode_section_class_root_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2620px;background-repeat:no-repeat;}.ygtvnode_section_group{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2650px;background-repeat:no-repeat;}.ygtvnode_section_group_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2680px;background-repeat:no-repeat;}.ygtvnode_section_role{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2710px;background-repeat:no-repeat;}.ygtvnode_section_role_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2710px;background-repeat:no-repeat;}.ygtvnode_section_root{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2740px;background-repeat:no-repeat;}.ygtvnode_section_root_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2740px;background-repeat:no-repeat;}.ygtvnode_security_group{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2770px;background-repeat:no-repeat;}.ygtvnode_security_group_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2800px;background-repeat:no-repeat;}.ygtvnode_security_role{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2830px;background-repeat:no-repeat;}.ygtvnode_security_role_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2830px;background-repeat:no-repeat;}.ygtvnode_security_root{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2860px;background-repeat:no-repeat;}.ygtvnode_security_root_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2860px;background-repeat:no-repeat;}.ygtvnode_sheet{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2890px;background-repeat:no-repeat;}.ygtvnode_sheet_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2890px;background-repeat:no-repeat;}.ygtvnode_site{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2920px;background-repeat:no-repeat;}.ygtvnode_site_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2920px;background-repeat:no-repeat;}.ygtvnode_spoofing_user{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2950px;background-repeat:no-repeat;}.ygtvnode_spoofing_user_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2950px;background-repeat:no-repeat;}.ygtvnode_stop-sign{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2980px;background-repeat:no-repeat;}.ygtvnode_stop-sign_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -2980px;background-repeat:no-repeat;}.ygtvnode_stopping{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3010px;background-repeat:no-repeat;}.ygtvnode_stopping_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3010px;background-repeat:no-repeat;}.ygtvnode_subsheet{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3040px;background-repeat:no-repeat;}.ygtvnode_subsheet_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3040px;background-repeat:no-repeat;}.ygtvnode_tenant{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3070px;background-repeat:no-repeat;}.ygtvnode_tenant_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3070px;background-repeat:no-repeat;}.ygtvnode_tenement{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3100px;background-repeat:no-repeat;}.ygtvnode_tenement_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3100px;background-repeat:no-repeat;}.ygtvnode_unit{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3130px;background-repeat:no-repeat;}.ygtvnode_unit_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3130px;background-repeat:no-repeat;}.ygtvnode_universal_group{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3160px;background-repeat:no-repeat;}.ygtvnode_universal_group_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3190px;background-repeat:no-repeat;}.ygtvnode_universal_role{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3220px;background-repeat:no-repeat;}.ygtvnode_universal_role_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3220px;background-repeat:no-repeat;}.ygtvnode_universal_root{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3250px;background-repeat:no-repeat;}.ygtvnode_universal_root_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3250px;background-repeat:no-repeat;}.ygtvnode_url{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3280px;background-repeat:no-repeat;}.ygtvnode_url_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3280px;background-repeat:no-repeat;}.ygtvnode_user{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3310px;background-repeat:no-repeat;}.ygtvnode_user_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3310px;background-repeat:no-repeat;}.ygtvnode_warning{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3340px;background-repeat:no-repeat;}.ygtvnode_warning_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3340px;background-repeat:no-repeat;}.ygtvnode_window{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3370px;background-repeat:no-repeat;}.ygtvnode_window_current{height:20px;line-height:20px;display:block;padding-left:20px;background-image:url(../../images/common/icon/object/sprite20.gif?build34492);background-position:0 -3370px;background-repeat:no-repeat;}
-.wiki h1{border-style:solid;border-width:0 0 1px 0;border-color:#aaa;font-size:116%;line-height:14.4px;padding:0 0 4px 0;color:#2E6AA5;}.wiki h2{font-size:116%;line-height:14.4px;}.wiki h3{font-size:108%;line-height:14.4px;}.wiki h4{font-size:100%;line-height:14.4px;}.wiki h5{font-size:90%;line-height:14.4px;}.wiki h6{font-size:80%;line-height:14.4px;}.wiki table{border-style:solid;border-width:1px;border-color:#aaa;border-collapse:collapse;}.wiki th{border-style:solid;border-width:0 1px 1px 0;border-color:#aaa;background-color:#ddd;padding:5px;}.wiki td{border-style:solid;border-width:0 1px 1px 0;border-color:#aaa;background-color:#fff;padding:5px;}
diff --git a/AgileWorks/WebContent/css/livehtml/livehtml.css.dev b/AgileWorks/WebContent/css/livehtml/livehtml.css.dev
deleted file mode 100644
index a406f477531fc9273ef9f45278d634a4318a8ad4..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/livehtml/livehtml.css.dev
+++ /dev/null
@@ -1,13 +0,0 @@
-@import url(band-div.css);
-@import url(band-table.css);
-@import url(calendar.css);
-@import url(combobox.css);
-@import url(common.css);
-@import url(grid-type.css);
-@import url(help.css);
-@import url(hyperlinks.css);
-@import url(menu-type.css);
-@import url(message.css);
-@import url(tree-base.css);
-@import url(tree-type.css);
-@import url(wiki.css);
\ No newline at end of file
diff --git a/AgileWorks/WebContent/css/livehtml/menu-type.css b/AgileWorks/WebContent/css/livehtml/menu-type.css
deleted file mode 100644
index be6e982cb032f94a08c2f7f47a29bdf3e26a34bb..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/livehtml/menu-type.css
+++ /dev/null
@@ -1,2261 +0,0 @@
-/*
- * menu-type.css?build31910
- *
- * MenuBarで使用されるType毎�?CSSセレクタを定義しま??�?
- */
-
-/* ----------------------------------------------- */
-/* CSS-Sprite */
-/* ----------------------------------------------- */
-
-/* object sprite start */
-
-.menubar .menuitem.addon {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -5px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.addon {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -8px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.allunit {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -35px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.allunit {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -38px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.anyone {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -65px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.anyone {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -68px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.applyunit {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -95px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.applyunit {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -98px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.archive {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -125px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.archive {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -128px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.archived_form {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -155px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.archived_form {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -158px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.asb_sa {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -185px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.asb_sa {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -188px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.attachment {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -215px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.attachment {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -218px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.bricklet {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -245px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.bricklet {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -248px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.bricklet_association {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -275px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.bricklet_association {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -278px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.calendar {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -305px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.calendar {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -308px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.childonly {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -335px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.childonly {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -338px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.comment {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -365px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.comment {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -368px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.component_mwin {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -395px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.component_mwin {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -398px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.currentdoc {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -425px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.currentdoc {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -428px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.currentsheet {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -455px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.currentsheet {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -458px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.customer {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -485px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.customer {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -488px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.datasource {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -515px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.datasource {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -518px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.delete {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -545px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.delete {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -548px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.doc {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -575px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.doc {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -578px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.esb {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -605px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.esb {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -608px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.esb_serverconf {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -635px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.esb_serverconf {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -638px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.extlib {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -665px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.extlib {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -668px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.folder {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -695px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.folder {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -698px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.folder_close {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -725px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.folder_close {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -728px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.folder_current {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -755px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.folder_current {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -758px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.folder_open {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -785px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.folder_open {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -788px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.form {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -815px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.form {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -818px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.gadget {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -845px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.gadget {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -848px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.general {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -875px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.general {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -878px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.go-sign {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -905px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.go-sign {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -908px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.help {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -935px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.help {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -938px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.information {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -965px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.information {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -968px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.jar {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -995px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.jar {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -998px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.job {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1025px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.job {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1028px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.jobconf {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1055px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.jobconf {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1058px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.master_doc {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1085px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.master_doc {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1088px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.master_table {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1115px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.master_table {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1118px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.master_view {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1145px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.master_view {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1148px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.moveleft {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1175px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.moveleft {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1178px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.moveright {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1205px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.moveright {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1208px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.mwin {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1235px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.mwin {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1238px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.noticebox {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1265px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.noticebox {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1268px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.notice_comment {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1295px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.notice_comment {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1298px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.notice_message {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1325px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.notice_message {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1328px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.notice_proxy {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1355px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.notice_proxy {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1358px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.notice_todo {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1385px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.notice_todo {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1388px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.notifyfilter {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1415px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.notifyfilter {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1418px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.numbering {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1445px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.numbering {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1448px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.parentchild {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1475px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.parentchild {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1478px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.parentonly {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1505px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.parentonly {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1508px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.private_group {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1535px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.private_group {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1538px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.private_group_current {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1565px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.private_group_current {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1568px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.private_role {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1595px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.private_role {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1598px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.private_root {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1625px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.private_root {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1628px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.project {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1655px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.project {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1658px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.project_close {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1685px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.project_close {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1688px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.project_current {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1715px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.project_current {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1718px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.project_open {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1745px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.project_open {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1748px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.pubfolder {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1775px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.pubfolder {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1778px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.pubfolder_accessible {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1805px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.pubfolder_accessible {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1808px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.pubfolder_accessible_close {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1835px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.pubfolder_accessible_close {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1838px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.pubfolder_accessible_current {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1865px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.pubfolder_accessible_current {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1868px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.pubfolder_accessible_open {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1895px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.pubfolder_accessible_open {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1898px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.pubfolder_apply_node {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1925px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.pubfolder_apply_node {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1928px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.pubfolder_apply_node_current {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1955px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.pubfolder_apply_node_current {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1958px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.pubfolder_apply_root {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1985px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.pubfolder_apply_root {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1988px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.pubfolder_apply_root_current {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2015px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.pubfolder_apply_root_current {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2018px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.pubfolder_close {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2045px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.pubfolder_close {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2048px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.pubfolder_current {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2075px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.pubfolder_current {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2078px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.pubfolder_formreference_node {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2105px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.pubfolder_formreference_node {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2108px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.pubfolder_formreference_node_current {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2135px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.pubfolder_formreference_node_current {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2138px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.pubfolder_formreference_root {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2165px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.pubfolder_formreference_root {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2168px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.pubfolder_formreference_root_current {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2195px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.pubfolder_formreference_root_current {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2198px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.pubfolder_open {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2225px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.pubfolder_open {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2228px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.pubfolder_subsheet_node {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2255px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.pubfolder_subsheet_node {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2258px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.pubfolder_subsheet_node_current {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2285px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.pubfolder_subsheet_node_current {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2288px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.pubfolder_subsheet_root {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2315px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.pubfolder_subsheet_root {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2318px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.pubfolder_subsheet_root_current {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2345px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.pubfolder_subsheet_root_current {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2348px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.reference {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2375px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.reference {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2378px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.registry {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2405px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.registry {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2408px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.relation_form {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2435px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.relation_form {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2438px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.rule {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2465px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.rule {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2468px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.running {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2495px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.running {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2498px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.section_class {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2525px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.section_class {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2528px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.section_class_current {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2555px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.section_class_current {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2558px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.section_class_root {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2585px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.section_class_root {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2588px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.section_class_root_current {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2615px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.section_class_root_current {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2618px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.section_group {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2645px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.section_group {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2648px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.section_group_current {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2675px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.section_group_current {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2678px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.section_role {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2705px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.section_role {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2708px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.section_root {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2735px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.section_root {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2738px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.security_group {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2765px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.security_group {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2768px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.security_group_current {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2795px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.security_group_current {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2798px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.security_role {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2825px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.security_role {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2828px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.security_root {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2855px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.security_root {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2858px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.sheet {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2885px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.sheet {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2888px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.site {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2915px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.site {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2918px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.spoofing_user {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2945px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.spoofing_user {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2948px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.stop-sign {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2975px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.stop-sign {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2978px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.stopping {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3005px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.stopping {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3008px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.subsheet {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3035px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.subsheet {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3038px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.tenant {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3065px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.tenant {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3068px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.tenement {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3095px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.tenement {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3098px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.unit {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3125px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.unit {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3128px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.universal_group {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3155px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.universal_group {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3158px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.universal_group_current {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3185px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.universal_group_current {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3188px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.universal_role {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3215px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.universal_role {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3218px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.universal_root {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3245px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.universal_root {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3248px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.url {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3275px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.url {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3278px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.user {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3305px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.user {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3308px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.warning {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3335px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.warning {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3338px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.window {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3365px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.window {
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3368px;
- background-repeat: no-repeat;
-}
-
-/* object sprite end */
-
-/* action sprite start */
-
-.menubar .menuitem.abort {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -5px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.abort {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -8px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.add_down {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -35px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.add_down {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -38px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.add_effect {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -65px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.add_effect {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -68px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.allsheetandtrailprint {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -95px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.allsheetandtrailprint {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -98px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.allsheetprint {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -125px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.allsheetprint {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -128px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.apply {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -155px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.apply {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -158px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.approve {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -185px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.approve {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -188px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.approve_withcomment {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -215px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.approve_withcomment {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -218px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.batchdelete {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -245px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.batchdelete {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -248px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.cancel {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -275px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.cancel {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -278px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.changedate {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -305px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.changedate {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -308px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.check {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -335px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.check {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -338px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.checked_action {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -365px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.checked_action {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -368px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.check_disabled {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -395px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.check_disabled {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -398px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.check_required {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -425px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.check_required {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -428px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.close {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -455px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.close {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -458px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.config {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -485px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.config {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -488px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.confirm {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -515px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.confirm {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -518px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.copy {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -545px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.copy {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -548px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.copynew {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -575px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.copynew {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -578px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.custom {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -605px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.custom {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -608px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.cut {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -635px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.cut {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -638px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.decline {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -665px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.decline {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -668px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.delete {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -695px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.delete {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -698px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.deleterecord {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -725px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.deleterecord {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -728px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.delete_effect {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -755px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.delete_effect {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -758px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.disable {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -785px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.disable {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -788px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.draft {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -815px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.draft {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -818px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.edit {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -845px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.edit {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -848px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.enable {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -875px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.enable {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -878px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.exec {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -905px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.exec {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -908px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.export {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -935px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.export {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -938px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.folder_up {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -965px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.folder_up {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -968px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.formpreview {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -995px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.formpreview {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -998px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.formupload {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -1025px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.formupload {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -1028px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.import {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -1055px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.import {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -1058px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.insertrecord {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -1085px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.insertrecord {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -1088px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.list {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -1115px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.list {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -1118px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.login {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -1145px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.login {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -1148px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.maximize {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -1175px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.maximize {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -1178px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.minimize {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -1205px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.minimize {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -1208px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.minus {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -1235px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.minus {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -1238px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.moveleft {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -1265px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.moveleft {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -1268px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.moveleft2 {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -1295px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.moveleft2 {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -1298px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.moveleft2_disabled {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -1325px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.moveleft2_disabled {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -1328px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.moveleft_disabled {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -1355px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.moveleft_disabled {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -1358px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.moveright {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -1385px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.moveright {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -1388px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.moveright2 {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -1415px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.moveright2 {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -1418px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.moveright2_disabled {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -1445px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.moveright2_disabled {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -1448px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.moveright_disabled {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -1475px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.moveright_disabled {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -1478px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.moveup {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -1505px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.moveup {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -1508px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.multiprint {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -1535px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.multiprint {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -1538px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.new {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -1565px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.new {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -1568px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.newwindow {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -1595px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.newwindow {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -1598px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.opendoc {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -1625px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.opendoc {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -1628px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.opendoc2 {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -1655px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.opendoc2 {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -1658px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.opendoc3 {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -1685px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.opendoc3 {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -1688px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.openlayer {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -1715px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.openlayer {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -1718px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.openproperty {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -1745px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.openproperty {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -1748px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.order_bottom {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -1775px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.order_bottom {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -1778px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.order_down {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -1805px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.order_down {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -1808px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.order_down_disabled {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -1835px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.order_down_disabled {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -1838px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.order_top {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -1865px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.order_top {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -1868px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.order_up {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -1895px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.order_up {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -1898px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.order_up_disabled {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -1925px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.order_up_disabled {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -1928px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.passback {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -1955px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.passback {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -1958px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.paste {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -1985px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.paste {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -1988px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.pause {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -2015px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.pause {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -2018px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.pdf {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -2045px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.pdf {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -2048px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.plus {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -2075px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.plus {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -2078px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.preparation {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -2105px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.preparation {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -2108px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.preview {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -2135px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.preview {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -2138px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.print {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -2165px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.print {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -2168px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.read {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -2195px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.read {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -2198px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.reload {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -2225px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.reload {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -2228px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.reload_disabled {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -2255px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.reload_disabled {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -2258px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.remove_up {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -2285px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.remove_up {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -2288px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.restore {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -2315px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.restore {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -2318px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.save {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -2345px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.save {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -2348px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.saveconf {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -2375px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.saveconf {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -2378px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.search {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -2405px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.search {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -2408px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.showunittranslayer {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -2435px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.showunittranslayer {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -2438px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.sortconfig {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -2465px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.sortconfig {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -2468px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.startup {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -2495px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.startup {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -2498px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.takeback {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -2525px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.takeback {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -2528px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.trailprint {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -2555px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.trailprint {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -2558px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.unchecked_action {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -2585px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.unchecked_action {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -2588px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.unit_up {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -2615px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.unit_up {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -2618px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.unread {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -2645px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.unread {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -2648px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.update_effect {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -2675px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.update_effect {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -2678px;
- background-repeat: no-repeat;
-}
-
-.menubar .menuitem.withdraw {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -2705px;
- background-repeat: no-repeat;
-}
-.menubar .submenu .menuitem.withdraw {
- background-image: url(../../images/common/icon/action/sprite20.gif?build34492);
- background-position: 0px -2708px;
- background-repeat: no-repeat;
-}
-
-/* action sprite end */
diff --git a/AgileWorks/WebContent/css/livehtml/message.css b/AgileWorks/WebContent/css/livehtml/message.css
deleted file mode 100644
index 7bf544c05d483a5c6d931430fe2aeb14874a2f6f..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/livehtml/message.css
+++ /dev/null
@@ -1,62 +0,0 @@
-.message-header {
- background-color:#dddddd;
- font-weight:bold;
- font-size:150%;
- padding:5px;
-}
-
-.message-body {
- height:500px;
- background-color:#ffffff;
- padding:10px;
- overflow:auto;
-}
-
-.message-header1 {
- margin:0px 0px 10px 0px;
- font-weight:bold;
- font-size:120%;
-}
-
-.message-header2 {
- margin:0px 0px 10px 0px;
- text-decoration:underline;
-}
-
-.message-content {
- margin:0px 0px 10px 0px;
-}
-
-.message-table {
- border-style:solid;
- border-width:1px 0px 1px 1px;
- border-color:#000000;
-}
-
-.message-header-tr {
- height:20px;
-}
-
-.message-header-th {
- border-style:solid;
- border-width:0px 1px 0px 0px;
- border-color:#000000;
- background-color:#dddddd;
- padding:2px;
-}
-
-.message-tr {
- height:20px;
-}
-
-.message-tr-even {
- height:20px;
- background-color:#eeeeee;
-}
-
-.message-td {
- border-style:solid;
- border-width:0px 1px 0px 0px;
- border-color:#000000;
- padding:2px;
-}
diff --git a/AgileWorks/WebContent/css/livehtml/tree-base.css b/AgileWorks/WebContent/css/livehtml/tree-base.css
deleted file mode 100644
index 97f1458eb2c59515f8ebc9eecdcec7c42069c132..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/livehtml/tree-base.css
+++ /dev/null
@@ -1,58 +0,0 @@
-/* Copyright (c) 2006 Yahoo! Inc. All rights reserved. */
-
-/* first or middle sibling, no children */
-.ygtvtn { background-image: url(../../images/common/tree/tn.gif?build31910); background-repeat: no-repeat; width:17px; height:22px; }
-
-/* first or middle sibling, collapsable */
-.ygtvtm { background-image: url(../../images/common/tree/tm.gif?build31910); background-repeat: no-repeat; width:16px; height:22px; cursor:pointer }
-
-/* first or middle sibling, collapsable, hover */
-.ygtvtmh { background-image: url(../../images/common/tree/tmh.gif?build31910); background-repeat: no-repeat; width:16px; height:22px; cursor:pointer }
-
-/* first or middle sibling, expandable */
-.ygtvtp { background-image: url(../../images/common/tree/tp.gif?build31910); background-repeat: no-repeat; width:16px; height:22px; cursor:pointer }
-
-/* first or middle sibling, expandable, hover */
-.ygtvtph { background-image: url(../../images/common/tree/tph.gif?build31910); background-repeat: no-repeat; width:16px; height:22px; cursor:pointer }
-
-/* last sibling, no children */
-.ygtvln { background-image: url(../../images/common/tree/ln.gif?build31910); background-repeat: no-repeat; width:17px; height:22px; }
-
-/* Last sibling, collapsable */
-.ygtvlm { background-image: url(../../images/common/tree/lm.gif?build31910); background-repeat: no-repeat; width:16px; height:22px; cursor:pointer }
-
-/* Last sibling, collapsable, hover */
-.ygtvlmh { background-image: url(../../images/common/tree/lmh.gif?build31910); background-repeat: no-repeat; width:16px; height:22px; cursor:pointer }
-
-/* Last sibling, expandable */
-.ygtvlp { background-image: url(../../images/common/tree/lp.gif?build31910); background-repeat: no-repeat; width:16px; height:22px; cursor:pointer }
-
-/* Last sibling, expandable, hover */
-.ygtvlph { background-image: url(../../images/common/tree/lph.gif?build31910); background-repeat: no-repeat; width:16px; height:22px; cursor:pointer }
-
-/* Loading icon */
-/* .ygtvloading { background: url(../../images/common/tree/loading.gif?build31910) 0 0 no-repeat; width:16px; height:22px; } */
-.ygtvloading { background-image: url(../../images/common/tree/lph.gif?build31910); width:16px; height:22px; cursor:pointer }
-
-/* the style for the empty cells that are used for rendering the depth
- * of the node */
-.ygtvdepthcell { background-image: url(../../images/common/tree/vline.gif?build31910); background-repeat: no-repeat; width:17px; height:22px; }
-
-.ygtvblankdepthcell { width:17px; height:22px; }
-
-/* the style of the div around each node */
-.ygtvitem { }
-
-/* the style of the div around each node's collection of children */
-.ygtvchildren { }
-* html .ygtvchildren { height:1%; }
-
-/* the style of the text label in ygTextNode */
-.ygtvlabel, .ygtvlabel:link, .ygtvlabel:visited, .ygtvlabel:hover {
- margin-left:2px;
- text-decoration: none;
-}
-
-.ygtvspacer {
- width:17px;
-}
diff --git a/AgileWorks/WebContent/css/livehtml/tree-type.css b/AgileWorks/WebContent/css/livehtml/tree-type.css
deleted file mode 100644
index c0ffeb0e95d7cb11cce21b43d6edbfa0e3e9bfab..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/livehtml/tree-type.css
+++ /dev/null
@@ -1,1942 +0,0 @@
-/*
- * tree-type.css?build31910
- *
- * Treeで使用されるType毎�?CSSセレクタを定義しま??�?
- */
-
-.ygtvtd {
- padding:0px 0px 0px 0px;
-}
-
-.ygtvtd_current {
- background-color:#697683;
- border-style:solid;
- border-width:1px;
- border-color:#000000;
- padding:0px 0px 0px 0px;
-}
-
-.ygtvitem a { word-break:keep-all; white-space:nowrap; }
-.ygtvitem a:link { word-break:keep-all; white-space:nowrap; }
-.ygtvitem a:active { word-break:keep-all; white-space:nowrap; }
-.ygtvitem a:visited { word-break:keep-all; white-space:nowrap; }
-.ygtvitem a:hover { word-break:keep-all; white-space:nowrap; }
-
-.ygtvtd a { word-break:keep-all; white-space:nowrap; }
-.ygtvtd a:link { word-break:keep-all; white-space:nowrap; }
-.ygtvtd a:active { word-break:keep-all; white-space:nowrap; }
-.ygtvtd a:visited { word-break:keep-all; white-space:nowrap; }
-.ygtvtd a:hover { word-break:keep-all; white-space:nowrap; }
-
-.ygtvtd_current a { color:#ffffff; word-break:keep-all; white-space:nowrap; }
-.ygtvtd_current a:link { color:#ffffff; word-break:keep-all; white-space:nowrap; }
-.ygtvtd_current a:active { color:#ffffff; word-break:keep-all; white-space:nowrap; }
-.ygtvtd_current a:visited { color:#ffffff; word-break:keep-all; white-space:nowrap; }
-.ygtvtd_current a:hover { color:#ffffff; word-break:keep-all; white-space:nowrap; }
-
-/* ----------------------------------------------- */
-/* 以下�?CSS-Sprite適用??�???�??�??�?*/
-/* ----------------------------------------------- */
-
-/* 検索 [search] */
-.ygtvnode_search { height:20px; line-height:20px; display:block; padding-left: 20px; background-image: url(../../images/common/icon/action/search.gif?build31910); background-repeat: no-repeat; }
-.ygtvnode_search_current { height:20px; line-height:20px; display:block; padding-left: 20px; background-image: url(../../images/common/icon/action/search.gif?build31910); background-repeat: no-repeat; }
-
-/* インポ�???�?[import] */
-.ygtvnode_import { height:20px; line-height:20px; display:block; padding-left: 20px; background-image: url(../../images/common/icon/action/import.gif?build31910); background-repeat: no-repeat; }
-.ygtvnode_import_current { height:20px; line-height:20px; display:block; padding-left: 20px; background-image: url(../../images/common/icon/action/import.gif?build31910); background-repeat: no-repeat; }
-
-/* エクスポ�???�?[export] */
-.ygtvnode_export { height:20px; line-height:20px; display:block; padding-left: 20px; background-image: url(../../images/common/icon/action/export.gif?build31910); background-repeat: no-repeat; }
-.ygtvnode_export_current { height:20px; line-height:20px; display:block; padding-left: 20px; background-image: url(../../images/common/icon/action/export.gif?build31910); background-repeat: no-repeat; }
-
-/* コンポ�?ネン??�?マスタ検索 [msearch] */
-.ygtvnode_msearch { height:20px; line-height:20px; display:block; padding-left: 20px; background-image: url(../../images/common/icon/object/msearch20.gif?build31910); background-repeat: no-repeat; }
-.ygtvnode_msearch_current { height:20px; line-height:20px; display:block; padding-left: 20px; background-image: url(../../images/common/icon/object/msearch20.gif?build31910); background-repeat: no-repeat; }
-
-/* ----------------------------------------------- */
-/* CSS-Sprite */
-/* ----------------------------------------------- */
-
-/* object sprite start */
-
-.ygtvnode_addon {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -10px;
- background-repeat: no-repeat;
-}
-.ygtvnode_addon_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -10px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_allunit {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -40px;
- background-repeat: no-repeat;
-}
-.ygtvnode_allunit_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -40px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_anyone {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -70px;
- background-repeat: no-repeat;
-}
-.ygtvnode_anyone_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -70px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_applyunit {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -100px;
- background-repeat: no-repeat;
-}
-.ygtvnode_applyunit_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -100px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_archive {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -130px;
- background-repeat: no-repeat;
-}
-.ygtvnode_archive_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -130px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_archived_form {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -160px;
- background-repeat: no-repeat;
-}
-.ygtvnode_archived_form_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -160px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_asb_sa {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -190px;
- background-repeat: no-repeat;
-}
-.ygtvnode_asb_sa_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -190px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_attachment {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -220px;
- background-repeat: no-repeat;
-}
-.ygtvnode_attachment_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -220px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_bricklet {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -250px;
- background-repeat: no-repeat;
-}
-.ygtvnode_bricklet_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -250px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_bricklet_association {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -280px;
- background-repeat: no-repeat;
-}
-.ygtvnode_bricklet_association_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -280px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_calendar {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -310px;
- background-repeat: no-repeat;
-}
-.ygtvnode_calendar_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -310px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_childonly {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -340px;
- background-repeat: no-repeat;
-}
-.ygtvnode_childonly_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -340px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_comment {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -370px;
- background-repeat: no-repeat;
-}
-.ygtvnode_comment_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -370px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_component_mwin {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -400px;
- background-repeat: no-repeat;
-}
-.ygtvnode_component_mwin_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -400px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_currentdoc {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -430px;
- background-repeat: no-repeat;
-}
-.ygtvnode_currentdoc_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -430px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_currentsheet {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -460px;
- background-repeat: no-repeat;
-}
-.ygtvnode_currentsheet_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -460px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_customer {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -490px;
- background-repeat: no-repeat;
-}
-.ygtvnode_customer_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -490px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_datasource {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -520px;
- background-repeat: no-repeat;
-}
-.ygtvnode_datasource_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -520px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_delete {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -550px;
- background-repeat: no-repeat;
-}
-.ygtvnode_delete_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -550px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_doc {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -580px;
- background-repeat: no-repeat;
-}
-.ygtvnode_doc_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -580px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_esb {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -610px;
- background-repeat: no-repeat;
-}
-.ygtvnode_esb_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -610px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_esb_serverconf {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -640px;
- background-repeat: no-repeat;
-}
-.ygtvnode_esb_serverconf_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -640px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_extlib {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -670px;
- background-repeat: no-repeat;
-}
-.ygtvnode_extlib_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -670px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_folder {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -700px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_folder_close {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -730px;
- background-repeat: no-repeat;
-}
-.ygtvnode_folder_close_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -730px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_default {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -730px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_folder_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -760px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_folder_open {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -790px;
- background-repeat: no-repeat;
-}
-.ygtvnode_folder_open_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -790px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_default_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -790px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_form {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -820px;
- background-repeat: no-repeat;
-}
-.ygtvnode_form_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -820px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_gadget {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -850px;
- background-repeat: no-repeat;
-}
-.ygtvnode_gadget_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -850px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_general {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -880px;
- background-repeat: no-repeat;
-}
-.ygtvnode_general_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -880px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_go-sign {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -910px;
- background-repeat: no-repeat;
-}
-.ygtvnode_go-sign_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -910px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_help {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -940px;
- background-repeat: no-repeat;
-}
-.ygtvnode_help_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -940px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_information {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -970px;
- background-repeat: no-repeat;
-}
-.ygtvnode_information_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -970px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_jar {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1000px;
- background-repeat: no-repeat;
-}
-.ygtvnode_jar_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1000px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_job {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1030px;
- background-repeat: no-repeat;
-}
-.ygtvnode_job_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1030px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_jobconf {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1060px;
- background-repeat: no-repeat;
-}
-.ygtvnode_jobconf_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1060px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_master_doc {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1090px;
- background-repeat: no-repeat;
-}
-.ygtvnode_master_doc_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1090px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_master_table {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1120px;
- background-repeat: no-repeat;
-}
-.ygtvnode_master_table_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1120px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_master_view {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1150px;
- background-repeat: no-repeat;
-}
-.ygtvnode_master_view_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1150px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_moveleft {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1180px;
- background-repeat: no-repeat;
-}
-.ygtvnode_moveleft_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1180px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_moveright {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1210px;
- background-repeat: no-repeat;
-}
-.ygtvnode_moveright_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1210px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_mwin {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1240px;
- background-repeat: no-repeat;
-}
-.ygtvnode_mwin_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1240px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_noticebox {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1270px;
- background-repeat: no-repeat;
-}
-.ygtvnode_noticebox_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1270px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_notice_comment {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1300px;
- background-repeat: no-repeat;
-}
-.ygtvnode_notice_comment_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1300px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_notice_message {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1330px;
- background-repeat: no-repeat;
-}
-.ygtvnode_notice_message_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1330px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_notice_proxy {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1360px;
- background-repeat: no-repeat;
-}
-.ygtvnode_notice_proxy_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1360px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_notice_todo {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1390px;
- background-repeat: no-repeat;
-}
-.ygtvnode_notice_todo_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1390px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_notifyfilter {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1420px;
- background-repeat: no-repeat;
-}
-.ygtvnode_notifyfilter_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1420px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_numbering {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1450px;
- background-repeat: no-repeat;
-}
-.ygtvnode_numbering_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1450px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_parentchild {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1480px;
- background-repeat: no-repeat;
-}
-.ygtvnode_parentchild_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1480px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_parentonly {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1510px;
- background-repeat: no-repeat;
-}
-.ygtvnode_parentonly_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1510px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_private_group {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1540px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_private_group_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1570px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_private_role {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1600px;
- background-repeat: no-repeat;
-}
-.ygtvnode_private_role_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1600px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_private_root {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1630px;
- background-repeat: no-repeat;
-}
-.ygtvnode_private_root_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1630px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_project {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1660px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_project_close {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1690px;
- background-repeat: no-repeat;
-}
-.ygtvnode_project_close_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1690px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_project_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1720px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_project_open {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1750px;
- background-repeat: no-repeat;
-}
-.ygtvnode_project_open_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1750px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_pubfolder {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1780px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_pubfolder_accessible {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1810px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_pubfolder_accessible_close {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1840px;
- background-repeat: no-repeat;
-}
-.ygtvnode_pubfolder_accessible_close_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1840px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_pubfolder_accessible_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1870px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_pubfolder_accessible_open {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1900px;
- background-repeat: no-repeat;
-}
-.ygtvnode_pubfolder_accessible_open_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1900px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_pubfolder_apply_node {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1930px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_pubfolder_apply_node_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1960px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_pubfolder_apply_root {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -1990px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_pubfolder_apply_root_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2020px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_pubfolder_close {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2050px;
- background-repeat: no-repeat;
-}
-.ygtvnode_pubfolder_close_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2050px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_pubfolder_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2080px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_pubfolder_formreference_node {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2110px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_pubfolder_formreference_node_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2140px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_pubfolder_formreference_root {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2170px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_pubfolder_formreference_root_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2200px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_pubfolder_open {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2230px;
- background-repeat: no-repeat;
-}
-.ygtvnode_pubfolder_open_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2230px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_pubfolder_subsheet_node {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2260px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_pubfolder_subsheet_node_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2290px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_pubfolder_subsheet_root {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2320px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_pubfolder_subsheet_root_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2350px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_reference {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2380px;
- background-repeat: no-repeat;
-}
-.ygtvnode_reference_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2380px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_registry {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2410px;
- background-repeat: no-repeat;
-}
-.ygtvnode_registry_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2410px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_relation_form {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2440px;
- background-repeat: no-repeat;
-}
-.ygtvnode_relation_form_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2440px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_rule {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2470px;
- background-repeat: no-repeat;
-}
-.ygtvnode_rule_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2470px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_running {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2500px;
- background-repeat: no-repeat;
-}
-.ygtvnode_running_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2500px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_section_class {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2530px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_section_class_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2560px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_section_class_root {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2590px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_section_class_root_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2620px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_section_group {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2650px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_section_group_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2680px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_section_role {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2710px;
- background-repeat: no-repeat;
-}
-.ygtvnode_section_role_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2710px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_section_root {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2740px;
- background-repeat: no-repeat;
-}
-.ygtvnode_section_root_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2740px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_security_group {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2770px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_security_group_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2800px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_security_role {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2830px;
- background-repeat: no-repeat;
-}
-.ygtvnode_security_role_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2830px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_security_root {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2860px;
- background-repeat: no-repeat;
-}
-.ygtvnode_security_root_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2860px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_sheet {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2890px;
- background-repeat: no-repeat;
-}
-.ygtvnode_sheet_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2890px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_site {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2920px;
- background-repeat: no-repeat;
-}
-.ygtvnode_site_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2920px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_spoofing_user {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2950px;
- background-repeat: no-repeat;
-}
-.ygtvnode_spoofing_user_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2950px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_stop-sign {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2980px;
- background-repeat: no-repeat;
-}
-.ygtvnode_stop-sign_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -2980px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_stopping {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3010px;
- background-repeat: no-repeat;
-}
-.ygtvnode_stopping_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3010px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_subsheet {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3040px;
- background-repeat: no-repeat;
-}
-.ygtvnode_subsheet_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3040px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_tenant {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3070px;
- background-repeat: no-repeat;
-}
-.ygtvnode_tenant_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3070px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_tenement {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3100px;
- background-repeat: no-repeat;
-}
-.ygtvnode_tenement_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3100px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_unit {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3130px;
- background-repeat: no-repeat;
-}
-.ygtvnode_unit_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3130px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_universal_group {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3160px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_universal_group_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3190px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_universal_role {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3220px;
- background-repeat: no-repeat;
-}
-.ygtvnode_universal_role_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3220px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_universal_root {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3250px;
- background-repeat: no-repeat;
-}
-.ygtvnode_universal_root_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3250px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_url {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3280px;
- background-repeat: no-repeat;
-}
-.ygtvnode_url_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3280px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_user {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3310px;
- background-repeat: no-repeat;
-}
-.ygtvnode_user_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3310px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_warning {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3340px;
- background-repeat: no-repeat;
-}
-.ygtvnode_warning_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3340px;
- background-repeat: no-repeat;
-}
-
-.ygtvnode_window {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3370px;
- background-repeat: no-repeat;
-}
-.ygtvnode_window_current {
- height: 20px;
- line-height: 20px;
- display: block;
- padding-left: 20px;
- background-image: url(../../images/common/icon/object/sprite20.gif?build34492);
- background-position: 0px -3370px;
- background-repeat: no-repeat;
-}
-
-/* object sprite end */
diff --git a/AgileWorks/WebContent/css/livehtml/wiki.css b/AgileWorks/WebContent/css/livehtml/wiki.css
deleted file mode 100644
index 645d50829b130550bd3630689fdce514afc1e918..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/livehtml/wiki.css
+++ /dev/null
@@ -1,57 +0,0 @@
-.wiki h1 {
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#aaaaaa;
- font-size:116%;
- line-height:14.4px;
- padding:0px 0px 4px 0px;
- color:#2E6AA5;
-}
-
-.wiki h2 {
- font-size:116%;
- line-height:14.4px;
-}
-
-.wiki h3 {
- font-size:108%;
- line-height:14.4px;
-}
-
-.wiki h4 {
- font-size:100%;
- line-height:14.4px;
-}
-
-.wiki h5 {
- font-size:90%;
- line-height:14.4px;
-}
-
-.wiki h6 {
- font-size:80%;
- line-height:14.4px;
-}
-
-.wiki table {
- border-style:solid;
- border-width:1px;
- border-color:#aaaaaa;
- border-collapse:collapse;
-}
-
-.wiki th {
- border-style:solid;
- border-width:0px 1px 1px 0px;
- border-color:#aaaaaa;
- background-color:#dddddd;
- padding:5px;
-}
-
-.wiki td {
- border-style:solid;
- border-width:0px 1px 1px 0px;
- border-color:#aaaaaa;
- background-color:#ffffff;
- padding:5px;
-}
diff --git a/AgileWorks/WebContent/css/locale/en.css b/AgileWorks/WebContent/css/locale/en.css
deleted file mode 100644
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000
diff --git a/AgileWorks/WebContent/css/locale/error_en.css b/AgileWorks/WebContent/css/locale/error_en.css
deleted file mode 100644
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000
diff --git a/AgileWorks/WebContent/css/locale/error_ja.css b/AgileWorks/WebContent/css/locale/error_ja.css
deleted file mode 100644
index 5994c861b7ecadf59d7181cb5cb13105ef9ffa62..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/locale/error_ja.css
+++ /dev/null
@@ -1,7 +0,0 @@
-html, body {
- font-family:Times New Roman, Arial, "MS Pゴシック", "MS PGothic", sans-serif;
-}
-
-input {
- font-family:Arial, "MS Pゴシック", "MS PGothic", sans-serif;
-}
\ No newline at end of file
diff --git a/AgileWorks/WebContent/css/locale/error_zh_CN.css b/AgileWorks/WebContent/css/locale/error_zh_CN.css
deleted file mode 100644
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000
diff --git a/AgileWorks/WebContent/css/locale/error_zh_TW.css b/AgileWorks/WebContent/css/locale/error_zh_TW.css
deleted file mode 100644
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000
diff --git a/AgileWorks/WebContent/css/locale/ja.css b/AgileWorks/WebContent/css/locale/ja.css
deleted file mode 100644
index 7774454f05147f8740bb87d0d779576be58783d3..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/locale/ja.css
+++ /dev/null
@@ -1,15 +0,0 @@
-body {
- font-family:Arial, "MS Pゴシック", "MS PGothic", sans-serif;
-}
-
-input {
- font-family:Arial, "MS Pゴシック", "MS PGothic", sans-serif;
-}
-
-button {
- font-family:Arial, "MS Pゴシック", "MS PGothic", sans-serif;
-}
-
-.layer-messagebox-mc{
- font-family:"Myriad Pro", "Myriad Web", "Tahoma", "Helvetica","Arial" ,"MS Pゴシック", "MS PGothic", sans-serif;
-}
diff --git a/AgileWorks/WebContent/css/locale/zh_CN.css b/AgileWorks/WebContent/css/locale/zh_CN.css
deleted file mode 100644
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000
diff --git a/AgileWorks/WebContent/css/locale/zh_TW.css b/AgileWorks/WebContent/css/locale/zh_TW.css
deleted file mode 100644
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000
diff --git a/AgileWorks/WebContent/css/login.css b/AgileWorks/WebContent/css/login.css
deleted file mode 100644
index 59c60317e45794ec7c93684e9086c0b8f765945b..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/login.css
+++ /dev/null
@@ -1,89 +0,0 @@
-*{
- margin:0px;
- padding:0px;
-}
-
-html,body{
-
- width:100%;
- background-image: url(../images/common/login/top_bg.jpg?build31910);
- background-repeat: repeat-x;
- background-position: top;
- font-family: Arial, sans-serif;
-}
-
-#container{
- width:100%;
- height:100%;
-}
-
-
-#heade{
-
- margin-left: 50px;
-}
-
-
-#menu{
- width:100%;
- vertical-align:middle;
- color:#fff;
-}
-
-
-
-
-#menu02{
- margin-left: 350px;
- width: 350px;
- height: 600px;
- background-image: url(../images/common/login/login_bord.jpg?build31910);
- background-repeat: no-repeat;
-}
-
-
-#menu02_01{
- position:relative;
- top:21px;
- left:23px;
- font-size:14px;
- font-weight: bold;
-}
-#menu02_02{
- position:relative;
- top:25px;
- left:53px;
-}
-
-#menu02_03{
- position:relative;
- top:48px;
- left:23px;
- font-size:14px;
- font-weight: bold;
-}
-
-#menu02_04{
- position:relative;
- top:52px;
- left:53px;
-
-}
-
-#error_message{
- position:absolute;
- top:330px;
- left:380px;
- font-size:13px;
-}
-
-#servermode_info{
- color:#666666;
-}
-
-#menu02_05{
- position:absolute;
- top:390px;
- left:485px;
-
-}
diff --git a/AgileWorks/WebContent/css/login_archive_emma.css b/AgileWorks/WebContent/css/login_archive_emma.css
deleted file mode 100644
index fcb0be36235507ad2877b33e666c6c87ac2eaf33..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/login_archive_emma.css
+++ /dev/null
@@ -1,92 +0,0 @@
-*{
- margin:0px;
- padding:0px;
-}
-
-html,body{
- width:100%;
- background-image: url(../images/common/login_archive/archive_bg_emma.jpg?build31910);
- background-color: #305697;
- background-repeat: no-repeat;
- background-position: top left;
- font-family: Arial, sans-serif;
-}
-
-#container{
- width:100%;
- height:100%;
-}
-
-
-#heade{
-
- margin-left: 50px;
-}
-
-
-#menu{
- width:100%;
- vertical-align:middle;
- color:#000000;
-}
-
-
-
-
-#menu02{
- margin-left: 350px;
- width: 350px;
- height: 600px;
- background-image: url(../images/common/login_archive/login_bord.png?build31910);
- background-repeat: no-repeat;
-}
-
-
-#menu02_01{
- position:relative;
- top:40px;
- left:47px;
- font-size:14px;
- font-weight: bold;
- color: #FFF;
-}
-#menu02_02{
- position:relative;
- top:47px;
- left:67px;
-}
-
-#menu02_03{
- position:relative;
- top:64px;
- left:47px;
- font-size:14px;
- font-weight: bold;
- color: #FFF;
-}
-
-#menu02_04{
- position:relative;
- top:71px;
- left:67px;
-
-}
-
-#error_message{
- position:absolute;
- top:330px;
- left:380px;
- font-size:13px;
- color: #FFF;
-}
-
-#servermode_info{
- color:#ffffff;
-}
-
-#menu02_05{
- position:absolute;
- top:390px;
- left:485px;
-
-}
diff --git a/AgileWorks/WebContent/css/login_archive_picus.css b/AgileWorks/WebContent/css/login_archive_picus.css
deleted file mode 100644
index 6215bfb30afd10f3ce4270da1a29f55f41f827ee..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/login_archive_picus.css
+++ /dev/null
@@ -1,91 +0,0 @@
-*{
- margin:0px;
- padding:0px;
-}
-
-html,body{
- width:100%;
- background-image: url(../images/common/login_archive/archive_bg_picus.jpg?build31910);
- background-repeat: no-repeat;
- background-position: top left;
- font-family: Arial, sans-serif;
-}
-
-#container{
- width:100%;
- height:100%;
-}
-
-
-#heade{
-
- margin-left: 50px;
-}
-
-
-#menu{
- width:100%;
- vertical-align:middle;
- color:#000000;
-}
-
-
-
-
-#menu02{
- margin-left: 350px;
- width: 350px;
- height: 600px;
- background-image: url(../images/common/login_archive/login_bord.png?build31910);
- background-repeat: no-repeat;
-}
-
-
-#menu02_01{
- position:relative;
- top:40px;
- left:47px;
- font-size:14px;
- font-weight: bold;
- color: #FFF;
-}
-#menu02_02{
- position:relative;
- top:47px;
- left:67px;
-}
-
-#menu02_03{
- position:relative;
- top:64px;
- left:47px;
- font-size:14px;
- font-weight: bold;
- color: #FFF;
-}
-
-#menu02_04{
- position:relative;
- top:71px;
- left:67px;
-
-}
-
-#error_message{
- position:absolute;
- top:330px;
- left:380px;
- font-size:13px;
- color: #FFF;
-}
-
-#servermode_info{
- color:#ffffff;
-}
-
-#menu02_05{
- position:absolute;
- top:390px;
- left:485px;
-
-}
diff --git a/AgileWorks/WebContent/css/login_stg.css b/AgileWorks/WebContent/css/login_stg.css
deleted file mode 100644
index 456bc9a555c6c685c3d61832fcc57618306a09be..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/login_stg.css
+++ /dev/null
@@ -1,88 +0,0 @@
-*{
- margin:0px;
- padding:0px;
-}
-
-html,body{
- width:100%;
- background-image: url(../images/common/login_stg/top_bg.jpg?build31910);
- background-repeat: repeat-x;
- background-position: top;
- font-family: Arial, sans-serif;
-}
-
-#container{
- width:100%;
- height:100%;
-}
-
-
-#heade{
-
- margin-left: 50px;
-}
-
-
-#menu{
- width:100%;
- vertical-align:middle;
- color:#000000;
-}
-
-
-
-
-#menu02{
- margin-left: 350px;
- width: 350px;
- height: 600px;
- background-image: url(../images/common/login_stg/login_bord.jpg?build31910);
- background-repeat: no-repeat;
-}
-
-
-#menu02_01{
- position:relative;
- top:21px;
- left:23px;
- font-size:14px;
- font-weight: bold;
-}
-#menu02_02{
- position:relative;
- top:25px;
- left:53px;
-}
-
-#menu02_03{
- position:relative;
- top:48px;
- left:23px;
- font-size:14px;
- font-weight: bold;
-}
-
-#menu02_04{
- position:relative;
- top:52px;
- left:53px;
-
-}
-
-#error_message{
- position:absolute;
- top:330px;
- left:380px;
- font-size:13px
-}
-
-#servermode_info{
- color:#ffffff;
-}
-
-#menu02_05{
- position:absolute;
- top:390px;
- left:485px;
-
-}
diff --git a/AgileWorks/WebContent/css/picus/default.css b/AgileWorks/WebContent/css/picus/default.css
deleted file mode 100644
index d910879bac48f254ea8eb6e386650283c72f744a..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/picus/default.css
+++ /dev/null
@@ -1,5 +0,0 @@
-@import url(../common/common.css?build30151);
-
-@import url(../livehtml/livehtml.css?build30151);
-
-@import url(./default/default.css?build30151);
diff --git a/AgileWorks/WebContent/css/picus/default.css.dev b/AgileWorks/WebContent/css/picus/default.css.dev
deleted file mode 100644
index e819b392dcc86491cfcce656e9c17b44501ab857..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/picus/default.css.dev
+++ /dev/null
@@ -1,5 +0,0 @@
-@import url(../common/common.css.dev);
-
-@import url(../livehtml/livehtml.css.dev);
-
-@import url(./default/default.css.dev);
\ No newline at end of file
diff --git a/AgileWorks/WebContent/css/picus/default/base.css b/AgileWorks/WebContent/css/picus/default/base.css
deleted file mode 100644
index 7ce03c555a3e73a34f3e942195b140437316ee3b..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/picus/default/base.css
+++ /dev/null
@@ -1,52 +0,0 @@
-html {
- height: 100%;
-}
-
-a:link {
- text-decoration:none;
- color:#1851E7;
-}
-
-a:active {
- text-decoration:none;
- color:#1851E7;
-}
-
-a:visited {
- text-decoration:none;
- color:#1851E7;
-}
-
-a:hover {
- text-decoration:underline;
- color:#e16745;
-}
-
-body {
- font-size:75%;
- background-color:#dddddd;
- font-family:Arial, sans-serif;
- margin: 0px;
- height: 100%;
-}
-
-input {
- font-family:Arial, sans-serif;
-}
- input[type=text] {
- margin:0px;
- }
-
-button {
- font-family:Arial, sans-serif;
- margin:0px;
-}
-
-select {
- margin:0px;
-}
-
-textarea {
- font-size: 12px;
- margin:0px;
-}
diff --git a/AgileWorks/WebContent/css/picus/default/common.css b/AgileWorks/WebContent/css/picus/default/common.css
deleted file mode 100644
index f54085097c6794a47fca3d23139536167688d543..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/picus/default/common.css
+++ /dev/null
@@ -1,120 +0,0 @@
-.aw-common-func {
- height:30px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#808080;
- background-image:url('../../../images/picus/default/background/tabs_bg.gif?build31910');
-}
-
-.aw-common-menubar-layer {
- height:30px;
- display:inline;
- float:left;
-}
-
-.aw-common-table {
- width: 100%;
- margin: 0px;
- padding: 0px;
- border-collapse: collapse;
- background: #fff;
-}
-
-.aw-common-table th {
- margin: 0px;
- padding: 1px 1px 1px 2px;
- height: 24px;
- vertical-align: middle;
- color: #444444;
- border: 1px solid #aaaaaa;
- text-align: left;
- background: url('../../../images/emma/default/background/table_header_bg.gif?build31910') bottom repeat-x #ebebeb;
-}
-
-.aw-common-table th.caption {
- margin: 0px;
- padding: 10px;
- vertical-align: middle;
- color: #444444;
- border: 1px solid #aaaaaa;
- text-align: center;
- background: url('../../../images/emma/default/background/table_caption_bg.gif?build31910') center repeat-x;
-}
-
-.aw-common-table td {
- margin: 0px;
- padding: 1px 1px 1px 4px;
- height: 24px;
- vertical-align: middle;
- color: #444444;
- border: 1px solid #aaaaaa;
- text-align: left;
-}
-
-/* テーブル(内部) */
-.aw-common-table table.inner {
- width: 98%;
- margin: 0px;
- padding: 0px;
- border-collapse: collapse;
-}
-
-.aw-common-table table.inner td {
- margin: 0px;
- padding: 5px 5px 5px 0px;
- border: none;
- text-align: left;
-}
-
-.aw-common-table table.inner td.uline {
- border-bottom: 1px dotted #aaa;
-}
-
-/* 偶数行色指定(TR) */
-.aw-common-table .even {
- background: #f5f5f5;
-}
-
-/* マーカー指定(SPAN) */
-.aw-common-table .ar01 {
- padding: 0px 0px 0px 12px;
- background: url('../../../images/emma/default/icon/arrow01.gif?build31910') left center no-repeat;
-}
-
-.aw-common-table-unurged {
- width: 100%;
- margin: 0px;
- padding: 0px;
- border-collapse: collapse;
- background: #fff;
-}
-
-.aw-common-table-unurged th.label {
- margin: 0px;
- padding: 1px 1px 1px 2px;
- height: 24px;
- vertical-align: middle;
- color: #444444;
- border: 1px solid #aaaaaa;
- text-align: left;
- background: url('../../../images/emma/default/background/table_header_bg.gif?build31910') bottom repeat-x #ebebeb;
-}
-
-.aw-common-table-unurged th.caption {
- margin: 0px;
- padding: 10px;
- vertical-align: middle;
- color: #444444;
- border: 1px solid #aaaaaa;
- text-align: center;
- background: url('../../../images/emma/default/background/table_caption_bg.gif?build31910') center repeat-x;
-}
-
-.aw-common-table-unurged td.item {
- margin: 0px;
- padding: 1px 1px 1px 2px;
- vertical-align: middle;
- color: #444444;
- border: 1px solid #aaaaaa;
- text-align: left;
-}
diff --git a/AgileWorks/WebContent/css/picus/default/contents.css b/AgileWorks/WebContent/css/picus/default/contents.css
deleted file mode 100644
index 32a55a3a3499260592d898b73d1263748ffca5f4..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/picus/default/contents.css
+++ /dev/null
@@ -1,53 +0,0 @@
-.contents-header {
- height:30px;
-}
-
-.contents-main {
- background: #efefef;
- border-style:solid;
- border-width:1px;
- border-color:#cbcbcb;
- padding: 10px;
- overflow: auto;
-}
-
-.contents-main .caption {
- border-bottom:2px solid #aaa;
- margin-bottom:10px;
- font-weight:bold;
- padding:2px;
-}
-
-.contents-main th {
- font-weight:bold;
- color: #444444;
-}
-
-.contents-main td.item {
- border-bottom:1px solid #aaa;
-}
-
-.contents-main th.header {
- border-bottom: 2px solid #aaa;
-}
-
-.contents-main td {
- color: #444444;
-}
-
-.contents-main td.indent1 {
- padding-left:30px;
-}
-
-.contents-header-table {
- border-collapse:collapse;
- border-spacing:0px;
- margin-bottom:5px;
- width:100%;
- height:25px;
- color:#ffffff;
-}
-
-.contents-header-table .count {
- color : #ff0000;
-}
diff --git a/AgileWorks/WebContent/css/picus/default/default.css b/AgileWorks/WebContent/css/picus/default/default.css
deleted file mode 100644
index 2d0bf30a164365340fe453ad53bc7b7872c30dc0..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/picus/default/default.css
+++ /dev/null
@@ -1,16 +0,0 @@
-html{height:100%;}a:link{text-decoration:none;color:#1851E7;}a:active{text-decoration:none;color:#1851E7;}a:visited{text-decoration:none;color:#1851E7;}a:hover{text-decoration:underline;color:#e16745;}body{font-size:75%;background-color:#ddd;font-family:Arial,sans-serif;margin:0;height:100%;}input{font-family:Arial,sans-serif;}input[type=text]{margin:0;}button{font-family:Arial,sans-serif;margin:0;}select{margin:0;}textarea{font-size:12px;margin:0;}
-.aw-common-func{height:30px;border-style:solid;border-width:0 0 1px 0;border-color:#808080;background-image:url('../../../images/picus/default/background/tabs_bg.gif?build31910');}.aw-common-menubar-layer{height:30px;display:inline;float:left;}.aw-common-table{width:100%;margin:0;padding:0;border-collapse:collapse;background:#fff;}.aw-common-table th{margin:0;padding:1px 1px 1px 2px;height:24px;vertical-align:middle;color:#444;border:1px solid #aaa;text-align:left;background:url('../../../images/emma/default/background/table_header_bg.gif?build31910') bottom repeat-x #ebebeb;}.aw-common-table th.caption{margin:0;padding:10px;vertical-align:middle;color:#444;border:1px solid #aaa;text-align:center;background:url('../../../images/emma/default/background/table_caption_bg.gif?build31910') center repeat-x;}.aw-common-table td{margin:0;padding:1px 1px 1px 4px;height:24px;vertical-align:middle;color:#444;border:1px solid #aaa;text-align:left;}.aw-common-table table.inner{width:98%;margin:0;padding:0;border-collapse:collapse;}.aw-common-table table.inner td{margin:0;padding:5px 5px 5px 0;border:none;text-align:left;}.aw-common-table table.inner td.uline{border-bottom:1px dotted #aaa;}.aw-common-table .even{background:#f5f5f5;}.aw-common-table .ar01{padding:0 0 0 12px;background:url('../../../images/emma/default/icon/arrow01.gif?build31910') left center no-repeat;}.aw-common-table-unurged{width:100%;margin:0;padding:0;border-collapse:collapse;background:#fff;}.aw-common-table-unurged th.label{margin:0;padding:1px 1px 1px 2px;height:24px;vertical-align:middle;color:#444;border:1px solid #aaa;text-align:left;background:url('../../../images/emma/default/background/table_header_bg.gif?build31910') bottom repeat-x #ebebeb;}.aw-common-table-unurged th.caption{margin:0;padding:10px;vertical-align:middle;color:#444;border:1px solid #aaa;text-align:center;background:url('../../../images/emma/default/background/table_caption_bg.gif?build31910') center repeat-x;}.aw-common-table-unurged td.item{margin:0;padding:1px 1px 1px 2px;vertical-align:middle;color:#444;border:1px solid #aaa;text-align:left;}
-.contents-header{height:30px;}.contents-main{background:#efefef;border-style:solid;border-width:1px;border-color:#cbcbcb;padding:10px;overflow:auto;}.contents-main .caption{border-bottom:2px solid #aaa;margin-bottom:10px;font-weight:bold;padding:2px;}.contents-main th{font-weight:bold;color:#444;}.contents-main td.item{border-bottom:1px solid #aaa;}.contents-main th.header{border-bottom:2px solid #aaa;}.contents-main td{color:#444;}.contents-main td.indent1{padding-left:30px;}.contents-header-table{border-collapse:collapse;border-spacing:0;margin-bottom:5px;width:100%;height:25px;color:#fff;}.contents-header-table .count{color:#f00;}
-.grid-scroll-layer{border-style:solid;border-width:1px;border-color:#000;position:absolute;overflow:scroll;outline:0!important;-webkit-tap-highlight-color:rgba(0,0,0,0);}.grid-table-layer{background-color:#eee;position:relative;overflow:hidden;top:1px;left:1px;}.grid-table{table-layout:fixed;width:0;}.grid-table th{background-image:url('../../../images/picus/default/background/grid_header.gif?build31910');}.grid-header-th{color:#000;font-weight:bold;border-style:solid;border-width:0 1px 0 0;border-color:#aaa;white-space:pre;word-break:keep-all;overflow:hidden;text-align:center;}.grid-header-th.fixed{border-color:#000!important;}.grid-header-th.sort{color:#0067ce;}.grid-header-resizediv{position:absolute;top:0;border-style:solid;border-width:0 9px 0 0;cursor:col-resize;filter:alpha(opacity=00);-moz-opacity:0;opacity:0;}.grid-header-resizediv-dragging{position:absolute;top:0;border-style:solid;border-width:0 3px 0 0;border-color:#0067ce;cursor:col-resize;}.grid-header-cell{padding:0 4px 0 4px;}.grid-tr-current{background-color:#0067ce!important;color:#fff;cursor:default;}.grid-tr-select{background-color:#5E81BC;color:#fff;cursor:default;}.grid-tr{background-color:#fff;cursor:default;}.grid-tr-even{background-color:#f1f5fa;cursor:default;}.grid-td{border-style:solid;border-width:0 1px 0 0;border-color:#aaa;white-space:pre;word-break:keep-all;overflow:hidden;padding:0 4px 0 4px;cursor:pointer;}.grid-td.fixed{border-color:#000!important;cursor:pointer;}.grid-td.record-status{background-color:#d6d6d6;text-align:center;padding:0;cursor:default;}.grid-td.checkbox{background-color:#d6d6d6;text-align:center;padding:0;cursor:default;}.grid-td.radiobutton{background-color:#d6d6d6;text-align:center;padding:0;cursor:default;}.grid-td.blank{border-width:0;cursor:default;}
-.grid-tr-subtotal{color:#00f;background-color:#f1f5fa;cursor:default;}.grid-tr-total{font-size:15px;color:#f00;font-weight:bold;background-color:#fff;cursor:default;}.grid-td.mouseover{color:#f00;background-color:#ffc;cursor:pointer;}
-.layer{position:absolute;}.layer-modallayer{position:absolute;top:0;left:0;width:100%;height:100%;background-color:#ddd;filter:alpha(opacity=40);opacity:.4;-moz-opacity:.4;}.layer-dropshadow{position:absolute;background-image:url('../../../images/common/container/shadow.gif?build31910');background-position:right bottom;}.layer-underiframe{position:absolute;top:0;left:0;width:100%;height:100%;border:none;filter:alpha(opacity=0);-moz-opacity:0;opacity:0;}.layer-frame{position:absolute;border-style:solid;border-width:1px;border-color:#666;box-shadow:2px 2px 5px #666;-moz-box-shadow:2px 2px 5px #666;-webkit-box-shadow:2px 2px 5px #666;}.layer-titlebar{height:30px;color:#262e37;font-weight:bold;overflow:hidden;background-image:url('../../../images/picus/default/background/layer_titlebar_bg.gif?build31910');background-repeat:repeat-x;font-size:120%;}.layer-titlebar-table{height:30px;padding-left:4px;}.layer-titlebar-caption{overflow:hidden;}.layer-titlebar-td-help{width:20px;text-align:center;padding:0;cursor:pointer;}.layer-titlebar-td-close{width:20px;text-align:center;padding:0 4px 0 0;cursor:pointer;}.layer-body{position:absolute;overflow:auto;padding:5px;background-color:#eee;}.layer-body-caption{border-bottom:2px solid #aaa;margin:10px 0;font-weight:bold;padding:2px;}.layer-messagebox-simple{font-size:12px;font-weight:bold;}.layer-messagebox-tl{background:transparent url(../../../images/picus/default/background/messagebox-corners.gif?build31910) no-repeat 0 0;zoom:1;}.layer-messagebox-tc{height:8px;background:transparent url(../../../images/picus/default/background/messagebox-tb.gif?build31910) repeat-x 0 0;overflow:hidden;}.layer-messagebox-tr{background:transparent url(../../../images/picus/default/background/messagebox-corners.gif?build31910) no-repeat right -8px;}.layer-messagebox-ml{background:transparent url(../../../images/picus/default/background/messagebox-l.gif?build31910) repeat-y 0;padding-left:4px;overflow:hidden;zoom:1;}.layer-messagebox-mc{background:#eee url(../../../images/picus/default/background/messagebox-tb.gif?build31910) repeat-x 0 -16px;padding:4px 10px;font-family:"Myriad Pro","Myriad Web","Tahoma","Helvetica","Arial",sans-serif;color:#393939;font-size:12px;}.layer-messagebox-mc h3{font-size:14px;font-weight:bold;margin:0 0 4 0;zoom:1;}.layer-messagebox-mr{background:transparent url(../../../images/picus/default/background/messagebox-r.gif?build31910) repeat-y right;padding-right:4px;overflow:hidden;}.layer-messagebox-bl{background:transparent url(../../../images/picus/default/background/messagebox-corners.gif?build31910) no-repeat 0 -16px;zoom:1;}.layer-messagebox-bc{background:transparent url(../../../images/picus/default/background/messagebox-tb.gif?build31910) repeat-x 0 -8px;height:8px;overflow:hidden;}.layer-messagebox-br{background:transparent url(../../../images/picus/default/background/messagebox-corners.gif?build31910) no-repeat right -24px;}.layer-messagebox-tl,.layer-messagebox-bl{padding-left:8px;overflow:hidden;}.layer-messagebox-tr,.layer-messagebox-br{padding-right:8px;overflow:hidden;}.layer-messagebox-blue .layer-messagebox-bl,.layer-messagebox-blue .layer-messagebox-br,.layer-messagebox-blue .layer-messagebox-tl,.layer-messagebox-blue .layer-messagebox-tr{background-image:url(../../../images/picus/default/background/messagebox-corners-blue.gif?build31910);}.layer-messagebox-blue .layer-messagebox-bc,.layer-messagebox-blue .layer-messagebox-mc,.layer-messagebox-blue .layer-messagebox-tc{background-image:url(../../../images/picus/default/background/messagebox-tb-blue.gif?build31910);}.layer-messagebox-blue .layer-messagebox-mc{background-color:#c3daf9;}.layer-messagebox-blue .layer-messagebox-mc h3{color:#17385b;}.layer-messagebox-blue .layer-messagebox-ml{background-image:url(../../../images/picus/default/background/messagebox-l-blue.gif?build31910);}.layer-messagebox-blue .layer-messagebox-mr{background-image:url(../../../images/picus/default/background/messagebox-r-blue.gif?build31910);}
-.menubar{color:#000;}.menubar .topmenu{height:30px;}.menubar .topmenu ul{margin:0;padding:0;}.menubar .topmenu li{float:left;list-style-type:none;margin:0;line-height:22px;padding:4px 5px 4px 22px;}.menubar .submenu{background-color:#fff;border-style:solid;border-width:1px;border-color:#aaa;}.menubar .submenu ul{margin:0;padding:0;overflow:hidden;}.menubar .submenu li{list-style-type:none;margin:0;padding:0;line-height:22px;padding:1px 5px 1px 22px;white-space:pre;word-break:keep-all;}.menubar .menuitem.menuover{background-color:#5e81bc;color:#fff;cursor:pointer;}.menubar .menuitem.menudisabled{color:#aaa;}.menubar .topmenu .menuitem-terminate{float:none;clear:both;}
-.message-header{background-color:#ddd;font-weight:bold;font-size:150%;padding:5px;}.message-body{height:500px;background-color:#fff;padding:10px;overflow:auto;}.message-header1{margin:0 0 10px 0;font-weight:bold;font-size:120%;}.message-header2{margin:0 0 10px 0;text-decoration:underline;}.message-content{margin:0 0 10px 0;}.message-table{border-style:solid;border-width:1px 0 1px 1px;border-color:#000;}.message-header-tr{height:20px;}.message-header-th{border-style:solid;border-width:0 1px 0 0;border-color:#000;background-color:#ddd;padding:2px;}.message-tr{height:20px;}.message-tr-even{height:20px;background-color:#eee;}.message-td{border-style:solid;border-width:0 1px 0 0;border-color:#000;padding:2px;}
-.page{border-style:solid;border-width:1px;border-color:#aaa;padding:2px 4px 2px 4px;margin:0 2px 0 2px;cursor:pointer;}.currentpage{border-style:solid;border-width:1px;border-color:#aaa;padding:2px 4px 2px 4px;margin:0 2px 0 2px;background-color:#0067ce;color:#fff;}.overpage{border-style:solid;border-width:1px;border-color:#aaa;padding:2px 4px 2px 4px;margin:0 2px 0 2px;background-color:#fff;color:#000;cursor:pointer;}
-.aw-picus-table{width:100%;margin:0;padding:0;border-collapse:collapse;background:#fff;}.aw-picus-table th{margin:0;padding:1px 1px 1px 2px;height:24px;vertical-align:middle;color:#444;border:1px solid #aaa;text-align:left;background:url('../../../images/emma/default/background/table_header_bg.gif?build31910') bottom repeat-x #ebebeb;}.aw-picus-table th.caption{margin:0;padding:10px;vertical-align:middle;color:#444;border:1px solid #aaa;text-align:center;background:url('../../../images/emma/default/background/table_caption_bg.gif?build31910') center repeat-x;}.aw-picus-table td{margin:0;padding:1px 1px 1px 2px;height:24px;vertical-align:middle;color:#444;border:1px solid #aaa;text-align:left;}.aw-picus-table table.inner{width:98%;margin:0;padding:0;border-collapse:collapse;}.aw-picus-table table.inner td{margin:0;padding:5px 5px 5px 0;border:none;text-align:left;}.aw-picus-table table.inner td.uline{border-bottom:1px dotted #aaa;}.aw-picus-table .even{background:#f5f5f5;}.aw-picus-table .ar01{padding:0 0 0 12px;background:url('../../../images/emma/default/icon/arrow01.gif?build31910') left center no-repeat;}.aw-picus-table-unurged{width:100%;margin:0;padding:0;border-collapse:collapse;background:#fff;}.aw-picus-table-unurged th.label{margin:0;padding:1px 1px 1px 2px;height:24px;vertical-align:middle;color:#444;border:1px solid #aaa;text-align:left;background:url('../../../images/emma/default/background/table_header_bg.gif?build31910') bottom repeat-x #ebebeb;}.aw-picus-table-unurged th.caption{margin:0;padding:10px;vertical-align:middle;color:#444;border:1px solid #aaa;text-align:center;background:url('../../../images/emma/default/background/table_caption_bg.gif?build31910') center repeat-x;}.aw-picus-table-unurged td.item{margin:0;padding:1px 1px 1px 2px;height:24px;vertical-align:middle;color:#444;border:1px solid #aaa;text-align:left;}
-.aw-picus-header{height:45px;margin:0;padding:0;border:0;background:url(../../../images/picus/default/header/header_bg2.gif?build31910) top repeat-x;}.aw-picus-header-left{float:left;width:250px;margin:0;padding:0;height:45px;overflow:hidden;}.aw-picus-header-left img{padding:0;height:45px;border:none;}.aw-picus-header-right{float:right;margin:0;padding:0 0 0 25px;background:url(../../../images/picus/default/header/link_bg.gif?build31910) left top no-repeat;color:#666;background-color:#333;font-size:12px;}.aw-picus-header-right-account{float:left;padding:0 10px 2px 0;display:inline;background-color:#333;color:#fff;}.aw-picus-header-right-link{float:left;}.aw-picus-header-right-link ul{margin:0;padding:2px;list-style:none;}.aw-picus-header-right-link li{margin:0;padding-right:5px;display:inline;}.aw-picus-header-right-link-hlinks-li-submenu a,.aw-picus-header-right-link-hlinks-li-submenu a:link,.aw-picus-header-right-link-hlinks-li-submenu a:active,.aw-picus-header-right-link-hlinks-li-submenu a:visited{color:#fff;background:URL(../../../images/common/icon/submenu.gif?build31910) 24px center no-repeat;}.aw-picus-header-right-link a{color:#fff;text-decoration:underline;}.aw-picus-header-right-link a:link{color:#fff;text-decoration:underline;}.aw-picus-header-right-link a:active{color:#fff;text-decoration:underline;}.aw-picus-header-right-link a:visited{color:#fff;text-decoration:underline;}.aw-picus-header-right-link a:hover{color:#fff;text-decoration:underline;}.aw-picus-linkmenu{position:absolute;background-color:#fff;z-index:1;overflow:auto;border-width:1px;border-color:#aaa;border-style:solid;}.aw-picus-linkmenu span{color:#000;text-decoration:none;}.aw-picus-linkmenu .link{padding:3px 20px 3px 3px;cursor:pointer;}.aw-picus-linkmenu .link_over{padding:3px 20px 3px 3px;cursor:pointer;background-color:#5e81bc;}.aw-picus-linkmenu .link_over span{color:#fff;text-decoration:none;}.aw-picus-header-menu{margin:0;padding:0;font-size:0;}.aw-picus-header-menu ul{list-style:none;margin:0;padding:0;}.aw-picus-header-menu li{float:left;font-size:12pt;height:45px;line-height:45px;vertical-align:middle;padding:0 14px 0 15px;margin:0 1px 0 0;cursor:pointer;}.aw-picus-header-menu .current{background-image:url(../../../images/picus/default/header/global_nav_current.gif?build31910);background-repeat:repeat-x;}.aw-picus-header-menu img{width:30px;height:30px;vertical-align:middle;margin:10px 0 10px 0;}.aw-picus-header-menu span{color:#666;font-weight:bold;font-size:12px;margin-left:5px;text-decoration:none;}.aw-picus-header-menu .current span{color:#0067CE;font-weight:bold;}.aw-picus-headerbar{clear:both;height:6px;margin:0;padding:0;background:url(../../../images/picus/default/header/bar_bg2.gif?build31910) left repeat-x #fff;font-size:0;}.aw-picus-workbench{position:absolute;width:250px;}.aw-picus-tabs{height:30px;padding:1px 0 0 10px;background-color:#333;}.aw-picus-menu{height:38px;margin:0;padding-left:10px;}.aw-picus-func{height:30px;border-style:solid;border-width:0 0 1px 0;border-color:#808080;background-image:url('../../../images/picus/default/background/tabs_bg.gif?build31910');}.aw-picus-func2{height:30px;border-style:solid;border-width:0 0 1px 0;border-color:#808080;background-image:url('../../../images/picus/default/background/func_bg2.gif?build31910');}.aw-picus-menubar-layer{height:30px;display:inline;float:left;}.aw-picus-contents{padding:5px;background-color:#333;}.aw-picus-grid{padding:10px;background-color:#333;}.aw-picus-page{position:relative;top:0;left:250px;width:10px;height:10px;overflow:hidden;}.aw-dragger{position:absolute;cursor:col-resize;border-style:solid;filter:alpha(opacity=00);-moz-opacity:0;opacity:0;z-index:1;}.aw-dragger-dragging{position:absolute;cursor:col-resize;border-style:solid;border-color:#0067ce;z-index:1;}.aw-picus-form .caption{margin:0;padding:6px 2px;vertical-align:middle;color:#444;border-top:1px solid #aaa;border-bottom:1px solid #aaa;text-align:left;font-weight:bold;background:url('../../../images/emma/default/background/table_header_bg.gif?build31910') bottom repeat-x #ebebeb;}.aw-picus-form .content{margin:0;padding:1px 2px;vertical-align:middle;color:#444;text-align:left;}
-.aw-snapper-actionbuttons-layer{height:30px;border-style:solid;border-width:1px 0 1px 0;border-color:#808080;background-image:url('../../../images/picus/default/background/tabs_bg.gif?build31910');}.aw-snapper-actionbuttons{margin-left:5px;height:30px;display:inline;float:left;}.aw-snapper-status-layer{height:38px;margin:0;padding:0 3px;text-align:left;background:url('../../../images/picus/default/background/dv_status_bg.gif?build31910') top repeat-x #fff;color:#fff;overflow:hidden;}.aw-snapper-tabs-layer{height:30px;background-color:#333;background:url('../../../images/picus/default/background/dv_tabs_bg.gif?build31910') 0 8px repeat-x #fff;border-bottom:1px solid #999;}.aw-snapper-tabs{position:absolute;left:100px;font-size:12px;}.aw-snapper-iframe{position:absolute;left:93px;}.aw-snapper-sidebar-slider{text-align:center;position:absolute;top:69px;left:80px;width:13px;background-color:#000;background-repeat:no-repeat;background-position:center bottom;background-image:url('../../../images/picus/default/background/dv_toolbar_bg.gif?build31910');color:#fff;border-style:solid;border-width:0 1px 0 1px;border-color:#666;cursor:pointer;}.aw-snapper-sidebar-scrollablemenu{position:absolute;top:69px;left:0;width:80px;background-color:#676767;}.aw-snapper-sidebar-scrollablemenu .scrolltop{background-color:#676767;height:15px;text-align:center;color:#fff;width:80px;border-style:solid;border-width:0 0 1px 0;border-color:#ddd;}.aw-snapper-sidebar-scrollablemenu .scrollbottom{background-color:#676767;height:15px;text-align:center;color:#fff;width:80px;border-style:solid;border-width:1px 0 0 0;border-color:#ddd;}.aw-snapper-sidebar-scrollablemenu .menu{width:80px;overflow:hidden;}.aw-snapper-sidebar-scrollablemenu .menu .table{color:#fff;}.aw-snapper-sidebar-scrollablemenu .menu .tr{cursor:pointer;}.aw-snapper-sidebar-scrollablemenu .menu .tdover{background-color:#5e81bc;}.aw-snapper-sidebar-scrollablemenu .menu .count{color:#FF809F;}.aw-snapper-sidebar-badge{position:absolute;top:0;left:45px;padding:0 5px 0 5px;font-size:12px;font-weight:bold;border-radius:20px;-moz-border-radius:20px;-webkit-border-radius:20px;border-style:solid;border-width:2px;border-color:#fff;background-color:#c00;background:-webkit-gradient(linear,center top,center bottom,from(#ffb3b3),to(#c00));background:-moz-linear-gradient(top,#ffb3b3,#c00);background:-ms-linear-gradient(top,#ffb3b3,#c00);background:linear-gradient(top,#ffb3b3,#c00);}.aw-snapper-sidebar-badge-noborderradius{position:absolute;top:0;left:45px;padding:0 4px 0 4px;font-size:12px;font-weight:bold;border-style:solid;border-width:2px;border-color:#fff;background-color:#c00;filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#ffb3b3',endColorstr='#cc0000');}.aw-snapper-sidebar-badge-ie6{position:absolute;top:0;left:21px;padding:0 4px 0 4px;font-size:12px;font-weight:bold;border-style:solid;border-width:2px;border-color:#fff;background-color:#c00;filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#ffb3b3',endColorstr='#cc0000');}.aw-snapper-property-layer-frame{position:absolute;border-style:solid;border-width:1px;border-color:#666;box-shadow:2px 2px 5px #666;-moz-box-shadow:2px 2px 5px #666;-webkit-box-shadow:2px 2px 5px #666;}.aw-snapper-property-layer-titlebar{height:30px;color:#262e37;font-weight:bold;overflow:hidden;background-image:url('../../../images/picus/default/background/layer_titlebar_bg.gif?build31910');background-repeat:repeat-x;font-size:120%;}.aw-snapper-property-layer-titlebar-table{height:30px;padding-left:4px;}.aw-snapper-property-layer-titlebar-td-close{width:20px;text-align:center;padding:0 4px 0 0;cursor:pointer;}.aw-snapper-property-layer-body{position:absolute;padding:5px;background-color:#eee;}.aw-snapper-property-layer-underiframe{position:absolute;top:0;left:0;width:100%;height:100%;border:none;filter:alpha(opacity=0);-moz-opacity:0;opacity:0;}.aw-snapper-property-layer-underdiv{position:absolute;top:0;left:0;width:100%;height:100%;background-color:#ddd;filter:alpha(opacity=40);opacity:.4;-moz-opacity:.4;}.aw-snapper-property-layer-subtitle{height:25px;padding-left:5px;background-color:#ccc;line-height:25px;margin-top:10px;margin-bottom:10px;overflow:hidden;}.aw-snapper-comment-icons a,.aw-snapper-comment-icons a:link,.aw-snapper-comment-icons a:active,.aw-snapper-comment-icons a:visited,.aw-snapper-comment-icons a:hover{color:#000;}.aw-snapper-comment-icons-even a,.aw-snapper-comment-icons-even a:link,.aw-snapper-comment-icons-even a:active,.aw-snapper-comment-icons-even a:visited,.aw-snapper-comment-icons-even a:hover{color:#000;}.aw-snapper-attachment-icons a,.aw-snapper-attachment-icons a:link,.aw-snapper-attachment-icons a:active,.aw-snapper-attachment-icons a:visited,.aw-snapper-attachment-icons a:hover{color:#000;}.aw-snapper-attachment-icons-even a,.aw-snapper-attachment-icons-even a:link,.aw-snapper-attachment-icons-even a:active,.aw-snapper-attachment-icons-even a:visited,.aw-snapper-attachment-icons-even a:hover{color:#000;}.aw-snapper-comment-table-tr{background-color:#fff;}.aw-snapper-comment-table-tr-even{background-color:#e4e4e4;}.aw-snapper-comment-table-th{height:25px;color:#000;font-weight:bold;border-style:solid;border-width:1px 0 1px 0;border-bottom-color:#aaa;border-top-color:#ccc;white-space:pre;word-break:keep-all;overflow:hidden;text-align:center;background-image:url('../../../images/emma/default/background/grid_header.gif?build31910');padding:0 4px 0 4px;}.aw-snapper-comment-table-td{padding:6px;}.aw-snapper-comment-table-td-even{padding:6px;}.aw-snapper-nested-table{border-style:dotted;border-width:0 0 1px 0;border-color:#aaa;margin-bottom:2px;}.aw-snapper-node{padding:0;}.aw-snapper-node-even{padding:0;}.aw-snapper-node-current{border-style:solid;border-width:2px;border-color:#f00;}.snapper-reference-table{width:660px;}.snapper-reference-table .referencee-header{height:20px;padding:0 0 0 10px;}.snapper-reference-table .own{border-style:solid;border-width:2px;border-color:#aaa;background-color:#ffc;padding:4px;}.snapper-reference-table .exist{border-style:solid;border-width:2px;border-color:#aaa;background-color:#fff;padding:4px;}.snapper-reference-table .notexist{border-style:solid;border-width:2px;border-color:#aaa;background-color:#ddd;padding:4px;}.snapper-reference-table .listname{font-size:120%;font-weight:bold;}.snapper-ruletable-headertable{width:672px;border-style:solid;border-width:1px 0 0 1px;border-color:#aaa;table-layout:fixed;margin:0 0 0 1px;}.snapper-ruletable-headertable th{height:25px;color:#000;font-weight:bold;border-style:solid;border-width:0 1px 1px 0;border-color:#aaa;white-space:pre;word-break:keep-all;overflow:hidden;text-align:center;background-image:url('../../../images/emma/default/background/grid_header.gif?build31910');padding:0 2px 0 2px;}.snapper-ruletable-contentstable{width:672px;border-style:solid;border-width:0 0 0 1px;border-color:#aaa;table-layout:fixed;margin:0 0 0 1px;}.snapper-ruletable table.current{width:673px;border-width:2px;border-style:solid;border-color:#f00;margin:0;}.snapper-ruletable table.current.continuum{width:673px;border-width:0 2px 2px 2px;border-style:solid;border-color:#f00;margin:0;}.snapper-ruletable-contentstable tr.odd{background-color:#fff;}.snapper-ruletable-contentstable tr.even{background-color:#f5f5f5;}.snapper-ruletable-contentstable td{border-style:solid;border-width:0 1px 1px 0;border-color:#aaa;padding:2px;word-break:break-all;}.snapper-ruletable-contentstable .no{text-align:center;}.snapper-ruletable-contentstable .node{font-weight:bold;font-size:110%;}.snapper-ruletable-rulecandidatestable td.mid{border-style:dotted;border-width:0 0 1px 0;border-color:#aaa;margin-bottom:2px;}.snapper-ruletable-rulecandidatestable td.link{color:#1851E7;cursor:pointer;}.snapper-ruletable-rulecandidatestable td{border:none;background:none;}.snapper-ruletable-rulecandidatestable td.execdate{color:#666;}.snapper-ruletable-rulecandidatestable td.proxyimage{color:#f00;}.snapper-ruletable-rulecandidatestable td.proxyobjectname{color:#f00;}.snapper-ruletable-candidatelink{margin:0 0 2px 0;background-color:#ffffd5;padding:4px 4px 4px 22px;background-image:url('../../..//images/common/icon/action/edit.gif?build31910');background-repeat:no-repeat;}.snapper-ruletable-nodemessage{margin:0 0 2px 0;background-color:#ddd;padding:4px 4px 4px 4px;font-weight:bold;border-style:solid;border-width:1px;border-color:#aaa;font-size:12px;}.snapper-ruletable-information{margin:2px 0 5px 0;background-color:#ffffd5;padding:4px 4px 4px 24px;background-image:url('../../..//images/common/icon/etc/info20.gif?build31910');background-repeat:no-repeat;}.snapper-passbacktable-headertable{width:560px;border-style:solid;border-width:1px 0 0 1px;border-color:#aaa;table-layout:fixed;margin:0 1px 0 1px;}.snapper-passbacktable-headertable th{height:25px;color:#000;font-weight:bold;border-style:solid;border-width:0 1px 1px 0;border-color:#aaa;white-space:pre;word-break:keep-all;overflow:hidden;text-align:center;background-image:url('../../../images/emma/default/background/grid_header.gif?build31910');padding:0 4px 0 4px;}.snapper-passbacktable-contentstable{width:560px;border-style:solid;border-width:0 0 0 1px;border-color:#aaa;table-layout:fixed;margin:0 1px 0 1px;}.snapper-passbacktable table.current{border-width:2px;border-style:solid;border-color:#f00;margin:0;width:562px;color:#aaa;}.snapper-passbacktable table.current.continuum{border-width:0 2px 2px 2px;border-style:solid;border-color:#f00;margin:0;width:562px;color:#aaa;}.snapper-passbacktable-contentstable.disabled{color:#aaa;}.snapper-passbacktable-contentstable.over{width:560px;cursor:pointer;}.snapper-passbacktable-contentstable tr{background-color:#fff;}.snapper-passbacktable-contentstable tr.even{background-color:#f5f5f5;}.snapper-passbacktable-contentstable.selected tr{background-color:#0067ce!important;color:#fff;}.snapper-passbacktable-contentstable.over tr{background-color:#ddd;}.snapper-passbacktable-contentstable.over tr.even{background-color:#ddd;}.snapper-passbacktable-contentstable td{border-style:solid;border-width:0 1px 1px 0;border-color:#aaa;padding:2px 4px 2px 4px;}.snapper-passbacktable-contentstable .no{text-align:center;}.snapper-passbacktable-contentstable .node{font-weight:bold;font-size:110%;}.snapper-transferbutton{position:absolute;top:0;left:4px;}.snapper-transferbutton button{width:23px;height:32px;text-align:center;}.snapper-transferbutton .nonebutton img{vertical-align:middle;}.snapper-closebutton{position:absolute;top:0;text-align:right;}.snapper-closebutton button{width:23px;height:32px;text-align:center;}.snapper-closebutton .nonebutton img{vertical-align:middle;}.snapper-approvehistorytable-th{height:auto;padding:4px;background-color:#BCBCBC;background-image:url('../../../images/picus/default/background/grid_header.gif?build31910');background-repeat:repeat-x;white-space:normal;word-break:normal;overflow:visible;}
-.tabs-layer{overflow:hidden;height:30px;font-size:12px;}.tabs-table{height:29px;margin-top:1px;}.tabs-item{height:28px;border-style:solid;border-width:1px 1px 0 1px;border-color:#aaa;background-color:#ccc;color:#000;padding:0 10px 0 10px;white-space:nowrap;background-image:url('../../../images/picus/default/background/tab_bg.gif?build31910');}.tabs-item a{color:#000;}.tabs-item a:link{color:#000;}.tabs-item a:active{color:#000;}.tabs-item a:visited{color:#000;}.tabs-item-mouseover{height:28px;background-color:#eee;border-style:solid;border-width:1px 1px 0 1px;border-color:#aaa;color:#fff;padding:0 10px 0 10px;white-space:nowrap;background-image:url('../../../images/picus/default/background/tab_bg_over.gif?build31910');}.tabs-item-mouseover a{color:#fff;}.tabs-item-mouseover a:link{color:#fff;}.tabs-item-mouseover a:active{color:#fff;}.tabs-item-mouseover a:visited{color:#fff;}.tabs-blank{padding:0 5px 0 5px;border-style:solid;border-width:0 0 1px 0;border-color:#aaa;}.tabs-last{width:100%;border-style:solid;border-width:0 0 1px 0;border-color:#aaa;}.tabs-leftarrow{width:30px;background-image:url('../../../images/picus/default/background/tabs-leftarrow.gif?build31910');background-repeat:no-repeat;background-position:0 2px;cursor:pointer;}.tabs-rightarrow{width:30px;background-image:url('../../../images/picus/default/background/tabs-rightarrow.gif?build31910');background-repeat:no-repeat;background-position:2px 2px;cursor:pointer;}.tabs-page{background-color:#eee;border-style:solid;border-width:0 1px 1px 1px;border-color:#aaa;padding:4px;overflow:auto;}
-.aw-menubar{height:30px;border-style:solid;border-width:0 0 1px 0;border-color:#808080;background-image:url('../../../images/picus/default/background/tabs_bg.gif?build31910');}.aw-menubar2{height:30px;border-style:solid;border-width:0 0 1px 0;border-color:#808080;background-image:url('../../../images/picus/default/background/func_bg2.gif?build31910');}
-.ygtvtd_current{background-color:#0067ce;border-style:solid;border-width:1px;border-color:#000;padding:0;}
-.workbench-layer{border-style:outset;border-width:0 1px 0 0;border-color:#333;white-space:nowrap;}.workbench-item{width:190px;border-style:solid;border-width:0 0 1px 0;border-color:#666;overflow:hidden;background-image:url('../../../images/picus/default/background/workbench_item_work.gif?build31910');background-repeat:no-repeat;font-weight:bold;line-height:30px;color:#000;cursor:pointer;padding-left:60px;}.workbench-item-current{width:190px;border-style:solid;border-width:0 0 1px 0;border-color:#666;overflow:hidden;background-image:url('../../../images/picus/default/background/workbench_item_work_over.gif?build31910');background-repeat:no-repeat;font-weight:bold;line-height:30px;color:#fff;cursor:pointer;padding-left:60px;}.workbench-item-mouseover{width:190px;border-style:solid;border-width:0 0 1px 0;border-color:#666;overflow:hidden;background-image:url('../../../images/picus/default/background/workbench_item_work_over.gif?build31910');background-repeat:no-repeat;font-weight:bold;line-height:30px;color:#fff;cursor:pointer;padding-left:60px;}.workbench-item-todo{width:190px;border-style:solid;border-width:0 0 1px 0;border-color:#666;overflow:hidden;background-image:url('../../../images/picus/default/background/workbench_item_todo.gif?build31910');background-repeat:no-repeat;font-weight:bold;line-height:30px;color:#000;cursor:pointer;padding-left:60px;font-size:120%;}.workbench-item-todo-current{width:190px;border-style:solid;border-width:0 0 1px 0;border-color:#666;overflow:hidden;background-image:url('../../../images/picus/default/background/workbench_item_todo_over.gif?build31910');background-repeat:no-repeat;font-weight:bold;line-height:30px;color:#fff;cursor:pointer;padding-left:60px;font-size:120%;}.workbench-item-todo-mouseover{width:190px;border-style:solid;border-width:0 0 1px 0;border-color:#666;overflow:hidden;background-image:url('../../../images/picus/default/background/workbench_item_todo_over.gif?build31910');background-repeat:no-repeat;font-weight:bold;line-height:30px;color:#fff;cursor:pointer;padding-left:60px;font-size:120%;}.workbench-item-progress{width:190px;border-style:solid;border-width:0 0 1px 0;border-color:#666;overflow:hidden;background-image:url('../../../images/picus/default/background/workbench_item_progress.gif?build31910');background-repeat:no-repeat;font-weight:bold;line-height:30px;color:#000;cursor:pointer;padding-left:60px;font-size:120%;}.workbench-item-progress-current{width:190px;border-style:solid;border-width:0 0 1px 0;border-color:#666;overflow:hidden;background-image:url('../../../images/picus/default/background/workbench_item_progress_over.gif?build31910');background-repeat:no-repeat;font-weight:bold;line-height:30px;color:#fff;cursor:pointer;padding-left:60px;font-size:120%;}.workbench-item-progress-mouseover{width:190px;border-style:solid;border-width:0 0 1px 0;border-color:#666;overflow:hidden;background-image:url('../../../images/picus/default/background/workbench_item_progress_over.gif?build31910');background-repeat:no-repeat;font-weight:bold;line-height:30px;color:#fff;cursor:pointer;padding-left:60px;font-size:120%;}.workbench-item-proxyapprove{width:190px;border-style:solid;border-width:0 0 1px 0;border-color:#666;overflow:hidden;background-image:url('../../../images/picus/default/background/workbench_item_proxyapprove.gif?build31910');background-repeat:no-repeat;font-weight:bold;line-height:30px;color:#000;cursor:pointer;padding-left:60px;font-size:120%;}.workbench-item-proxyapprove-current{width:190px;border-style:solid;border-width:0 0 1px 0;border-color:#666;overflow:hidden;background-image:url('../../../images/picus/default/background/workbench_item_proxyapprove_over.gif?build31910');background-repeat:no-repeat;font-weight:bold;line-height:30px;color:#fff;cursor:pointer;padding-left:60px;font-size:120%;}.workbench-item-proxyapprove-mouseover{width:190px;border-style:solid;border-width:0 0 1px 0;border-color:#666;overflow:hidden;background-image:url('../../../images/picus/default/background/workbench_item_proxyapprove_over.gif?build31910');background-repeat:no-repeat;font-weight:bold;line-height:30px;color:#fff;cursor:pointer;padding-left:60px;font-size:120%;}.workbench-item-apply{width:190px;border-style:solid;border-width:0 0 1px 0;border-color:#666;overflow:hidden;background-image:url('../../../images/picus/default/background/workbench_item_apply.gif?build31910');background-repeat:no-repeat;font-weight:bold;line-height:30px;color:#000;cursor:pointer;padding-left:60px;font-size:120%;}.workbench-item-apply-current{width:190px;border-style:solid;border-width:0 0 1px 0;border-color:#666;overflow:hidden;background-image:url('../../../images/picus/default/background/workbench_item_apply_over.gif?build31910');background-repeat:no-repeat;font-weight:bold;line-height:30px;color:#fff;cursor:pointer;padding-left:60px;font-size:120%;}.workbench-item-apply-mouseover{width:190px;border-style:solid;border-width:0 0 1px 0;border-color:#666;overflow:hidden;background-image:url('../../../images/picus/default/background/workbench_item_apply_over.gif?build31910');background-repeat:no-repeat;font-weight:bold;line-height:30px;color:#fff;cursor:pointer;padding-left:60px;font-size:120%;}.workbench-item-proxyapply{width:190px;border-style:solid;border-width:0 0 1px 0;border-color:#666;overflow:hidden;background-image:url('../../../images/picus/default/background/workbench_item_proxyapply.gif?build31910');background-repeat:no-repeat;font-weight:bold;line-height:30px;color:#000;cursor:pointer;padding-left:60px;font-size:120%;}.workbench-item-proxyapply-current{width:190px;border-style:solid;border-width:0 0 1px 0;border-color:#666;overflow:hidden;background-image:url('../../../images/picus/default/background/workbench_item_proxyapply_over.gif?build31910');background-repeat:no-repeat;font-weight:bold;line-height:30px;color:#fff;cursor:pointer;padding-left:60px;font-size:120%;}.workbench-item-proxyapply-mouseover{width:190px;border-style:solid;border-width:0 0 1px 0;border-color:#666;overflow:hidden;background-image:url('../../../images/picus/default/background/workbench_item_proxyapply_over.gif?build31910');background-repeat:no-repeat;font-weight:bold;line-height:30px;color:#fff;cursor:pointer;padding-left:60px;font-size:120%;}.workbench-item-search{width:190px;border-style:solid;border-width:0 0 1px 0;border-color:#666;overflow:hidden;background-image:url('../../../images/picus/default/background/workbench_item_search.gif?build31910');background-repeat:no-repeat;font-weight:bold;line-height:30px;color:#000;cursor:pointer;padding-left:60px;font-size:120%;}.workbench-item-search-current{width:190px;border-style:solid;border-width:0 0 1px 0;border-color:#666;overflow:hidden;background-image:url('../../../images/picus/default/background/workbench_item_search_over.gif?build31910');background-repeat:no-repeat;font-weight:bold;line-height:30px;color:#fff;cursor:pointer;padding-left:60px;font-size:120%;}.workbench-item-search-mouseover{width:190px;border-style:solid;border-width:0 0 1px 0;border-color:#666;overflow:hidden;background-image:url('../../../images/picus/default/background/workbench_item_search_over.gif?build31910');background-repeat:no-repeat;font-weight:bold;line-height:30px;color:#fff;cursor:pointer;padding-left:60px;font-size:120%;}.workbench-item-personalize{width:190px;border-style:solid;border-width:0 0 1px 0;border-color:#666;overflow:hidden;background-image:url('../../../images/picus/default/background/workbench_item_personalize.gif?build31910');background-repeat:no-repeat;font-weight:bold;line-height:30px;color:#000;cursor:pointer;padding-left:60px;font-size:120%;}.workbench-item-personalize-current{width:190px;border-style:solid;border-width:0 0 1px 0;border-color:#666;overflow:hidden;background-image:url('../../../images/picus/default/background/workbench_item_personalize_over.gif?build31910');background-repeat:no-repeat;font-weight:bold;line-height:30px;color:#fff;cursor:pointer;padding-left:60px;font-size:120%;}.workbench-item-personalize-mouseover{width:190px;border-style:solid;border-width:0 0 1px 0;border-color:#666;overflow:hidden;background-image:url('../../../images/picus/default/background/workbench_item_personalize_over.gif?build31910');background-repeat:no-repeat;font-weight:bold;line-height:30px;color:#fff;cursor:pointer;padding-left:60px;font-size:120%;}.workbench-content{width:230px;border-style:solid;border-width:0 0 1px 0;border-color:#666;overflow:auto;padding:10px;}.workbench-content-control{width:224px;background-color:#fff;border-style:solid;border-width:3px;border-color:#aaa;overflow:auto;}
diff --git a/AgileWorks/WebContent/css/picus/default/grid-base.css b/AgileWorks/WebContent/css/picus/default/grid-base.css
deleted file mode 100644
index 1959732c5b14458df3ccc5b8833445b23836f298..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/picus/default/grid-base.css
+++ /dev/null
@@ -1,155 +0,0 @@
-/*
- * grid-base.css?build31910
- *
- * Gridを描画するために必要なCSSセレクタを定義します
- */
-
-.grid-scroll-layer {
- border-style:solid;
- border-width:1px;
- border-color:#000000;
- position:absolute;
- overflow:scroll;
- outline: 0 !important;
- -webkit-tap-highlight-color: rgba(0,0,0,0);
-}
-
-.grid-scroll-body {
-}
-
-.grid-table-layer {
- background-color:#eeeeee;
- position:relative;
- overflow:hidden;
- top:1px;
- left:1px;
-}
-
-.grid-table {
- table-layout:fixed;
- width:0px;
-}
-
-.grid-col {
-}
-
-.grid-table th {
- background-image: url( '../../../images/picus/default/background/grid_header.gif?build31910' );
-}
-
-.grid-header-th {
- color:#000000;
- font-weight:bold;
- border-style:solid;
- border-width:0px 1px 0px 0px;
- border-color:#aaaaaa;
- white-space:pre;
- word-break:keep-all;
- overflow:hidden;
- text-align:center;
-}
-
-.grid-header-th.fixed {
- border-color:#000000 !important;
-}
-
-.grid-header-th.sort {
- color: #0067ce;
-}
-
-.grid-header-th.record-status {
-}
-
-.grid-header-th.checkbox {
-}
-
-.grid-header-th.radiobutton {
-}
-
-.grid-header-resizediv {
- position: absolute;
- top: 0px;
- border-style: solid;
- border-width: 0px 9px 0px 0px;
- cursor: col-resize;
- filter:alpha(opacity=00);
- -moz-opacity:0;
- opacity:0;
-}
-
-.grid-header-resizediv-dragging {
- position: absolute;
- top: 0px;
- border-style: solid;
- border-width: 0px 3px 0px 0px;
- border-color: #0067ce;
- cursor: col-resize;
-}
-
-.grid-header-cell {
- padding:0px 4px 0px 4px;
-}
-
-.grid-tr-current {
- background-color:#0067ce !important;
- color:#ffffff;
- cursor:default;
-}
-
-.grid-tr-select {
- background-color:#5E81BC;
- color:#ffffff;
- cursor:default;
-}
-
-.grid-tr {
- background-color:#ffffff;
- cursor:default;
-}
-
-.grid-tr-even {
- background-color:#f1f5fa;
- cursor:default;
-}
-
-.grid-td {
- border-style:solid;
- border-width:0px 1px 0px 0px;
- border-color:#aaaaaa;
- white-space:pre;
- word-break:keep-all;
- overflow:hidden;
- padding:0px 4px 0px 4px;
- cursor:pointer;
-}
-
-.grid-td.fixed {
- border-color:#000000 !important;
- cursor:pointer;
-}
-
-.grid-td.record-status {
- background-color:#d6d6d6;
- text-align:center;
- padding:0px;
- cursor:default;
-}
-
-.grid-td.checkbox {
- background-color:#d6d6d6;
- text-align:center;
- padding:0px;
- cursor:default;
-}
-
-.grid-td.radiobutton {
- background-color:#d6d6d6;
- text-align:center;
- padding:0px;
- cursor:default;
-}
-
-.grid-td.blank {
- border-width:0px;
- cursor:default;
-}
diff --git a/AgileWorks/WebContent/css/picus/default/grid-ext.css b/AgileWorks/WebContent/css/picus/default/grid-ext.css
deleted file mode 100644
index 81677556c9ad3de4314c47fb6cb904a9fa77fa49..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/picus/default/grid-ext.css
+++ /dev/null
@@ -1,28 +0,0 @@
-/*
- * grid-ext.css?build31910
- *
- * Gridで利用されるCSSセレクタを定義します
- */
-
-/* 小計行 */
-.grid-tr-subtotal {
- color:#0000ff;
- background-color:#f1f5fa;
- cursor:default;
-}
-
-/* 総計行 */
-.grid-tr-total {
- font-size:15px;
- color:#ff0000;
- font-weight:bold;
- background-color:#ffffff;
- cursor:default;
-}
-
-/* ドリルスルー可能セル - マウスオーバー */
-.grid-td.mouseover {
- color:#ff0000;
- background-color:#ffffcc;
- cursor:pointer;
-}
diff --git a/AgileWorks/WebContent/css/picus/default/layer.css b/AgileWorks/WebContent/css/picus/default/layer.css
deleted file mode 100644
index b77e064e50de107f0bac16cfc60de9249aa6e5e5..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/picus/default/layer.css
+++ /dev/null
@@ -1,152 +0,0 @@
-/*
- * layer.css?build31910
- *
- * Layerを描画するために必要なCSSセレクタを定義します
- */
-
-.layer {
- position:absolute;
-}
-
-/*
- * モーダル用DIV要素に適用されるクラスセレクタ
- */
-.layer-modallayer {
- position:absolute;
- top:0px;
- left:0px;
- width:100%;
- height:100%;
- background-color:#dddddd;
- filter:alpha(opacity=40);
- opacity:0.4;
- -moz-opacity:0.4;
-}
-
-/*
- * ドロップシャドウに適用されるクラスセレクタ
- */
-.layer-dropshadow {
- position: absolute;
- background-image: url('../../../images/common/container/shadow.gif?build31910');
- background-position: right bottom;
-}
-
-/*
- * IFRAME要素に適用されるクラスセレクタ
- */
-.layer-underiframe {
- position:absolute;
- top:0px;
- left:0px;
- width:100%;
- height:100%;
- border:none;
- filter:alpha(opacity=0);
- -moz-opacity:0;
- opacity:0;
-}
-
-/*
- * Layerの描画要素に適用されるクラスセレクタ
- */
-.layer-frame {
- position:absolute;
- border-style:solid;
- border-width:1px;
- border-color:#666666;
- box-shadow: 2px 2px 5px #666666;
- -moz-box-shadow: 2px 2px 5px #666666;
- -webkit-box-shadow: 2px 2px 5px #666666;
-}
-
-/*
- * タイトルバーに適用されるクラスセレクタ
- */
-.layer-titlebar {
- height:30px;
- color:#262e37;
- font-weight:bold;
- overflow:hidden;
- background-image: url( '../../../images/picus/default/background/layer_titlebar_bg.gif?build31910' );
- background-repeat:repeat-x;
- font-size:120%;
-}
-
-/*
- * タイトルバー内のTABLE要素に適用されるクラスセレクタ
- */
-.layer-titlebar-table {
- height:30px;
- padding-left:4px;
-}
-
-/*
- * タイトルバー内のタイトル要素に適用されるクラスセレクタ
- */
-.layer-titlebar-caption {
- overflow : hidden;
-}
-
-/*
- * タイトルバー内のヘルプアイコンのTD要素に適用されるクラスセレクタ
- */
-.layer-titlebar-td-help {
- width:20px;
- text-align:center;
- padding:0px;
- cursor:pointer;
-}
-
-/*
- * タイトルバー内のクローズアイコンのTD要素に適用されるクラスセレクタ
- */
-.layer-titlebar-td-close {
- width:20px;
- text-align:center;
- padding:0px 4px 0px 0px;
- cursor:pointer;
-}
-
-/*
- * ボディに適用されるクラスセレクタ
- */
-.layer-body {
- position:absolute;
- overflow:auto;
- padding:5px;
- background-color:#eeeeee;
-}
-
-.layer-body-caption {
- border-bottom:2px solid #aaa;
- margin:10px 0px;
- font-weight:bold;
- padding:2px;
-}
-/*
- * メッセージボックスに適用されるクラスセレクタ
- */
-.layer-messagebox-simple {
- font-size:12px;
- font-weight:bold;
-}
-
-.layer-messagebox-tl{background:transparent url(../../../images/picus/default/background/messagebox-corners.gif?build31910) no-repeat 0 0;zoom:1;}
-.layer-messagebox-tc{height:8px;background:transparent url(../../../images/picus/default/background/messagebox-tb.gif?build31910) repeat-x 0 0;overflow:hidden;}
-.layer-messagebox-tr{background:transparent url(../../../images/picus/default/background/messagebox-corners.gif?build31910) no-repeat right -8px;}
-.layer-messagebox-ml{background:transparent url(../../../images/picus/default/background/messagebox-l.gif?build31910) repeat-y 0;padding-left:4px;overflow:hidden;zoom:1;}
-.layer-messagebox-mc{background:#eee url(../../../images/picus/default/background/messagebox-tb.gif?build31910) repeat-x 0 -16px;padding:4px 10px;font-family:"Myriad Pro","Myriad Web","Tahoma","Helvetica","Arial",sans-serif;color:#393939;font-size:12px;}
-.layer-messagebox-mc h3{font-size:14px;font-weight:bold;margin:0 0 4 0;zoom:1;}
-.layer-messagebox-mr{background:transparent url(../../../images/picus/default/background/messagebox-r.gif?build31910) repeat-y right;padding-right:4px;overflow:hidden;}
-.layer-messagebox-bl{background:transparent url(../../../images/picus/default/background/messagebox-corners.gif?build31910) no-repeat 0 -16px;zoom:1;}
-.layer-messagebox-bc{background:transparent url(../../../images/picus/default/background/messagebox-tb.gif?build31910) repeat-x 0 -8px;height:8px;overflow:hidden;}
-.layer-messagebox-br{background:transparent url(../../../images/picus/default/background/messagebox-corners.gif?build31910) no-repeat right -24px;}
-.layer-messagebox-tl,.layer-messagebox-bl{padding-left:8px;overflow:hidden;}
-.layer-messagebox-tr,.layer-messagebox-br{padding-right:8px;overflow:hidden;}
-.layer-messagebox-blue .layer-messagebox-bl,.layer-messagebox-blue .layer-messagebox-br,.layer-messagebox-blue .layer-messagebox-tl,.layer-messagebox-blue .layer-messagebox-tr{background-image:url(../../../images/picus/default/background/messagebox-corners-blue.gif?build31910);}
-.layer-messagebox-blue .layer-messagebox-bc,.layer-messagebox-blue .layer-messagebox-mc,.layer-messagebox-blue .layer-messagebox-tc{background-image:url(../../../images/picus/default/background/messagebox-tb-blue.gif?build31910);}
-.layer-messagebox-blue .layer-messagebox-mc{background-color:#c3daf9;}
-.layer-messagebox-blue .layer-messagebox-mc h3{color:#17385b;}
-.layer-messagebox-blue .layer-messagebox-ml{background-image:url(../../../images/picus/default/background/messagebox-l-blue.gif?build31910);}
-.layer-messagebox-blue .layer-messagebox-mr{background-image:url(../../../images/picus/default/background/messagebox-r-blue.gif?build31910);}
diff --git a/AgileWorks/WebContent/css/picus/default/menu-base.css b/AgileWorks/WebContent/css/picus/default/menu-base.css
deleted file mode 100644
index a23458caa31b85f005a07f8f3facc286dce550ac..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/picus/default/menu-base.css
+++ /dev/null
@@ -1,58 +0,0 @@
-.menubar {
- color:#000000;
-}
-
-.menubar .topmenu {
- height:30px;
-}
-
-.menubar .topmenu ul {
- margin:0px;
- padding:0px;
-}
-
-.menubar .topmenu li {
- float:left;
- list-style-type:none;
- margin:0px;
- line-height:22px;
- padding: 4px 5px 4px 22px;
-}
-
-.menubar .submenu {
- background-color:#ffffff;
- border-style:solid;
- border-width:1px;
- border-color:#aaaaaa;
-}
-
-.menubar .submenu ul {
- margin:0px;
- padding:0px;
- overflow:hidden;
-}
-
-.menubar .submenu li {
- list-style-type:none;
- margin:0px;
- padding:0px;
- line-height:22px;
- padding: 1px 5px 1px 22px;
- white-space:pre;
- word-break:keep-all;
-}
-
-.menubar .menuitem.menuover {
- background-color:#5e81bc;
- color:#ffffff;
- cursor:pointer;
-}
-
-.menubar .menuitem.menudisabled {
- color:#aaaaaa;
-}
-
-.menubar .topmenu .menuitem-terminate {
- float:none;
- clear:both;
-}
diff --git a/AgileWorks/WebContent/css/picus/default/message.css b/AgileWorks/WebContent/css/picus/default/message.css
deleted file mode 100644
index 7bf544c05d483a5c6d931430fe2aeb14874a2f6f..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/picus/default/message.css
+++ /dev/null
@@ -1,62 +0,0 @@
-.message-header {
- background-color:#dddddd;
- font-weight:bold;
- font-size:150%;
- padding:5px;
-}
-
-.message-body {
- height:500px;
- background-color:#ffffff;
- padding:10px;
- overflow:auto;
-}
-
-.message-header1 {
- margin:0px 0px 10px 0px;
- font-weight:bold;
- font-size:120%;
-}
-
-.message-header2 {
- margin:0px 0px 10px 0px;
- text-decoration:underline;
-}
-
-.message-content {
- margin:0px 0px 10px 0px;
-}
-
-.message-table {
- border-style:solid;
- border-width:1px 0px 1px 1px;
- border-color:#000000;
-}
-
-.message-header-tr {
- height:20px;
-}
-
-.message-header-th {
- border-style:solid;
- border-width:0px 1px 0px 0px;
- border-color:#000000;
- background-color:#dddddd;
- padding:2px;
-}
-
-.message-tr {
- height:20px;
-}
-
-.message-tr-even {
- height:20px;
- background-color:#eeeeee;
-}
-
-.message-td {
- border-style:solid;
- border-width:0px 1px 0px 0px;
- border-color:#000000;
- padding:2px;
-}
diff --git a/AgileWorks/WebContent/css/picus/default/pagination.css b/AgileWorks/WebContent/css/picus/default/pagination.css
deleted file mode 100644
index 8682ca519558f3840c221abfbffeeb97b8373a81..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/picus/default/pagination.css
+++ /dev/null
@@ -1,29 +0,0 @@
-.page {
- border-style:solid;
- border-width:1px;
- border-color:#aaaaaa;
- padding:2px 4px 2px 4px;
- margin:0px 2px 0px 2px;
- cursor:pointer;
-}
-
-.currentpage {
- border-style:solid;
- border-width:1px;
- border-color:#aaaaaa;
- padding:2px 4px 2px 4px;
- margin:0px 2px 0px 2px;
- background-color:#0067ce;
- color:#ffffff;
-}
-
-.overpage {
- border-style:solid;
- border-width:1px;
- border-color:#aaaaaa;
- padding:2px 4px 2px 4px;
- margin:0px 2px 0px 2px;
- background-color:#ffffff;
- color:#000000;
- cursor:pointer;
-}
diff --git a/AgileWorks/WebContent/css/picus/default/picus-table.css b/AgileWorks/WebContent/css/picus/default/picus-table.css
deleted file mode 100644
index 9949aa7b6966bee3f229b30199940db5f1575b16..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/picus/default/picus-table.css
+++ /dev/null
@@ -1,117 +0,0 @@
-/*
- * picus-table.css?build31910
- *
- * アプリケーション「Picus」で使用されるテーブル関連のCSSセレクタを定義します
- */
-
-.aw-picus-table {
- width: 100%;
- margin: 0px;
- padding: 0px;
- border-collapse: collapse;
- background: #fff;
-}
-
-.aw-picus-table th {
- margin: 0px;
- padding: 1px 1px 1px 2px;
- height: 24px;
- vertical-align: middle;
- color: #444444;
- border: 1px solid #aaaaaa;
- text-align: left;
- background: url('../../../images/emma/default/background/table_header_bg.gif?build31910') bottom repeat-x #ebebeb;
-}
-
-.aw-picus-table th.caption {
- margin: 0px;
- padding: 10px;
- vertical-align: middle;
- color: #444444;
- border: 1px solid #aaaaaa;
- text-align: center;
- background: url('../../../images/emma/default/background/table_caption_bg.gif?build31910') center repeat-x;
-}
-
-.aw-picus-table td {
- margin: 0px;
- padding: 1px 1px 1px 2px;
- height: 24px;
- vertical-align: middle;
- color: #444444;
- border: 1px solid #aaaaaa;
- text-align: left;
-}
-
-/* テーブル(内部) */
-.aw-picus-table table.inner {
- width: 98%;
- margin: 0px;
- padding: 0px;
- border-collapse: collapse;
-}
-
-.aw-picus-table table.inner td {
- margin: 0px;
- padding: 5px 5px 5px 0px;
- border: none;
- text-align: left;
-}
-
-.aw-picus-table table.inner td.uline {
- border-bottom: 1px dotted #aaa;
-}
-
-/* 偶数行色指定(TR) */
-.aw-picus-table .even {
- background: #f5f5f5;
-}
-
-/* マーカー指定(SPAN) */
-.aw-picus-table .ar01 {
- padding: 0px 0px 0px 12px;
- background: url('../../../images/emma/default/icon/arrow01.gif?build31910') left center no-repeat;
-}
-
-
-/*
- * 個人設定:代理権限設定
- */
-.aw-picus-table-unurged {
- width: 100%;
- margin: 0px;
- padding: 0px;
- border-collapse: collapse;
- background: #fff;
-}
-
-.aw-picus-table-unurged th.label {
- margin: 0px;
- padding: 1px 1px 1px 2px;
- height: 24px;
- vertical-align: middle;
- color: #444444;
- border: 1px solid #aaaaaa;
- text-align: left;
- background: url('../../../images/emma/default/background/table_header_bg.gif?build31910') bottom repeat-x #ebebeb;
-}
-
-.aw-picus-table-unurged th.caption {
- margin: 0px;
- padding: 10px;
- vertical-align: middle;
- color: #444444;
- border: 1px solid #aaaaaa;
- text-align: center;
- background: url('../../../images/emma/default/background/table_caption_bg.gif?build31910') center repeat-x;
-}
-
-.aw-picus-table-unurged td.item {
- margin: 0px;
- padding: 1px 1px 1px 2px;
- height: 24px;
- vertical-align: middle;
- color: #444444;
- border: 1px solid #aaaaaa;
- text-align: left;
-}
diff --git a/AgileWorks/WebContent/css/picus/default/picus.css b/AgileWorks/WebContent/css/picus/default/picus.css
deleted file mode 100644
index 05ab9e61960ab5ba133255a9ed7d5a16e314a2df..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/picus/default/picus.css
+++ /dev/null
@@ -1,323 +0,0 @@
-/*
- * picus.css?build31910
- *
- * アプリケーション「Picus」で使用されるCSSセレクタを定義します
- */
-
-/*
- * ヘッダ
- */
-.aw-picus-header {
- height: 45px;
- margin: 0px;
- padding: 0px;
- border: 0px;
- background: url(../../../images/picus/default/header/header_bg2.gif?build31910) top repeat-x ;
-}
-
-/*
- * ヘッダ左部
- */
-.aw-picus-header-left {
- float: left;
- width: 250px;
- margin: 0px;
- padding: 0px;
- height: 45px;
- overflow: hidden;
-}
-
-/*
- * ヘッダ左部のロゴ画像
- */
-.aw-picus-header-left img {
- padding: 0px;
- height: 45px;
- border: none;
-}
-
-/*
- * ヘッダ右部
- */
-.aw-picus-header-right {
- float: right;
- margin: 0px;
- padding: 0px 0px 0px 25px;
- background: url(../../../images/picus/default/header/link_bg.gif?build31910) left top no-repeat;
- color:#666666;
- background-color: #333333;
- font-size:12px;
-}
-
-/*
- * ヘッダ右部のアカウント情報
- */
-.aw-picus-header-right-account {
- float:left;
- padding:0px 10px 2px 0px;
- display: inline;
- background-color: #333333;
- color:#ffffff;
-}
-
-/*
- * ヘッダ右部のリンク
- */
-.aw-picus-header-right-link {
- float:left;
-}
-
-/*
- * ヘッダ右部のリンクで使用されるUL要素
- */
-.aw-picus-header-right-link ul {
- margin: 0px;
- padding:2px;
- list-style: none;
-
-}
-
-/*
- * ヘッダ右部のリンクで使用されるLI要素
- */
-.aw-picus-header-right-link li {
- margin: 0px;
- padding-right:5px;
- display: inline;
-}
-
-/*
- * 「リンク」メニュー用のセレクタ
- */
-.aw-picus-header-right-link-hlinks-li-submenu a,
-.aw-picus-header-right-link-hlinks-li-submenu a:link,
-.aw-picus-header-right-link-hlinks-li-submenu a:active,
-.aw-picus-header-right-link-hlinks-li-submenu a:visited {
- color:#ffffff;
- background: URL(../../../images/common/icon/submenu.gif?build31910) 24px center no-repeat;
-}
-
-/*
- * ヘッダ右部のリンクで使用されるA要素
- */
-.aw-picus-header-right-link a { color: #ffffff; text-decoration:underline; }
-.aw-picus-header-right-link a:link { color: #ffffff; text-decoration:underline; }
-.aw-picus-header-right-link a:active { color: #ffffff; text-decoration:underline; }
-.aw-picus-header-right-link a:visited { color: #ffffff; text-decoration:underline; }
-.aw-picus-header-right-link a:hover { color: #ffffff; text-decoration:underline; }
-
-/*
- * LinkMenuに適用されるクラスセレクタ
- */
-.aw-picus-linkmenu {
- position: absolute;
- background-color: #ffffff;
- z-index: 1;
- overflow:auto;
- border-width: 1px;
- border-color: #aaaaaa;
- border-style: solid;
-}
-
-.aw-picus-linkmenu span { color: #000000; text-decoration:none; }
-
-.aw-picus-linkmenu .link {
- padding: 3px 20px 3px 3px;
- cursor: pointer;
-}
-
-.aw-picus-linkmenu .link_over {
- padding: 3px 20px 3px 3px;
- cursor: pointer;
- background-color: #5e81bc;
-}
-
-.aw-picus-linkmenu .link_over span { color: #ffffff; text-decoration:none; }
-
-/*
- * ヘッダメニュー
- */
-.aw-picus-header-menu {
- margin: 0px;
- padding: 0px;
- font-size: 0px;
-}
-
-/*
- * ヘッダメニューで使用されるUL要素
- */
-.aw-picus-header-menu ul {
- list-style: none;
- margin: 0px;
- padding: 0px;
-}
-
-/*
- * ヘッダメニューで使用されるLI要素
- */
-.aw-picus-header-menu li {
- float: left;
- font-size:12pt;
- height:45px;
- line-height:45px;
- vertical-align:middle;
- padding:0px 14px 0px 15px;
- margin:0px 1px 0px 0px;
- cursor:pointer;
-}
-
-.aw-picus-header-menu .current {
- background-image:url(../../../images/picus/default/header/global_nav_current.gif?build31910);
- background-repeat:repeat-x;
-}
-
-.aw-picus-header-menu img {
- width:30px;
- height:30px;
- vertical-align:middle;
- margin:10px 0px 10px 0px;
-}
-
-.aw-picus-header-menu span {
- color:#666666;
- font-weight:bold;
- font-size:12px;
- margin-left:5px;
- text-decoration:none;
-}
-
-.aw-picus-header-menu .current span {
- color:#0067CE;
- font-weight:bold;
-}
-
-
-/*
- * ヘッダとコンテンツを区切るバー
- */
-.aw-picus-headerbar {
- clear: both;
- height: 6px;
- margin: 0px;
- padding: 0px;
- background: url(../../../images/picus/default/header/bar_bg2.gif?build31910) left repeat-x #fff;
- font-size:0px;
-}
-
-/*
- * ワークベンチレイヤー
- */
-.aw-picus-workbench {
- position:absolute;
- width:250px;
-}
-
-/*
- * タブレイヤー
- */
-.aw-picus-tabs {
- height:30px;
- padding:1px 0px 0px 10px;
- background-color:#333333;
-}
-
-.aw-picus-menu {
- height: 38px;
- margin: 0px;
- padding-left:10px;
-}
-
-.aw-picus-func {
- height:30px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#808080;
- background-image:url('../../../images/picus/default/background/tabs_bg.gif?build31910');
-}
-
-.aw-picus-func2 {
- height:30px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#808080;
- background-image:url('../../../images/picus/default/background/func_bg2.gif?build31910');
-}
-
-.aw-picus-menubar-layer {
- height:30px;
- display:inline;
- float:left;
-}
-
-.aw-picus-menubar {
-
-}
-
-.aw-picus-contents {
- padding:5px;
- background-color:#333333;
-}
-
-.aw-picus-grid {
- padding:10px;
- background-color:#333333;
-}
-
-.aw-picus-page {
- position:relative;
- top:0px;
- left:250px;
- width:10px;
- height:10px;
- overflow:hidden;
-}
-
-/*
- * ドラッグオブジェクト
- */
-.aw-dragger {
- position: absolute;
- cursor: col-resize;
- border-style: solid;
- filter:alpha(opacity=00);
- -moz-opacity:0;
- opacity:0;
- z-index: 1;
-}
-
-/*
- * ドラッグオブジェクト(ドラッグ中)
- */
-.aw-dragger-dragging {
- position: absolute;
- cursor: col-resize;
- border-style: solid;
- border-color: #0067ce;
- z-index: 1;
-}
-
-/*
- * Table 風表示: キャプション部
- */
-.aw-picus-form .caption {
- margin: 0px;
- padding: 6px 2px;
- vertical-align: middle;
- color: #444444;
- border-top: 1px solid #aaaaaa;
- border-bottom: 1px solid #aaaaaa;
- text-align: left;
- font-weight: bold;
- background: url('../../../images/emma/default/background/table_header_bg.gif?build31910') bottom repeat-x #ebebeb;
-}
-
-/*
- * Table 風表示: 値部
- */
-.aw-picus-form .content {
- margin: 0px;
- padding: 1px 2px;
- vertical-align: middle;
- color: #444444;
- text-align: left;
-}
diff --git a/AgileWorks/WebContent/css/picus/default/snapper.css b/AgileWorks/WebContent/css/picus/default/snapper.css
deleted file mode 100644
index 896a59953bb0e8595ee01eb9ef83affdbef62644..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/picus/default/snapper.css
+++ /dev/null
@@ -1,678 +0,0 @@
-/*
- * document-viewer.css?build31910
- *
- * DocumentViewer で使用するCSSセレクタを定義します
- */
-
-/*
- * ActionButton 領域に適用するクラスセレクタ
- */
-.aw-snapper-actionbuttons-layer {
- height:30px;
- border-style:solid;
- border-width:1px 0px 1px 0px;
- border-color:#808080;
- background-image:url( '../../../images/picus/default/background/tabs_bg.gif?build31910' );
-}
-
-/*
- * ActionButton で使用される MenuBar コントロールに適用されるクラスセレクタ
- */
-.aw-snapper-actionbuttons {
- margin-left:5px;
- height:30px;
- display:inline;
- float:left;
-}
-
-/*
- * ステータス表示領域に適用されるクラスセレクタ
- */
-.aw-snapper-status-layer {
- height: 38px;
- margin: 0px;
- padding: 0px 3px;
- text-align: left;
- background: url( '../../../images/picus/default/background/dv_status_bg.gif?build31910' ) top repeat-x #fff;
- color:#ffffff;
- overflow:hidden;
-}
-
-/*
- * タブ領域に適用されるクラスセレクタ
- */
-.aw-snapper-tabs-layer {
- height:30px;
- background-color:#333333;
- background:url('../../../images/picus/default/background/dv_tabs_bg.gif?build31910') 0px 8px repeat-x #fff;
- border-bottom: 1px solid #999;
-}
-
-.aw-snapper-tabs {
- position:absolute;
- left:100px;
- font-size:12px;
-}
-
-.aw-snapper-iframe {
- position:absolute;
- left:93px;
-}
-
-/*
- * サイドバー - スライダー
- */
-.aw-snapper-sidebar-slider {
- text-align:center;
- position:absolute;
- top:69px;
- left:80px;
- width:13px;
- background-color:#000000;
- background-repeat:no-repeat;
- background-position:center bottom;
- background-image:url('../../../images/picus/default/background/dv_toolbar_bg.gif?build31910');
- color:#ffffff;
- border-style:solid;
- border-width:0px 1px 0px 1px;
- border-color:#666666;
- cursor:pointer;
-}
-
-/*
- * サイドバー - メニュー
- */
-.aw-snapper-sidebar-scrollablemenu {
- position:absolute;
- top:69px;
- left:0px;
- width:80px;
- background-color:#676767;
-}
-
-.aw-snapper-sidebar-scrollablemenu .scrolltop {
- background-color:#676767;
- height:15px;
- text-align:center;
- color:#ffffff;
- width:80px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#dddddd;
-}
-
-.aw-snapper-sidebar-scrollablemenu .scrollbottom {
- background-color:#676767;
- height:15px;
- text-align:center;
- color:#ffffff;
- width:80px;
- border-style:solid;
- border-width:1px 0px 0px 0px;
- border-color:#dddddd;
-}
-
-.aw-snapper-sidebar-scrollablemenu .menu {
- width:80px;
- overflow:hidden;
-}
-
-.aw-snapper-sidebar-scrollablemenu .menu .table {
- color:#ffffff;
-}
-
-.aw-snapper-sidebar-scrollablemenu .menu .tr {
- cursor:pointer;
-}
-
-.aw-snapper-sidebar-scrollablemenu .menu .tdover {
- background-color:#5e81bc;
-}
-
-.aw-snapper-sidebar-scrollablemenu .menu .count {
- color:#FF809F;
-}
-
-.aw-snapper-sidebar-badge {
- position:absolute;
- top:0px;
- left:45px;
- padding:0px 5px 0px 5px;
- font-size:12px;
- font-weight:bold;
- border-radius:20px;
- -moz-border-radius:20px;
- -webkit-border-radius:20px;
- border-style:solid;
- border-width:2px;
- border-color:#ffffff;
- background-color:#cc0000;
- background:-webkit-gradient(linear, center top, center bottom, from(#ffb3b3), to(#cc0000));
- background:-moz-linear-gradient(top, #ffb3b3, #cc0000);
- background:-ms-linear-gradient(top, #ffb3b3, #cc0000); /* IE10 */
- background: linear-gradient(top, #ffb3b3, #cc0000);
-}
-
-.aw-snapper-sidebar-badge-noborderradius {
- position:absolute;
- top:0px;
- left:45px;
- padding:0px 4px 0px 4px;
- font-size:12px;
- font-weight:bold;
- border-style:solid;
- border-width:2px;
- border-color:#ffffff;
- background-color:#cc0000;
- filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#ffb3b3', endColorstr='#cc0000');
-}
-
-.aw-snapper-sidebar-badge-ie6 {
- position:absolute;
- top:0px;
- left:21px;
- padding:0px 4px 0px 4px;
- font-size:12px;
- font-weight:bold;
- border-style:solid;
- border-width:2px;
- border-color:#ffffff;
- background-color:#cc0000;
- filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#ffb3b3', endColorstr='#cc0000');
-}
-
-/*
- * プロパティ・ウィンドウレイヤーに適用されるCSSクラスセレクタ
- */
-.aw-snapper-property-layer-frame {
- position:absolute;
- border-style:solid;
- border-width:1px;
- border-color:#666666;
- box-shadow: 2px 2px 5px #666666;
- -moz-box-shadow: 2px 2px 5px #666666;
- -webkit-box-shadow: 2px 2px 5px #666666;
-}
-
-.aw-snapper-property-layer-titlebar {
- height:30px;
- color:#262e37;
- font-weight:bold;
- overflow:hidden;
- background-image: url( '../../../images/picus/default/background/layer_titlebar_bg.gif?build31910' );
- background-repeat:repeat-x;
- font-size:120%;
-}
-
-.aw-snapper-property-layer-titlebar-table {
- height:30px;
- padding-left:4px;
-}
-
-.aw-snapper-property-layer-titlebar-td-close {
- width:20px;
- text-align:center;
- padding:0px 4px 0px 0px;
- cursor:pointer;
-}
-
-.aw-snapper-property-layer-body {
- position:absolute;
- padding:5px;
- background-color:#eeeeee;
-}
-
-.aw-snapper-property-layer-underiframe {
- position:absolute;
- top:0px;
- left:0px;
- width:100%;
- height:100%;
- border:none;
- filter:alpha(opacity=0);
- -moz-opacity:0;
- opacity:0;
-}
-
-.aw-snapper-property-layer-underdiv {
- position:absolute;
- top:0px;
- left:0px;
- width:100%;
- height:100%;
- background-color:#dddddd;
- filter:alpha(opacity=40);
- opacity:0.4;
- -moz-opacity:0.4;
-}
-
-.aw-snapper-property-layer-subtitle {
- height:25px;
- padding-left:5px;
- background-color:#cccccc;
- line-height:25px;
- margin-top:10px;
- margin-bottom:10px;
- overflow:hidden;
-}
-
-/*
- * プロパティ・ウィンドウ画面で使用されるCSSセレクタ
- */
-.aw-snapper-comment-icons a,
-.aw-snapper-comment-icons a:link,
-.aw-snapper-comment-icons a:active,
-.aw-snapper-comment-icons a:visited,
-.aw-snapper-comment-icons a:hover {
- color: #000000;
-}
-
-.aw-snapper-comment-icons-even a,
-.aw-snapper-comment-icons-even a:link,
-.aw-snapper-comment-icons-even a:active,
-.aw-snapper-comment-icons-even a:visited,
-.aw-snapper-comment-icons-even a:hover {
- color: #000000;
-}
-
-.aw-snapper-attachment-icons a,
-.aw-snapper-attachment-icons a:link,
-.aw-snapper-attachment-icons a:active,
-.aw-snapper-attachment-icons a:visited,
-.aw-snapper-attachment-icons a:hover {
- color: #000000;
-}
-
-.aw-snapper-attachment-icons-even a,
-.aw-snapper-attachment-icons-even a:link,
-.aw-snapper-attachment-icons-even a:active,
-.aw-snapper-attachment-icons-even a:visited,
-.aw-snapper-attachment-icons-even a:hover {
- color: #000000;
-}
-
-.aw-snapper-comment-table-header {
-
-}
-
-.aw-snapper-comment-table-tr {
- background-color:#ffffff;
-}
-
-.aw-snapper-comment-table-tr-even {
- background-color:#e4e4e4;
-}
-
-.aw-snapper-comment-table-th {
- height:25px;
- color:#000000;
- font-weight:bold;
- border-style:solid;
- border-width:1px 0px 1px 0px;
- border-bottom-color:#aaaaaa;
- border-top-color:#cccccc;
- white-space:pre;
- word-break:keep-all;
- overflow:hidden;
- text-align:center;
- background-image: url( '../../../images/emma/default/background/grid_header.gif?build31910' );
- padding:0px 4px 0px 4px;
-}
-
-.aw-snapper-comment-table-td {
- padding:6px;
-}
-
-.aw-snapper-comment-table-td-even {
- padding:6px;
-}
-
-.aw-snapper-nested-table {
- border-style:dotted;
- border-width:0px 0px 1px 0px;
- border-color:#aaaaaa;
- margin-bottom:2px;
-}
-
-.aw-snapper-node {
- padding:0px 0px 0px 0px;
-}
-
-.aw-snapper-node-even {
- padding:0px 0px 0px 0px;
-}
-
-.aw-snapper-node-current {
- border-style:solid;
- border-width:2px;
- border-color:#ff0000;
-}
-
-/*
- * 関連書類タブで使用されるCSSセレクタ
- */
-
-.snapper-reference-table {
- width: 660px;
-}
-
-.snapper-reference-table .referencee-header {
- height: 20px;
- padding: 0px 0px 0px 10px;
-}
-
-.snapper-reference-table .own {
- border-style: solid;
- border-width: 2px;
- border-color: #aaaaaa;
- background-color: #ffffcc;
- padding: 4px;
-}
-
-.snapper-reference-table .exist {
- border-style: solid;
- border-width: 2px;
- border-color: #aaaaaa;
- background-color: #ffffff;
- padding: 4px;
-}
-
-.snapper-reference-table .notexist {
- border-style: solid;
- border-width: 2px;
- border-color: #aaaaaa;
- background-color: #dddddd;
- padding: 4px;
-}
-
-.snapper-reference-table .listname {
- font-size: 120%;
- font-weight: bold;
-}
-
-/*
- * RuleTableコントロールで使用されるCSSセレクタ
- */
-
-.snapper-ruletable-headertable {
- width:672px;
- border-style:solid;
- border-width:1px 0px 0px 1px;
- border-color:#aaaaaa;
- table-layout:fixed;
- margin:0px 0px 0px 1px;
-}
-
-.snapper-ruletable-headertable th {
- height:25px;
- color:#000000;
- font-weight:bold;
- border-style:solid;
- border-width:0px 1px 1px 0px;
- border-color:#aaaaaa;
- white-space:pre;
- word-break:keep-all;
- overflow:hidden;
- text-align:center;
- background-image: url( '../../../images/emma/default/background/grid_header.gif?build31910' );
- padding:0px 2px 0px 2px;
-}
-
-
-.snapper-ruletable-contentstable {
- width:672px;
- border-style:solid;
- border-width:0px 0px 0px 1px;
- border-color:#aaaaaa;
- table-layout:fixed;
- margin:0px 0px 0px 1px;
-}
-
-.snapper-ruletable table.current {
- width:673px;
- border-width:2px;
- border-style:solid;
- border-color:#ff0000;
- margin:0px;
-}
-
-.snapper-ruletable table.current.continuum {
- width:673px;
- border-width:0px 2px 2px 2px;
- border-style:solid;
- border-color:#ff0000;
- margin:0px;
-}
-
-.snapper-ruletable-contentstable tr.odd {
- background-color:#ffffff;
-}
-
-.snapper-ruletable-contentstable tr.even {
- background-color:#f5f5f5;
-}
-
-.snapper-ruletable-contentstable td {
- border-style:solid;
- border-width:0px 1px 1px 0px;
- border-color:#aaaaaa;
- padding:2px;
- word-break: break-all;
-}
-
-.snapper-ruletable-contentstable .no {
- text-align:center;
-}
-
-.snapper-ruletable-contentstable .node {
- font-weight:bold;
- font-size:110%;
-}
-
-.snapper-ruletable-rulecandidatestable td.mid {
- border-style:dotted;
- border-width:0px 0px 1px 0px;
- border-color:#aaaaaa;
- margin-bottom:2px;
-}
-
-.snapper-ruletable-rulecandidatestable td.link {
- color:#1851E7;
- cursor:pointer;
-}
-
-.snapper-ruletable-rulecandidatestable td {
- border:none;
- background:none;
-}
-
-.snapper-ruletable-rulecandidatestable td.execdate {
- color:#666666;
-}
-
-.snapper-ruletable-rulecandidatestable td.proxyimage {
- color:#ff0000;
-}
-
-.snapper-ruletable-rulecandidatestable td.proxyobjectname {
- color:#ff0000;
-}
-
-.snapper-ruletable-candidatelink {
- margin:0px 0px 2px 0px;
- background-color:#ffffd5;
- padding:4px 4px 4px 22px;
- background-image:url('../../..//images/common/icon/action/edit.gif?build31910');
- background-repeat:no-repeat;
-}
-
-.snapper-ruletable-nodemessage {
- margin:0px 0px 2px 0px;
- background-color:#dddddd;
- padding:4px 4px 4px 4px;
- font-weight:bold;
- border-style:solid;
- border-width:1px;
- border-color:#aaaaaa;
- font-size:12px;
-}
-
-.snapper-ruletable-information {
- margin:2px 0px 5px 0px;
- background-color:#ffffd5;
- padding:4px 4px 4px 24px;
- background-image:url('../../..//images/common/icon/etc/info20.gif?build31910');
- background-repeat:no-repeat;
-}
-
-/*
- * PassbackTableコントロールで使用されるCSSセレクタ
- */
-
-.snapper-passbacktable-headertable {
- width:560px;
- border-style:solid;
- border-width:1px 0px 0px 1px;
- border-color:#aaaaaa;
- table-layout:fixed;
- margin:0px 1px 0px 1px;
-}
-
-.snapper-passbacktable-headertable th {
- height:25px;
- color:#000000;
- font-weight:bold;
- border-style:solid;
- border-width:0px 1px 1px 0px;
- border-color:#aaaaaa;
- white-space:pre;
- word-break:keep-all;
- overflow:hidden;
- text-align:center;
- background-image: url( '../../../images/emma/default/background/grid_header.gif?build31910' );
- padding:0px 4px 0px 4px;
-}
-
-
-.snapper-passbacktable-contentstable {
- width:560px;
- border-style:solid;
- border-width:0px 0px 0px 1px;
- border-color:#aaaaaa;
- table-layout:fixed;
- margin:0px 1px 0px 1px;
-}
-
-.snapper-passbacktable table.current {
- border-width:2px;
- border-style:solid;
- border-color:#ff0000;
- margin:0px;
- width:562px;
- color:#aaaaaa;
-}
-
-.snapper-passbacktable table.current.continuum {
- border-width:0px 2px 2px 2px;
- border-style:solid;
- border-color:#ff0000;
- margin:0px;
- width:562px;
- color:#aaaaaa;
-}
-
-.snapper-passbacktable-contentstable.disabled {
- color:#aaaaaa;
-}
-
-.snapper-passbacktable-contentstable.over {
- width:560px;
- cursor:pointer;
-}
-
-.snapper-passbacktable-contentstable tr {
- background-color:#ffffff;
-}
-
-.snapper-passbacktable-contentstable tr.even {
- background-color:#f5f5f5;
-}
-
-.snapper-passbacktable-contentstable.selected tr {
- background-color:#0067ce !important;
- color:#ffffff;
-}
-
-.snapper-passbacktable-contentstable.over tr {
- background-color:#dddddd;
-}
-
-.snapper-passbacktable-contentstable.over tr.even {
- background-color:#dddddd;
-}
-
-.snapper-passbacktable-contentstable td {
- border-style:solid;
- border-width:0px 1px 1px 0px;
- border-color:#aaaaaa;
- padding:2px 4px 2px 4px;
-}
-
-.snapper-passbacktable-contentstable .no {
- text-align:center;
-}
-
-.snapper-passbacktable-contentstable .node {
- font-weight:bold;
- font-size:110%;
-}
-
-/*
- * TransferButtonコントロールで使用されるCSSセレクタ
- */
-
-.snapper-transferbutton {
- position: absolute;
- top: 0px;
- left: 4px;
-}
-
-.snapper-transferbutton button {
- width:23px;
- height:32px;
- text-align:center;
-}
-
-.snapper-transferbutton .nonebutton img {
- vertical-align:middle;
-}
-
-.snapper-closebutton {
- position: absolute;
- top: 0px;
- text-align: right;
-}
-
-.snapper-closebutton button {
- width:23px;
- height:32px;
- text-align:center;
-}
-
-.snapper-closebutton .nonebutton img {
- vertical-align:middle;
-}
-
-/*
- * ApproveHistoryTableコントロールで使用されるCSSセレクタ
- */
-.snapper-approvehistorytable-th {
- height:auto;
- padding:4px;
- background-color:#BCBCBC;
- background-image:url('../../../images/picus/default/background/grid_header.gif?build31910');
- background-repeat:repeat-x;
- white-space:normal;
- word-break:normal;
- overflow:visible;
-}
diff --git a/AgileWorks/WebContent/css/picus/default/tabs.css b/AgileWorks/WebContent/css/picus/default/tabs.css
deleted file mode 100644
index 2fba44c67bc5da7aa5c77b404f4d174614be41f1..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/picus/default/tabs.css
+++ /dev/null
@@ -1,109 +0,0 @@
-
-.tabs-layer {
- overflow:hidden;
- height:30px;
- font-size:12px;
-}
-
-.tabs-maintable {
-}
-
-.tabs-table {
- height:29px;
- margin-top:1px;
-}
-
-.tabs-item {
- height:28px;
- border-style:solid;
- border-width:1px 1px 0px 1px;
- border-color:#aaaaaa;
- background-color:#cccccc;
- color:#000000;
- padding:0px 10px 0px 10px;
- white-space:nowrap;
- background-image: url( '../../../images/picus/default/background/tab_bg.gif?build31910' );
-}
-
-.tabs-item a {
- color:#000000;
-}
-
-.tabs-item a:link {
- color:#000000;
-}
-
-.tabs-item a:active {
- color:#000000;
-}
-
-.tabs-item a:visited {
- color:#000000;
-}
-
-.tabs-item-mouseover {
- height:28px;
- background-color:#eeeeee;
- border-style:solid;
- border-width:1px 1px 0px 1px;
- border-color:#aaaaaa;
- color:#ffffff;
- padding:0px 10px 0px 10px;
- white-space:nowrap;
- background-image: url( '../../../images/picus/default/background/tab_bg_over.gif?build31910' );
-}
-
-.tabs-item-mouseover a {
- color:#ffffff;
-}
-
-.tabs-item-mouseover a:link {
- color:#ffffff;
-}
-
-.tabs-item-mouseover a:active {
- color:#ffffff;
-}
-
-.tabs-item-mouseover a:visited {
- color:#ffffff;
-}
-
-.tabs-blank {
- padding:0px 5px 0px 5px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#aaaaaa;
-}
-
-.tabs-last {
- width: 100%;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#aaaaaa;
-}
-
-.tabs-leftarrow {
- width:30px;
- background-image:url( '../../../images/picus/default/background/tabs-leftarrow.gif?build31910' );
- background-repeat:no-repeat;
- background-position:0px 2px;
- cursor:pointer;
-}
-
-.tabs-rightarrow {
- width:30px;
- background-image:url( '../../../images/picus/default/background/tabs-rightarrow.gif?build31910' );
- background-repeat:no-repeat;
- background-position:2px 2px;
- cursor:pointer;
-}
-
-.tabs-page {
- background-color:#eeeeee;
- border-style:solid;
- border-width:0px 1px 1px 1px;
- border-color:#aaaaaa;
- padding:4px;
- overflow:auto;
-}
diff --git a/AgileWorks/WebContent/css/picus/default/theme.css b/AgileWorks/WebContent/css/picus/default/theme.css
deleted file mode 100644
index a4bccc1a37f298cbd19ac1d1b3b03bb8c3b1a1c9..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/picus/default/theme.css
+++ /dev/null
@@ -1,15 +0,0 @@
-.aw-menubar {
- height:30px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#808080;
- background-image:url('../../../images/picus/default/background/tabs_bg.gif?build31910');
-}
-
-.aw-menubar2 {
- height:30px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#808080;
- background-image:url('../../../images/picus/default/background/func_bg2.gif?build31910');
-}
diff --git a/AgileWorks/WebContent/css/picus/default/tree-ext.css b/AgileWorks/WebContent/css/picus/default/tree-ext.css
deleted file mode 100644
index 4e424505c28fa3a943c6d34db24ffc57ac8459c1..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/picus/default/tree-ext.css
+++ /dev/null
@@ -1,7 +0,0 @@
-.ygtvtd_current {
- background-color:#0067ce;
- border-style:solid;
- border-width:1px;
- border-color:#000000;
- padding:0px 0px 0px 0px;
-}
diff --git a/AgileWorks/WebContent/css/picus/default/workbench.css b/AgileWorks/WebContent/css/picus/default/workbench.css
deleted file mode 100644
index a6a8d3f62e29a5c5e23dc30e523d46b52f9614d6..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/picus/default/workbench.css
+++ /dev/null
@@ -1,418 +0,0 @@
-
-.workbench-layer {
- border-style:outset;
- border-width:0px 1px 0px 0px;
- border-color:#333333;
- white-space:nowrap;
-}
-
-/* ワークベンチメニュー:オリジナル */
-.workbench-item {
- width:190px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#666666;
- overflow:hidden;
- background-image: url( '../../../images/picus/default/background/workbench_item_work.gif?build31910' );
- background-repeat: no-repeat;
- font-weight: bold;
- line-height:30px;
- color:#000000;
- cursor:pointer;
- padding-left: 60px;
-}
-
-.workbench-item-current {
- width:190px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#666666;
- overflow:hidden;
- background-image: url( '../../../images/picus/default/background/workbench_item_work_over.gif?build31910' );
- background-repeat: no-repeat;
- font-weight: bold;
- line-height:30px;
- color:#ffffff;
- cursor:pointer;
- padding-left: 60px;
-}
-
-.workbench-item-mouseover {
- width:190px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#666666;
- overflow:hidden;
- background-image: url( '../../../images/picus/default/background/workbench_item_work_over.gif?build31910' );
- background-repeat: no-repeat;
- font-weight: bold;
- line-height:30px;
- color:#ffffff;
- cursor:pointer;
- padding-left: 60px;
-}
-
-/* ワークベンチメニュー:処理待ち */
-.workbench-item-todo {
- width:190px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#666666;
- overflow:hidden;
- background-image: url( '../../../images/picus/default/background/workbench_item_todo.gif?build31910' );
- background-repeat: no-repeat;
- font-weight: bold;
- line-height:30px;
- color:#000000;
- cursor:pointer;
- padding-left: 60px;
- font-size:120%;
-}
-
-.workbench-item-todo-current {
- width:190px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#666666;
- overflow:hidden;
- background-image: url( '../../../images/picus/default/background/workbench_item_todo_over.gif?build31910' );
- background-repeat: no-repeat;
- font-weight: bold;
- line-height:30px;
- color:#ffffff;
- cursor:pointer;
- padding-left: 60px;
- font-size:120%;
-}
-
-.workbench-item-todo-mouseover {
- width:190px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#666666;
- overflow:hidden;
- background-image: url( '../../../images/picus/default/background/workbench_item_todo_over.gif?build31910' );
- background-repeat: no-repeat;
- font-weight: bold;
- line-height:30px;
- color:#ffffff;
- cursor:pointer;
- padding-left: 60px;
- font-size:120%;
-}
-
-/* ワークベンチメニュー:処理済 */
-.workbench-item-progress {
- width:190px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#666666;
- overflow:hidden;
- background-image: url( '../../../images/picus/default/background/workbench_item_progress.gif?build31910' );
- background-repeat: no-repeat;
- font-weight: bold;
- line-height:30px;
- color:#000000;
- cursor:pointer;
- padding-left: 60px;
- font-size:120%;
-}
-
-.workbench-item-progress-current {
- width:190px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#666666;
- overflow:hidden;
- background-image: url( '../../../images/picus/default/background/workbench_item_progress_over.gif?build31910' );
- background-repeat: no-repeat;
- font-weight: bold;
- line-height:30px;
- color:#ffffff;
- cursor:pointer;
- padding-left: 60px;
- font-size:120%;
-}
-
-.workbench-item-progress-mouseover {
- width:190px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#666666;
- overflow:hidden;
- background-image: url( '../../../images/picus/default/background/workbench_item_progress_over.gif?build31910' );
- background-repeat: no-repeat;
- font-weight: bold;
- line-height:30px;
- color:#ffffff;
- cursor:pointer;
- padding-left: 60px;
- font-size:120%;
-}
-
-/* ワークベンチメニュー:代理承認 */
-.workbench-item-proxyapprove {
- width:190px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#666666;
- overflow:hidden;
- background-image: url( '../../../images/picus/default/background/workbench_item_proxyapprove.gif?build31910' );
- background-repeat: no-repeat;
- font-weight: bold;
- line-height:30px;
- color:#000000;
- cursor:pointer;
- padding-left: 60px;
- font-size:120%;
-}
-
-.workbench-item-proxyapprove-current {
- width:190px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#666666;
- overflow:hidden;
- background-image: url( '../../../images/picus/default/background/workbench_item_proxyapprove_over.gif?build31910' );
- background-repeat: no-repeat;
- font-weight: bold;
- line-height:30px;
- color:#ffffff;
- cursor:pointer;
- padding-left: 60px;
- font-size:120%;
-}
-
-.workbench-item-proxyapprove-mouseover {
- width:190px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#666666;
- overflow:hidden;
- background-image: url( '../../../images/picus/default/background/workbench_item_proxyapprove_over.gif?build31910' );
- background-repeat: no-repeat;
- font-weight: bold;
- line-height:30px;
- color:#ffffff;
- cursor:pointer;
- padding-left: 60px;
- font-size:120%;
-}
-
-/* ワークベンチメニュー:新規申請 */
-.workbench-item-apply {
- width:190px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#666666;
- overflow:hidden;
- background-image: url( '../../../images/picus/default/background/workbench_item_apply.gif?build31910' );
- background-repeat: no-repeat;
- font-weight: bold;
- line-height:30px;
- color:#000000;
- cursor:pointer;
- padding-left: 60px;
- font-size:120%;
-}
-
-.workbench-item-apply-current {
- width:190px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#666666;
- overflow:hidden;
- background-image: url( '../../../images/picus/default/background/workbench_item_apply_over.gif?build31910' );
- background-repeat: no-repeat;
- font-weight: bold;
- line-height:30px;
- color:#ffffff;
- cursor:pointer;
- padding-left: 60px;
- font-size:120%;
-}
-
-.workbench-item-apply-mouseover {
- width:190px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#666666;
- overflow:hidden;
- background-image: url( '../../../images/picus/default/background/workbench_item_apply_over.gif?build31910' );
- background-repeat: no-repeat;
- font-weight: bold;
- line-height:30px;
- color:#ffffff;
- cursor:pointer;
- padding-left: 60px;
- font-size:120%;
-}
-
-/* ワークベンチメニュー:代理申請 */
-.workbench-item-proxyapply {
- width:190px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#666666;
- overflow:hidden;
- background-image: url( '../../../images/picus/default/background/workbench_item_proxyapply.gif?build31910' );
- background-repeat: no-repeat;
- font-weight: bold;
- line-height:30px;
- color:#000000;
- cursor:pointer;
- padding-left: 60px;
- font-size:120%;
-}
-
-.workbench-item-proxyapply-current {
- width:190px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#666666;
- overflow:hidden;
- background-image: url( '../../../images/picus/default/background/workbench_item_proxyapply_over.gif?build31910' );
- background-repeat: no-repeat;
- font-weight: bold;
- line-height:30px;
- color:#ffffff;
- cursor:pointer;
- padding-left: 60px;
- font-size:120%;
-}
-
-.workbench-item-proxyapply-mouseover {
- width:190px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#666666;
- overflow:hidden;
- background-image: url( '../../../images/picus/default/background/workbench_item_proxyapply_over.gif?build31910' );
- background-repeat: no-repeat;
- font-weight: bold;
- line-height:30px;
- color:#ffffff;
- cursor:pointer;
- padding-left: 60px;
- font-size:120%;
-}
-
-/*
- * ワークベンチメニュー「書類検索」
- */
-.workbench-item-search {
- width:190px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#666666;
- overflow:hidden;
- background-image: url( '../../../images/picus/default/background/workbench_item_search.gif?build31910' );
- background-repeat: no-repeat;
- font-weight: bold;
- line-height:30px;
- color:#000000;
- cursor:pointer;
- padding-left: 60px;
- font-size:120%;
-}
-
-.workbench-item-search-current {
- width:190px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#666666;
- overflow:hidden;
- background-image: url( '../../../images/picus/default/background/workbench_item_search_over.gif?build31910' );
- background-repeat: no-repeat;
- font-weight: bold;
- line-height:30px;
- color:#ffffff;
- cursor:pointer;
- padding-left: 60px;
- font-size:120%;
-}
-
-.workbench-item-search-mouseover {
- width:190px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#666666;
- overflow:hidden;
- background-image: url( '../../../images/picus/default/background/workbench_item_search_over.gif?build31910' );
- background-repeat: no-repeat;
- font-weight: bold;
- line-height:30px;
- color:#ffffff;
- cursor:pointer;
- padding-left: 60px;
- font-size:120%;
-}
-
-/*
- * ワークベンチメニュー「個人設定」
- */
-.workbench-item-personalize {
- width:190px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#666666;
- overflow:hidden;
- background-image: url( '../../../images/picus/default/background/workbench_item_personalize.gif?build31910' );
- background-repeat: no-repeat;
- font-weight: bold;
- line-height:30px;
- color:#000000;
- cursor:pointer;
- padding-left: 60px;
- font-size:120%;
-}
-
-.workbench-item-personalize-current {
- width:190px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#666666;
- overflow:hidden;
- background-image: url( '../../../images/picus/default/background/workbench_item_personalize_over.gif?build31910' );
- background-repeat: no-repeat;
- font-weight: bold;
- line-height:30px;
- color:#ffffff;
- cursor:pointer;
- padding-left: 60px;
- font-size:120%;
-}
-
-.workbench-item-personalize-mouseover {
- width:190px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#666666;
- overflow:hidden;
- background-image: url( '../../../images/picus/default/background/workbench_item_personalize_over.gif?build31910' );
- background-repeat: no-repeat;
- font-weight: bold;
- line-height:30px;
- color:#ffffff;
- cursor:pointer;
- padding-left: 60px;
- font-size:120%;
-}
-
-.workbench-content {
- width:230px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#666666;
- overflow:auto;
- padding:10px;
-}
-
-.workbench-content-control {
- width:224px;
- background-color:#ffffff;
- border-style:solid;
- border-width:3px;
- border-color:#aaaaaa;
- overflow:auto;
-}
diff --git a/AgileWorks/WebContent/css/picus/iceBerg.css b/AgileWorks/WebContent/css/picus/iceBerg.css
deleted file mode 100644
index a562ff3d8fbec11a2afb19de764b35c2a26fc840..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/picus/iceBerg.css
+++ /dev/null
@@ -1,5 +0,0 @@
-@import url(../common/common.css?build30151);
-
-@import url(../livehtml/livehtml.css?build30151);
-
-@import url(./iceBerg/iceBerg.css?build30151);
diff --git a/AgileWorks/WebContent/css/picus/iceBerg/base.css b/AgileWorks/WebContent/css/picus/iceBerg/base.css
deleted file mode 100644
index 7ce03c555a3e73a34f3e942195b140437316ee3b..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/picus/iceBerg/base.css
+++ /dev/null
@@ -1,52 +0,0 @@
-html {
- height: 100%;
-}
-
-a:link {
- text-decoration:none;
- color:#1851E7;
-}
-
-a:active {
- text-decoration:none;
- color:#1851E7;
-}
-
-a:visited {
- text-decoration:none;
- color:#1851E7;
-}
-
-a:hover {
- text-decoration:underline;
- color:#e16745;
-}
-
-body {
- font-size:75%;
- background-color:#dddddd;
- font-family:Arial, sans-serif;
- margin: 0px;
- height: 100%;
-}
-
-input {
- font-family:Arial, sans-serif;
-}
- input[type=text] {
- margin:0px;
- }
-
-button {
- font-family:Arial, sans-serif;
- margin:0px;
-}
-
-select {
- margin:0px;
-}
-
-textarea {
- font-size: 12px;
- margin:0px;
-}
diff --git a/AgileWorks/WebContent/css/picus/iceBerg/common.css b/AgileWorks/WebContent/css/picus/iceBerg/common.css
deleted file mode 100644
index f54085097c6794a47fca3d23139536167688d543..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/picus/iceBerg/common.css
+++ /dev/null
@@ -1,120 +0,0 @@
-.aw-common-func {
- height:30px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#808080;
- background-image:url('../../../images/picus/default/background/tabs_bg.gif?build31910');
-}
-
-.aw-common-menubar-layer {
- height:30px;
- display:inline;
- float:left;
-}
-
-.aw-common-table {
- width: 100%;
- margin: 0px;
- padding: 0px;
- border-collapse: collapse;
- background: #fff;
-}
-
-.aw-common-table th {
- margin: 0px;
- padding: 1px 1px 1px 2px;
- height: 24px;
- vertical-align: middle;
- color: #444444;
- border: 1px solid #aaaaaa;
- text-align: left;
- background: url('../../../images/emma/default/background/table_header_bg.gif?build31910') bottom repeat-x #ebebeb;
-}
-
-.aw-common-table th.caption {
- margin: 0px;
- padding: 10px;
- vertical-align: middle;
- color: #444444;
- border: 1px solid #aaaaaa;
- text-align: center;
- background: url('../../../images/emma/default/background/table_caption_bg.gif?build31910') center repeat-x;
-}
-
-.aw-common-table td {
- margin: 0px;
- padding: 1px 1px 1px 4px;
- height: 24px;
- vertical-align: middle;
- color: #444444;
- border: 1px solid #aaaaaa;
- text-align: left;
-}
-
-/* テーブル(内部) */
-.aw-common-table table.inner {
- width: 98%;
- margin: 0px;
- padding: 0px;
- border-collapse: collapse;
-}
-
-.aw-common-table table.inner td {
- margin: 0px;
- padding: 5px 5px 5px 0px;
- border: none;
- text-align: left;
-}
-
-.aw-common-table table.inner td.uline {
- border-bottom: 1px dotted #aaa;
-}
-
-/* 偶数行色指定(TR) */
-.aw-common-table .even {
- background: #f5f5f5;
-}
-
-/* マーカー指定(SPAN) */
-.aw-common-table .ar01 {
- padding: 0px 0px 0px 12px;
- background: url('../../../images/emma/default/icon/arrow01.gif?build31910') left center no-repeat;
-}
-
-.aw-common-table-unurged {
- width: 100%;
- margin: 0px;
- padding: 0px;
- border-collapse: collapse;
- background: #fff;
-}
-
-.aw-common-table-unurged th.label {
- margin: 0px;
- padding: 1px 1px 1px 2px;
- height: 24px;
- vertical-align: middle;
- color: #444444;
- border: 1px solid #aaaaaa;
- text-align: left;
- background: url('../../../images/emma/default/background/table_header_bg.gif?build31910') bottom repeat-x #ebebeb;
-}
-
-.aw-common-table-unurged th.caption {
- margin: 0px;
- padding: 10px;
- vertical-align: middle;
- color: #444444;
- border: 1px solid #aaaaaa;
- text-align: center;
- background: url('../../../images/emma/default/background/table_caption_bg.gif?build31910') center repeat-x;
-}
-
-.aw-common-table-unurged td.item {
- margin: 0px;
- padding: 1px 1px 1px 2px;
- vertical-align: middle;
- color: #444444;
- border: 1px solid #aaaaaa;
- text-align: left;
-}
diff --git a/AgileWorks/WebContent/css/picus/iceBerg/contents.css b/AgileWorks/WebContent/css/picus/iceBerg/contents.css
deleted file mode 100644
index 32a55a3a3499260592d898b73d1263748ffca5f4..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/picus/iceBerg/contents.css
+++ /dev/null
@@ -1,53 +0,0 @@
-.contents-header {
- height:30px;
-}
-
-.contents-main {
- background: #efefef;
- border-style:solid;
- border-width:1px;
- border-color:#cbcbcb;
- padding: 10px;
- overflow: auto;
-}
-
-.contents-main .caption {
- border-bottom:2px solid #aaa;
- margin-bottom:10px;
- font-weight:bold;
- padding:2px;
-}
-
-.contents-main th {
- font-weight:bold;
- color: #444444;
-}
-
-.contents-main td.item {
- border-bottom:1px solid #aaa;
-}
-
-.contents-main th.header {
- border-bottom: 2px solid #aaa;
-}
-
-.contents-main td {
- color: #444444;
-}
-
-.contents-main td.indent1 {
- padding-left:30px;
-}
-
-.contents-header-table {
- border-collapse:collapse;
- border-spacing:0px;
- margin-bottom:5px;
- width:100%;
- height:25px;
- color:#ffffff;
-}
-
-.contents-header-table .count {
- color : #ff0000;
-}
diff --git a/AgileWorks/WebContent/css/picus/iceBerg/grid-base.css b/AgileWorks/WebContent/css/picus/iceBerg/grid-base.css
deleted file mode 100644
index 1959732c5b14458df3ccc5b8833445b23836f298..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/picus/iceBerg/grid-base.css
+++ /dev/null
@@ -1,155 +0,0 @@
-/*
- * grid-base.css?build31910
- *
- * Gridを描画するために必要なCSSセレクタを定義します
- */
-
-.grid-scroll-layer {
- border-style:solid;
- border-width:1px;
- border-color:#000000;
- position:absolute;
- overflow:scroll;
- outline: 0 !important;
- -webkit-tap-highlight-color: rgba(0,0,0,0);
-}
-
-.grid-scroll-body {
-}
-
-.grid-table-layer {
- background-color:#eeeeee;
- position:relative;
- overflow:hidden;
- top:1px;
- left:1px;
-}
-
-.grid-table {
- table-layout:fixed;
- width:0px;
-}
-
-.grid-col {
-}
-
-.grid-table th {
- background-image: url( '../../../images/picus/default/background/grid_header.gif?build31910' );
-}
-
-.grid-header-th {
- color:#000000;
- font-weight:bold;
- border-style:solid;
- border-width:0px 1px 0px 0px;
- border-color:#aaaaaa;
- white-space:pre;
- word-break:keep-all;
- overflow:hidden;
- text-align:center;
-}
-
-.grid-header-th.fixed {
- border-color:#000000 !important;
-}
-
-.grid-header-th.sort {
- color: #0067ce;
-}
-
-.grid-header-th.record-status {
-}
-
-.grid-header-th.checkbox {
-}
-
-.grid-header-th.radiobutton {
-}
-
-.grid-header-resizediv {
- position: absolute;
- top: 0px;
- border-style: solid;
- border-width: 0px 9px 0px 0px;
- cursor: col-resize;
- filter:alpha(opacity=00);
- -moz-opacity:0;
- opacity:0;
-}
-
-.grid-header-resizediv-dragging {
- position: absolute;
- top: 0px;
- border-style: solid;
- border-width: 0px 3px 0px 0px;
- border-color: #0067ce;
- cursor: col-resize;
-}
-
-.grid-header-cell {
- padding:0px 4px 0px 4px;
-}
-
-.grid-tr-current {
- background-color:#0067ce !important;
- color:#ffffff;
- cursor:default;
-}
-
-.grid-tr-select {
- background-color:#5E81BC;
- color:#ffffff;
- cursor:default;
-}
-
-.grid-tr {
- background-color:#ffffff;
- cursor:default;
-}
-
-.grid-tr-even {
- background-color:#f1f5fa;
- cursor:default;
-}
-
-.grid-td {
- border-style:solid;
- border-width:0px 1px 0px 0px;
- border-color:#aaaaaa;
- white-space:pre;
- word-break:keep-all;
- overflow:hidden;
- padding:0px 4px 0px 4px;
- cursor:pointer;
-}
-
-.grid-td.fixed {
- border-color:#000000 !important;
- cursor:pointer;
-}
-
-.grid-td.record-status {
- background-color:#d6d6d6;
- text-align:center;
- padding:0px;
- cursor:default;
-}
-
-.grid-td.checkbox {
- background-color:#d6d6d6;
- text-align:center;
- padding:0px;
- cursor:default;
-}
-
-.grid-td.radiobutton {
- background-color:#d6d6d6;
- text-align:center;
- padding:0px;
- cursor:default;
-}
-
-.grid-td.blank {
- border-width:0px;
- cursor:default;
-}
diff --git a/AgileWorks/WebContent/css/picus/iceBerg/grid-ext.css b/AgileWorks/WebContent/css/picus/iceBerg/grid-ext.css
deleted file mode 100644
index 81677556c9ad3de4314c47fb6cb904a9fa77fa49..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/picus/iceBerg/grid-ext.css
+++ /dev/null
@@ -1,28 +0,0 @@
-/*
- * grid-ext.css?build31910
- *
- * Gridで利用されるCSSセレクタを定義します
- */
-
-/* 小計行 */
-.grid-tr-subtotal {
- color:#0000ff;
- background-color:#f1f5fa;
- cursor:default;
-}
-
-/* 総計行 */
-.grid-tr-total {
- font-size:15px;
- color:#ff0000;
- font-weight:bold;
- background-color:#ffffff;
- cursor:default;
-}
-
-/* ドリルスルー可能セル - マウスオーバー */
-.grid-td.mouseover {
- color:#ff0000;
- background-color:#ffffcc;
- cursor:pointer;
-}
diff --git a/AgileWorks/WebContent/css/picus/iceBerg/iceBerg.css b/AgileWorks/WebContent/css/picus/iceBerg/iceBerg.css
deleted file mode 100644
index 5492b614a806b2cde18a57a5a7fb41427b39c14e..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/picus/iceBerg/iceBerg.css
+++ /dev/null
@@ -1,16 +0,0 @@
-html{height:100%;}a:link{text-decoration:none;color:#1851E7;}a:active{text-decoration:none;color:#1851E7;}a:visited{text-decoration:none;color:#1851E7;}a:hover{text-decoration:underline;color:#e16745;}body{font-size:75%;background-color:#ddd;font-family:Arial,sans-serif;margin:0;height:100%;}input{font-family:Arial,sans-serif;}input[type=text]{margin:0;}button{font-family:Arial,sans-serif;margin:0;}select{margin:0;}textarea{font-size:12px;margin:0;}
-.aw-common-func{height:30px;border-style:solid;border-width:0 0 1px 0;border-color:#808080;background-image:url('../../../images/picus/default/background/tabs_bg.gif?build31910');}.aw-common-menubar-layer{height:30px;display:inline;float:left;}.aw-common-table{width:100%;margin:0;padding:0;border-collapse:collapse;background:#fff;}.aw-common-table th{margin:0;padding:1px 1px 1px 2px;height:24px;vertical-align:middle;color:#444;border:1px solid #aaa;text-align:left;background:url('../../../images/emma/default/background/table_header_bg.gif?build31910') bottom repeat-x #ebebeb;}.aw-common-table th.caption{margin:0;padding:10px;vertical-align:middle;color:#444;border:1px solid #aaa;text-align:center;background:url('../../../images/emma/default/background/table_caption_bg.gif?build31910') center repeat-x;}.aw-common-table td{margin:0;padding:1px 1px 1px 4px;height:24px;vertical-align:middle;color:#444;border:1px solid #aaa;text-align:left;}.aw-common-table table.inner{width:98%;margin:0;padding:0;border-collapse:collapse;}.aw-common-table table.inner td{margin:0;padding:5px 5px 5px 0;border:none;text-align:left;}.aw-common-table table.inner td.uline{border-bottom:1px dotted #aaa;}.aw-common-table .even{background:#f5f5f5;}.aw-common-table .ar01{padding:0 0 0 12px;background:url('../../../images/emma/default/icon/arrow01.gif?build31910') left center no-repeat;}.aw-common-table-unurged{width:100%;margin:0;padding:0;border-collapse:collapse;background:#fff;}.aw-common-table-unurged th.label{margin:0;padding:1px 1px 1px 2px;height:24px;vertical-align:middle;color:#444;border:1px solid #aaa;text-align:left;background:url('../../../images/emma/default/background/table_header_bg.gif?build31910') bottom repeat-x #ebebeb;}.aw-common-table-unurged th.caption{margin:0;padding:10px;vertical-align:middle;color:#444;border:1px solid #aaa;text-align:center;background:url('../../../images/emma/default/background/table_caption_bg.gif?build31910') center repeat-x;}.aw-common-table-unurged td.item{margin:0;padding:1px 1px 1px 2px;vertical-align:middle;color:#444;border:1px solid #aaa;text-align:left;}
-.contents-header{height:30px;}.contents-main{background:#efefef;border-style:solid;border-width:1px;border-color:#cbcbcb;padding:10px;overflow:auto;}.contents-main .caption{border-bottom:2px solid #aaa;margin-bottom:10px;font-weight:bold;padding:2px;}.contents-main th{font-weight:bold;color:#444;}.contents-main td.item{border-bottom:1px solid #aaa;}.contents-main th.header{border-bottom:2px solid #aaa;}.contents-main td{color:#444;}.contents-main td.indent1{padding-left:30px;}.contents-header-table{border-collapse:collapse;border-spacing:0;margin-bottom:5px;width:100%;height:25px;color:#fff;}.contents-header-table .count{color:#f00;}
-.grid-scroll-layer{border-style:solid;border-width:1px;border-color:#000;position:absolute;overflow:scroll;outline:0!important;-webkit-tap-highlight-color:rgba(0,0,0,0);}.grid-table-layer{background-color:#eee;position:relative;overflow:hidden;top:1px;left:1px;}.grid-table{table-layout:fixed;width:0;}.grid-table th{background-image:url('../../../images/picus/default/background/grid_header.gif?build31910');}.grid-header-th{color:#000;font-weight:bold;border-style:solid;border-width:0 1px 0 0;border-color:#aaa;white-space:pre;word-break:keep-all;overflow:hidden;text-align:center;}.grid-header-th.fixed{border-color:#000!important;}.grid-header-th.sort{color:#0067ce;}.grid-header-resizediv{position:absolute;top:0;border-style:solid;border-width:0 9px 0 0;cursor:col-resize;filter:alpha(opacity=00);-moz-opacity:0;opacity:0;}.grid-header-resizediv-dragging{position:absolute;top:0;border-style:solid;border-width:0 3px 0 0;border-color:#0067ce;cursor:col-resize;}.grid-header-cell{padding:0 4px 0 4px;}.grid-tr-current{background-color:#0067ce!important;color:#fff;cursor:default;}.grid-tr-select{background-color:#5E81BC;color:#fff;cursor:default;}.grid-tr{background-color:#fff;cursor:default;}.grid-tr-even{background-color:#f1f5fa;cursor:default;}.grid-td{border-style:solid;border-width:0 1px 0 0;border-color:#aaa;white-space:pre;word-break:keep-all;overflow:hidden;padding:0 4px 0 4px;cursor:pointer;}.grid-td.fixed{border-color:#000!important;cursor:pointer;}.grid-td.record-status{background-color:#d6d6d6;text-align:center;padding:0;cursor:default;}.grid-td.checkbox{background-color:#d6d6d6;text-align:center;padding:0;cursor:default;}.grid-td.radiobutton{background-color:#d6d6d6;text-align:center;padding:0;cursor:default;}.grid-td.blank{border-width:0;cursor:default;}
-.grid-tr-subtotal{color:#00f;background-color:#f1f5fa;cursor:default;}.grid-tr-total{font-size:15px;color:#f00;font-weight:bold;background-color:#fff;cursor:default;}.grid-td.mouseover{color:#f00;background-color:#ffc;cursor:pointer;}
-.layer{position:absolute;}.layer-modallayer{position:absolute;top:0;left:0;width:100%;height:100%;background-color:#ddd;filter:alpha(opacity=40);opacity:.4;-moz-opacity:.4;}.layer-dropshadow{position:absolute;background-image:url('../../../images/common/container/shadow.gif?build31910');background-position:right bottom;}.layer-underiframe{position:absolute;top:0;left:0;width:100%;height:100%;border:none;filter:alpha(opacity=0);-moz-opacity:0;opacity:0;}.layer-frame{position:absolute;border-style:solid;border-width:1px;border-color:#666;box-shadow:2px 2px 5px #666;-moz-box-shadow:2px 2px 5px #666;-webkit-box-shadow:2px 2px 5px #666;}.layer-titlebar{height:30px;color:#262e37;font-weight:bold;overflow:hidden;background-image:url('../../../images/picus/default/background/layer_titlebar_bg.gif?build31910');background-repeat:repeat-x;font-size:120%;}.layer-titlebar-table{height:30px;padding-left:4px;}.layer-titlebar-caption{overflow:hidden;}.layer-titlebar-td-help{width:20px;text-align:center;padding:0;cursor:pointer;}.layer-titlebar-td-close{width:20px;text-align:center;padding:0 4px 0 0;cursor:pointer;}.layer-body{position:absolute;overflow:auto;padding:5px;background-color:#eee;}.layer-body-caption{border-bottom:2px solid #aaa;margin:10px 0;font-weight:bold;padding:2px;}.layer-messagebox-simple{font-size:12px;font-weight:bold;}.layer-messagebox-tl{background:transparent url(../../../images/picus/default/background/messagebox-corners.gif?build31910) no-repeat 0 0;zoom:1;}.layer-messagebox-tc{height:8px;background:transparent url(../../../images/picus/default/background/messagebox-tb.gif?build31910) repeat-x 0 0;overflow:hidden;}.layer-messagebox-tr{background:transparent url(../../../images/picus/default/background/messagebox-corners.gif?build31910) no-repeat right -8px;}.layer-messagebox-ml{background:transparent url(../../../images/picus/default/background/messagebox-l.gif?build31910) repeat-y 0;padding-left:4px;overflow:hidden;zoom:1;}.layer-messagebox-mc{background:#eee url(../../../images/picus/default/background/messagebox-tb.gif?build31910) repeat-x 0 -16px;padding:4px 10px;font-family:"Myriad Pro","Myriad Web","Tahoma","Helvetica","Arial",sans-serif;color:#393939;font-size:12px;}.layer-messagebox-mc h3{font-size:14px;font-weight:bold;margin:0 0 4 0;zoom:1;}.layer-messagebox-mr{background:transparent url(../../../images/picus/default/background/messagebox-r.gif?build31910) repeat-y right;padding-right:4px;overflow:hidden;}.layer-messagebox-bl{background:transparent url(../../../images/picus/default/background/messagebox-corners.gif?build31910) no-repeat 0 -16px;zoom:1;}.layer-messagebox-bc{background:transparent url(../../../images/picus/default/background/messagebox-tb.gif?build31910) repeat-x 0 -8px;height:8px;overflow:hidden;}.layer-messagebox-br{background:transparent url(../../../images/picus/default/background/messagebox-corners.gif?build31910) no-repeat right -24px;}.layer-messagebox-tl,.layer-messagebox-bl{padding-left:8px;overflow:hidden;}.layer-messagebox-tr,.layer-messagebox-br{padding-right:8px;overflow:hidden;}.layer-messagebox-blue .layer-messagebox-bl,.layer-messagebox-blue .layer-messagebox-br,.layer-messagebox-blue .layer-messagebox-tl,.layer-messagebox-blue .layer-messagebox-tr{background-image:url(../../../images/picus/default/background/messagebox-corners-blue.gif?build31910);}.layer-messagebox-blue .layer-messagebox-bc,.layer-messagebox-blue .layer-messagebox-mc,.layer-messagebox-blue .layer-messagebox-tc{background-image:url(../../../images/picus/default/background/messagebox-tb-blue.gif?build31910);}.layer-messagebox-blue .layer-messagebox-mc{background-color:#c3daf9;}.layer-messagebox-blue .layer-messagebox-mc h3{color:#17385b;}.layer-messagebox-blue .layer-messagebox-ml{background-image:url(../../../images/picus/default/background/messagebox-l-blue.gif?build31910);}.layer-messagebox-blue .layer-messagebox-mr{background-image:url(../../../images/picus/default/background/messagebox-r-blue.gif?build31910);}
-.menubar{color:#000;}.menubar .topmenu{height:30px;}.menubar .topmenu ul{margin:0;padding:0;}.menubar .topmenu li{float:left;list-style-type:none;margin:0;line-height:22px;padding:4px 5px 4px 22px;}.menubar .submenu{background-color:#fff;border-style:solid;border-width:1px;border-color:#aaa;}.menubar .submenu ul{margin:0;padding:0;overflow:hidden;}.menubar .submenu li{list-style-type:none;margin:0;padding:0;line-height:22px;padding:1px 5px 1px 22px;white-space:pre;word-break:keep-all;}.menubar .menuitem.menuover{background-color:#5e81bc;color:#fff;cursor:pointer;}.menubar .menuitem.menudisabled{color:#aaa;}.menubar .topmenu .menuitem-terminate{float:none;clear:both;}
-.message-header{background-color:#ddd;font-weight:bold;font-size:150%;padding:5px;}.message-body{height:500px;background-color:#fff;padding:10px;overflow:auto;}.message-header1{margin:0 0 10px 0;font-weight:bold;font-size:120%;}.message-header2{margin:0 0 10px 0;text-decoration:underline;}.message-content{margin:0 0 10px 0;}.message-table{border-style:solid;border-width:1px 0 1px 1px;border-color:#000;}.message-header-tr{height:20px;}.message-header-th{border-style:solid;border-width:0 1px 0 0;border-color:#000;background-color:#ddd;padding:2px;}.message-tr{height:20px;}.message-tr-even{height:20px;background-color:#eee;}.message-td{border-style:solid;border-width:0 1px 0 0;border-color:#000;padding:2px;}
-.page{border-style:solid;border-width:1px;border-color:#aaa;padding:2px 4px 2px 4px;margin:0 2px 0 2px;cursor:pointer;}.currentpage{border-style:solid;border-width:1px;border-color:#aaa;padding:2px 4px 2px 4px;margin:0 2px 0 2px;background-color:#0067ce;color:#fff;}.overpage{border-style:solid;border-width:1px;border-color:#aaa;padding:2px 4px 2px 4px;margin:0 2px 0 2px;background-color:#fff;color:#000;cursor:pointer;}
-.aw-picus-table{width:100%;margin:0;padding:0;border-collapse:collapse;background:#fff;}.aw-picus-table th{margin:0;padding:1px 1px 1px 2px;height:24px;vertical-align:middle;color:#444;border:1px solid #aaa;text-align:left;background:url('../../../images/emma/default/background/table_header_bg.gif?build31910') bottom repeat-x #ebebeb;}.aw-picus-table th.caption{margin:0;padding:10px;vertical-align:middle;color:#444;border:1px solid #aaa;text-align:center;background:url('../../../images/emma/default/background/table_caption_bg.gif?build31910') center repeat-x;}.aw-picus-table td{margin:0;padding:1px 1px 1px 2px;height:24px;vertical-align:middle;color:#444;border:1px solid #aaa;text-align:left;}.aw-picus-table table.inner{width:98%;margin:0;padding:0;border-collapse:collapse;}.aw-picus-table table.inner td{margin:0;padding:5px 5px 5px 0;border:none;text-align:left;}.aw-picus-table table.inner td.uline{border-bottom:1px dotted #aaa;}.aw-picus-table .even{background:#f5f5f5;}.aw-picus-table .ar01{padding:0 0 0 12px;background:url('../../../images/emma/default/icon/arrow01.gif?build31910') left center no-repeat;}.aw-picus-table-unurged{width:100%;margin:0;padding:0;border-collapse:collapse;background:#fff;}.aw-picus-table-unurged th.label{margin:0;padding:1px 1px 1px 2px;height:24px;vertical-align:middle;color:#444;border:1px solid #aaa;text-align:left;background:url('../../../images/emma/default/background/table_header_bg.gif?build31910') bottom repeat-x #ebebeb;}.aw-picus-table-unurged th.caption{margin:0;padding:10px;vertical-align:middle;color:#444;border:1px solid #aaa;text-align:center;background:url('../../../images/emma/default/background/table_caption_bg.gif?build31910') center repeat-x;}.aw-picus-table-unurged td.item{margin:0;padding:1px 1px 1px 2px;height:24px;vertical-align:middle;color:#444;border:1px solid #aaa;text-align:left;}
-.aw-picus-header{height:45px;margin:0;padding:0;border:0;background:#7db9e8;background:-moz-linear-gradient(left,rgba(125,185,232,1) 0,rgba(30,87,153,1) 100%);background:-webkit-gradient(linear,left top,right top,color-stop(0%,rgba(125,185,232,1)),color-stop(100%,rgba(30,87,153,1)));background:-webkit-linear-gradient(left,rgba(125,185,232,1) 0,rgba(30,87,153,1) 100%);background:-o-linear-gradient(left,rgba(125,185,232,1) 0,rgba(30,87,153,1) 100%);background:-ms-linear-gradient(left,rgba(125,185,232,1) 0,rgba(30,87,153,1) 100%);background:linear-gradient(to right,rgba(125,185,232,1) 0,rgba(30,87,153,1) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#7db9e8',endColorstr='#1e5799',GradientType=1);}.aw-picus-header-left{float:left;width:250px;margin:0;padding:0;height:45px;overflow:hidden;}.aw-picus-header-left img{padding:0;height:45px;border:none;}.aw-picus-header-right{float:right;margin:0;padding:0 0 0 25px;background:url(../../../images/picus/default/header/link_bg_clear.gif?build31910) left top no-repeat;color:#666;font-size:12px;}.aw-picus-header-right-account{float:left;padding:0 10px 2px 0;display:inline;background-color:#333;color:#fff;}.aw-picus-header-right-link{background-color:#333;height:22px;float:left;}.aw-picus-header-right-link ul{margin:0;padding:2px;list-style:none;}.aw-picus-header-right-link li{margin:0;padding-right:5px;display:inline;}.aw-picus-header-right-link-hlinks-li-submenu a,.aw-picus-header-right-link-hlinks-li-submenu a:link,.aw-picus-header-right-link-hlinks-li-submenu a:active,.aw-picus-header-right-link-hlinks-li-submenu a:visited{color:#fff;background:URL(../../../images/common/icon/submenu.gif?build31910) 24px center no-repeat;}.aw-picus-header-right-link a{color:#fff;text-decoration:underline;}.aw-picus-header-right-link a:link{color:#fff;text-decoration:underline;}.aw-picus-header-right-link a:active{color:#fff;text-decoration:underline;}.aw-picus-header-right-link a:visited{color:#fff;text-decoration:underline;}.aw-picus-header-right-link a:hover{color:#fff;text-decoration:underline;}.aw-picus-linkmenu{position:absolute;background-color:#fff;z-index:1;overflow:auto;border-width:1px;border-color:#aaa;border-style:solid;}.aw-picus-linkmenu span{color:#000;text-decoration:none;}.aw-picus-linkmenu .link{padding:3px 20px 3px 3px;cursor:pointer;}.aw-picus-linkmenu .link_over{padding:3px 20px 3px 3px;cursor:pointer;background-color:#5e81bc;}.aw-picus-linkmenu .link_over span{color:#fff;text-decoration:none;}.aw-picus-header-menu{margin:0;padding:0;font-size:0;}.aw-picus-header-menu ul{list-style:none;margin:0;padding:0;}.aw-picus-header-menu li{float:left;font-size:12pt;height:45px;line-height:45px;vertical-align:middle;padding:0 14px 0 15px;margin:0 1px 0 0;cursor:pointer;}.aw-picus-header-menu .current{background-image:url(../../../images/picus/default/header/global_nav_current.gif?build31910);background-repeat:repeat-x;}.aw-picus-header-menu img{width:30px;height:30px;vertical-align:middle;margin:10px 0 10px 0;}.aw-picus-header-menu span{color:#DFDFDF;font-weight:bold;font-size:12px;margin-left:5px;text-decoration:none;}.aw-picus-header-menu .current span{color:#FFF;font-weight:bold;}.aw-picus-headerbar{clear:both;height:6px;margin:0;padding:0;background:url(../../../images/picus/default/header/bar_bg2.gif?build31910) left repeat-x #fff;font-size:0;}.aw-picus-workbench{position:absolute;width:250px;}.aw-picus-tabs{height:30px;padding:1px 0 0 10px;background-color:#333;}.aw-picus-menu{height:38px;margin:0;padding-left:10px;}.aw-picus-func{height:30px;border-style:solid;border-width:0 0 1px 0;border-color:#808080;background-image:url('../../../images/picus/default/background/tabs_bg.gif?build31910');}.aw-picus-func2{height:30px;border-style:solid;border-width:0 0 1px 0;border-color:#808080;background-image:url('../../../images/picus/default/background/func_bg2.gif?build31910');}.aw-picus-menubar-layer{height:30px;display:inline;float:left;}.aw-picus-contents{padding:5px;background-color:#333;}.aw-picus-grid{padding:10px;background-color:#333;}.aw-picus-page{position:relative;top:0;left:250px;width:10px;height:10px;overflow:hidden;}.aw-dragger{position:absolute;cursor:col-resize;border-style:solid;filter:alpha(opacity=00);-moz-opacity:0;opacity:0;z-index:1;}.aw-dragger-dragging{position:absolute;cursor:col-resize;border-style:solid;border-color:#0067ce;z-index:1;}.aw-picus-form .caption{margin:0;padding:6px 2px;vertical-align:middle;color:#444;border-top:1px solid #aaa;border-bottom:1px solid #aaa;text-align:left;font-weight:bold;background:url('../../../images/emma/default/background/table_header_bg.gif?build31910') bottom repeat-x #ebebeb;}.aw-picus-form .content{margin:0;padding:1px 2px;vertical-align:middle;color:#444;text-align:left;}
-.aw-snapper-actionbuttons-layer{height:30px;border-style:solid;border-width:1px 0 1px 0;border-color:#808080;background-image:url('../../../images/picus/default/background/tabs_bg.gif?build31910');}.aw-snapper-actionbuttons{margin-left:5px;height:30px;display:inline;float:left;}.aw-snapper-status-layer{height:38px;margin:0;padding:0 3px;text-align:left;background:url('../../../images/picus/default/background/dv_status_bg.gif?build31910') top repeat-x #fff;color:#fff;overflow:hidden;}.aw-snapper-tabs-layer{height:30px;background-color:#333;background:url('../../../images/picus/default/background/dv_tabs_bg.gif?build31910') 0 8px repeat-x #fff;border-bottom:1px solid #999;}.aw-snapper-tabs{position:absolute;left:100px;font-size:12px;}.aw-snapper-iframe{position:absolute;left:93px;}.aw-snapper-sidebar-slider{text-align:center;position:absolute;top:69px;left:80px;width:13px;background-color:#000;background-repeat:no-repeat;background-position:center bottom;background-image:url('../../../images/picus/default/background/dv_toolbar_bg.gif?build31910');color:#fff;border-style:solid;border-width:0 1px 0 1px;border-color:#666;cursor:pointer;}.aw-snapper-sidebar-scrollablemenu{position:absolute;top:69px;left:0;width:80px;background-color:#676767;}.aw-snapper-sidebar-scrollablemenu .scrolltop{background-color:#676767;height:15px;text-align:center;color:#fff;width:80px;border-style:solid;border-width:0 0 1px 0;border-color:#ddd;}.aw-snapper-sidebar-scrollablemenu .scrollbottom{background-color:#676767;height:15px;text-align:center;color:#fff;width:80px;border-style:solid;border-width:1px 0 0 0;border-color:#ddd;}.aw-snapper-sidebar-scrollablemenu .menu{width:80px;overflow:hidden;}.aw-snapper-sidebar-scrollablemenu .menu .table{color:#fff;}.aw-snapper-sidebar-scrollablemenu .menu .tr{cursor:pointer;}.aw-snapper-sidebar-scrollablemenu .menu .tdover{background-color:#5e81bc;}.aw-snapper-sidebar-scrollablemenu .menu .count{color:#FF809F;}.aw-snapper-sidebar-badge{position:absolute;top:0;left:45px;padding:0 5px 0 5px;font-size:12px;font-weight:bold;border-radius:20px;-moz-border-radius:20px;-webkit-border-radius:20px;border-style:solid;border-width:2px;border-color:#fff;background-color:#c00;background:-webkit-gradient(linear,center top,center bottom,from(#ffb3b3),to(#c00));background:-moz-linear-gradient(top,#ffb3b3,#c00);background:-ms-linear-gradient(top,#ffb3b3,#c00);background:linear-gradient(top,#ffb3b3,#c00);}.aw-snapper-sidebar-badge-noborderradius{position:absolute;top:0;left:45px;padding:0 4px 0 4px;font-size:12px;font-weight:bold;border-style:solid;border-width:2px;border-color:#fff;background-color:#c00;filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#ffb3b3',endColorstr='#cc0000');}.aw-snapper-sidebar-badge-ie6{position:absolute;top:0;left:21px;padding:0 4px 0 4px;font-size:12px;font-weight:bold;border-style:solid;border-width:2px;border-color:#fff;background-color:#c00;filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#ffb3b3',endColorstr='#cc0000');}.aw-snapper-property-layer-frame{position:absolute;border-style:solid;border-width:1px;border-color:#666;box-shadow:2px 2px 5px #666;-moz-box-shadow:2px 2px 5px #666;-webkit-box-shadow:2px 2px 5px #666;}.aw-snapper-property-layer-titlebar{height:30px;color:#262e37;font-weight:bold;overflow:hidden;background-image:url('../../../images/picus/default/background/layer_titlebar_bg.gif?build31910');background-repeat:repeat-x;font-size:120%;}.aw-snapper-property-layer-titlebar-table{height:30px;padding-left:4px;}.aw-snapper-property-layer-titlebar-td-close{width:20px;text-align:center;padding:0 4px 0 0;cursor:pointer;}.aw-snapper-property-layer-body{position:absolute;padding:5px;background-color:#eee;}.aw-snapper-property-layer-underiframe{position:absolute;top:0;left:0;width:100%;height:100%;border:none;filter:alpha(opacity=0);-moz-opacity:0;opacity:0;}.aw-snapper-property-layer-underdiv{position:absolute;top:0;left:0;width:100%;height:100%;background-color:#ddd;filter:alpha(opacity=40);opacity:.4;-moz-opacity:.4;}.aw-snapper-property-layer-subtitle{height:25px;padding-left:5px;background-color:#ccc;line-height:25px;margin-top:10px;margin-bottom:10px;overflow:hidden;}.aw-snapper-comment-icons a,.aw-snapper-comment-icons a:link,.aw-snapper-comment-icons a:active,.aw-snapper-comment-icons a:visited,.aw-snapper-comment-icons a:hover{color:#000;}.aw-snapper-comment-icons-even a,.aw-snapper-comment-icons-even a:link,.aw-snapper-comment-icons-even a:active,.aw-snapper-comment-icons-even a:visited,.aw-snapper-comment-icons-even a:hover{color:#000;}.aw-snapper-attachment-icons a,.aw-snapper-attachment-icons a:link,.aw-snapper-attachment-icons a:active,.aw-snapper-attachment-icons a:visited,.aw-snapper-attachment-icons a:hover{color:#000;}.aw-snapper-attachment-icons-even a,.aw-snapper-attachment-icons-even a:link,.aw-snapper-attachment-icons-even a:active,.aw-snapper-attachment-icons-even a:visited,.aw-snapper-attachment-icons-even a:hover{color:#000;}.aw-snapper-comment-table-tr{background-color:#fff;}.aw-snapper-comment-table-tr-even{background-color:#e4e4e4;}.aw-snapper-comment-table-th{height:25px;color:#000;font-weight:bold;border-style:solid;border-width:1px 0 1px 0;border-bottom-color:#aaa;border-top-color:#ccc;white-space:pre;word-break:keep-all;overflow:hidden;text-align:center;background-image:url('../../../images/emma/default/background/grid_header.gif?build31910');padding:0 4px 0 4px;}.aw-snapper-comment-table-td{padding:6px;}.aw-snapper-comment-table-td-even{padding:6px;}.aw-snapper-nested-table{border-style:dotted;border-width:0 0 1px 0;border-color:#aaa;margin-bottom:2px;}.aw-snapper-node{padding:0;}.aw-snapper-node-even{padding:0;}.aw-snapper-node-current{border-style:solid;border-width:2px;border-color:#f00;}.snapper-reference-table{width:660px;}.snapper-reference-table .referencee-header{height:20px;padding:0 0 0 10px;}.snapper-reference-table .own{border-style:solid;border-width:2px;border-color:#aaa;background-color:#ffc;padding:4px;}.snapper-reference-table .exist{border-style:solid;border-width:2px;border-color:#aaa;background-color:#fff;padding:4px;}.snapper-reference-table .notexist{border-style:solid;border-width:2px;border-color:#aaa;background-color:#ddd;padding:4px;}.snapper-reference-table .listname{font-size:120%;font-weight:bold;}.snapper-ruletable-headertable{width:672px;border-style:solid;border-width:1px 0 0 1px;border-color:#aaa;table-layout:fixed;margin:0 0 0 1px;}.snapper-ruletable-headertable th{height:25px;color:#000;font-weight:bold;border-style:solid;border-width:0 1px 1px 0;border-color:#aaa;white-space:pre;word-break:keep-all;overflow:hidden;text-align:center;background-image:url('../../../images/emma/default/background/grid_header.gif?build31910');padding:0 2px 0 2px;}.snapper-ruletable-contentstable{width:672px;border-style:solid;border-width:0 0 0 1px;border-color:#aaa;table-layout:fixed;margin:0 0 0 1px;}.snapper-ruletable table.current{width:673px;border-width:2px;border-style:solid;border-color:#f00;margin:0;}.snapper-ruletable table.current.continuum{width:673px;border-width:0 2px 2px 2px;border-style:solid;border-color:#f00;margin:0;}.snapper-ruletable-contentstable tr.odd{background-color:#fff;}.snapper-ruletable-contentstable tr.even{background-color:#f5f5f5;}.snapper-ruletable-contentstable td{border-style:solid;border-width:0 1px 1px 0;border-color:#aaa;padding:2px;word-break:break-all;}.snapper-ruletable-contentstable .no{text-align:center;}.snapper-ruletable-contentstable .node{font-weight:bold;font-size:110%;}.snapper-ruletable-rulecandidatestable td.mid{border-style:dotted;border-width:0 0 1px 0;border-color:#aaa;margin-bottom:2px;}.snapper-ruletable-rulecandidatestable td.link{color:#1851E7;cursor:pointer;}.snapper-ruletable-rulecandidatestable td{border:none;background:none;}.snapper-ruletable-rulecandidatestable td.execdate{color:#666;}.snapper-ruletable-rulecandidatestable td.proxyimage{color:#f00;}.snapper-ruletable-rulecandidatestable td.proxyobjectname{color:#f00;}.snapper-ruletable-candidatelink{margin:0 0 2px 0;background-color:#ffffd5;padding:4px 4px 4px 22px;background-image:url('../../..//images/common/icon/action/edit.gif?build31910');background-repeat:no-repeat;}.snapper-ruletable-nodemessage{margin:0 0 2px 0;background-color:#ddd;padding:4px 4px 4px 4px;font-weight:bold;border-style:solid;border-width:1px;border-color:#aaa;font-size:12px;}.snapper-ruletable-information{margin:2px 0 5px 0;background-color:#ffffd5;padding:4px 4px 4px 24px;background-image:url('../../..//images/common/icon/etc/info20.gif?build31910');background-repeat:no-repeat;}.snapper-passbacktable-headertable{width:560px;border-style:solid;border-width:1px 0 0 1px;border-color:#aaa;table-layout:fixed;margin:0 1px 0 1px;}.snapper-passbacktable-headertable th{height:25px;color:#000;font-weight:bold;border-style:solid;border-width:0 1px 1px 0;border-color:#aaa;white-space:pre;word-break:keep-all;overflow:hidden;text-align:center;background-image:url('../../../images/emma/default/background/grid_header.gif?build31910');padding:0 4px 0 4px;}.snapper-passbacktable-contentstable{width:560px;border-style:solid;border-width:0 0 0 1px;border-color:#aaa;table-layout:fixed;margin:0 1px 0 1px;}.snapper-passbacktable table.current{border-width:2px;border-style:solid;border-color:#f00;margin:0;width:562px;color:#aaa;}.snapper-passbacktable table.current.continuum{border-width:0 2px 2px 2px;border-style:solid;border-color:#f00;margin:0;width:562px;color:#aaa;}.snapper-passbacktable-contentstable.disabled{color:#aaa;}.snapper-passbacktable-contentstable.over{width:560px;cursor:pointer;}.snapper-passbacktable-contentstable tr{background-color:#fff;}.snapper-passbacktable-contentstable tr.even{background-color:#f5f5f5;}.snapper-passbacktable-contentstable.selected tr{background-color:#0067ce!important;color:#fff;}.snapper-passbacktable-contentstable.over tr{background-color:#ddd;}.snapper-passbacktable-contentstable.over tr.even{background-color:#ddd;}.snapper-passbacktable-contentstable td{border-style:solid;border-width:0 1px 1px 0;border-color:#aaa;padding:2px 4px 2px 4px;}.snapper-passbacktable-contentstable .no{text-align:center;}.snapper-passbacktable-contentstable .node{font-weight:bold;font-size:110%;}.snapper-transferbutton{position:absolute;top:0;left:4px;}.snapper-transferbutton button{width:23px;height:32px;text-align:center;}.snapper-transferbutton .nonebutton img{vertical-align:middle;}.snapper-closebutton{position:absolute;top:0;text-align:right;}.snapper-closebutton button{width:23px;height:32px;text-align:center;}.snapper-closebutton .nonebutton img{vertical-align:middle;}.snapper-approvehistorytable-th{height:auto;padding:4px;background-color:#BCBCBC;background-image:url('../../../images/picus/default/background/grid_header.gif?build31910');background-repeat:repeat-x;white-space:normal;word-break:normal;overflow:visible;}
-.tabs-layer{overflow:hidden;height:30px;font-size:12px;}.tabs-table{height:29px;margin-top:1px;}.tabs-item{height:28px;border-style:solid;border-width:1px 1px 0 1px;border-color:#aaa;background-color:#ccc;color:#000;padding:0 10px 0 10px;white-space:nowrap;background-image:url('../../../images/picus/default/background/tab_bg.gif?build31910');}.tabs-item a{color:#000;}.tabs-item a:link{color:#000;}.tabs-item a:active{color:#000;}.tabs-item a:visited{color:#000;}.tabs-item-mouseover{height:28px;background-color:#eee;border-style:solid;border-width:1px 1px 0 1px;border-color:#aaa;color:#fff;padding:0 10px 0 10px;white-space:nowrap;background-image:url('../../../images/picus/default/background/tab_bg_over.gif?build31910');}.tabs-item-mouseover a{color:#fff;}.tabs-item-mouseover a:link{color:#fff;}.tabs-item-mouseover a:active{color:#fff;}.tabs-item-mouseover a:visited{color:#fff;}.tabs-blank{padding:0 5px 0 5px;border-style:solid;border-width:0 0 1px 0;border-color:#aaa;}.tabs-last{width:100%;border-style:solid;border-width:0 0 1px 0;border-color:#aaa;}.tabs-leftarrow{width:30px;background-image:url('../../../images/picus/default/background/tabs-leftarrow.gif?build31910');background-repeat:no-repeat;background-position:0 2px;cursor:pointer;}.tabs-rightarrow{width:30px;background-image:url('../../../images/picus/default/background/tabs-rightarrow.gif?build31910');background-repeat:no-repeat;background-position:2px 2px;cursor:pointer;}.tabs-page{background-color:#eee;border-style:solid;border-width:0 1px 1px 1px;border-color:#aaa;padding:4px;overflow:auto;}
-.aw-menubar{height:30px;border-style:solid;border-width:0 0 1px 0;border-color:#808080;background-image:url('../../../images/picus/default/background/tabs_bg.gif?build31910');}.aw-menubar2{height:30px;border-style:solid;border-width:0 0 1px 0;border-color:#808080;background-image:url('../../../images/picus/default/background/func_bg2.gif?build31910');}
-.ygtvtd_current{background-color:#0067ce;border-style:solid;border-width:1px;border-color:#000;padding:0;}
-.workbench-layer{border-style:outset;border-width:0 1px 0 0;border-color:#333;white-space:nowrap;}.workbench-item{width:190px;border-style:solid;border-width:0 0 1px 0;border-color:#666;overflow:hidden;background-image:url('../../../images/picus/default/background/workbench_item_work.gif?build31910');background-repeat:no-repeat;font-weight:bold;line-height:30px;color:#000;cursor:pointer;padding-left:60px;}.workbench-item-current{width:190px;border-style:solid;border-width:0 0 1px 0;border-color:#666;overflow:hidden;background-image:url('../../../images/picus/default/background/workbench_item_work_over.gif?build31910');background-repeat:no-repeat;font-weight:bold;line-height:30px;color:#fff;cursor:pointer;padding-left:60px;}.workbench-item-mouseover{width:190px;border-style:solid;border-width:0 0 1px 0;border-color:#666;overflow:hidden;background-image:url('../../../images/picus/default/background/workbench_item_work_over.gif?build31910');background-repeat:no-repeat;font-weight:bold;line-height:30px;color:#fff;cursor:pointer;padding-left:60px;}.workbench-item-todo{width:190px;border-style:solid;border-width:0 0 1px 0;border-color:#666;overflow:hidden;background-image:url('../../../images/picus/default/background/workbench_item_todo.gif?build31910');background-repeat:no-repeat;font-weight:bold;line-height:30px;color:#000;cursor:pointer;padding-left:60px;font-size:120%;}.workbench-item-todo-current{width:190px;border-style:solid;border-width:0 0 1px 0;border-color:#666;overflow:hidden;background-image:url('../../../images/picus/default/background/workbench_item_todo_over.gif?build31910');background-repeat:no-repeat;font-weight:bold;line-height:30px;color:#fff;cursor:pointer;padding-left:60px;font-size:120%;}.workbench-item-todo-mouseover{width:190px;border-style:solid;border-width:0 0 1px 0;border-color:#666;overflow:hidden;background-image:url('../../../images/picus/default/background/workbench_item_todo_over.gif?build31910');background-repeat:no-repeat;font-weight:bold;line-height:30px;color:#fff;cursor:pointer;padding-left:60px;font-size:120%;}.workbench-item-progress{width:190px;border-style:solid;border-width:0 0 1px 0;border-color:#666;overflow:hidden;background-image:url('../../../images/picus/default/background/workbench_item_progress.gif?build31910');background-repeat:no-repeat;font-weight:bold;line-height:30px;color:#000;cursor:pointer;padding-left:60px;font-size:120%;}.workbench-item-progress-current{width:190px;border-style:solid;border-width:0 0 1px 0;border-color:#666;overflow:hidden;background-image:url('../../../images/picus/default/background/workbench_item_progress_over.gif?build31910');background-repeat:no-repeat;font-weight:bold;line-height:30px;color:#fff;cursor:pointer;padding-left:60px;font-size:120%;}.workbench-item-progress-mouseover{width:190px;border-style:solid;border-width:0 0 1px 0;border-color:#666;overflow:hidden;background-image:url('../../../images/picus/default/background/workbench_item_progress_over.gif?build31910');background-repeat:no-repeat;font-weight:bold;line-height:30px;color:#fff;cursor:pointer;padding-left:60px;font-size:120%;}.workbench-item-proxyapprove{width:190px;border-style:solid;border-width:0 0 1px 0;border-color:#666;overflow:hidden;background-image:url('../../../images/picus/default/background/workbench_item_proxyapprove.gif?build31910');background-repeat:no-repeat;font-weight:bold;line-height:30px;color:#000;cursor:pointer;padding-left:60px;font-size:120%;}.workbench-item-proxyapprove-current{width:190px;border-style:solid;border-width:0 0 1px 0;border-color:#666;overflow:hidden;background-image:url('../../../images/picus/default/background/workbench_item_proxyapprove_over.gif?build31910');background-repeat:no-repeat;font-weight:bold;line-height:30px;color:#fff;cursor:pointer;padding-left:60px;font-size:120%;}.workbench-item-proxyapprove-mouseover{width:190px;border-style:solid;border-width:0 0 1px 0;border-color:#666;overflow:hidden;background-image:url('../../../images/picus/default/background/workbench_item_proxyapprove_over.gif?build31910');background-repeat:no-repeat;font-weight:bold;line-height:30px;color:#fff;cursor:pointer;padding-left:60px;font-size:120%;}.workbench-item-apply{width:190px;border-style:solid;border-width:0 0 1px 0;border-color:#666;overflow:hidden;background-image:url('../../../images/picus/default/background/workbench_item_apply.gif?build31910');background-repeat:no-repeat;font-weight:bold;line-height:30px;color:#000;cursor:pointer;padding-left:60px;font-size:120%;}.workbench-item-apply-current{width:190px;border-style:solid;border-width:0 0 1px 0;border-color:#666;overflow:hidden;background-image:url('../../../images/picus/default/background/workbench_item_apply_over.gif?build31910');background-repeat:no-repeat;font-weight:bold;line-height:30px;color:#fff;cursor:pointer;padding-left:60px;font-size:120%;}.workbench-item-apply-mouseover{width:190px;border-style:solid;border-width:0 0 1px 0;border-color:#666;overflow:hidden;background-image:url('../../../images/picus/default/background/workbench_item_apply_over.gif?build31910');background-repeat:no-repeat;font-weight:bold;line-height:30px;color:#fff;cursor:pointer;padding-left:60px;font-size:120%;}.workbench-item-proxyapply{width:190px;border-style:solid;border-width:0 0 1px 0;border-color:#666;overflow:hidden;background-image:url('../../../images/picus/default/background/workbench_item_proxyapply.gif?build31910');background-repeat:no-repeat;font-weight:bold;line-height:30px;color:#000;cursor:pointer;padding-left:60px;font-size:120%;}.workbench-item-proxyapply-current{width:190px;border-style:solid;border-width:0 0 1px 0;border-color:#666;overflow:hidden;background-image:url('../../../images/picus/default/background/workbench_item_proxyapply_over.gif?build31910');background-repeat:no-repeat;font-weight:bold;line-height:30px;color:#fff;cursor:pointer;padding-left:60px;font-size:120%;}.workbench-item-proxyapply-mouseover{width:190px;border-style:solid;border-width:0 0 1px 0;border-color:#666;overflow:hidden;background-image:url('../../../images/picus/default/background/workbench_item_proxyapply_over.gif?build31910');background-repeat:no-repeat;font-weight:bold;line-height:30px;color:#fff;cursor:pointer;padding-left:60px;font-size:120%;}.workbench-item-search{width:190px;border-style:solid;border-width:0 0 1px 0;border-color:#666;overflow:hidden;background-image:url('../../../images/picus/default/background/workbench_item_search.gif?build31910');background-repeat:no-repeat;font-weight:bold;line-height:30px;color:#000;cursor:pointer;padding-left:60px;font-size:120%;}.workbench-item-search-current{width:190px;border-style:solid;border-width:0 0 1px 0;border-color:#666;overflow:hidden;background-image:url('../../../images/picus/default/background/workbench_item_search_over.gif?build31910');background-repeat:no-repeat;font-weight:bold;line-height:30px;color:#fff;cursor:pointer;padding-left:60px;font-size:120%;}.workbench-item-search-mouseover{width:190px;border-style:solid;border-width:0 0 1px 0;border-color:#666;overflow:hidden;background-image:url('../../../images/picus/default/background/workbench_item_search_over.gif?build31910');background-repeat:no-repeat;font-weight:bold;line-height:30px;color:#fff;cursor:pointer;padding-left:60px;font-size:120%;}.workbench-item-personalize{width:190px;border-style:solid;border-width:0 0 1px 0;border-color:#666;overflow:hidden;background-image:url('../../../images/picus/default/background/workbench_item_personalize.gif?build31910');background-repeat:no-repeat;font-weight:bold;line-height:30px;color:#000;cursor:pointer;padding-left:60px;font-size:120%;}.workbench-item-personalize-current{width:190px;border-style:solid;border-width:0 0 1px 0;border-color:#666;overflow:hidden;background-image:url('../../../images/picus/default/background/workbench_item_personalize_over.gif?build31910');background-repeat:no-repeat;font-weight:bold;line-height:30px;color:#fff;cursor:pointer;padding-left:60px;font-size:120%;}.workbench-item-personalize-mouseover{width:190px;border-style:solid;border-width:0 0 1px 0;border-color:#666;overflow:hidden;background-image:url('../../../images/picus/default/background/workbench_item_personalize_over.gif?build31910');background-repeat:no-repeat;font-weight:bold;line-height:30px;color:#fff;cursor:pointer;padding-left:60px;font-size:120%;}.workbench-content{width:230px;border-style:solid;border-width:0 0 1px 0;border-color:#666;overflow:auto;padding:10px;}.workbench-content-control{width:224px;background-color:#fff;border-style:solid;border-width:3px;border-color:#aaa;overflow:auto;}
diff --git a/AgileWorks/WebContent/css/picus/iceBerg/iceBerg.css.dev b/AgileWorks/WebContent/css/picus/iceBerg/iceBerg.css.dev
deleted file mode 100644
index 8358fd223a7448adc27f9ac0b481477fa2ecac97..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/picus/iceBerg/iceBerg.css.dev
+++ /dev/null
@@ -1,15 +0,0 @@
-@import url(base.css);
-@import url(common.css);
-@import url(contents.css);
-@import url(grid-base.css);
-@import url(grid-ext.css);
-@import url(layer.css);
-@import url(menu-base.css);
-@import url(pagination.css);
-@import url(picus-table.css);
-@import url(picus.css);
-@import url(snapper.css);
-@import url(tabs.css);
-@import url(theme.css);
-@import url(tree-ext.css);
-@import url(workbench.css);
\ No newline at end of file
diff --git a/AgileWorks/WebContent/css/picus/iceBerg/layer.css b/AgileWorks/WebContent/css/picus/iceBerg/layer.css
deleted file mode 100644
index b77e064e50de107f0bac16cfc60de9249aa6e5e5..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/picus/iceBerg/layer.css
+++ /dev/null
@@ -1,152 +0,0 @@
-/*
- * layer.css?build31910
- *
- * Layerを描画するために必要なCSSセレクタを定義します
- */
-
-.layer {
- position:absolute;
-}
-
-/*
- * モーダル用DIV要素に適用されるクラスセレクタ
- */
-.layer-modallayer {
- position:absolute;
- top:0px;
- left:0px;
- width:100%;
- height:100%;
- background-color:#dddddd;
- filter:alpha(opacity=40);
- opacity:0.4;
- -moz-opacity:0.4;
-}
-
-/*
- * ドロップシャドウに適用されるクラスセレクタ
- */
-.layer-dropshadow {
- position: absolute;
- background-image: url('../../../images/common/container/shadow.gif?build31910');
- background-position: right bottom;
-}
-
-/*
- * IFRAME要素に適用されるクラスセレクタ
- */
-.layer-underiframe {
- position:absolute;
- top:0px;
- left:0px;
- width:100%;
- height:100%;
- border:none;
- filter:alpha(opacity=0);
- -moz-opacity:0;
- opacity:0;
-}
-
-/*
- * Layerの描画要素に適用されるクラスセレクタ
- */
-.layer-frame {
- position:absolute;
- border-style:solid;
- border-width:1px;
- border-color:#666666;
- box-shadow: 2px 2px 5px #666666;
- -moz-box-shadow: 2px 2px 5px #666666;
- -webkit-box-shadow: 2px 2px 5px #666666;
-}
-
-/*
- * タイトルバーに適用されるクラスセレクタ
- */
-.layer-titlebar {
- height:30px;
- color:#262e37;
- font-weight:bold;
- overflow:hidden;
- background-image: url( '../../../images/picus/default/background/layer_titlebar_bg.gif?build31910' );
- background-repeat:repeat-x;
- font-size:120%;
-}
-
-/*
- * タイトルバー内のTABLE要素に適用されるクラスセレクタ
- */
-.layer-titlebar-table {
- height:30px;
- padding-left:4px;
-}
-
-/*
- * タイトルバー内のタイトル要素に適用されるクラスセレクタ
- */
-.layer-titlebar-caption {
- overflow : hidden;
-}
-
-/*
- * タイトルバー内のヘルプアイコンのTD要素に適用されるクラスセレクタ
- */
-.layer-titlebar-td-help {
- width:20px;
- text-align:center;
- padding:0px;
- cursor:pointer;
-}
-
-/*
- * タイトルバー内のクローズアイコンのTD要素に適用されるクラスセレクタ
- */
-.layer-titlebar-td-close {
- width:20px;
- text-align:center;
- padding:0px 4px 0px 0px;
- cursor:pointer;
-}
-
-/*
- * ボディに適用されるクラスセレクタ
- */
-.layer-body {
- position:absolute;
- overflow:auto;
- padding:5px;
- background-color:#eeeeee;
-}
-
-.layer-body-caption {
- border-bottom:2px solid #aaa;
- margin:10px 0px;
- font-weight:bold;
- padding:2px;
-}
-/*
- * メッセージボックスに適用されるクラスセレクタ
- */
-.layer-messagebox-simple {
- font-size:12px;
- font-weight:bold;
-}
-
-.layer-messagebox-tl{background:transparent url(../../../images/picus/default/background/messagebox-corners.gif?build31910) no-repeat 0 0;zoom:1;}
-.layer-messagebox-tc{height:8px;background:transparent url(../../../images/picus/default/background/messagebox-tb.gif?build31910) repeat-x 0 0;overflow:hidden;}
-.layer-messagebox-tr{background:transparent url(../../../images/picus/default/background/messagebox-corners.gif?build31910) no-repeat right -8px;}
-.layer-messagebox-ml{background:transparent url(../../../images/picus/default/background/messagebox-l.gif?build31910) repeat-y 0;padding-left:4px;overflow:hidden;zoom:1;}
-.layer-messagebox-mc{background:#eee url(../../../images/picus/default/background/messagebox-tb.gif?build31910) repeat-x 0 -16px;padding:4px 10px;font-family:"Myriad Pro","Myriad Web","Tahoma","Helvetica","Arial",sans-serif;color:#393939;font-size:12px;}
-.layer-messagebox-mc h3{font-size:14px;font-weight:bold;margin:0 0 4 0;zoom:1;}
-.layer-messagebox-mr{background:transparent url(../../../images/picus/default/background/messagebox-r.gif?build31910) repeat-y right;padding-right:4px;overflow:hidden;}
-.layer-messagebox-bl{background:transparent url(../../../images/picus/default/background/messagebox-corners.gif?build31910) no-repeat 0 -16px;zoom:1;}
-.layer-messagebox-bc{background:transparent url(../../../images/picus/default/background/messagebox-tb.gif?build31910) repeat-x 0 -8px;height:8px;overflow:hidden;}
-.layer-messagebox-br{background:transparent url(../../../images/picus/default/background/messagebox-corners.gif?build31910) no-repeat right -24px;}
-.layer-messagebox-tl,.layer-messagebox-bl{padding-left:8px;overflow:hidden;}
-.layer-messagebox-tr,.layer-messagebox-br{padding-right:8px;overflow:hidden;}
-.layer-messagebox-blue .layer-messagebox-bl,.layer-messagebox-blue .layer-messagebox-br,.layer-messagebox-blue .layer-messagebox-tl,.layer-messagebox-blue .layer-messagebox-tr{background-image:url(../../../images/picus/default/background/messagebox-corners-blue.gif?build31910);}
-.layer-messagebox-blue .layer-messagebox-bc,.layer-messagebox-blue .layer-messagebox-mc,.layer-messagebox-blue .layer-messagebox-tc{background-image:url(../../../images/picus/default/background/messagebox-tb-blue.gif?build31910);}
-.layer-messagebox-blue .layer-messagebox-mc{background-color:#c3daf9;}
-.layer-messagebox-blue .layer-messagebox-mc h3{color:#17385b;}
-.layer-messagebox-blue .layer-messagebox-ml{background-image:url(../../../images/picus/default/background/messagebox-l-blue.gif?build31910);}
-.layer-messagebox-blue .layer-messagebox-mr{background-image:url(../../../images/picus/default/background/messagebox-r-blue.gif?build31910);}
diff --git a/AgileWorks/WebContent/css/picus/iceBerg/menu-base.css b/AgileWorks/WebContent/css/picus/iceBerg/menu-base.css
deleted file mode 100644
index a23458caa31b85f005a07f8f3facc286dce550ac..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/picus/iceBerg/menu-base.css
+++ /dev/null
@@ -1,58 +0,0 @@
-.menubar {
- color:#000000;
-}
-
-.menubar .topmenu {
- height:30px;
-}
-
-.menubar .topmenu ul {
- margin:0px;
- padding:0px;
-}
-
-.menubar .topmenu li {
- float:left;
- list-style-type:none;
- margin:0px;
- line-height:22px;
- padding: 4px 5px 4px 22px;
-}
-
-.menubar .submenu {
- background-color:#ffffff;
- border-style:solid;
- border-width:1px;
- border-color:#aaaaaa;
-}
-
-.menubar .submenu ul {
- margin:0px;
- padding:0px;
- overflow:hidden;
-}
-
-.menubar .submenu li {
- list-style-type:none;
- margin:0px;
- padding:0px;
- line-height:22px;
- padding: 1px 5px 1px 22px;
- white-space:pre;
- word-break:keep-all;
-}
-
-.menubar .menuitem.menuover {
- background-color:#5e81bc;
- color:#ffffff;
- cursor:pointer;
-}
-
-.menubar .menuitem.menudisabled {
- color:#aaaaaa;
-}
-
-.menubar .topmenu .menuitem-terminate {
- float:none;
- clear:both;
-}
diff --git a/AgileWorks/WebContent/css/picus/iceBerg/message.css b/AgileWorks/WebContent/css/picus/iceBerg/message.css
deleted file mode 100644
index 7bf544c05d483a5c6d931430fe2aeb14874a2f6f..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/picus/iceBerg/message.css
+++ /dev/null
@@ -1,62 +0,0 @@
-.message-header {
- background-color:#dddddd;
- font-weight:bold;
- font-size:150%;
- padding:5px;
-}
-
-.message-body {
- height:500px;
- background-color:#ffffff;
- padding:10px;
- overflow:auto;
-}
-
-.message-header1 {
- margin:0px 0px 10px 0px;
- font-weight:bold;
- font-size:120%;
-}
-
-.message-header2 {
- margin:0px 0px 10px 0px;
- text-decoration:underline;
-}
-
-.message-content {
- margin:0px 0px 10px 0px;
-}
-
-.message-table {
- border-style:solid;
- border-width:1px 0px 1px 1px;
- border-color:#000000;
-}
-
-.message-header-tr {
- height:20px;
-}
-
-.message-header-th {
- border-style:solid;
- border-width:0px 1px 0px 0px;
- border-color:#000000;
- background-color:#dddddd;
- padding:2px;
-}
-
-.message-tr {
- height:20px;
-}
-
-.message-tr-even {
- height:20px;
- background-color:#eeeeee;
-}
-
-.message-td {
- border-style:solid;
- border-width:0px 1px 0px 0px;
- border-color:#000000;
- padding:2px;
-}
diff --git a/AgileWorks/WebContent/css/picus/iceBerg/pagination.css b/AgileWorks/WebContent/css/picus/iceBerg/pagination.css
deleted file mode 100644
index 8682ca519558f3840c221abfbffeeb97b8373a81..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/picus/iceBerg/pagination.css
+++ /dev/null
@@ -1,29 +0,0 @@
-.page {
- border-style:solid;
- border-width:1px;
- border-color:#aaaaaa;
- padding:2px 4px 2px 4px;
- margin:0px 2px 0px 2px;
- cursor:pointer;
-}
-
-.currentpage {
- border-style:solid;
- border-width:1px;
- border-color:#aaaaaa;
- padding:2px 4px 2px 4px;
- margin:0px 2px 0px 2px;
- background-color:#0067ce;
- color:#ffffff;
-}
-
-.overpage {
- border-style:solid;
- border-width:1px;
- border-color:#aaaaaa;
- padding:2px 4px 2px 4px;
- margin:0px 2px 0px 2px;
- background-color:#ffffff;
- color:#000000;
- cursor:pointer;
-}
diff --git a/AgileWorks/WebContent/css/picus/iceBerg/picus-table.css b/AgileWorks/WebContent/css/picus/iceBerg/picus-table.css
deleted file mode 100644
index 9949aa7b6966bee3f229b30199940db5f1575b16..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/picus/iceBerg/picus-table.css
+++ /dev/null
@@ -1,117 +0,0 @@
-/*
- * picus-table.css?build31910
- *
- * アプリケーション「Picus」で使用されるテーブル関連のCSSセレクタを定義します
- */
-
-.aw-picus-table {
- width: 100%;
- margin: 0px;
- padding: 0px;
- border-collapse: collapse;
- background: #fff;
-}
-
-.aw-picus-table th {
- margin: 0px;
- padding: 1px 1px 1px 2px;
- height: 24px;
- vertical-align: middle;
- color: #444444;
- border: 1px solid #aaaaaa;
- text-align: left;
- background: url('../../../images/emma/default/background/table_header_bg.gif?build31910') bottom repeat-x #ebebeb;
-}
-
-.aw-picus-table th.caption {
- margin: 0px;
- padding: 10px;
- vertical-align: middle;
- color: #444444;
- border: 1px solid #aaaaaa;
- text-align: center;
- background: url('../../../images/emma/default/background/table_caption_bg.gif?build31910') center repeat-x;
-}
-
-.aw-picus-table td {
- margin: 0px;
- padding: 1px 1px 1px 2px;
- height: 24px;
- vertical-align: middle;
- color: #444444;
- border: 1px solid #aaaaaa;
- text-align: left;
-}
-
-/* テーブル(内部) */
-.aw-picus-table table.inner {
- width: 98%;
- margin: 0px;
- padding: 0px;
- border-collapse: collapse;
-}
-
-.aw-picus-table table.inner td {
- margin: 0px;
- padding: 5px 5px 5px 0px;
- border: none;
- text-align: left;
-}
-
-.aw-picus-table table.inner td.uline {
- border-bottom: 1px dotted #aaa;
-}
-
-/* 偶数行色指定(TR) */
-.aw-picus-table .even {
- background: #f5f5f5;
-}
-
-/* マーカー指定(SPAN) */
-.aw-picus-table .ar01 {
- padding: 0px 0px 0px 12px;
- background: url('../../../images/emma/default/icon/arrow01.gif?build31910') left center no-repeat;
-}
-
-
-/*
- * 個人設定:代理権限設定
- */
-.aw-picus-table-unurged {
- width: 100%;
- margin: 0px;
- padding: 0px;
- border-collapse: collapse;
- background: #fff;
-}
-
-.aw-picus-table-unurged th.label {
- margin: 0px;
- padding: 1px 1px 1px 2px;
- height: 24px;
- vertical-align: middle;
- color: #444444;
- border: 1px solid #aaaaaa;
- text-align: left;
- background: url('../../../images/emma/default/background/table_header_bg.gif?build31910') bottom repeat-x #ebebeb;
-}
-
-.aw-picus-table-unurged th.caption {
- margin: 0px;
- padding: 10px;
- vertical-align: middle;
- color: #444444;
- border: 1px solid #aaaaaa;
- text-align: center;
- background: url('../../../images/emma/default/background/table_caption_bg.gif?build31910') center repeat-x;
-}
-
-.aw-picus-table-unurged td.item {
- margin: 0px;
- padding: 1px 1px 1px 2px;
- height: 24px;
- vertical-align: middle;
- color: #444444;
- border: 1px solid #aaaaaa;
- text-align: left;
-}
diff --git a/AgileWorks/WebContent/css/picus/iceBerg/picus.css b/AgileWorks/WebContent/css/picus/iceBerg/picus.css
deleted file mode 100644
index 9bf56f3c3da9871bdc6ccca2439e0e7066ffcaa5..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/picus/iceBerg/picus.css
+++ /dev/null
@@ -1,331 +0,0 @@
-/*
- * picus.css?build31910
- *
- * アプリケーション「Picus」で使用されるCSSセレクタを定義します
- */
-
-/*
- * ヘッダ
- */
-.aw-picus-header {
- height: 45px;
- margin: 0px;
- padding: 0px;
- border: 0px;
- background: rgb(125,185,232); /* Old browsers */
- background: -moz-linear-gradient(left, rgba(125,185,232,1) 0%, rgba(30,87,153,1) 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(125,185,232,1)), color-stop(100%,rgba(30,87,153,1))); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(left, rgba(125,185,232,1) 0%,rgba(30,87,153,1) 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(left, rgba(125,185,232,1) 0%,rgba(30,87,153,1) 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(left, rgba(125,185,232,1) 0%,rgba(30,87,153,1) 100%); /* IE10+ */
- background: linear-gradient(to right, rgba(125,185,232,1) 0%,rgba(30,87,153,1) 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7db9e8', endColorstr='#1e5799',GradientType=1 ); /* IE6-9 */
-}
-
-/*
- * ヘッダ左部
- */
-.aw-picus-header-left {
- float: left;
- width: 250px;
- margin: 0px;
- padding: 0px;
- height: 45px;
- overflow: hidden;
-}
-
-/*
- * ヘッダ左部のロゴ画像
- */
-.aw-picus-header-left img {
- padding: 0px;
- height: 45px;
- border: none;
-}
-
-/*
- * ヘッダ右部
- */
-.aw-picus-header-right {
- float: right;
- margin: 0px;
- padding: 0px 0px 0px 25px;
- background: url(../../../images/picus/default/header/link_bg_clear.gif?build31910) left top no-repeat;
- color:#666666;
- font-size:12px;
-}
-
-/*
- * ヘッダ右部のアカウント情報
- */
-.aw-picus-header-right-account {
- float:left;
- padding:0px 10px 2px 0px;
- display: inline;
- background-color: #333333;
- color:#ffffff;
-}
-
-/*
- * ヘッダ右部のリンク
- */
-.aw-picus-header-right-link {
- background-color: #333333;
- height: 22px;
- float:left;
-}
-
-/*
- * ヘッダ右部のリンクで使用されるUL要素
- */
-.aw-picus-header-right-link ul {
- margin: 0px;
- padding:2px;
- list-style: none;
-
-}
-
-/*
- * ヘッダ右部のリンクで使用されるLI要素
- */
-.aw-picus-header-right-link li {
- margin: 0px;
- padding-right:5px;
- display: inline;
-}
-
-/*
- * 「リンク」メニュー用のセレクタ
- */
-.aw-picus-header-right-link-hlinks-li-submenu a,
-.aw-picus-header-right-link-hlinks-li-submenu a:link,
-.aw-picus-header-right-link-hlinks-li-submenu a:active,
-.aw-picus-header-right-link-hlinks-li-submenu a:visited {
- color:#ffffff;
- background: URL(../../../images/common/icon/submenu.gif?build31910) 24px center no-repeat;
-}
-
-/*
- * ヘッダ右部のリンクで使用されるA要素
- */
-.aw-picus-header-right-link a { color: #ffffff; text-decoration:underline; }
-.aw-picus-header-right-link a:link { color: #ffffff; text-decoration:underline; }
-.aw-picus-header-right-link a:active { color: #ffffff; text-decoration:underline; }
-.aw-picus-header-right-link a:visited { color: #ffffff; text-decoration:underline; }
-.aw-picus-header-right-link a:hover { color: #ffffff; text-decoration:underline; }
-
-/*
- * LinkMenuに適用されるクラスセレクタ
- */
-.aw-picus-linkmenu {
- position: absolute;
- background-color: #ffffff;
- z-index: 1;
- overflow:auto;
- border-width: 1px;
- border-color: #aaaaaa;
- border-style: solid;
-}
-
-.aw-picus-linkmenu span { color: #000000; text-decoration:none; }
-
-.aw-picus-linkmenu .link {
- padding: 3px 20px 3px 3px;
- cursor: pointer;
-}
-
-.aw-picus-linkmenu .link_over {
- padding: 3px 20px 3px 3px;
- cursor: pointer;
- background-color: #5e81bc;
-}
-
-.aw-picus-linkmenu .link_over span { color: #ffffff; text-decoration:none; }
-
-/*
- * ヘッダメニュー
- */
-.aw-picus-header-menu {
- margin: 0px;
- padding: 0px;
- font-size: 0px;
-}
-
-/*
- * ヘッダメニューで使用されるUL要素
- */
-.aw-picus-header-menu ul {
- list-style: none;
- margin: 0px;
- padding: 0px;
-}
-
-/*
- * ヘッダメニューで使用されるLI要素
- */
-.aw-picus-header-menu li {
- float: left;
- font-size:12pt;
- height:45px;
- line-height:45px;
- vertical-align:middle;
- padding:0px 14px 0px 15px;
- margin:0px 1px 0px 0px;
- cursor:pointer;
-}
-
-.aw-picus-header-menu .current {
- background-image:url(../../../images/picus/default/header/global_nav_current.gif?build31910);
- background-repeat:repeat-x;
-}
-
-.aw-picus-header-menu img {
- width:30px;
- height:30px;
- vertical-align:middle;
- margin:10px 0px 10px 0px;
-}
-
-.aw-picus-header-menu span {
- color:#DFDFDF;
- font-weight:bold;
- font-size:12px;
- margin-left:5px;
- text-decoration:none;
-}
-
-.aw-picus-header-menu .current span {
- color:#FFF;
- font-weight:bold;
-}
-
-
-/*
- * ヘッダとコンテンツを区切るバー
- */
-.aw-picus-headerbar {
- clear: both;
- height: 6px;
- margin: 0px;
- padding: 0px;
- background: url(../../../images/picus/default/header/bar_bg2.gif?build31910) left repeat-x #fff;
- font-size:0px;
-}
-
-/*
- * ワークベンチレイヤー
- */
-.aw-picus-workbench {
- position:absolute;
- width:250px;
-}
-
-/*
- * タブレイヤー
- */
-.aw-picus-tabs {
- height:30px;
- padding:1px 0px 0px 10px;
- background-color:#333333;
-}
-
-.aw-picus-menu {
- height: 38px;
- margin: 0px;
- padding-left:10px;
-}
-
-.aw-picus-func {
- height:30px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#808080;
- background-image:url('../../../images/picus/default/background/tabs_bg.gif?build31910');
-}
-
-.aw-picus-func2 {
- height:30px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#808080;
- background-image:url('../../../images/picus/default/background/func_bg2.gif?build31910');
-}
-
-.aw-picus-menubar-layer {
- height:30px;
- display:inline;
- float:left;
-}
-
-.aw-picus-menubar {
-
-}
-
-.aw-picus-contents {
- padding:5px;
- background-color:#333333;
-}
-
-.aw-picus-grid {
- padding:10px;
- background-color:#333333;
-}
-
-.aw-picus-page {
- position:relative;
- top:0px;
- left:250px;
- width:10px;
- height:10px;
- overflow:hidden;
-}
-
-/*
- * ドラッグオブジェクト
- */
-.aw-dragger {
- position: absolute;
- cursor: col-resize;
- border-style: solid;
- filter:alpha(opacity=00);
- -moz-opacity:0;
- opacity:0;
- z-index: 1;
-}
-
-/*
- * ドラッグオブジェクト(ドラッグ中)
- */
-.aw-dragger-dragging {
- position: absolute;
- cursor: col-resize;
- border-style: solid;
- border-color: #0067ce;
- z-index: 1;
-}
-
-/*
- * Table 風表示: キャプション部
- */
-.aw-picus-form .caption {
- margin: 0px;
- padding: 6px 2px;
- vertical-align: middle;
- color: #444444;
- border-top: 1px solid #aaaaaa;
- border-bottom: 1px solid #aaaaaa;
- text-align: left;
- font-weight: bold;
- background: url('../../../images/emma/default/background/table_header_bg.gif?build31910') bottom repeat-x #ebebeb;
-}
-
-/*
- * Table 風表示: 値部
- */
-.aw-picus-form .content {
- margin: 0px;
- padding: 1px 2px;
- vertical-align: middle;
- color: #444444;
- text-align: left;
-}
diff --git a/AgileWorks/WebContent/css/picus/iceBerg/snapper.css b/AgileWorks/WebContent/css/picus/iceBerg/snapper.css
deleted file mode 100644
index 896a59953bb0e8595ee01eb9ef83affdbef62644..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/picus/iceBerg/snapper.css
+++ /dev/null
@@ -1,678 +0,0 @@
-/*
- * document-viewer.css?build31910
- *
- * DocumentViewer で使用するCSSセレクタを定義します
- */
-
-/*
- * ActionButton 領域に適用するクラスセレクタ
- */
-.aw-snapper-actionbuttons-layer {
- height:30px;
- border-style:solid;
- border-width:1px 0px 1px 0px;
- border-color:#808080;
- background-image:url( '../../../images/picus/default/background/tabs_bg.gif?build31910' );
-}
-
-/*
- * ActionButton で使用される MenuBar コントロールに適用されるクラスセレクタ
- */
-.aw-snapper-actionbuttons {
- margin-left:5px;
- height:30px;
- display:inline;
- float:left;
-}
-
-/*
- * ステータス表示領域に適用されるクラスセレクタ
- */
-.aw-snapper-status-layer {
- height: 38px;
- margin: 0px;
- padding: 0px 3px;
- text-align: left;
- background: url( '../../../images/picus/default/background/dv_status_bg.gif?build31910' ) top repeat-x #fff;
- color:#ffffff;
- overflow:hidden;
-}
-
-/*
- * タブ領域に適用されるクラスセレクタ
- */
-.aw-snapper-tabs-layer {
- height:30px;
- background-color:#333333;
- background:url('../../../images/picus/default/background/dv_tabs_bg.gif?build31910') 0px 8px repeat-x #fff;
- border-bottom: 1px solid #999;
-}
-
-.aw-snapper-tabs {
- position:absolute;
- left:100px;
- font-size:12px;
-}
-
-.aw-snapper-iframe {
- position:absolute;
- left:93px;
-}
-
-/*
- * サイドバー - スライダー
- */
-.aw-snapper-sidebar-slider {
- text-align:center;
- position:absolute;
- top:69px;
- left:80px;
- width:13px;
- background-color:#000000;
- background-repeat:no-repeat;
- background-position:center bottom;
- background-image:url('../../../images/picus/default/background/dv_toolbar_bg.gif?build31910');
- color:#ffffff;
- border-style:solid;
- border-width:0px 1px 0px 1px;
- border-color:#666666;
- cursor:pointer;
-}
-
-/*
- * サイドバー - メニュー
- */
-.aw-snapper-sidebar-scrollablemenu {
- position:absolute;
- top:69px;
- left:0px;
- width:80px;
- background-color:#676767;
-}
-
-.aw-snapper-sidebar-scrollablemenu .scrolltop {
- background-color:#676767;
- height:15px;
- text-align:center;
- color:#ffffff;
- width:80px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#dddddd;
-}
-
-.aw-snapper-sidebar-scrollablemenu .scrollbottom {
- background-color:#676767;
- height:15px;
- text-align:center;
- color:#ffffff;
- width:80px;
- border-style:solid;
- border-width:1px 0px 0px 0px;
- border-color:#dddddd;
-}
-
-.aw-snapper-sidebar-scrollablemenu .menu {
- width:80px;
- overflow:hidden;
-}
-
-.aw-snapper-sidebar-scrollablemenu .menu .table {
- color:#ffffff;
-}
-
-.aw-snapper-sidebar-scrollablemenu .menu .tr {
- cursor:pointer;
-}
-
-.aw-snapper-sidebar-scrollablemenu .menu .tdover {
- background-color:#5e81bc;
-}
-
-.aw-snapper-sidebar-scrollablemenu .menu .count {
- color:#FF809F;
-}
-
-.aw-snapper-sidebar-badge {
- position:absolute;
- top:0px;
- left:45px;
- padding:0px 5px 0px 5px;
- font-size:12px;
- font-weight:bold;
- border-radius:20px;
- -moz-border-radius:20px;
- -webkit-border-radius:20px;
- border-style:solid;
- border-width:2px;
- border-color:#ffffff;
- background-color:#cc0000;
- background:-webkit-gradient(linear, center top, center bottom, from(#ffb3b3), to(#cc0000));
- background:-moz-linear-gradient(top, #ffb3b3, #cc0000);
- background:-ms-linear-gradient(top, #ffb3b3, #cc0000); /* IE10 */
- background: linear-gradient(top, #ffb3b3, #cc0000);
-}
-
-.aw-snapper-sidebar-badge-noborderradius {
- position:absolute;
- top:0px;
- left:45px;
- padding:0px 4px 0px 4px;
- font-size:12px;
- font-weight:bold;
- border-style:solid;
- border-width:2px;
- border-color:#ffffff;
- background-color:#cc0000;
- filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#ffb3b3', endColorstr='#cc0000');
-}
-
-.aw-snapper-sidebar-badge-ie6 {
- position:absolute;
- top:0px;
- left:21px;
- padding:0px 4px 0px 4px;
- font-size:12px;
- font-weight:bold;
- border-style:solid;
- border-width:2px;
- border-color:#ffffff;
- background-color:#cc0000;
- filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#ffb3b3', endColorstr='#cc0000');
-}
-
-/*
- * プロパティ・ウィンドウレイヤーに適用されるCSSクラスセレクタ
- */
-.aw-snapper-property-layer-frame {
- position:absolute;
- border-style:solid;
- border-width:1px;
- border-color:#666666;
- box-shadow: 2px 2px 5px #666666;
- -moz-box-shadow: 2px 2px 5px #666666;
- -webkit-box-shadow: 2px 2px 5px #666666;
-}
-
-.aw-snapper-property-layer-titlebar {
- height:30px;
- color:#262e37;
- font-weight:bold;
- overflow:hidden;
- background-image: url( '../../../images/picus/default/background/layer_titlebar_bg.gif?build31910' );
- background-repeat:repeat-x;
- font-size:120%;
-}
-
-.aw-snapper-property-layer-titlebar-table {
- height:30px;
- padding-left:4px;
-}
-
-.aw-snapper-property-layer-titlebar-td-close {
- width:20px;
- text-align:center;
- padding:0px 4px 0px 0px;
- cursor:pointer;
-}
-
-.aw-snapper-property-layer-body {
- position:absolute;
- padding:5px;
- background-color:#eeeeee;
-}
-
-.aw-snapper-property-layer-underiframe {
- position:absolute;
- top:0px;
- left:0px;
- width:100%;
- height:100%;
- border:none;
- filter:alpha(opacity=0);
- -moz-opacity:0;
- opacity:0;
-}
-
-.aw-snapper-property-layer-underdiv {
- position:absolute;
- top:0px;
- left:0px;
- width:100%;
- height:100%;
- background-color:#dddddd;
- filter:alpha(opacity=40);
- opacity:0.4;
- -moz-opacity:0.4;
-}
-
-.aw-snapper-property-layer-subtitle {
- height:25px;
- padding-left:5px;
- background-color:#cccccc;
- line-height:25px;
- margin-top:10px;
- margin-bottom:10px;
- overflow:hidden;
-}
-
-/*
- * プロパティ・ウィンドウ画面で使用されるCSSセレクタ
- */
-.aw-snapper-comment-icons a,
-.aw-snapper-comment-icons a:link,
-.aw-snapper-comment-icons a:active,
-.aw-snapper-comment-icons a:visited,
-.aw-snapper-comment-icons a:hover {
- color: #000000;
-}
-
-.aw-snapper-comment-icons-even a,
-.aw-snapper-comment-icons-even a:link,
-.aw-snapper-comment-icons-even a:active,
-.aw-snapper-comment-icons-even a:visited,
-.aw-snapper-comment-icons-even a:hover {
- color: #000000;
-}
-
-.aw-snapper-attachment-icons a,
-.aw-snapper-attachment-icons a:link,
-.aw-snapper-attachment-icons a:active,
-.aw-snapper-attachment-icons a:visited,
-.aw-snapper-attachment-icons a:hover {
- color: #000000;
-}
-
-.aw-snapper-attachment-icons-even a,
-.aw-snapper-attachment-icons-even a:link,
-.aw-snapper-attachment-icons-even a:active,
-.aw-snapper-attachment-icons-even a:visited,
-.aw-snapper-attachment-icons-even a:hover {
- color: #000000;
-}
-
-.aw-snapper-comment-table-header {
-
-}
-
-.aw-snapper-comment-table-tr {
- background-color:#ffffff;
-}
-
-.aw-snapper-comment-table-tr-even {
- background-color:#e4e4e4;
-}
-
-.aw-snapper-comment-table-th {
- height:25px;
- color:#000000;
- font-weight:bold;
- border-style:solid;
- border-width:1px 0px 1px 0px;
- border-bottom-color:#aaaaaa;
- border-top-color:#cccccc;
- white-space:pre;
- word-break:keep-all;
- overflow:hidden;
- text-align:center;
- background-image: url( '../../../images/emma/default/background/grid_header.gif?build31910' );
- padding:0px 4px 0px 4px;
-}
-
-.aw-snapper-comment-table-td {
- padding:6px;
-}
-
-.aw-snapper-comment-table-td-even {
- padding:6px;
-}
-
-.aw-snapper-nested-table {
- border-style:dotted;
- border-width:0px 0px 1px 0px;
- border-color:#aaaaaa;
- margin-bottom:2px;
-}
-
-.aw-snapper-node {
- padding:0px 0px 0px 0px;
-}
-
-.aw-snapper-node-even {
- padding:0px 0px 0px 0px;
-}
-
-.aw-snapper-node-current {
- border-style:solid;
- border-width:2px;
- border-color:#ff0000;
-}
-
-/*
- * 関連書類タブで使用されるCSSセレクタ
- */
-
-.snapper-reference-table {
- width: 660px;
-}
-
-.snapper-reference-table .referencee-header {
- height: 20px;
- padding: 0px 0px 0px 10px;
-}
-
-.snapper-reference-table .own {
- border-style: solid;
- border-width: 2px;
- border-color: #aaaaaa;
- background-color: #ffffcc;
- padding: 4px;
-}
-
-.snapper-reference-table .exist {
- border-style: solid;
- border-width: 2px;
- border-color: #aaaaaa;
- background-color: #ffffff;
- padding: 4px;
-}
-
-.snapper-reference-table .notexist {
- border-style: solid;
- border-width: 2px;
- border-color: #aaaaaa;
- background-color: #dddddd;
- padding: 4px;
-}
-
-.snapper-reference-table .listname {
- font-size: 120%;
- font-weight: bold;
-}
-
-/*
- * RuleTableコントロールで使用されるCSSセレクタ
- */
-
-.snapper-ruletable-headertable {
- width:672px;
- border-style:solid;
- border-width:1px 0px 0px 1px;
- border-color:#aaaaaa;
- table-layout:fixed;
- margin:0px 0px 0px 1px;
-}
-
-.snapper-ruletable-headertable th {
- height:25px;
- color:#000000;
- font-weight:bold;
- border-style:solid;
- border-width:0px 1px 1px 0px;
- border-color:#aaaaaa;
- white-space:pre;
- word-break:keep-all;
- overflow:hidden;
- text-align:center;
- background-image: url( '../../../images/emma/default/background/grid_header.gif?build31910' );
- padding:0px 2px 0px 2px;
-}
-
-
-.snapper-ruletable-contentstable {
- width:672px;
- border-style:solid;
- border-width:0px 0px 0px 1px;
- border-color:#aaaaaa;
- table-layout:fixed;
- margin:0px 0px 0px 1px;
-}
-
-.snapper-ruletable table.current {
- width:673px;
- border-width:2px;
- border-style:solid;
- border-color:#ff0000;
- margin:0px;
-}
-
-.snapper-ruletable table.current.continuum {
- width:673px;
- border-width:0px 2px 2px 2px;
- border-style:solid;
- border-color:#ff0000;
- margin:0px;
-}
-
-.snapper-ruletable-contentstable tr.odd {
- background-color:#ffffff;
-}
-
-.snapper-ruletable-contentstable tr.even {
- background-color:#f5f5f5;
-}
-
-.snapper-ruletable-contentstable td {
- border-style:solid;
- border-width:0px 1px 1px 0px;
- border-color:#aaaaaa;
- padding:2px;
- word-break: break-all;
-}
-
-.snapper-ruletable-contentstable .no {
- text-align:center;
-}
-
-.snapper-ruletable-contentstable .node {
- font-weight:bold;
- font-size:110%;
-}
-
-.snapper-ruletable-rulecandidatestable td.mid {
- border-style:dotted;
- border-width:0px 0px 1px 0px;
- border-color:#aaaaaa;
- margin-bottom:2px;
-}
-
-.snapper-ruletable-rulecandidatestable td.link {
- color:#1851E7;
- cursor:pointer;
-}
-
-.snapper-ruletable-rulecandidatestable td {
- border:none;
- background:none;
-}
-
-.snapper-ruletable-rulecandidatestable td.execdate {
- color:#666666;
-}
-
-.snapper-ruletable-rulecandidatestable td.proxyimage {
- color:#ff0000;
-}
-
-.snapper-ruletable-rulecandidatestable td.proxyobjectname {
- color:#ff0000;
-}
-
-.snapper-ruletable-candidatelink {
- margin:0px 0px 2px 0px;
- background-color:#ffffd5;
- padding:4px 4px 4px 22px;
- background-image:url('../../..//images/common/icon/action/edit.gif?build31910');
- background-repeat:no-repeat;
-}
-
-.snapper-ruletable-nodemessage {
- margin:0px 0px 2px 0px;
- background-color:#dddddd;
- padding:4px 4px 4px 4px;
- font-weight:bold;
- border-style:solid;
- border-width:1px;
- border-color:#aaaaaa;
- font-size:12px;
-}
-
-.snapper-ruletable-information {
- margin:2px 0px 5px 0px;
- background-color:#ffffd5;
- padding:4px 4px 4px 24px;
- background-image:url('../../..//images/common/icon/etc/info20.gif?build31910');
- background-repeat:no-repeat;
-}
-
-/*
- * PassbackTableコントロールで使用されるCSSセレクタ
- */
-
-.snapper-passbacktable-headertable {
- width:560px;
- border-style:solid;
- border-width:1px 0px 0px 1px;
- border-color:#aaaaaa;
- table-layout:fixed;
- margin:0px 1px 0px 1px;
-}
-
-.snapper-passbacktable-headertable th {
- height:25px;
- color:#000000;
- font-weight:bold;
- border-style:solid;
- border-width:0px 1px 1px 0px;
- border-color:#aaaaaa;
- white-space:pre;
- word-break:keep-all;
- overflow:hidden;
- text-align:center;
- background-image: url( '../../../images/emma/default/background/grid_header.gif?build31910' );
- padding:0px 4px 0px 4px;
-}
-
-
-.snapper-passbacktable-contentstable {
- width:560px;
- border-style:solid;
- border-width:0px 0px 0px 1px;
- border-color:#aaaaaa;
- table-layout:fixed;
- margin:0px 1px 0px 1px;
-}
-
-.snapper-passbacktable table.current {
- border-width:2px;
- border-style:solid;
- border-color:#ff0000;
- margin:0px;
- width:562px;
- color:#aaaaaa;
-}
-
-.snapper-passbacktable table.current.continuum {
- border-width:0px 2px 2px 2px;
- border-style:solid;
- border-color:#ff0000;
- margin:0px;
- width:562px;
- color:#aaaaaa;
-}
-
-.snapper-passbacktable-contentstable.disabled {
- color:#aaaaaa;
-}
-
-.snapper-passbacktable-contentstable.over {
- width:560px;
- cursor:pointer;
-}
-
-.snapper-passbacktable-contentstable tr {
- background-color:#ffffff;
-}
-
-.snapper-passbacktable-contentstable tr.even {
- background-color:#f5f5f5;
-}
-
-.snapper-passbacktable-contentstable.selected tr {
- background-color:#0067ce !important;
- color:#ffffff;
-}
-
-.snapper-passbacktable-contentstable.over tr {
- background-color:#dddddd;
-}
-
-.snapper-passbacktable-contentstable.over tr.even {
- background-color:#dddddd;
-}
-
-.snapper-passbacktable-contentstable td {
- border-style:solid;
- border-width:0px 1px 1px 0px;
- border-color:#aaaaaa;
- padding:2px 4px 2px 4px;
-}
-
-.snapper-passbacktable-contentstable .no {
- text-align:center;
-}
-
-.snapper-passbacktable-contentstable .node {
- font-weight:bold;
- font-size:110%;
-}
-
-/*
- * TransferButtonコントロールで使用されるCSSセレクタ
- */
-
-.snapper-transferbutton {
- position: absolute;
- top: 0px;
- left: 4px;
-}
-
-.snapper-transferbutton button {
- width:23px;
- height:32px;
- text-align:center;
-}
-
-.snapper-transferbutton .nonebutton img {
- vertical-align:middle;
-}
-
-.snapper-closebutton {
- position: absolute;
- top: 0px;
- text-align: right;
-}
-
-.snapper-closebutton button {
- width:23px;
- height:32px;
- text-align:center;
-}
-
-.snapper-closebutton .nonebutton img {
- vertical-align:middle;
-}
-
-/*
- * ApproveHistoryTableコントロールで使用されるCSSセレクタ
- */
-.snapper-approvehistorytable-th {
- height:auto;
- padding:4px;
- background-color:#BCBCBC;
- background-image:url('../../../images/picus/default/background/grid_header.gif?build31910');
- background-repeat:repeat-x;
- white-space:normal;
- word-break:normal;
- overflow:visible;
-}
diff --git a/AgileWorks/WebContent/css/picus/iceBerg/tabs.css b/AgileWorks/WebContent/css/picus/iceBerg/tabs.css
deleted file mode 100644
index 2fba44c67bc5da7aa5c77b404f4d174614be41f1..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/picus/iceBerg/tabs.css
+++ /dev/null
@@ -1,109 +0,0 @@
-
-.tabs-layer {
- overflow:hidden;
- height:30px;
- font-size:12px;
-}
-
-.tabs-maintable {
-}
-
-.tabs-table {
- height:29px;
- margin-top:1px;
-}
-
-.tabs-item {
- height:28px;
- border-style:solid;
- border-width:1px 1px 0px 1px;
- border-color:#aaaaaa;
- background-color:#cccccc;
- color:#000000;
- padding:0px 10px 0px 10px;
- white-space:nowrap;
- background-image: url( '../../../images/picus/default/background/tab_bg.gif?build31910' );
-}
-
-.tabs-item a {
- color:#000000;
-}
-
-.tabs-item a:link {
- color:#000000;
-}
-
-.tabs-item a:active {
- color:#000000;
-}
-
-.tabs-item a:visited {
- color:#000000;
-}
-
-.tabs-item-mouseover {
- height:28px;
- background-color:#eeeeee;
- border-style:solid;
- border-width:1px 1px 0px 1px;
- border-color:#aaaaaa;
- color:#ffffff;
- padding:0px 10px 0px 10px;
- white-space:nowrap;
- background-image: url( '../../../images/picus/default/background/tab_bg_over.gif?build31910' );
-}
-
-.tabs-item-mouseover a {
- color:#ffffff;
-}
-
-.tabs-item-mouseover a:link {
- color:#ffffff;
-}
-
-.tabs-item-mouseover a:active {
- color:#ffffff;
-}
-
-.tabs-item-mouseover a:visited {
- color:#ffffff;
-}
-
-.tabs-blank {
- padding:0px 5px 0px 5px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#aaaaaa;
-}
-
-.tabs-last {
- width: 100%;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#aaaaaa;
-}
-
-.tabs-leftarrow {
- width:30px;
- background-image:url( '../../../images/picus/default/background/tabs-leftarrow.gif?build31910' );
- background-repeat:no-repeat;
- background-position:0px 2px;
- cursor:pointer;
-}
-
-.tabs-rightarrow {
- width:30px;
- background-image:url( '../../../images/picus/default/background/tabs-rightarrow.gif?build31910' );
- background-repeat:no-repeat;
- background-position:2px 2px;
- cursor:pointer;
-}
-
-.tabs-page {
- background-color:#eeeeee;
- border-style:solid;
- border-width:0px 1px 1px 1px;
- border-color:#aaaaaa;
- padding:4px;
- overflow:auto;
-}
diff --git a/AgileWorks/WebContent/css/picus/iceBerg/theme.css b/AgileWorks/WebContent/css/picus/iceBerg/theme.css
deleted file mode 100644
index a4bccc1a37f298cbd19ac1d1b3b03bb8c3b1a1c9..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/picus/iceBerg/theme.css
+++ /dev/null
@@ -1,15 +0,0 @@
-.aw-menubar {
- height:30px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#808080;
- background-image:url('../../../images/picus/default/background/tabs_bg.gif?build31910');
-}
-
-.aw-menubar2 {
- height:30px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#808080;
- background-image:url('../../../images/picus/default/background/func_bg2.gif?build31910');
-}
diff --git a/AgileWorks/WebContent/css/picus/iceBerg/tree-ext.css b/AgileWorks/WebContent/css/picus/iceBerg/tree-ext.css
deleted file mode 100644
index 4e424505c28fa3a943c6d34db24ffc57ac8459c1..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/picus/iceBerg/tree-ext.css
+++ /dev/null
@@ -1,7 +0,0 @@
-.ygtvtd_current {
- background-color:#0067ce;
- border-style:solid;
- border-width:1px;
- border-color:#000000;
- padding:0px 0px 0px 0px;
-}
diff --git a/AgileWorks/WebContent/css/picus/iceBerg/workbench.css b/AgileWorks/WebContent/css/picus/iceBerg/workbench.css
deleted file mode 100644
index a6a8d3f62e29a5c5e23dc30e523d46b52f9614d6..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/picus/iceBerg/workbench.css
+++ /dev/null
@@ -1,418 +0,0 @@
-
-.workbench-layer {
- border-style:outset;
- border-width:0px 1px 0px 0px;
- border-color:#333333;
- white-space:nowrap;
-}
-
-/* ワークベンチメニュー:オリジナル */
-.workbench-item {
- width:190px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#666666;
- overflow:hidden;
- background-image: url( '../../../images/picus/default/background/workbench_item_work.gif?build31910' );
- background-repeat: no-repeat;
- font-weight: bold;
- line-height:30px;
- color:#000000;
- cursor:pointer;
- padding-left: 60px;
-}
-
-.workbench-item-current {
- width:190px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#666666;
- overflow:hidden;
- background-image: url( '../../../images/picus/default/background/workbench_item_work_over.gif?build31910' );
- background-repeat: no-repeat;
- font-weight: bold;
- line-height:30px;
- color:#ffffff;
- cursor:pointer;
- padding-left: 60px;
-}
-
-.workbench-item-mouseover {
- width:190px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#666666;
- overflow:hidden;
- background-image: url( '../../../images/picus/default/background/workbench_item_work_over.gif?build31910' );
- background-repeat: no-repeat;
- font-weight: bold;
- line-height:30px;
- color:#ffffff;
- cursor:pointer;
- padding-left: 60px;
-}
-
-/* ワークベンチメニュー:処理待ち */
-.workbench-item-todo {
- width:190px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#666666;
- overflow:hidden;
- background-image: url( '../../../images/picus/default/background/workbench_item_todo.gif?build31910' );
- background-repeat: no-repeat;
- font-weight: bold;
- line-height:30px;
- color:#000000;
- cursor:pointer;
- padding-left: 60px;
- font-size:120%;
-}
-
-.workbench-item-todo-current {
- width:190px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#666666;
- overflow:hidden;
- background-image: url( '../../../images/picus/default/background/workbench_item_todo_over.gif?build31910' );
- background-repeat: no-repeat;
- font-weight: bold;
- line-height:30px;
- color:#ffffff;
- cursor:pointer;
- padding-left: 60px;
- font-size:120%;
-}
-
-.workbench-item-todo-mouseover {
- width:190px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#666666;
- overflow:hidden;
- background-image: url( '../../../images/picus/default/background/workbench_item_todo_over.gif?build31910' );
- background-repeat: no-repeat;
- font-weight: bold;
- line-height:30px;
- color:#ffffff;
- cursor:pointer;
- padding-left: 60px;
- font-size:120%;
-}
-
-/* ワークベンチメニュー:処理済 */
-.workbench-item-progress {
- width:190px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#666666;
- overflow:hidden;
- background-image: url( '../../../images/picus/default/background/workbench_item_progress.gif?build31910' );
- background-repeat: no-repeat;
- font-weight: bold;
- line-height:30px;
- color:#000000;
- cursor:pointer;
- padding-left: 60px;
- font-size:120%;
-}
-
-.workbench-item-progress-current {
- width:190px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#666666;
- overflow:hidden;
- background-image: url( '../../../images/picus/default/background/workbench_item_progress_over.gif?build31910' );
- background-repeat: no-repeat;
- font-weight: bold;
- line-height:30px;
- color:#ffffff;
- cursor:pointer;
- padding-left: 60px;
- font-size:120%;
-}
-
-.workbench-item-progress-mouseover {
- width:190px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#666666;
- overflow:hidden;
- background-image: url( '../../../images/picus/default/background/workbench_item_progress_over.gif?build31910' );
- background-repeat: no-repeat;
- font-weight: bold;
- line-height:30px;
- color:#ffffff;
- cursor:pointer;
- padding-left: 60px;
- font-size:120%;
-}
-
-/* ワークベンチメニュー:代理承認 */
-.workbench-item-proxyapprove {
- width:190px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#666666;
- overflow:hidden;
- background-image: url( '../../../images/picus/default/background/workbench_item_proxyapprove.gif?build31910' );
- background-repeat: no-repeat;
- font-weight: bold;
- line-height:30px;
- color:#000000;
- cursor:pointer;
- padding-left: 60px;
- font-size:120%;
-}
-
-.workbench-item-proxyapprove-current {
- width:190px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#666666;
- overflow:hidden;
- background-image: url( '../../../images/picus/default/background/workbench_item_proxyapprove_over.gif?build31910' );
- background-repeat: no-repeat;
- font-weight: bold;
- line-height:30px;
- color:#ffffff;
- cursor:pointer;
- padding-left: 60px;
- font-size:120%;
-}
-
-.workbench-item-proxyapprove-mouseover {
- width:190px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#666666;
- overflow:hidden;
- background-image: url( '../../../images/picus/default/background/workbench_item_proxyapprove_over.gif?build31910' );
- background-repeat: no-repeat;
- font-weight: bold;
- line-height:30px;
- color:#ffffff;
- cursor:pointer;
- padding-left: 60px;
- font-size:120%;
-}
-
-/* ワークベンチメニュー:新規申請 */
-.workbench-item-apply {
- width:190px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#666666;
- overflow:hidden;
- background-image: url( '../../../images/picus/default/background/workbench_item_apply.gif?build31910' );
- background-repeat: no-repeat;
- font-weight: bold;
- line-height:30px;
- color:#000000;
- cursor:pointer;
- padding-left: 60px;
- font-size:120%;
-}
-
-.workbench-item-apply-current {
- width:190px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#666666;
- overflow:hidden;
- background-image: url( '../../../images/picus/default/background/workbench_item_apply_over.gif?build31910' );
- background-repeat: no-repeat;
- font-weight: bold;
- line-height:30px;
- color:#ffffff;
- cursor:pointer;
- padding-left: 60px;
- font-size:120%;
-}
-
-.workbench-item-apply-mouseover {
- width:190px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#666666;
- overflow:hidden;
- background-image: url( '../../../images/picus/default/background/workbench_item_apply_over.gif?build31910' );
- background-repeat: no-repeat;
- font-weight: bold;
- line-height:30px;
- color:#ffffff;
- cursor:pointer;
- padding-left: 60px;
- font-size:120%;
-}
-
-/* ワークベンチメニュー:代理申請 */
-.workbench-item-proxyapply {
- width:190px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#666666;
- overflow:hidden;
- background-image: url( '../../../images/picus/default/background/workbench_item_proxyapply.gif?build31910' );
- background-repeat: no-repeat;
- font-weight: bold;
- line-height:30px;
- color:#000000;
- cursor:pointer;
- padding-left: 60px;
- font-size:120%;
-}
-
-.workbench-item-proxyapply-current {
- width:190px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#666666;
- overflow:hidden;
- background-image: url( '../../../images/picus/default/background/workbench_item_proxyapply_over.gif?build31910' );
- background-repeat: no-repeat;
- font-weight: bold;
- line-height:30px;
- color:#ffffff;
- cursor:pointer;
- padding-left: 60px;
- font-size:120%;
-}
-
-.workbench-item-proxyapply-mouseover {
- width:190px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#666666;
- overflow:hidden;
- background-image: url( '../../../images/picus/default/background/workbench_item_proxyapply_over.gif?build31910' );
- background-repeat: no-repeat;
- font-weight: bold;
- line-height:30px;
- color:#ffffff;
- cursor:pointer;
- padding-left: 60px;
- font-size:120%;
-}
-
-/*
- * ワークベンチメニュー「書類検索」
- */
-.workbench-item-search {
- width:190px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#666666;
- overflow:hidden;
- background-image: url( '../../../images/picus/default/background/workbench_item_search.gif?build31910' );
- background-repeat: no-repeat;
- font-weight: bold;
- line-height:30px;
- color:#000000;
- cursor:pointer;
- padding-left: 60px;
- font-size:120%;
-}
-
-.workbench-item-search-current {
- width:190px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#666666;
- overflow:hidden;
- background-image: url( '../../../images/picus/default/background/workbench_item_search_over.gif?build31910' );
- background-repeat: no-repeat;
- font-weight: bold;
- line-height:30px;
- color:#ffffff;
- cursor:pointer;
- padding-left: 60px;
- font-size:120%;
-}
-
-.workbench-item-search-mouseover {
- width:190px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#666666;
- overflow:hidden;
- background-image: url( '../../../images/picus/default/background/workbench_item_search_over.gif?build31910' );
- background-repeat: no-repeat;
- font-weight: bold;
- line-height:30px;
- color:#ffffff;
- cursor:pointer;
- padding-left: 60px;
- font-size:120%;
-}
-
-/*
- * ワークベンチメニュー「個人設定」
- */
-.workbench-item-personalize {
- width:190px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#666666;
- overflow:hidden;
- background-image: url( '../../../images/picus/default/background/workbench_item_personalize.gif?build31910' );
- background-repeat: no-repeat;
- font-weight: bold;
- line-height:30px;
- color:#000000;
- cursor:pointer;
- padding-left: 60px;
- font-size:120%;
-}
-
-.workbench-item-personalize-current {
- width:190px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#666666;
- overflow:hidden;
- background-image: url( '../../../images/picus/default/background/workbench_item_personalize_over.gif?build31910' );
- background-repeat: no-repeat;
- font-weight: bold;
- line-height:30px;
- color:#ffffff;
- cursor:pointer;
- padding-left: 60px;
- font-size:120%;
-}
-
-.workbench-item-personalize-mouseover {
- width:190px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#666666;
- overflow:hidden;
- background-image: url( '../../../images/picus/default/background/workbench_item_personalize_over.gif?build31910' );
- background-repeat: no-repeat;
- font-weight: bold;
- line-height:30px;
- color:#ffffff;
- cursor:pointer;
- padding-left: 60px;
- font-size:120%;
-}
-
-.workbench-content {
- width:230px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#666666;
- overflow:auto;
- padding:10px;
-}
-
-.workbench-content-control {
- width:224px;
- background-color:#ffffff;
- border-style:solid;
- border-width:3px;
- border-color:#aaaaaa;
- overflow:auto;
-}
diff --git a/AgileWorks/WebContent/css/tm/default.css b/AgileWorks/WebContent/css/tm/default.css
deleted file mode 100644
index 85d718dd0d46cd5524e8aa592342a02d7170f9e8..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/tm/default.css
+++ /dev/null
@@ -1,5 +0,0 @@
-@import url(../common/common.css?build31910);
-
-@import url(../livehtml/livehtml.css?build31910);
-
-@import url(./default/default.css?build31910);
diff --git a/AgileWorks/WebContent/css/tm/default.css.dev b/AgileWorks/WebContent/css/tm/default.css.dev
deleted file mode 100644
index e819b392dcc86491cfcce656e9c17b44501ab857..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/tm/default.css.dev
+++ /dev/null
@@ -1,5 +0,0 @@
-@import url(../common/common.css.dev);
-
-@import url(../livehtml/livehtml.css.dev);
-
-@import url(./default/default.css.dev);
\ No newline at end of file
diff --git a/AgileWorks/WebContent/css/tm/default/base.css b/AgileWorks/WebContent/css/tm/default/base.css
deleted file mode 100644
index df63418cce4c0151ad3e518183c92bea748efe04..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/tm/default/base.css
+++ /dev/null
@@ -1,52 +0,0 @@
-html {
- height: 100%;
-}
-
-a:link {
- text-decoration:none;
- color:#1851E7;
-}
-
-a:active {
- text-decoration:none;
- color:#1851E7;
-}
-
-a:visited {
- text-decoration:none;
- color:#1851E7;
-}
-
-a:hover {
- text-decoration:underline;
- color:#e16745;
-}
-
-body {
- font-size:75%;
- background-color:#cfd5da;
- font-family:Arial, sans-serif;
- margin: 0px;
- height: 100%;
-}
-
-input {
- font-family:Arial, sans-serif;
-}
- input[type=text] {
- margin:0px;
- }
-
-button {
- font-family:Arial, sans-serif;
- margin:0px;
-}
-
-select {
- margin:0px;
-}
-
-textarea {
- font-size: 12px;
- margin:0px;
-}
diff --git a/AgileWorks/WebContent/css/tm/default/common.css b/AgileWorks/WebContent/css/tm/default/common.css
deleted file mode 100644
index b7bafa4b6d5e33dbdbbe55dbff43ad0e329db79a..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/tm/default/common.css
+++ /dev/null
@@ -1,119 +0,0 @@
-.aw-common-func {
- height:30px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#808080;
- background-image:url('../../../images/emma/default/background/func_bg.gif?build31910');
-}
-
-.aw-common-menubar-layer {
- height:30px;
- display:inline;
- float:left;
-}
-
-.aw-common-table {
- width: 100%;
- margin: 0px;
- padding: 0px;
- border-collapse: collapse;
- background: #fff;
-}
-
-.aw-common-table th {
- margin: 0px;
- padding: 1px 1px 1px 2px;
- height: 24px;
- vertical-align: middle;
- color: #444444;
- border: 1px solid #aaaaaa;
- text-align: left;
- background: url('../../../images/emma/default/background/table_header_bg.gif?build31910') bottom repeat-x #ebebeb;
-}
-
-.aw-common-table th.caption {
- margin: 0px;
- padding: 10px;
- vertical-align: middle;
- color: #444444;
- border: 1px solid #aaaaaa;
- text-align: center;
- background: url('../../../images/emma/default/background/table_caption_bg.gif?build31910') center repeat-x;
-}
-
-.aw-common-table td {
- margin: 0px;
- padding: 1px 1px 1px 2px;
- height: 24px;
- vertical-align: middle;
- color: #444444;
- border: 1px solid #aaaaaa;
- text-align: left;
-}
-
-/* テーブル(内部) */
-.aw-common-table table.inner {
- width: 98%;
- margin: 0px;
- padding: 0px;
- border-collapse: collapse;
-}
-
-.aw-common-table table.inner td {
- margin: 0px;
- padding: 5px 5px 5px 0px;
- border: none;
- text-align: left;
-}
-
-.aw-common-table table.inner td.uline {
- border-bottom: 1px dotted #aaa;
-}
-
-/* 偶数行色指定(TR) */
-.aw-common-table .even {
- background: #f5f5f5;
-}
-
-/* マーカー指定(SPAN) */
-.aw-common-table .ar01 {
- padding: 0px 0px 0px 12px;
- background: url('../../../images/emma/default/icon/arrow01.gif?build31910') left center no-repeat;
-}
-
-.aw-common-table-unurged {
- width: 100%;
- margin: 0px;
- padding: 0px;
- border-collapse: collapse;
- background: #fff;
-}
-
-.aw-common-table-unurged th.label {
- margin: 0px;
- padding: 1px 1px 1px 2px;
- vertical-align: middle;
- color: #444444;
- border: 1px solid #aaaaaa;
- text-align: left;
- background: url('../../../images/emma/default/background/table_header_bg.gif?build31910') bottom repeat-x #ebebeb;
-}
-
-.aw-common-table-unurged th.caption {
- margin: 0px;
- padding: 10px;
- vertical-align: middle;
- color: #444444;
- border: 1px solid #aaaaaa;
- text-align: center;
- background: url('../../../images/emma/default/background/table_caption_bg.gif?build31910') center repeat-x;
-}
-
-.aw-common-table-unurged td.item {
- margin: 0px;
- padding: 1px 1px 1px 2px;
- vertical-align: middle;
- color: #444444;
- border: 1px solid #aaaaaa;
- text-align: left;
-}
diff --git a/AgileWorks/WebContent/css/tm/default/contents.css b/AgileWorks/WebContent/css/tm/default/contents.css
deleted file mode 100644
index 29138f0123fc2705895485c4b5f0a0dfb79a4656..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/tm/default/contents.css
+++ /dev/null
@@ -1,52 +0,0 @@
-.contents-header {
- height:30px;
-}
-
-.contents-main {
- background: #efefef;
- border-style:solid;
- border-width:1px;
- border-color:#cbcbcb;
- padding: 10px;
- overflow: auto;
-}
-
-.contents-main .caption {
- border-bottom:2px solid #aaa;
- margin-bottom:10px;
- font-weight:bold;
- padding:2px;
-}
-
-.contents-main th {
- font-weight:bold;
- color: #444444;
-}
-
-.contents-main td.item {
- border-bottom:1px solid #aaa;
-}
-
-.contents-main th.header {
- border-bottom: 2px solid #aaa;
-}
-
-.contents-main td {
- color: #444444;
-}
-
-.contents-main td.indent1 {
- padding-left:30px;
-}
-
-.contents-header-table {
- border-collapse:collapse;
- border-spacing:0px;
- margin-bottom:5px;
- width:100%;
- height:25px;
-}
-
-.contents-header-table .count {
- color : #ff0000;
-}
diff --git a/AgileWorks/WebContent/css/tm/default/default.css b/AgileWorks/WebContent/css/tm/default/default.css
deleted file mode 100644
index 24aa0a366e111b33fddce5838235074cdd573d7a..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/tm/default/default.css
+++ /dev/null
@@ -1,13 +0,0 @@
-html{height:100%;}a:link{text-decoration:none;color:#1851E7;}a:active{text-decoration:none;color:#1851E7;}a:visited{text-decoration:none;color:#1851E7;}a:hover{text-decoration:underline;color:#e16745;}body{font-size:75%;background-color:#cfd5da;font-family:Arial,sans-serif;margin:0;height:100%;}input{font-family:Arial,sans-serif;}input[type=text]{margin:0;}button{font-family:Arial,sans-serif;margin:0;}select{margin:0;}textarea{font-size:12px;margin:0;}
-.aw-common-func{height:30px;border-style:solid;border-width:0 0 1px 0;border-color:#808080;background-image:url('../../../images/emma/default/background/func_bg.gif?build31910');}.aw-common-menubar-layer{height:30px;display:inline;float:left;}.aw-common-table{width:100%;margin:0;padding:0;border-collapse:collapse;background:#fff;}.aw-common-table th{margin:0;padding:1px 1px 1px 2px;height:24px;vertical-align:middle;color:#444;border:1px solid #aaa;text-align:left;background:url('../../../images/emma/default/background/table_header_bg.gif?build31910') bottom repeat-x #ebebeb;}.aw-common-table th.caption{margin:0;padding:10px;vertical-align:middle;color:#444;border:1px solid #aaa;text-align:center;background:url('../../../images/emma/default/background/table_caption_bg.gif?build31910') center repeat-x;}.aw-common-table td{margin:0;padding:1px 1px 1px 2px;height:24px;vertical-align:middle;color:#444;border:1px solid #aaa;text-align:left;}.aw-common-table table.inner{width:98%;margin:0;padding:0;border-collapse:collapse;}.aw-common-table table.inner td{margin:0;padding:5px 5px 5px 0;border:none;text-align:left;}.aw-common-table table.inner td.uline{border-bottom:1px dotted #aaa;}.aw-common-table .even{background:#f5f5f5;}.aw-common-table .ar01{padding:0 0 0 12px;background:url('../../../images/emma/default/icon/arrow01.gif?build31910') left center no-repeat;}.aw-common-table-unurged{width:100%;margin:0;padding:0;border-collapse:collapse;background:#fff;}.aw-common-table-unurged th.label{margin:0;padding:1px 1px 1px 2px;vertical-align:middle;color:#444;border:1px solid #aaa;text-align:left;background:url('../../../images/emma/default/background/table_header_bg.gif?build31910') bottom repeat-x #ebebeb;}.aw-common-table-unurged th.caption{margin:0;padding:10px;vertical-align:middle;color:#444;border:1px solid #aaa;text-align:center;background:url('../../../images/emma/default/background/table_caption_bg.gif?build31910') center repeat-x;}.aw-common-table-unurged td.item{margin:0;padding:1px 1px 1px 2px;vertical-align:middle;color:#444;border:1px solid #aaa;text-align:left;}
-.contents-header{height:30px;}.contents-main{background:#efefef;border-style:solid;border-width:1px;border-color:#cbcbcb;padding:10px;overflow:auto;}.contents-main .caption{border-bottom:2px solid #aaa;margin-bottom:10px;font-weight:bold;padding:2px;}.contents-main th{font-weight:bold;color:#444;}.contents-main td.item{border-bottom:1px solid #aaa;}.contents-main th.header{border-bottom:2px solid #aaa;}.contents-main td{color:#444;}.contents-main td.indent1{padding-left:30px;}.contents-header-table{border-collapse:collapse;border-spacing:0;margin-bottom:5px;width:100%;height:25px;}.contents-header-table .count{color:#f00;}
-.grid-scroll-layer{border-style:solid;border-width:1px;border-color:#000;position:absolute;overflow:scroll;outline:0!important;-webkit-tap-highlight-color:rgba(0,0,0,0);}.grid-table-layer{background-color:#eee;position:relative;overflow:hidden;top:1px;left:1px;}.grid-table{table-layout:fixed;width:0;}.grid-table th{background-image:url('../../../images/emma/default/background/grid_header.gif?build31910');}.grid-header-th{color:#000;font-weight:bold;border-style:solid;border-width:0 1px 0 0;border-color:#aaa;white-space:pre;word-break:keep-all;overflow:hidden;text-align:center;}.grid-header-th.fixed{border-color:#000!important;}.grid-header-th.sort{color:#0067ce;}.grid-header-resizediv{position:absolute;top:0;border-style:solid;border-width:0 9px 0 0;cursor:col-resize;filter:alpha(opacity=0);-moz-opacity:0;opacity:0;}.grid-header-resizediv-dragging{position:absolute;top:0;border-style:solid;border-width:0 3px 0 0;border-color:#242b32;cursor:col-resize;}.grid-header-cell{padding:0 4px 0 4px;}.grid-tr-current{background-color:#242b32;color:#fff;cursor:default;}.grid-tr-current td{color:#fff;}.grid-tr-select{background-color:#5E81BC;color:#fff;cursor:default;}.grid-tr{background-color:#fff;cursor:default;}.grid-tr-even{background-color:#f5f5f5;cursor:default;}.grid-td{border-style:solid;border-width:0 1px 0 0;border-color:#aaa;white-space:pre;word-break:keep-all;overflow:hidden;padding:0 4px 0 4px;cursor:pointer;}.grid-td.fixed{border-color:#000!important;cursor:pointer;}.grid-td.record-status{background-color:#d0d4d9;text-align:center;padding:0;cursor:default;}.grid-td.checkbox{background-color:#d0d4d9;text-align:center;padding:0;cursor:default;}.grid-td.radiobutton{background-color:#d0d4d9;text-align:center;padding:0;cursor:default;}.grid-td.blank{border-width:0;cursor:default;}
-.grid-tr-subtotal{color:#00f;background-color:#f5f5f5;cursor:default;}.grid-tr-total{font-size:15px;color:#f00;font-weight:bold;background-color:#ccc;cursor:default;}.grid-td.mouseover{color:#f00;background-color:#ffc;cursor:pointer;}
-.layer{position:absolute;}.layer-modallayer{position:absolute;top:0;left:0;width:100%;height:100%;background-color:#ddd;filter:alpha(opacity=40);opacity:.4;-moz-opacity:.4;}.layer-dropshadow{position:absolute;background-image:url('../../../images/common/container/shadow.gif?build31910');background-position:right bottom;}.layer-underiframe{position:absolute;top:0;left:0;width:100%;height:100%;border:none;filter:alpha(opacity=0);-moz-opacity:0;opacity:0;}.layer-frame{position:absolute;border-style:solid;border-width:1px;border-color:#666;box-shadow:2px 2px 5px #666;-moz-box-shadow:2px 2px 5px #666;-webkit-box-shadow:2px 2px 5px #666;}.layer-titlebar{height:30px;color:#262e37;font-weight:bold;overflow:hidden;background-image:url('../../../images/emma/default/background/layer_titlebar_bg.gif?build31910');background-repeat:repeat-x;}.layer-titlebar-table{height:30px;padding-left:4px;}.layer-titlebar-caption{overflow:hidden;}.layer-titlebar-td-help{width:20px;text-align:center;padding:0;cursor:pointer;}.layer-titlebar-td-close{width:20px;text-align:center;padding:0 4px 0 0;cursor:pointer;}.layer-body{position:absolute;overflow:auto;padding:5px;background-color:#bfc7cd;}.layer-messagebox-simple{font-size:12px;font-weight:bold;width:200px;}.layer-messagebox-tl{background:transparent url(../../../images/emma/default/background/messagebox-corners.gif?build31910) no-repeat 0 0;zoom:1;}.layer-messagebox-tc{height:8px;background:transparent url(../../../images/emma/default/background/messagebox-tb.gif?build31910) repeat-x 0 0;overflow:hidden;}.layer-messagebox-tr{background:transparent url(../../../images/emma/default/background/messagebox-corners.gif?build31910) no-repeat right -8px;}.layer-messagebox-ml{background:transparent url(../../../images/emma/default/background/messagebox-l.gif?build31910) repeat-y 0;padding-left:4px;overflow:hidden;zoom:1;}.layer-messagebox-mc{background:#eee url(../../../images/emma/default/background/messagebox-tb.gif?build31910) repeat-x 0 -16px;padding:4px 10px;font-family:"Myriad Pro","Myriad Web","Tahoma","Helvetica","Arial",sans-serif;color:#393939;font-size:12px;}.layer-messagebox-mc h3{font-size:14px;font-weight:bold;margin:0 0 4 0;zoom:1;}.layer-messagebox-mr{background:transparent url(../../../images/emma/default/background/messagebox-r.gif?build31910) repeat-y right;padding-right:4px;overflow:hidden;}.layer-messagebox-bl{background:transparent url(../../../images/emma/default/background/messagebox-corners.gif?build31910) no-repeat 0 -16px;zoom:1;}.layer-messagebox-bc{background:transparent url(../../../images/emma/default/background/messagebox-tb.gif?build31910) repeat-x 0 -8px;height:8px;overflow:hidden;}.layer-messagebox-br{background:transparent url(../../../images/emma/default/background/messagebox-corners.gif?build31910) no-repeat right -24px;}.layer-messagebox-tl,.layer-messagebox-bl{padding-left:8px;overflow:hidden;}.layer-messagebox-tr,.layer-messagebox-br{padding-right:8px;overflow:hidden;}.layer-messagebox-blue .layer-messagebox-bl,.layer-messagebox-blue .layer-messagebox-br,.layer-messagebox-blue .layer-messagebox-tl,.layer-messagebox-blue .layer-messagebox-tr{background-image:url(../../../images/emma/default/background/messagebox-corners-blue.gif?build31910);}.layer-messagebox-blue .layer-messagebox-bc,.layer-messagebox-blue .layer-messagebox-mc,.layer-messagebox-blue .layer-messagebox-tc{background-image:url(../../../images/emma/default/background/messagebox-tb-blue.gif?build31910);}.layer-messagebox-blue .layer-messagebox-mc{background-color:#c3daf9;}.layer-messagebox-blue .layer-messagebox-mc h3{color:#17385b;}.layer-messagebox-blue .layer-messagebox-ml{background-image:url(../../../images/emma/default/background/messagebox-l-blue.gif?build31910);}.layer-messagebox-blue .layer-messagebox-mr{background-image:url(../../../images/emma/default/background/messagebox-r-blue.gif?build31910);}
-.menubar{color:#000;}.menubar .topmenu{height:28px;}.menubar .topmenu ul{margin:0;padding:0;}.menubar .topmenu li{float:left;list-style-type:none;margin:0;line-height:22px;padding:3px 5px 3px 22px;}.menubar .submenu{background-color:#fff;border-style:solid;border-width:1px;border-color:#aaa;}.menubar .submenu ul{margin:0;padding:0;overflow:hidden;}.menubar .submenu li{list-style-type:none;margin:0;padding:0;line-height:22px;padding:1px 5px 1px 22px;white-space:pre;word-break:keep-all;}.menubar .menuitem.menuover{background-color:#ddd;cursor:pointer;}.menubar .menuitem.menudisabled{color:#aaa;}.menubar .topmenu .menuitem-terminate{float:none;clear:both;}
-.tabs-layer{overflow:hidden;height:30px;font-size:12px;}.tabs-table{height:29px;margin-top:1px;}.tabs-item{height:28px;border-style:solid;border-width:1px 1px 0 1px;border-color:#aaa;background-color:#aaa;color:#444;padding:0 10px 0 10px;white-space:nowrap;background-image:url('../../../images/emma/default/background/tab_bg.gif?build31910');font-weight:bold;}.tabs-item a{color:#444;}.tabs-item a:link{color:#444;}.tabs-item a:active{color:#444;}.tabs-item a:visited{color:#444;}.tabs-item-mouseover{height:28px;background-color:#fff;border-style:solid;border-width:1px 1px 0 1px;border-color:#aaa;color:#444;padding:0 10px 0 10px;white-space:nowrap;font-weight:bold;}.tabs-item-mouseover a{color:#444;}.tabs-item-mouseover a:link{color:#444;}.tabs-item-mouseover a:active{color:#444;}.tabs-item-mouseover a:visited{color:#444;}.tabs-blank{padding:0 5px 0 5px;border-style:solid;border-width:0 0 1px 0;border-color:#aaa;}.tabs-last{width:100%;border-style:solid;border-width:0 0 1px 0;border-color:#aaa;}.tabs-leftarrow{width:30px;background-image:url('../../../images/emma/default/background/tabs-leftarrow.gif?build31910');background-repeat:no-repeat;background-position:0 2px;cursor:pointer;}.tabs-rightarrow{width:30px;background-image:url('../../../images/emma/default/background/tabs-rightarrow.gif?build31910');background-repeat:no-repeat;background-position:2px 2px;cursor:pointer;}.tabs-page{background-color:#eee;border-style:solid;border-width:0 1px 1px 1px;border-color:#aaa;padding:4px;overflow:auto;}
-.aw-menubar{height:30px;border-style:solid;border-width:0 0 1px 0;border-color:#808080;background-image:url('../../../images/emma/default/background/func_bg.gif?build31910');}.aw-menubar2{height:30px;border-style:solid;border-width:0 0 1px 0;border-color:#808080;background-image:url('../../../images/emma/default/background/func_bg.gif?build31910');}
-.aw-tm-table{width:100%;margin:0;padding:0;border-collapse:collapse;background:#fff;}.aw-tm-table th{margin:0;padding:1px 1px 1px 2px;height:24px;vertical-align:middle;color:#444;border:1px solid #aaa;text-align:left;background:url('../../../images/tm/default/background/table_header_bg.gif?build31910') bottom repeat-x #ebebeb;}.aw-tm-table th.caption{margin:0;padding:10px;vertical-align:middle;color:#444;border:1px solid #aaa;text-align:center;background:url('../../../images/tm/default/background/table_caption_bg.gif?build31910') center repeat-x;}.aw-tm-table td{margin:0;padding:1px 1px 1px 2px;height:24px;vertical-align:middle;color:#444;border:1px solid #aaa;text-align:left;}.aw-tm-table table.inner{width:98%;margin:0;padding:0;border-collapse:collapse;}.aw-tm-table table.inner td{margin:0;padding:5px 5px 5px 0;border:none;text-align:left;}.aw-tm-table table.inner td.uline{border-bottom:1px dotted #aaa;}.aw-tm-table .even{background:#f5f5f5;}.aw-tm-table .ar01{padding:0 0 0 12px;background:url('../../../images/tm/default/icon/arrow01.gif?build31910') left center no-repeat;}.aw-tm-table-unurged{width:100%;margin:0;padding:0;border-collapse:collapse;background:#fff;}.aw-tm-table-unurged th.label{margin:0;padding:1px 1px 1px 2px;height:24px;vertical-align:middle;color:#444;border:1px solid #aaa;text-align:left;background:url('../../../images/tm/default/background/table_header_bg.gif?build31910') bottom repeat-x #ebebeb;}.aw-tm-table-unurged th.caption{margin:0;padding:10px;vertical-align:middle;color:#444;border:1px solid #aaa;text-align:center;background:url('../../../images/tm/default/background/table_caption_bg.gif?build31910') center repeat-x;}.aw-tm-table-unurged td.item{margin:0;padding:1px 1px 1px 2px;height:24px;vertical-align:middle;color:#444;border:1px solid #aaa;text-align:left;}
-.aw-tm-header{height:59px;margin:0;padding:0;border:0;background:url(../../../images/tm/default/header/header_bg.gif?build31910) top repeat-x;}.aw-tm-header-left{float:left;margin:0;padding:0 67px 0 0;overflow:hidden;}.aw-tm-header-left img{padding:0;border:none;width:183px;height:59px;}.aw-tm-header-right{float:right;margin:0;padding:0 0 0 25px;background:url(../../../images/tm/default/header/link_bg.gif?build31910) left top no-repeat;color:#666;background-color:#242b32;font-size:12px;}.aw-tm-header-right-account{float:left;padding:0 10px 2px 0;display:inline;background-color:#242b32;color:#fff;}.aw-tm-header-right-link{float:left;}.aw-tm-header-right-link ul{margin:0;padding:2px;list-style:none;background-color:#242b32;}.aw-tm-header-right-link li{margin:0;padding:0 5px 0 0;display:inline;}.aw-tm-header-right-link a{color:#fff;text-decoration:underline;}.aw-tm-header-right-link a:link{color:#fff;text-decoration:underline;}.aw-tm-header-right-link a:active{color:#fff;text-decoration:underline;}.aw-tm-header-right-link a:visited{color:#fff;text-decoration:underline;}.aw-tm-header-right-link a:hover{color:#fff;text-decoration:underline;}.aw-tm-header-menu{margin:0;padding:7px 0 0 0;font-size:12px;text-align:center;}.aw-tm-header-menu ul{list-style:none;margin:0;padding:0;}.aw-tm-header-menu li{float:left;margin:0 2px 0 0;padding:0;white-space:nowrap;}.aw-tm-header-menu a{outline:0;}.aw-tm-header-menu-hlinks-separator{display:none;}.aw-tm-header-menu-hlinks-li-general a,.aw-tm-header-menu-hlinks-li-general a:link,.aw-tm-header-menu-hlinks-li-general a:active,.aw-tm-header-menu-hlinks-li-general a:visited{color:#fff;width:60px;height:50px;display:block;overflow:hidden;line-height:80px;background:URL(../../../images/common/icon/object/general30.gif?build31910) center top no-repeat;}.aw-tm-header-menu-hlinks-li-general a:hover{color:#e16745;text-decoration:none;width:60px;height:50px;display:block;overflow:hidden;background:URL(../../../images/common/icon/object/general30.gif?build31910) center top no-repeat;}.aw-tm-header-menu-hlinks-li-customer a,.aw-tm-header-menu-hlinks-li-customer a:link,.aw-tm-header-menu-hlinks-li-customer a:active,.aw-tm-header-menu-hlinks-li-customer a:visited{color:#fff;width:60px;height:50px;display:block;overflow:hidden;line-height:80px;background:URL(../../../images/common/icon/object/customer30.gif?build31910) center top no-repeat;}.aw-tm-header-menu-hlinks-li-customer a:hover{color:#e16745;text-decoration:none;width:60px;height:50px;display:block;overflow:hidden;background:URL(../../../images/common/icon/object/customer30.gif?build31910) center top no-repeat;}.aw-tm-header-menu-hlinks-li-tenement a,.aw-tm-header-menu-hlinks-li-tenement a:link,.aw-tm-header-menu-hlinks-li-tenement a:active,.aw-tm-header-menu-hlinks-li-tenement a:visited{color:#fff;width:110px;height:50px;display:block;overflow:hidden;line-height:80px;background:URL(../../../images/common/icon/object/tenement30.gif?build31910) center top no-repeat;}.aw-tm-header-menu-hlinks-li-tenement a:hover{color:#e16745;text-decoration:none;width:110px;height:50px;display:block;overflow:hidden;background:URL(../../../images/common/icon/object/tenement30.gif?build31910) center top no-repeat;}.aw-tm-header-menu-hlinks-li-tenant a,.aw-tm-header-menu-hlinks-li-tenant a:link,.aw-tm-header-menu-hlinks-li-tenant a:active,.aw-tm-header-menu-hlinks-li-tenant a:visited{color:#fff;width:70px;height:50px;display:block;overflow:hidden;line-height:80px;background:URL(../../../images/common/icon/object/tenant30.gif?build31910) center top no-repeat;}.aw-tm-header-menu-hlinks-li-tenant a:hover{color:#e16745;text-decoration:none;width:70px;height:50px;display:block;overflow:hidden;background:URL(../../../images/common/icon/object/tenant30.gif?build31910) center top no-repeat;}.aw-tm-headerbar{clear:both;height:12px;margin:0;padding:0;background:url(../../../images/tm/default/header/bar_bg.gif?build31910) left repeat-x #fff;font-size:0;}.aw-tm-headerbar-standby{clear:both;height:12px;margin:0;padding:0;background:url(../../../images/tm/default/header/bar_bg_standby.gif?build31910) left repeat-x #fff;font-size:0;}.aw-tm-workbench{position:absolute;width:250px;}.aw-tm-tabs{height:30px;padding-left:10px;background-color:#333;font-size:12px;}.aw-tm-menu{height:38px;margin:0;padding-left:10px;}.aw-tm-func{height:30px;border-style:solid;border-width:0 0 1px 0;border-color:#808080;background-image:url('../../../images/tm/default/background/func_bg.gif?build31910');}.aw-tm-menubar-layer{height:30px;display:inline;float:left;}.aw-tm-contents{padding:5px;}.aw-tm-page{position:relative;top:0;left:250px;width:10px;height:10px;overflow:hidden;}.aw-dragger{position:absolute;cursor:col-resize;border-style:solid;filter:alpha(opacity=00);-moz-opacity:0;opacity:0;z-index:1;}.aw-dragger-dragging{position:absolute;cursor:col-resize;border-style:solid;border-color:#242b32;z-index:1;}.aw-info{margin:10px 0 10px 0;padding:10px 0 10px 30px;background-color:#ffffd5;background-image:url(../../../images/common/icon/etc/info20.gif?build31910);background-repeat:no-repeat;background-position:5px center;}
-.ygtvtd_current{background-color:#697683;border-style:solid;border-width:1px;border-color:#000;padding:0;}
-.workbench-layer{border-style:outset;border-width:0 1px 0 0;border-color:#333;white-space:nowrap;}.workbench-item{width:240px;border-style:solid;border-width:0 0 1px 0;border-color:#666;overflow:hidden;background-image:url('../../../images/emma/default/background/workbench_item.gif?build31910');font-weight:bold;line-height:30px;color:#000;cursor:pointer;padding-left:10px;font-size:120%;}.workbench-item-current{width:240px;border-style:solid;border-width:0 0 1px 0;border-color:#666;overflow:hidden;background-image:url('../../../images/emma/default/background/workbench_item.gif?build31910');font-weight:bold;line-height:30px;color:#000;cursor:pointer;padding-left:10px;font-size:120%;}.workbench-item-mouseover{width:240px;border-style:solid;border-width:0 0 1px 0;border-color:#666;overflow:hidden;background-image:url('../../../images/emma/default/background/workbench_item_over.gif?build31910');font-weight:bold;line-height:30px;color:#fff;cursor:pointer;padding-left:10px;font-size:120%;}.workbench-content{width:230px;border-style:solid;border-width:0 0 1px 0;border-color:#666;overflow:auto;padding:10px;}.workbench-content-control{width:224px;background-color:#fff;border-style:solid;border-width:3px;border-color:#aaa;overflow:auto;}
diff --git a/AgileWorks/WebContent/css/tm/default/default.css.dev b/AgileWorks/WebContent/css/tm/default/default.css.dev
deleted file mode 100644
index 639f850a192ee22469be684a29c3666f1edfeab8..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/tm/default/default.css.dev
+++ /dev/null
@@ -1,11 +0,0 @@
-@import url(base.css);
-@import url(common.css);
-@import url(grid-base.css);
-@import url(grid-ext.css);
-@import url(layer.css);
-@import url(tree-type.css);
-@import url(menu-base.css);
-@import url(tabs.css);
-@import url(tm-table.css);
-@import url(tm.css);
-@import url(workbench.css);
\ No newline at end of file
diff --git a/AgileWorks/WebContent/css/tm/default/grid-base.css b/AgileWorks/WebContent/css/tm/default/grid-base.css
deleted file mode 100644
index cefd6ca127eb40973f7aaace246570ba2625d1ef..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/tm/default/grid-base.css
+++ /dev/null
@@ -1,159 +0,0 @@
-/*
- * grid-base.css?build31910
- *
- * Gridを描画するために必要なCSSセレクタを定義します
- */
-
-.grid-scroll-layer {
- border-style:solid;
- border-width:1px;
- border-color:#000000;
- position:absolute;
- overflow:scroll;
- outline: 0 !important;
- -webkit-tap-highlight-color: rgba(0,0,0,0);
-}
-
-.grid-scroll-body {
-}
-
-.grid-table-layer {
- background-color:#eeeeee;
- position:relative;
- overflow:hidden;
- top:1px;
- left:1px;
-}
-
-.grid-table {
- table-layout:fixed;
- width:0px;
-}
-
-.grid-col {
-}
-
-.grid-table th {
- background-image: url( '../../../images/emma/default/background/grid_header.gif?build31910' );
-}
-
-.grid-header-th {
- color:#000000;
- font-weight:bold;
- border-style:solid;
- border-width:0px 1px 0px 0px;
- border-color:#aaaaaa;
- white-space:pre;
- word-break:keep-all;
- overflow:hidden;
- text-align:center;
-}
-
-.grid-header-th.fixed {
- border-color:#000000 !important;
-}
-
-.grid-header-th.sort {
- color: #0067ce;
-}
-
-.grid-header-th.record-status {
-}
-
-.grid-header-th.checkbox {
-}
-
-.grid-header-th.radiobutton {
-}
-
-.grid-header-resizediv {
- position: absolute;
- top: 0px;
- border-style: solid;
- border-width: 0px 9px 0px 0px;
- cursor: col-resize;
- filter:alpha(opacity=0);
- -moz-opacity:0;
- opacity:0;
-}
-
-.grid-header-resizediv-dragging {
- position: absolute;
- top: 0px;
- border-style: solid;
- border-width: 0px 3px 0px 0px;
- border-color: #242b32;
- cursor: col-resize;
-}
-
-.grid-header-cell {
- padding:0px 4px 0px 4px;
-}
-
-.grid-tr-current {
- background-color:#242b32;
- color:#ffffff;
- cursor:default;
-}
-
-.grid-tr-current td {
- color:#ffffff;
-}
-
-.grid-tr-select {
- background-color:#5E81BC;
- color:#ffffff;
- cursor:default;
-}
-
-.grid-tr {
- background-color:#ffffff;
- cursor:default;
-}
-
-.grid-tr-even {
- background-color:#f5f5f5;
- cursor:default;
-}
-
-.grid-td {
- border-style:solid;
- border-width:0px 1px 0px 0px;
- border-color:#aaaaaa;
- white-space:pre;
- word-break:keep-all;
- overflow:hidden;
- padding:0px 4px 0px 4px;
- cursor:pointer;
-}
-
-.grid-td.fixed {
- border-color:#000000 !important;
- cursor:pointer;
-}
-
-.grid-td.record-status {
- background-color:#d0d4d9;
- text-align:center;
- padding:0px;
- cursor:default;
-}
-
-.grid-td.checkbox {
- background-color:#d0d4d9;
- text-align:center;
- padding:0px;
- cursor:default;
-}
-
-.grid-td.radiobutton {
- background-color:#d0d4d9;
- text-align:center;
- padding:0px;
- cursor:default;
-}
-
-.grid-td.blank {
- border-width:0px;
- cursor:default;
-}
diff --git a/AgileWorks/WebContent/css/tm/default/grid-ext.css b/AgileWorks/WebContent/css/tm/default/grid-ext.css
deleted file mode 100644
index 5d30134fb065d1a4725ff6838cde4bf5ddddfa65..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/tm/default/grid-ext.css
+++ /dev/null
@@ -1,28 +0,0 @@
-/*
- * grid-ext.css?build31910
- *
- * Gridで利用されるCSSセレクタを定義します
- */
-
-/* 小計行 */
-.grid-tr-subtotal {
- color:#0000ff;
- background-color:#f5f5f5;
- cursor:default;
-}
-
-/* 総計行 */
-.grid-tr-total {
- font-size:15px;
- color:#ff0000;
- font-weight:bold;
- background-color:#cccccc;
- cursor:default;
-}
-
-/* ドリルスルー可能セル - マウスオーバー */
-.grid-td.mouseover {
- color:#ff0000;
- background-color:#ffffcc;
- cursor:pointer;
-}
diff --git a/AgileWorks/WebContent/css/tm/default/layer.css b/AgileWorks/WebContent/css/tm/default/layer.css
deleted file mode 100644
index 269d248f73100955e5c0f4ff21dd9101ff1001d8..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/tm/default/layer.css
+++ /dev/null
@@ -1,146 +0,0 @@
-/*
- * layer.css?build31910
- *
- * Layerを描画するために必要なCSSセレクタを定義します
- */
-
-.layer {
- position:absolute;
-}
-
-/*
- * モーダル用DIV要素に適用されるクラスセレクタ
- */
-.layer-modallayer {
- position:absolute;
- top:0px;
- left:0px;
- width:100%;
- height:100%;
- background-color:#dddddd;
- filter:alpha(opacity=40);
- opacity:0.4;
- -moz-opacity:0.4;
-}
-
-/*
- * ドロップシャドウに適用されるクラスセレクタ
- */
-.layer-dropshadow {
- position: absolute;
- background-image: url('../../../images/common/container/shadow.gif?build31910');
- background-position: right bottom;
-}
-
-/*
- * IFRAME要素に適用されるクラスセレクタ
- */
-.layer-underiframe {
- position:absolute;
- top:0px;
- left:0px;
- width:100%;
- height:100%;
- border:none;
- filter:alpha(opacity=0);
- -moz-opacity:0;
- opacity:0;
-}
-
-/*
- * Layerの描画要素に適用されるクラスセレクタ
- */
-.layer-frame {
- position:absolute;
- border-style:solid;
- border-width:1px;
- border-color:#666666;
- box-shadow: 2px 2px 5px #666666;
- -moz-box-shadow: 2px 2px 5px #666666;
- -webkit-box-shadow: 2px 2px 5px #666666;
-}
-
-/*
- * タイトルバーに適用されるクラスセレクタ
- */
-.layer-titlebar {
- height:30px;
- color:#262e37;
- font-weight:bold;
- overflow:hidden;
- background-image: url( '../../../images/emma/default/background/layer_titlebar_bg.gif?build31910' );
- background-repeat:repeat-x;
-}
-
-/*
- * タイトルバー内のTABLE要素に適用されるクラスセレクタ
- */
-.layer-titlebar-table {
- height:30px;
- padding-left:4px;
-}
-
-/*
- * タイトルバー内のタイトル要素に適用されるクラスセレクタ
- */
-.layer-titlebar-caption {
- overflow : hidden;
-}
-
-/*
- * タイトルバー内のヘルプアイコンのTD要素に適用されるクラスセレクタ
- */
-.layer-titlebar-td-help {
- width:20px;
- text-align:center;
- padding:0px;
- cursor:pointer;
-}
-
-/*
- * タイトルバー内のクローズアイコンのTD要素に適用されるクラスセレクタ
- */
-.layer-titlebar-td-close {
- width:20px;
- text-align:center;
- padding:0px 4px 0px 0px;
- cursor:pointer;
-}
-
-/*
- * ボディに適用されるクラスセレクタ
- */
-.layer-body {
- position:absolute;
- overflow:auto;
- padding:5px;
- background-color:#bfc7cd;
-}
-
-/*
- * メッセージボックスに適用されるクラスセレクタ
- */
-.layer-messagebox-simple {
- font-size:12px;
- font-weight:bold;
- width:200px;
-}
-
-.layer-messagebox-tl{background:transparent url(../../../images/emma/default/background/messagebox-corners.gif?build31910) no-repeat 0 0;zoom:1;}
-.layer-messagebox-tc{height:8px;background:transparent url(../../../images/emma/default/background/messagebox-tb.gif?build31910) repeat-x 0 0;overflow:hidden;}
-.layer-messagebox-tr{background:transparent url(../../../images/emma/default/background/messagebox-corners.gif?build31910) no-repeat right -8px;}
-.layer-messagebox-ml{background:transparent url(../../../images/emma/default/background/messagebox-l.gif?build31910) repeat-y 0;padding-left:4px;overflow:hidden;zoom:1;}
-.layer-messagebox-mc{background:#eee url(../../../images/emma/default/background/messagebox-tb.gif?build31910) repeat-x 0 -16px;padding:4px 10px;font-family:"Myriad Pro","Myriad Web","Tahoma","Helvetica","Arial",sans-serif;color:#393939;font-size:12px;}
-.layer-messagebox-mc h3{font-size:14px;font-weight:bold;margin:0 0 4 0;zoom:1;}
-.layer-messagebox-mr{background:transparent url(../../../images/emma/default/background/messagebox-r.gif?build31910) repeat-y right;padding-right:4px;overflow:hidden;}
-.layer-messagebox-bl{background:transparent url(../../../images/emma/default/background/messagebox-corners.gif?build31910) no-repeat 0 -16px;zoom:1;}
-.layer-messagebox-bc{background:transparent url(../../../images/emma/default/background/messagebox-tb.gif?build31910) repeat-x 0 -8px;height:8px;overflow:hidden;}
-.layer-messagebox-br{background:transparent url(../../../images/emma/default/background/messagebox-corners.gif?build31910) no-repeat right -24px;}
-.layer-messagebox-tl,.layer-messagebox-bl{padding-left:8px;overflow:hidden;}
-.layer-messagebox-tr,.layer-messagebox-br{padding-right:8px;overflow:hidden;}
-.layer-messagebox-blue .layer-messagebox-bl,.layer-messagebox-blue .layer-messagebox-br,.layer-messagebox-blue .layer-messagebox-tl,.layer-messagebox-blue .layer-messagebox-tr{background-image:url(../../../images/emma/default/background/messagebox-corners-blue.gif?build31910);}
-.layer-messagebox-blue .layer-messagebox-bc,.layer-messagebox-blue .layer-messagebox-mc,.layer-messagebox-blue .layer-messagebox-tc{background-image:url(../../../images/emma/default/background/messagebox-tb-blue.gif?build31910);}
-.layer-messagebox-blue .layer-messagebox-mc{background-color:#c3daf9;}
-.layer-messagebox-blue .layer-messagebox-mc h3{color:#17385b;}
-.layer-messagebox-blue .layer-messagebox-ml{background-image:url(../../../images/emma/default/background/messagebox-l-blue.gif?build31910);}
-.layer-messagebox-blue .layer-messagebox-mr{background-image:url(../../../images/emma/default/background/messagebox-r-blue.gif?build31910);}
diff --git a/AgileWorks/WebContent/css/tm/default/menu-base.css b/AgileWorks/WebContent/css/tm/default/menu-base.css
deleted file mode 100644
index d7a54afaa6300697c2090c3c8ce4628afe8d632c..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/tm/default/menu-base.css
+++ /dev/null
@@ -1,57 +0,0 @@
-.menubar {
- color:#000000;
-}
-
-.menubar .topmenu {
- height:28px;
-}
-
-.menubar .topmenu ul {
- margin:0px;
- padding:0px;
-}
-
-.menubar .topmenu li {
- float:left;
- list-style-type:none;
- margin:0px;
- line-height:22px;
- padding: 3px 5px 3px 22px;
-}
-
-.menubar .submenu {
- background-color:#ffffff;
- border-style:solid;
- border-width:1px;
- border-color:#aaaaaa;
-}
-
-.menubar .submenu ul {
- margin:0px;
- padding:0px;
- overflow:hidden;
-}
-
-.menubar .submenu li {
- list-style-type:none;
- margin:0px;
- padding:0px;
- line-height:22px;
- padding: 1px 5px 1px 22px;
- white-space:pre;
- word-break:keep-all;
-}
-
-.menubar .menuitem.menuover {
- background-color:#dddddd;
- cursor:pointer;
-}
-
-.menubar .menuitem.menudisabled {
- color:#aaaaaa;
-}
-
-.menubar .topmenu .menuitem-terminate {
- float:none;
- clear:both;
-}
diff --git a/AgileWorks/WebContent/css/tm/default/tabs.css b/AgileWorks/WebContent/css/tm/default/tabs.css
deleted file mode 100644
index 0021c6c314e8e53c10e6cc254bbafe5d41cf8f7e..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/tm/default/tabs.css
+++ /dev/null
@@ -1,110 +0,0 @@
-
-.tabs-layer {
- overflow:hidden;
- height:30px;
- font-size:12px;
-}
-
-.tabs-maintable {
-}
-
-.tabs-table {
- height:29px;
- margin-top:1px;
-}
-
-.tabs-item {
- height:28px;
- border-style:solid;
- border-width:1px 1px 0px 1px;
- border-color:#aaaaaa;
- background-color:#aaaaaa;
- color:#444444;
- padding:0px 10px 0px 10px;
- white-space:nowrap;
- background-image: url( '../../../images/emma/default/background/tab_bg.gif?build31910' );
- font-weight:bold;
-}
-
-.tabs-item a {
- color:#444444;
-}
-
-.tabs-item a:link {
- color:#444444;
-}
-
-.tabs-item a:active {
- color:#444444;
-}
-
-.tabs-item a:visited {
- color:#444444;
-}
-
-.tabs-item-mouseover {
- height:28px;
- background-color:#ffffff;
- border-style:solid;
- border-width:1px 1px 0px 1px;
- border-color:#aaaaaa;
- color:#444444;
- padding:0px 10px 0px 10px;
- white-space:nowrap;
- font-weight:bold;
-}
-
-.tabs-item-mouseover a {
- color:#444444;
-}
-
-.tabs-item-mouseover a:link {
- color:#444444;
-}
-
-.tabs-item-mouseover a:active {
- color:#444444;
-}
-
-.tabs-item-mouseover a:visited {
- color:#444444;
-}
-
-.tabs-blank {
- padding:0px 5px 0px 5px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#aaaaaa;
-}
-
-.tabs-last {
- width: 100%;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#aaaaaa;
-}
-
-.tabs-leftarrow {
- width:30px;
- background-image:url( '../../../images/emma/default/background/tabs-leftarrow.gif?build31910' );
- background-repeat:no-repeat;
- background-position:0px 2px;
- cursor:pointer;
-}
-
-.tabs-rightarrow {
- width:30px;
- background-image:url( '../../../images/emma/default/background/tabs-rightarrow.gif?build31910' );
- background-repeat:no-repeat;
- background-position:2px 2px;
- cursor:pointer;
-}
-
-.tabs-page {
- background-color:#eeeeee;
- border-style:solid;
- border-width:0px 1px 1px 1px;
- border-color:#aaaaaa;
- padding:4px;
- overflow:auto;
-}
diff --git a/AgileWorks/WebContent/css/tm/default/theme.css b/AgileWorks/WebContent/css/tm/default/theme.css
deleted file mode 100644
index f692640791fe042d3e6cf0c5c98c2a5c31cf2233..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/tm/default/theme.css
+++ /dev/null
@@ -1,15 +0,0 @@
-.aw-menubar {
- height:30px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#808080;
- background-image:url('../../../images/emma/default/background/func_bg.gif?build31910');
-}
-
-.aw-menubar2 {
- height:30px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#808080;
- background-image:url('../../../images/emma/default/background/func_bg.gif?build31910');
-}
diff --git a/AgileWorks/WebContent/css/tm/default/tm-table.css b/AgileWorks/WebContent/css/tm/default/tm-table.css
deleted file mode 100644
index 08e28547fb22e5f3453808d091c891b49f0a6808..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/tm/default/tm-table.css
+++ /dev/null
@@ -1,113 +0,0 @@
-/*
- * emma-table.css?build31910
- *
- * アプリケーション「EMMA」で使用されるテーブル関連のCSSセレクタを定義します
- */
-
-.aw-tm-table {
- width: 100%;
- margin: 0px;
- padding: 0px;
- border-collapse: collapse;
- background: #fff;
-}
-
-.aw-tm-table th {
- margin: 0px;
- padding: 1px 1px 1px 2px;
- height: 24px;
- vertical-align: middle;
- color: #444444;
- border: 1px solid #aaaaaa;
- text-align: left;
- background: url('../../../images/tm/default/background/table_header_bg.gif?build31910') bottom repeat-x #ebebeb;
-}
-
-.aw-tm-table th.caption {
- margin: 0px;
- padding: 10px;
- vertical-align: middle;
- color: #444444;
- border: 1px solid #aaaaaa;
- text-align: center;
- background: url('../../../images/tm/default/background/table_caption_bg.gif?build31910') center repeat-x;
-}
-
-.aw-tm-table td {
- margin: 0px;
- padding: 1px 1px 1px 2px;
- height: 24px;
- vertical-align: middle;
- color: #444444;
- border: 1px solid #aaaaaa;
- text-align: left;
-}
-
-/* テーブル(内部) */
-.aw-tm-table table.inner {
- width: 98%;
- margin: 0px;
- padding: 0px;
- border-collapse: collapse;
-}
-
-.aw-tm-table table.inner td {
- margin: 0px;
- padding: 5px 5px 5px 0px;
- border: none;
- text-align: left;
-}
-
-.aw-tm-table table.inner td.uline {
- border-bottom: 1px dotted #aaa;
-}
-
-/* 偶数行色指定(TR) */
-.aw-tm-table .even {
- background: #f5f5f5;
-}
-
-/* マーカー指定(SPAN) */
-.aw-tm-table .ar01 {
- padding: 0px 0px 0px 12px;
- background: url('../../../images/tm/default/icon/arrow01.gif?build31910') left center no-repeat;
-}
-
-.aw-tm-table-unurged {
- width: 100%;
- margin: 0px;
- padding: 0px;
- border-collapse: collapse;
- background: #fff;
-}
-
-.aw-tm-table-unurged th.label {
- margin: 0px;
- padding: 1px 1px 1px 2px;
- height: 24px;
- vertical-align: middle;
- color: #444444;
- border: 1px solid #aaaaaa;
- text-align: left;
- background: url('../../../images/tm/default/background/table_header_bg.gif?build31910') bottom repeat-x #ebebeb;
-}
-
-.aw-tm-table-unurged th.caption {
- margin: 0px;
- padding: 10px;
- vertical-align: middle;
- color: #444444;
- border: 1px solid #aaaaaa;
- text-align: center;
- background: url('../../../images/tm/default/background/table_caption_bg.gif?build31910') center repeat-x;
-}
-
-.aw-tm-table-unurged td.item {
- margin: 0px;
- padding: 1px 1px 1px 2px;
- height: 24px;
- vertical-align: middle;
- color: #444444;
- border: 1px solid #aaaaaa;
- text-align: left;
-}
diff --git a/AgileWorks/WebContent/css/tm/default/tm.css b/AgileWorks/WebContent/css/tm/default/tm.css
deleted file mode 100644
index caa077069227d9cb9c4ce0687d49a2a013dd92c3..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/tm/default/tm.css
+++ /dev/null
@@ -1,387 +0,0 @@
-/*
- * emma.css?build31910
- *
- * アプリケーション「EMMA」で使用されるCSSセレクタを定義します
- */
-
-/*
- * ヘッダ
- */
-.aw-tm-header {
- height: 59px;
- margin: 0px;
- padding: 0px;
- border: 0px;
- background: url(../../../images/tm/default/header/header_bg.gif?build31910) top repeat-x ;
-}
-
-/*
- * ヘッダ左部
- */
-.aw-tm-header-left {
- float: left;
- margin: 0px;
- padding: 0px 67px 0px 0px;
- overflow: hidden;
-}
-
-/*
- * ヘッダ左部のロゴ画像
- */
-.aw-tm-header-left img {
- padding: 0px;
- border: none;
- width: 183px;
- height: 59px;
-}
-
-/*
- * ヘッダ右部
- */
-.aw-tm-header-right {
- float: right;
- margin: 0px 0px 0px 0px;
- padding: 0px 0px 0px 25px;
- background: url(../../../images/tm/default/header/link_bg.gif?build31910) left top no-repeat;
- color:#666666;
- background-color: #242b32;
- font-size:12px;
-}
-
-/*
- * ヘッダ右部のアカウント情報
- */
-.aw-tm-header-right-account {
- float:left;
- padding:0px 10px 2px 0px;
- display: inline;
- background-color: #242b32;
- color:#ffffff;
-}
-
-/*
- * ヘッダ右部のリンク
- */
-.aw-tm-header-right-link {
- float: left;
-}
-
-/*
- * ヘッダ右部のリンクで使用されるUL要素
- */
-.aw-tm-header-right-link ul {
- margin: 0px;
- padding: 2px;
- list-style: none;
- background-color: #242b32;
-}
-
-/*
- * ヘッダ右部のリンクで使用されるLI要素
- */
-.aw-tm-header-right-link li {
- margin: 0px;
- padding: 0px 5px 0px 0px;
- display: inline;
-}
-
-/*
- * ヘッダ右部のリンクで使用されるA要素
- */
-.aw-tm-header-right-link a { color: #ffffff; text-decoration:underline; }
-.aw-tm-header-right-link a:link { color: #ffffff; text-decoration:underline; }
-.aw-tm-header-right-link a:active { color: #ffffff; text-decoration:underline; }
-.aw-tm-header-right-link a:visited { color: #ffffff; text-decoration:underline; }
-.aw-tm-header-right-link a:hover { color: #ffffff; text-decoration:underline; }
-
-/*
- * ヘッダメニュー
- */
-.aw-tm-header-menu {
- margin: 0px;
- padding: 7px 0px 0px 0px;
- font-size: 12px;
- text-align: center;
-}
-
-/*
- * ヘッダメニューで使用されるUL要素
- */
-.aw-tm-header-menu ul {
- list-style: none;
- margin: 0px;
- padding: 0px;
-}
-
-/*
- * ヘッダメニューで使用されるLI要素
- */
-.aw-tm-header-menu li {
- float: left;
- margin: 0px 2px 0px 0px;
- padding: 0px;
- white-space: nowrap;
- /*
- border-top: 1px solid #273038;
- border-left: 1px solid #273038;
- border-right: 1px solid #273038;
- */
-}
-
-.aw-tm-header-menu a {
- outline: 0;
-}
-
-/*
- * ヘッダメニューのセパレータに当たるLI要素
- */
-.aw-tm-header-menu-hlinks-separator {
- display:none;
-}
-
-/*
- * ヘッダメニューのA要素に適用されるクラスセレクタ
- */
-/*
-.aw-tm-header-menu a,
-.aw-tm-header-menu a:link,
-.aw-tm-header-menu a:active,
-.aw-tm-header-menu a:visited,
-.aw-tm-header-menu a.crt {
- width: 100px;
- height: 20px;
- margin: 0px;
- padding: 5px 5px 0px 5px;
- display: block;
- color: #333;
- font-weight: bold;
- text-decoration: none;
- background: url(../../../images/tm/default/header/menu_bg.gif?build31910) left top no-repeat;
- vertical-align: middle;
- line-height: 15px;
-}
-
-.aw-tm-header-menu a.crt {
- color: #fff;
- background: url(../../../images/tm/default/header/menu_bg_over.gif?build31910) left top no-repeat;
-}
-
-.aw-tm-header-menu a:hover {
- color: #fff;
- background: url(../../../images/tm/default/header/menu_bg_over.gif?build31910) left top no-repeat;
-}*/
-
-/*
- * ヘッダメニュー「全般管理」のA要素
- */
-.aw-tm-header-menu-hlinks-li-general a,
-.aw-tm-header-menu-hlinks-li-general a:link,
-.aw-tm-header-menu-hlinks-li-general a:active,
-.aw-tm-header-menu-hlinks-li-general a:visited {
- color:#ffffff;
- width: 60px;
- height: 50px;
- display: block;
- overflow: hidden;
- line-height:80px;
- background: URL(../../../images/common/icon/object/general30.gif?build31910) center top no-repeat;
-}
-.aw-tm-header-menu-hlinks-li-general a:hover {
- color:#e16745;
- text-decoration:none;
- width: 60px;
- height: 50px;
- display: block;
- overflow: hidden;
- background: URL(../../../images/common/icon/object/general30.gif?build31910) center top no-repeat;
-}
-
-/*
- * ヘッダメニュー「顧客管理」のA要素
- */
-.aw-tm-header-menu-hlinks-li-customer a,
-.aw-tm-header-menu-hlinks-li-customer a:link,
-.aw-tm-header-menu-hlinks-li-customer a:active,
-.aw-tm-header-menu-hlinks-li-customer a:visited {
- color:#ffffff;
- width: 60px;
- height: 50px;
- display: block;
- overflow: hidden;
- line-height:80px;
- background: URL(../../../images/common/icon/object/customer30.gif?build31910) center top no-repeat;
-}
-.aw-tm-header-menu-hlinks-li-customer a:hover {
- color:#e16745;
- text-decoration:none;
- width: 60px;
- height: 50px;
- display: block;
- overflow: hidden;
- background: URL(../../../images/common/icon/object/customer30.gif?build31910) center top no-repeat;
-}
-
-/*
- * ヘッダメニュー「テナントスペース管理」のA要素
- */
-.aw-tm-header-menu-hlinks-li-tenement a,
-.aw-tm-header-menu-hlinks-li-tenement a:link,
-.aw-tm-header-menu-hlinks-li-tenement a:active,
-.aw-tm-header-menu-hlinks-li-tenement a:visited {
- color:#ffffff;
- width: 110px;
- height: 50px;
- display: block;
- overflow: hidden;
- line-height:80px;
- background: URL(../../../images/common/icon/object/tenement30.gif?build31910) center top no-repeat;
-}
-.aw-tm-header-menu-hlinks-li-tenement a:hover {
- color:#e16745;
- text-decoration:none;
- width: 110px;
- height: 50px;
- display: block;
- overflow: hidden;
- background: URL(../../../images/common/icon/object/tenement30.gif?build31910) center top no-repeat;
-}
-
-/*
- * ヘッダメニュー「テナント管理」のA要素
- */
-.aw-tm-header-menu-hlinks-li-tenant a,
-.aw-tm-header-menu-hlinks-li-tenant a:link,
-.aw-tm-header-menu-hlinks-li-tenant a:active,
-.aw-tm-header-menu-hlinks-li-tenant a:visited {
- color:#ffffff;
- width: 70px;
- height: 50px;
- display: block;
- overflow: hidden;
- line-height:80px;
- background: URL(../../../images/common/icon/object/tenant30.gif?build31910) center top no-repeat;
-}
-.aw-tm-header-menu-hlinks-li-tenant a:hover {
- color:#e16745;
- text-decoration:none;
- width: 70px;
- height: 50px;
- display: block;
- overflow: hidden;
- background: URL(../../../images/common/icon/object/tenant30.gif?build31910) center top no-repeat;
-}
-
-/*
- * ヘッダとコンテンツを区切るバー
- */
-.aw-tm-headerbar {
- clear: both;
- height: 12px;
- margin: 0px;
- padding: 0px;
- background: url(../../../images/tm/default/header/bar_bg.gif?build31910) left repeat-x #fff;
- font-size:0px;
-}
-
-/*
- * ヘッダとコンテンツを区切るバー
- */
-.aw-tm-headerbar-standby {
- clear: both;
- height: 12px;
- margin: 0px;
- padding: 0px;
- background: url(../../../images/tm/default/header/bar_bg_standby.gif?build31910) left repeat-x #fff;
- font-size:0px;
-}
-
-/*
- * ワークベンチレイヤー
- */
-.aw-tm-workbench {
- position:absolute;
- width:250px;
-}
-
-/*
- * タブレイヤー
- */
-.aw-tm-tabs {
- height:30px;
- padding-left:10px;
- background-color:#333333;
- font-size:12px;
-}
-
-.aw-tm-menu {
- height: 38px;
- margin: 0px;
- padding-left:10px;
-}
-
-.aw-tm-func {
- height:30px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#808080;
- background-image:url('../../../images/tm/default/background/func_bg.gif?build31910');
-}
-
-.aw-tm-menubar-layer {
- height:30px;
- display:inline;
- float:left;
-}
-
-.aw-tm-menubar {
-
-}
-
-.aw-tm-contents {
- padding:5px;
-}
-
-.aw-tm-page {
- position:relative;
- top:0px;
- left:250px;
- width:10px;
- height:10px;
- overflow:hidden;
-}
-
-/*
- * ドラッグオブジェクト
- */
-.aw-dragger {
- position: absolute;
- cursor: col-resize;
- border-style: solid;
- filter:alpha(opacity=00);
- -moz-opacity:0;
- opacity:0;
- z-index: 1;
-}
-
-/*
- * ドラッグオブジェクト(ドラッグ中)
- */
-.aw-dragger-dragging {
- position: absolute;
- cursor: col-resize;
- border-style: solid;
- border-color: #242b32;
- z-index: 1;
-}
-
-/*
- * インフォメーション
- */
-.aw-info {
- margin:10px 0px 10px 0px;
- padding:10px 0px 10px 30px;
- background-color:#ffffd5;
- background-image:url(../../../images/common/icon/etc/info20.gif?build31910);
- background-repeat:no-repeat;
- background-position:5px center;
-}
diff --git a/AgileWorks/WebContent/css/tm/default/tree-ext.css b/AgileWorks/WebContent/css/tm/default/tree-ext.css
deleted file mode 100644
index df6efa807db725ac5cfada17df2cdab7435584fa..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/tm/default/tree-ext.css
+++ /dev/null
@@ -1,7 +0,0 @@
-.ygtvtd_current {
- background-color:#697683;
- border-style:solid;
- border-width:1px;
- border-color:#000000;
- padding:0px 0px 0px 0px;
-}
diff --git a/AgileWorks/WebContent/css/tm/default/workbench.css b/AgileWorks/WebContent/css/tm/default/workbench.css
deleted file mode 100644
index 672c3682b34d8a70ad8df3c82c020f3c871144c3..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/css/tm/default/workbench.css
+++ /dev/null
@@ -1,71 +0,0 @@
-
-.workbench-layer {
- border-style:outset;
- border-width:0px 1px 0px 0px;
- border-color:#333333;
- white-space:nowrap;
-}
-
-/* ワークベンチメニュー:オリジナル */
-.workbench-item {
- width:240px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#666666;
- overflow:hidden;
- background-image: url( '../../../images/emma/default/background/workbench_item.gif?build31910' );
- font-weight: bold;
- line-height:30px;
- color:#000000;
- cursor:pointer;
- padding-left: 10px;
- font-size:120%;
-}
-
-.workbench-item-current {
- width:240px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#666666;
- overflow:hidden;
- background-image: url( '../../../images/emma/default/background/workbench_item.gif?build31910' );
- font-weight: bold;
- line-height:30px;
- color:#000000;
- cursor:pointer;
- padding-left: 10px;
- font-size:120%;
-}
-
-.workbench-item-mouseover {
- width:240px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#666666;
- overflow:hidden;
- background-image: url( '../../../images/emma/default/background/workbench_item_over.gif?build31910' );
- font-weight: bold;
- line-height:30px;
- color:#ffffff;
- cursor:pointer;
- padding-left: 10px;
- font-size:120%;
-}
-
-.workbench-content {
- width:230px;
- border-style:solid;
- border-width:0px 0px 1px 0px;
- border-color:#666666;
- overflow:auto;
- padding:10px;
-}
-
-.workbench-content-control {
- width:224px;
- background-color:#ffffff;
- border-style:solid;
- border-width:3px;
- border-color:#aaaaaa;
- overflow:auto;
-}
diff --git a/AgileWorks/WebContent/devJsp/aclistbench.jsp b/AgileWorks/WebContent/devJsp/aclistbench.jsp
deleted file mode 100644
index 7907824cf47a63dc78ddd097b1523c1a9ba7ccdf..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/devJsp/aclistbench.jsp
+++ /dev/null
@@ -1,75 +0,0 @@
-<%@page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
-
-<%@page import="jp.atled.workscape.site.diagnosis.AccessListBenchmarkHelper"%>
-<%@page import="jp.atled.workscape.model.org.UnitAppointmentSearchTarget"%>
-<%@page import="java.util.Map"%>
-<%@page import="java.util.HashMap"%>
-<%@page import="jp.atled.workscape.model.accesscontrol.UnitSearchDirection"%>
-<%@page import="jp.atled.workscape.model.org.UnitFindDirection"%>
-<%@page import="jp.atled.workscape.util.BlankUtil"%>
-<%@page import="jp.atled.workscape.site.diagnosis.BenchResult"%>
-<%@page import="jp.atled.workscape.site.diagnosis.FindDocBenchHelper"%>
-
-<%
- final AccessListBenchmarkHelper helper = new AccessListBenchmarkHelper();
-
- String user = "";
- String error = "";
- int times = 1;
-
- BenchResult findResult = null;
-
- if (request.getMethod().toUpperCase().equals("POST")) {
- user = request.getParameter("user");
- times = Integer.parseInt("0"+BlankUtil.valueOf(request.getParameter("times")));
-
- try {
- helper.setCondition(user);
- findResult = helper.benchFind(times);
- } catch (Exception e) {
- error = e.getMessage();
- e.printStackTrace();
- }
- }
-%>
-
-
-
-
-
- Org サービスベンチマーク(アクセス権限取得)
-
-
-
-
-
-結果
-
-<%=error%>
-
-
- <%
- if (findResult != null) {
- %>
-
- find
- <%=findResult.getResult()%> 件
- <%=findResult.getMsec()%> msec
-
- <%
- }
- %>
-
-
-
diff --git a/AgileWorks/WebContent/devJsp/archive.jsp b/AgileWorks/WebContent/devJsp/archive.jsp
deleted file mode 100644
index 635b200ffcf9e3f83a6887413885d62a4faec935..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/devJsp/archive.jsp
+++ /dev/null
@@ -1,84 +0,0 @@
-<%@page import="jp.atled.workscape.hibernate.HibernateUtil"%>
-<%@page import="java.io.ByteArrayInputStream"%>
-<%@page import="org.apache.commons.io.IOUtils"%>
-<%@page import="jp.atled.workscape.util.IOUtil"%>
-<%@page import="jp.atled.workscape.dictionary.Dictionary"%>
-<%@page import="jp.atled.workscape.service.imp.ImportContext"%>
-<%@page import="org.apache.commons.fileupload.util.Streams"%>
-<%@page import="jp.atled.workscape.service.imp.ImportKey"%>
-<%@page import="jp.atled.workscape.service.imp.ImportFacade"%>
-<%@page import="jp.atled.workscape.service.archive.ArchiveFacade"%>
-<%@page import="jp.atled.workscape.service.ServiceFactory"%>
-<%@page import="org.apache.commons.fileupload.FileItemStream"%>
-<%@page import="org.apache.commons.fileupload.servlet.ServletFileUpload"%>
-<%@page import="org.apache.commons.fileupload.FileItemIterator"%>
-<%@page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
-
-<%! // class def
-%>
-
-<% // main
- if (ServletFileUpload.isMultipartContent(request)) {
- final Object owner = HibernateUtil.beginTransaction(HibernateUtil.getSession());
- final ImportFacade facade = ServiceFactory.getInstance(ImportFacade.class);
-
- final FileItemIterator it = new ServletFileUpload().getItemIterator(request);
- String code = null;
- byte[] file = null;
- while (it.hasNext()) {
- final FileItemStream fis = it.next();
- if (!fis.isFormField()) {
- file = IOUtils.toByteArray(fis.openStream());
- } else if ("code".equalsIgnoreCase(fis.getFieldName())) {
- code = Streams.asString(fis.openStream());
- }
- }
- final ImportContext context = facade.createContext(ImportKey.ArchivedDoc);
- context.putParameter(Dictionary.Code, code);
- facade.execute(context, new ByteArrayInputStream(file));
- HibernateUtil.commitTransaction(owner);
- }
-%>
-
-
-
-
-
- Archive Manager
-
-
-
-
-
-
- Archive Manager
-
-
- ログアウト
-
-
-
-
- エクスポート
-
-
- インポート
-
-
-
\ No newline at end of file
diff --git a/AgileWorks/WebContent/devJsp/clearCache.jsp b/AgileWorks/WebContent/devJsp/clearCache.jsp
deleted file mode 100644
index a1e00002ccfae779bfa85a6afd05819d90ee77ba..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/devJsp/clearCache.jsp
+++ /dev/null
@@ -1,97 +0,0 @@
-<%@page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
-
-<%@page import="jp.atled.workscape.util.ValueUtil"%>
-<%@page import="jp.atled.workscape.service.contents.ContentsFacade"%>
-<%@page import="jp.atled.workscape.service.ServiceFactory" %>
-<%@page import="jp.atled.workscape.site.account.AccountManager" %>
-<%@page import="jp.atled.workscape.site.account.Account" %>
-<%@page import="jp.atled.workscape.site.registry.RegistryManager" %>
-<%@page import="jp.atled.workscape.site.registry.RegistryManagerImpl" %>
-<%@page import="jp.atled.workscape.site.registry.Key" %>
-<%@page import="jp.atled.workscape.site.registry.Directory" %>
-<%@page import="jp.atled.workscape.broker.BrokerAction" %>
-<%@page import="jp.atled.workscape.dictionary.Dictionary" %>
-<%@page import="jp.atled.workscape.util.BlankUtil" %>
-<%@page import="jp.atled.workscape.hibernate.HibernateUtil" %>
-<%@page import="org.hibernate.Session" %>
-<%@page import="jp.atled.workscape.util.ThreadSafeStringBuffer" %>
-<%@page import="jp.atled.workscape.util.StringUtil" %>
-
-<%@page import="java.util.List" %>
-<%@page import="java.lang.IllegalArgumentException" %>
-<%@page import="jp.atled.workscape.model.workflow.WorkflowManager"%>
-<%@page import="java.util.Date"%>
-<%@page import="java.text.SimpleDateFormat"%>
-
-<%!
-private void clearRuleCache() {
- WorkflowManager wfm = ServiceFactory.getInstance(WorkflowManager.class);
- wfm.clearRuleCache();
-}
-private void clearContentsCache(int cacheSize) {
- ContentsFacade cf = ServiceFactory.getInstance(ContentsFacade.class);
- cf.initContentsCache(cacheSize);
-}
-%>
-
-<%
- String clearRuleCache = BlankUtil.valueOf(request.getParameter("submit.clearRuleCache"));
- String message = "";
- if (!BlankUtil.isBlank(clearRuleCache)) {
- clearRuleCache();
- message = "●ルールキャッシュをクリアしました " + new SimpleDateFormat("yyyy/MM/dd HH:mm:ss.SSS").format(new Date());
- }
- String clearContentsCache = BlankUtil.valueOf(request.getParameter("submit.clearContentsCache"));
- if (!BlankUtil.isBlank(clearContentsCache)) {
- int cacheSize = ValueUtil.getValueWrapper(request.getParameter("contentsCacheSize"), 200);
- if (cacheSize < 1 || cacheSize > 1000) {
- message = "キャッシュサイズが不正です。";
- } else {
- clearContentsCache(cacheSize);
- message = "●コンテンツキャッシュをクリアしました " + new SimpleDateFormat("yyyy/MM/dd HH:mm:ss.SSS").format(new Date());
- }
- }
-
- ContentsFacade cm = ServiceFactory.getInstance(ContentsFacade.class);
- int contentsCacheSize = cm.getContentsCacheSize();
-%>
-
-
-
-
-
- AgileWorks Cache Clear Tool
-
-
-
-
-
-
- AgileWorks Cache Clear Tool
-
-
- ログアウト
-
-
-
-
- <%if (!BlankUtil.isBlank(message)) { %>
- <%=message %>
- <%} %>
-
-
diff --git a/AgileWorks/WebContent/devJsp/docbench.jsp b/AgileWorks/WebContent/devJsp/docbench.jsp
deleted file mode 100644
index f25ed66c9eca20a1fbef45d8a9cf6df316f66a4d..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/devJsp/docbench.jsp
+++ /dev/null
@@ -1,79 +0,0 @@
-<%@page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
-<%@page import="jp.atled.workscape.site.diagnosis.OrgBenchmarkHelper"%>
-<%@page import="jp.atled.workscape.site.diagnosis.FindDocBenchHelper"%>
-<%@page import="jp.atled.workscape.model.org.UnitAppointmentSearchTarget"%>
-<%@page import="java.util.Map"%>
-<%@page import="java.util.HashMap"%>
-<%@page import="jp.atled.workscape.model.accesscontrol.UnitSearchDirection"%>
-<%@page import="jp.atled.workscape.model.org.UnitFindDirection"%>
-<%@page import="jp.atled.workscape.util.BlankUtil"%>
-<%@page import="jp.atled.workscape.site.diagnosis.BenchResult"%>
-
-<%! %>
-<%
- final FindDocBenchHelper helper = new FindDocBenchHelper();
-
- String user = "";
- String error = "";
- int times = 1;
-
- BenchResult findResult = null;
- BenchResult findLimitResult = null;
-
- if (request.getMethod().toUpperCase().equals("POST")) {
- user = request.getParameter("user");
- times = Integer.parseInt("0"+BlankUtil.valueOf(request.getParameter("times")));
-
- try {
- helper.setCondition(user);
- findResult = helper.benchFind(times, null, null);
- findLimitResult = helper.benchFind(times, 1, 10);
- } catch (Exception e) {
- error = e.getMessage();
- e.printStackTrace();
- }
- }
- %>
-
-
-
- Doc検索ベンチマーク
-
-
-
-
-
- 結果
-
- <%=error %>
-
-
- <% if (findResult != null) { %>
-
- find
- <%=findResult.getResult() %> 件
- <%=findResult.getMsec() %> msec
-
- <% } %>
- <% if (findLimitResult != null) { %>
-
- find(limit 10)
- <%=findLimitResult.getResult() %> 件
- <%=findLimitResult.getMsec() %> msec
-
- <% } %>
-
-
-
diff --git a/AgileWorks/WebContent/devJsp/docindex.jsp b/AgileWorks/WebContent/devJsp/docindex.jsp
deleted file mode 100644
index 0777a7ca243c896d1fea7754fc27aedff61537be..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/devJsp/docindex.jsp
+++ /dev/null
@@ -1,67 +0,0 @@
-<%@page import="jp.atled.workscape.util.StringUtil"%>
-<%@page import="org.apache.commons.lang.ArrayUtils"%>
-<%@page import="jp.atled.workscape.util.ArrayUtil"%>
-<%@page import="jp.atled.adlerblick.content.Document"%>
-<%@page import="jp.atled.workscape.util.CollectionUtil"%>
-<%@page import="java.util.Collections"%>
-<%@page import="jp.atled.workscape.impl.service.find.docindex.DocIndexDataProviderDocFacadeImpl"%>
-<%@page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
-<%@page import="jp.atled.workscape.service.find.index.DocQuery"%>
-<%@page import="jp.atled.workscape.service.find.index.DocIndexManager"%>
-<%@page import="jp.atled.workscape.service.ServiceFactory"%>
-<%@page import="jp.atled.workscape.site.diagnosis.OrgBenchmarkHelper"%>
-<%@page import="jp.atled.workscape.site.diagnosis.FindDocBenchHelper"%>
-<%@page import="jp.atled.workscape.model.org.UnitAppointmentSearchTarget"%>
-<%@page import="java.util.Map"%>
-<%@page import="java.util.HashMap"%>
-<%@page import="jp.atled.workscape.model.accesscontrol.UnitSearchDirection"%>
-<%@page import="jp.atled.workscape.model.org.UnitFindDirection"%>
-<%@page import="jp.atled.workscape.util.BlankUtil"%>
-<%@page import="jp.atled.workscape.site.diagnosis.BenchResult"%>
-
-<%! %>
-<%
-String docId = BlankUtil.valueOf(request.getParameter("docId"));
-Document doc = null;
-String error = "";
-if (!BlankUtil.isBlank(docId)) {
- doc = CollectionUtil.first(new DocIndexDataProviderDocFacadeImpl().loadDocuments(Collections.singletonList(Long.valueOf(docId))));
-}
- %>
-
-
-
- 全文検索 インデックス生成
-
-
-
-
-
- 結果
-
- <%=error %>
-
-
- <% if (doc != null) { %>
-
- FormName
- <%=doc.getFormName()%>
-
-
- IndexValue
-
- <%=StringUtil.join("\n", doc.getDefaultIndexValues()) %>
-
-
- <% } %>
-
-
-
diff --git a/AgileWorks/WebContent/devJsp/docsearch.jsp b/AgileWorks/WebContent/devJsp/docsearch.jsp
deleted file mode 100644
index c394c194829ee876a51098f15fc81e6a40617f04..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/devJsp/docsearch.jsp
+++ /dev/null
@@ -1,64 +0,0 @@
-<%@page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
-<%@page import="jp.atled.workscape.service.find.index.DocQuery"%>
-<%@page import="jp.atled.workscape.service.find.index.DocIndexManager"%>
-<%@page import="jp.atled.workscape.service.ServiceFactory"%>
-<%@page import="jp.atled.workscape.site.diagnosis.OrgBenchmarkHelper"%>
-<%@page import="jp.atled.workscape.site.diagnosis.FindDocBenchHelper"%>
-<%@page import="jp.atled.workscape.model.org.UnitAppointmentSearchTarget"%>
-<%@page import="java.util.Map"%>
-<%@page import="java.util.HashMap"%>
-<%@page import="jp.atled.workscape.model.accesscontrol.UnitSearchDirection"%>
-<%@page import="jp.atled.workscape.model.org.UnitFindDirection"%>
-<%@page import="jp.atled.workscape.util.BlankUtil"%>
-<%@page import="jp.atled.workscape.site.diagnosis.BenchResult"%>
-
-<%! %>
-<%
-String queryString = BlankUtil.valueOf(request.getParameter("query"));
-DocQuery docQuery = null;
-String error = "";
-if (!BlankUtil.isBlank(queryString)) {
- docQuery = ServiceFactory.getInstance(DocIndexManager.class).getIndex().parse(queryString);
-}
- %>
-
-
-
- 全文検索 解析
-
-
-
-
-
- 結果
-
- <%=error %>
-
-
- <% if (docQuery != null) { %>
-
- find
- <%=docQuery.count() %> 件
-
-
- query
- <%=docQuery.toString() %>
-
-
- explain
-
- <%=docQuery.explain() %>
-
-
- <% } %>
-
-
-
diff --git a/AgileWorks/WebContent/devJsp/iframe-object/doc-overlay.jsp b/AgileWorks/WebContent/devJsp/iframe-object/doc-overlay.jsp
deleted file mode 100644
index 9beff2bb3618c881bf6696c8237a2b6591dbe4dd..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/devJsp/iframe-object/doc-overlay.jsp
+++ /dev/null
@@ -1,5 +0,0 @@
-<%@page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
-
-
-
-
diff --git a/AgileWorks/WebContent/devJsp/iframe-object/doc.jsp b/AgileWorks/WebContent/devJsp/iframe-object/doc.jsp
deleted file mode 100644
index a813e3550bbcb9ebefb900ed20ed31abab05e3ae..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/devJsp/iframe-object/doc.jsp
+++ /dev/null
@@ -1,4 +0,0 @@
-<%@page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
-
-
-
diff --git a/AgileWorks/WebContent/devJsp/iframe-object/doc.pdf b/AgileWorks/WebContent/devJsp/iframe-object/doc.pdf
deleted file mode 100644
index bb308fba220a0a32b693191264a14da745355517..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/devJsp/iframe-object/doc.pdf and /dev/null differ
diff --git a/AgileWorks/WebContent/devJsp/iframe-object/dummy.html b/AgileWorks/WebContent/devJsp/iframe-object/dummy.html
deleted file mode 100644
index 44b21bec5324f9938ea51e338adc0122a9f0c24b..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/devJsp/iframe-object/dummy.html
+++ /dev/null
@@ -1,2 +0,0 @@
-
-
\ No newline at end of file
diff --git a/AgileWorks/WebContent/devJsp/iframe-object/index.jsp b/AgileWorks/WebContent/devJsp/iframe-object/index.jsp
deleted file mode 100644
index aadb9153d91a414156064119f564f9194241870d..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/devJsp/iframe-object/index.jsp
+++ /dev/null
@@ -1,51 +0,0 @@
-<%@page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
-
-
- 埋め込みオブジェクト x レイヤー表示
-
-
-
-
-
-レイヤー#1 (iFrame)
-
-
-
-
-レイヤー#2 (object)
-
-
-
-
-レイヤー#3 (object in iFrame)
-
-
-
-
-レイヤー#4 (iFrame visibility:hidden)
-
-
-
-
-
-レイヤー#1’ (iFrame with shims)
-
-
-
-
-
-レイヤー#2’ (object with shims)
-
-
-
-
-
-レイヤー#3’ (object in iFrame with shims)
-
-
-
-
-
-
\ No newline at end of file
diff --git a/AgileWorks/WebContent/devJsp/iframe-object/sample1.html b/AgileWorks/WebContent/devJsp/iframe-object/sample1.html
deleted file mode 100644
index 4dde6d662adb37647e1b53894f16aa3df1857ea2..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/devJsp/iframe-object/sample1.html
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
-
-
- click me
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/AgileWorks/WebContent/devJsp/iframe-object/transparent.html b/AgileWorks/WebContent/devJsp/iframe-object/transparent.html
deleted file mode 100644
index 7aab9ba74765852150a16865340b70061b6bccae..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/devJsp/iframe-object/transparent.html
+++ /dev/null
@@ -1,3 +0,0 @@
-
-半透明
-
\ No newline at end of file
diff --git a/AgileWorks/WebContent/devJsp/memory.jsp b/AgileWorks/WebContent/devJsp/memory.jsp
deleted file mode 100644
index a382eff4c269b26ebfad6e388b3fff21757af479..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/devJsp/memory.jsp
+++ /dev/null
@@ -1,27 +0,0 @@
-
-<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
-<%@ page import="java.util.*" %>
-<%@ page import="jp.atled.workscape.util.*" %>
-<% Runtime runtime = Runtime.getRuntime(); %>
-<%
- if ("POST".equalsIgnoreCase(request.getMethod())) {
- System.gc();
- }
-%>
-
-
- メモリー状態
-
-
-
-
-
\ No newline at end of file
diff --git a/AgileWorks/WebContent/devJsp/orgbench.jsp b/AgileWorks/WebContent/devJsp/orgbench.jsp
deleted file mode 100644
index 1b5f5754cd7d3d4feabbd23c4e153750729402a1..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/devJsp/orgbench.jsp
+++ /dev/null
@@ -1,183 +0,0 @@
-<%@page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
-<%@page import="jp.atled.workscape.site.diagnosis.OrgBenchmarkHelper"%>
-<%@page import="jp.atled.workscape.model.org.UnitAppointmentSearchTarget"%>
-<%@page import="java.util.Map"%>
-<%@page import="java.util.HashMap"%>
-<%@page import="jp.atled.workscape.model.accesscontrol.UnitSearchDirection"%>
-<%@page import="jp.atled.workscape.model.org.UnitFindDirection"%>
-<%@page import="jp.atled.workscape.util.BlankUtil"%>
-<%@page import="jp.atled.workscape.site.diagnosis.BenchResult"%>
-
-<%
- final OrgBenchmarkHelper helper = new OrgBenchmarkHelper();
- final String[] targets = helper.enumToStrAr(UnitAppointmentSearchTarget.values());
- final String[] matches = helper.enumToStrAr(AbstractLikeExpression.Match.values());
- final String[] unitdirs = helper.enumToStrAr(UnitFindDirection.values());
-
- String role = "";
- String unit = "";
- String dir = "";
- String keyword = "";
- String target = "";
- String error = "";
- String match = "";
- int times = 1;
-
- BenchResult countResult = null;
- BenchResult findResult = null;
- BenchResult findElectorResult = null;
- String sql = null;
-
- if (request.getMethod().toUpperCase().equals("POST")) {
- role = request.getParameter("role");
- unit = request.getParameter("unit");
- dir = request.getParameter("unitdir");
- keyword = request.getParameter("keyword");
- target = request.getParameter("target");
- match = request.getParameter("match");
- times = Integer.parseInt("0" + BlankUtil.valueOf(request.getParameter("times")));
-
- try {
- helper.setFilterCondition(unit, dir, role, keyword, target, match);
- countResult = helper.benchCount(times);
- findResult = helper.benchFind(times);
- findElectorResult = helper.benchFindElector(times);
- sql = findElectorResult.getSql();
- } catch (Exception e) {
- error = e.getMessage();
- e.printStackTrace();
- }
- }
-%>
-
-
-<%@page import="jp.atled.workscape.service.find.filter.AbstractLikeExpression.Match"%>
-<%@page import="jp.atled.workscape.service.find.filter.AbstractLikeExpression.Match"%>
-<%@page import="jp.atled.workscape.service.find.filter.AbstractLikeExpression"%>
-
- Org サービスベンチマーク(キーワード検索系)
-
-
-
-
-
- 結果
-
- <%=error%>
-
-
- <%
- if (countResult != null) {
- %>
-
- count
- <%=countResult.getResult()%> 件
- <%=countResult.getMsec()%> msec
-
- <%
- }
- %>
- <%
- if (findResult != null) {
- %>
-
- find
- <%=findResult.getResult()%> 件
- <%=findResult.getMsec()%> msec
-
- <%
- }
- %>
- <%
- if (findElectorResult != null) {
- %>
-
- findElector
- <%=findElectorResult.getResult()%> 件
- <%=findElectorResult.getMsec()%> msec
-
- <%
- }
- %>
-
- <%
- if (sql != null) {
- %>
- <%=sql%>
- <%
- }
- %>
-
-
diff --git a/AgileWorks/WebContent/devJsp/regedit.jsp b/AgileWorks/WebContent/devJsp/regedit.jsp
deleted file mode 100644
index 1fecd6da287e46a33d4f464165109d14e3c20e98..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/devJsp/regedit.jsp
+++ /dev/null
@@ -1,317 +0,0 @@
-<%@page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
-
-<%@page import="jp.atled.workscape.service.ServiceFactory" %>
-<%@page import="jp.atled.workscape.site.account.AccountManager" %>
-<%@page import="jp.atled.workscape.site.account.Account" %>
-<%@page import="jp.atled.workscape.site.registry.RegistryManager" %>
-<%@page import="jp.atled.workscape.site.registry.RegistryManagerImpl" %>
-<%@page import="jp.atled.workscape.site.registry.Key" %>
-<%@page import="jp.atled.workscape.site.registry.Directory" %>
-<%@page import="jp.atled.workscape.broker.BrokerAction" %>
-<%@page import="jp.atled.workscape.dictionary.Dictionary" %>
-<%@page import="jp.atled.workscape.util.BlankUtil" %>
-<%@page import="jp.atled.workscape.hibernate.HibernateUtil" %>
-<%@page import="org.hibernate.Session" %>
-<%@page import="jp.atled.workscape.util.ThreadSafeStringBuffer" %>
-<%@page import="jp.atled.workscape.util.StringUtil" %>
-
-<%@page import="java.util.List" %>
-<%@page import="java.lang.IllegalArgumentException" %>
-
-<%!
-private final SimpleDateFormat DATE_FORMAT = new SimpleDateFormat("yyyy-MM-dd");
-private String register(String entry, String delete, String path, String key, String valStr) {
- String message = "";
- if (BlankUtil.isBlank(entry) && BlankUtil.isBlank(delete)) {
- //更新ではない
- return "";
- }
- if (BlankUtil.isBlank(path)) {
- return "Pathが空です。";
- }
- if (BlankUtil.isBlank(key)) {
- return "Keyが空です。";
- }
- RegistryManager reg = ServiceFactory.getInstance(RegistryManager.class);
- Directory dir = reg.getDirectory(path);
- if (!BlankUtil.isBlank(entry)) {
- if (BlankUtil.isBlank(valStr)) {
- //return "Valueが空です。";
- }
- Dictionary dic = null;
- try {
- dic = Dictionary.valueOf(key);
- } catch (Exception e) {
- }
- if (dic == null) {
- dic = Dictionary.Name;
- message = "KeyはDictionaryに定義されていないので注意: " + key;
- }
- boolean fail = false;
- try {
- switch (dic.getDataType()) {
- case BIGDECIMAL:
- dir.setValue(dic.getDataType(), key, new java.math.BigDecimal(valStr));
- break;
- case BOOLEAN:
- dir.setValue(dic.getDataType(), key, Boolean.valueOf(valStr));
- break;
- case BYTE:
- dir.setValue(dic.getDataType(), key, Byte.valueOf(valStr));
- break;
- case DATE:
- dir.setValue(dic.getDataType(), key, DATE_FORMAT.parse(valStr));
- break;
- case DATETIME:
- fail = true;
- break;
- case INT:
- dir.setValue(dic.getDataType(), key, Integer.valueOf(valStr));
- break;
- case LONG:
- dir.setValue(dic.getDataType(), key, Long.valueOf(valStr));
- break;
- case SHORT:
- fail = true;
- break;
- case STRING255:
- case TEXT:
- dir.setValue(dic.getDataType(), key, valStr);
- break;
- default:
- fail = true;
- }
- } catch (Exception e) {
- fail = true;
- }
- if (fail) {
- return "指定された値は、このKeyで扱えません: " + valStr + ", LLAP Type=" + dic.getDataType().toString();
- }
- }
- if (!BlankUtil.isBlank(delete)) {
- if (dir == null) {
- return "ディレクトリが見つかりません: " + path;
- }
- try {
- dir.deleteValue(key);
- } catch (Exception e) {
- return e.getLocalizedMessage();
- }
- }
- return message;
-}
-
-public static String escapeDQuote(final String value) {
- if (value == null || value.length() == 0) {
- return "";
- }
- StringBuffer result = ThreadSafeStringBuffer.get();
- for (int i = 0; i < value.length(); ++i) {
- char c = value.charAt(i);
- switch (c) {
- case '"':
- result.append(""");
- break;
- default:
- result.append(c);
- }
- }
- return result.toString();
-}
-%>
-
-<%
- Session sess = HibernateUtil.getSession();
- Object owner = HibernateUtil.beginTransaction(sess);
- try {
- String paramEntry = BlankUtil.valueOf(request.getParameter("submit.entry"));
- String paramDelete = BlankUtil.valueOf(request.getParameter("submit.delete"));
- String paramPath = BlankUtil.valueOf(request.getParameter("param.path"));
- String paramKey = BlankUtil.valueOf(request.getParameter("param.key"));
- String paramValStr = BlankUtil.valueOf(request.getParameter("param.value"));
- String paramRoot = BlankUtil.valueOf(request.getParameter("param.root"));
- String paramFilter = BlankUtil.valueOf(request.getParameter("param.filter"));
- String message = register(paramEntry, paramDelete, paramPath, paramKey, paramValStr);
- HibernateUtil.commitTransaction(owner);
-%>
-
-
-
-<%@page import="java.text.SimpleDateFormat"%>
-<%@page import="oracle.sql.DATE"%>
-<%@page import="java.util.Date"%>
-
-
-
- AgileWorks RegEdit
-
-
-
-
-
-
-
- 簡易レジストリエディタ
-
- ログアウト
-
-
-
-
- <%= message %>
-
-
-
-
-
-
\ No newline at end of file
diff --git a/AgileWorks/WebContent/devJsp/routing.jsp b/AgileWorks/WebContent/devJsp/routing.jsp
deleted file mode 100644
index c71dfbc6fb73a2a98688ac65e9ef5091a1ee1df5..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/devJsp/routing.jsp
+++ /dev/null
@@ -1,167 +0,0 @@
-<%@page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
-
-<%@page import="jp.atled.workscape.util.BlankUtil"%>
-<%@page import="jp.atled.workscape.model.workflow.state.BaggageDao"%>
-<%@page import="jp.atled.workscape.service.ServiceFactory"%>
-<%@page import="jp.atled.workscape.model.workflow.state.Baggage"%>
-<%@page import="jp.atled.workscape.model.workflow.WorkflowManager"%>
-<%@page import="jp.atled.workscape.model.workflow.rule.Rule"%>
-<%@page import="jp.atled.workscape.service.rule.view.Form"%>
-<%@page import="jp.atled.workscape.service.rule.view.Layout"%>
-<%@page import="jp.atled.workscape.model.workflow.rule.RuleNode"%>
-<%@page import="jp.atled.workscape.model.workflow.rule.RuleBaggage"%>
-<%@page import="jp.atled.workscape.service.rule.view.ViewFacade"%>
-<%@page import="jp.atled.workscape.model.workflow.rule.RuleBranch"%>
-<%@page import="jp.atled.workscape.model.workflow.state.Cursor"%>
-<%@page import="jp.atled.workscape.livelet.navi.Judgement"%>
-<%@page import="jp.atled.workscape.model.workflow.state.Node"%>
-
-
-<%
- String docIdString = request.getParameter("docId");
- if (docIdString == null) {
- docIdString = "";
- }
-
- Long docId = (!BlankUtil.isBlank(docIdString)) ? Long.valueOf(docIdString) : null;
-%>
-
-
- 書類ID:
-
-
-
-
-
-<%
- if (BlankUtil.isAvailable(docId)) {
- BaggageDao baggageDao = ServiceFactory.getInstance(BaggageDao.class);
- Baggage baggage = baggageDao.getByDocId(docId);
-
- if (baggage != null) {
- Form form = baggage.getContent().getForm();
- Layout layout = baggage.getContent().getLayout();
- Rule rule = ServiceFactory.getInstance(WorkflowManager.class).getRule(baggage.getRuleId());
-%>
-
-
-書類詳細
-
- 書類ID <%= baggage.getContent().getDocId() %>
-
- フォーム <%= form.getId() + " / " + form.getCode() + " / " + form.getName() + " (" + layout.getVersionString() + ")" %>
-
-
- 回付ルール <%= rule.getId() + " / " + rule.getCode() + " / " + rule.getName() + " / " + rule.getVersionString() %>
-
-
-
-
-回付ルール詳細
-
- id <%= rule.getId() %>
-
-
- version <%= rule.getVersionString() %>
-
-
- recType <%= rule.getRecType() %>
-
-
- nodeList
-
-
-
- id code name nodeClass nodeIndex baggages
-
- <% for (RuleNode node : rule.getNodeList()) { %>
-
- <%= node.getId() %>
- <%= node.getCode() %>
- <%= node.getName() %>
- <%= node.getNodeClass() %>
- <%= node.getNodeIndex() %>
-
- <% if (!BlankUtil.isBlank(node.getBaggageList())) { %>
-
-
- id layout branches
-
- <% for (RuleBaggage ruleBaggage : node.getBaggageList()) { %>
-
- <%= ruleBaggage.getId() %>
-
- <%
- if (ruleBaggage.getLayoutId() != null) {
- Layout baggageLayout = ServiceFactory.getInstance(ViewFacade.class).getLayout(ruleBaggage.getLayoutId());
-
- out.print(baggageLayout.getId() + " / " + baggageLayout.getParent().getCode() + " / " + baggageLayout.getParent().getName() + " (" + baggageLayout.getVersionString() + ")");
- }
- %>
-
-
- <% if (!BlankUtil.isBlank(ruleBaggage.getBranchList())) { %>
-
-
- id compareOperator compareFieldId compareValue targetClass targetFieldId
-
- <% for (RuleBranch branch : ruleBaggage.getBranchList()) { %>
-
- <%= branch.getId() %>
- <%= branch.getCompareOperator() %>
- <%= branch.getCompareFieldId() %>
- <%= branch.getCompareValue() %>
- <%= branch.getTargetClass() %>
- <%= branch.getTargetFieldId() %>
-
- <% } %>
-
- <% } %>
-
-
- <% } %>
-
- <% } %>
-
-
- <% } %>
-
-
-
-
-
-<%
- Cursor cursor = baggage.getFirstStage().getFirstCursor();
- cursor.routing(new Judgement(baggage));
-%>
-
-
-ルーティング結果(分岐判定後)
-
- id code name nodeClass nodeIndex
-
-
-<%
- for (Node node : cursor.route()) {
- RuleNode ruleNode = node.rule();
-%>
-
-
- <%= ruleNode.getId() %>
- <%= ruleNode.getCode() %>
- <%= ruleNode.getName() %>
- <%= ruleNode.getNodeClass() %>
- <%= ruleNode.getNodeIndex() %>
-
-
-<% } %>
-
-
-<%
- }
- }
-%>
\ No newline at end of file
diff --git a/AgileWorks/WebContent/devJsp/saml2Config.jsp b/AgileWorks/WebContent/devJsp/saml2Config.jsp
deleted file mode 100644
index a83e99ebc0c8e7fb7a3903778e46930b9a50d4d4..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/devJsp/saml2Config.jsp
+++ /dev/null
@@ -1,196 +0,0 @@
-<%@page import="org.apache.commons.io.FilenameUtils"%>
-<%@page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
-
-<%@page import="java.net.URLDecoder"%>
-<%@page import="java.util.List"%>
-<%@page import="java.io.InputStream"%>
-<%@page import="java.io.File"%>
-<%@page import="java.net.URLDecoder"%>
-
-<%@page import="jp.atled.workscape.service.ServiceFactory" %>
-<%@page import="jp.atled.workscape.site.account.Account"%>
-<%@page import="jp.atled.workscape.broker.BrokerAction"%>
-<%@page import="jp.atled.workscape.site.account.AccountManager"%>
-<%@page import="jp.atled.workscape.service.storage.StorageFacade"%>
-<%@page import="jp.atled.workscape.service.storage.StorageFile"%>
-<%@page import="jp.atled.workscape.exception.SystemException"%>
-<%@page import="jp.atled.workscape.impl.service.storage.StoragePurpose"%>
-<%@page import="jp.atled.workscape.service.facilitator.RegistryFacilitator"%>
-<%@page import="jp.atled.workscape.util.BlankUtil"%>
-<%@page import="jp.atled.workscape.util.StringUtil"%>
-<%@page import="jp.atled.workscape.util.FileSystemUtil"%>
-<%@page import="jp.atled.workscape.dictionary.Dictionary"%>
-<%@page import="jp.atled.workscape.hibernate.HibernateUtil"%>
-<%@page import="jp.atled.workscape.service.federation.Saml2Service"%>
-
-<%@page import="org.apache.commons.fileupload.FileItemFactory"%>
-<%@page import="org.apache.commons.fileupload.servlet.ServletFileUpload"%>
-<%@page import="org.apache.commons.fileupload.disk.DiskFileItemFactory"%>
-<%@page import="org.apache.commons.fileupload.FileItem"%>
-<%@page import="org.apache.commons.lang.RandomStringUtils"%>
-
-<%@page import="org.hibernate.Session"%>
-
-<%!
- public static String DEFAULT_NAMEID_FORMAT = "urn:oasis:names:tc:SAML:1.1:nameid-format:unspecified";
-%>
-
-<%
- String metaData = null;
- String certFile = null;
- String nameIdFormat = null;
- String idpUrl = null;
- String logoutUrl = null;
-
- Session hibernateSession = HibernateUtil.getSession();
- Object owner = HibernateUtil.beginTransaction(hibernateSession);
- try {
- //ロジック
- StorageFacade strg = ServiceFactory.getInstance(StorageFacade.class);
- RegistryFacilitator faci = new RegistryFacilitator("1");
-
- if (ServletFileUpload.isMultipartContent(request)) {
- FileItemFactory factory = new DiskFileItemFactory();
- ServletFileUpload upload = new ServletFileUpload(factory);
- List items = upload.parseRequest(request);
- for (FileItem item : items) {
- if (item.isFormField()) continue;
- String fileName = FilenameUtils.getName(item.getName());
- String ext = StringUtil.getExtension(fileName);
- String saveFileName = RandomStringUtils.randomAlphanumeric(16) + "." + ext;
- InputStream in = null;
- try {
- in = item.getInputStream();
- StorageFile strgFile = strg.savePermanentFile(in, fileName, saveFileName, null, StoragePurpose.General);
- //System.out.println(strgFile.getKey());
- String certKey = faci.getValue("Saml2", Dictionary.Saml2X509CertFileKey);
- if (!BlankUtil.isBlank(certKey)) {
- StorageFile existFile = strg.getFileByEncodedKey(URLDecoder.decode(certKey, "UTF-8"));
- strg.removeFile(existFile);
- }
- faci.setValue("Saml2", Dictionary.Saml2X509CertFileKey, strgFile.getKey());
- } finally {
- FileSystemUtil.closeCalmly(in);
- }
- //System.out.println("(・∀・)");
- break;
- }
- }
-
- if (!BlankUtil.isBlank(request.getParameter("entry"))) {
- idpUrl = request.getParameter("idpUrl");
- logoutUrl = request.getParameter("logoutUrl");
- nameIdFormat = request.getParameter("nameIdFormat");
- if (!BlankUtil.isBlank(idpUrl)) {
- faci.setValue("Saml2", Dictionary.Saml2IdpUrl, idpUrl);
- }
- faci.setValue("Saml2", Dictionary.Saml2LogoutUrl, logoutUrl);
- if (!BlankUtil.isBlank(nameIdFormat)) {
- faci.setValue("Saml2", Dictionary.Saml2NameIdFormat, nameIdFormat);
- }
- }
-
- idpUrl = faci.getValue("Saml2", Dictionary.Saml2IdpUrl);
- logoutUrl = faci.getValue("Saml2", Dictionary.Saml2LogoutUrl);
- nameIdFormat = faci.getValue("Saml2", Dictionary.Saml2NameIdFormat);
-
- if (BlankUtil.isBlank(idpUrl)) {
- idpUrl = "";
- }
- if (BlankUtil.isBlank(logoutUrl)) {
- logoutUrl = "";
- }
- if (BlankUtil.isBlank(nameIdFormat)) {
- nameIdFormat = DEFAULT_NAMEID_FORMAT;
- }
-
- String certKey = faci.getValue("Saml2", Dictionary.Saml2X509CertFileKey);
- //System.out.println(certKey);
- if (!BlankUtil.isBlank(certKey)) {
- StorageFile existFile = strg.getFileByEncodedKey(URLDecoder.decode(certKey, "UTF-8"));
- certFile = existFile.getName();
- }
-
- String requestUrl = request.getRequestURL().toString();
- if (requestUrl.indexOf("?") >= 0) {
- requestUrl = StringUtil.getStartToTargetString(requestUrl, "?");
- }
- int p = requestUrl.indexOf("devJsp/");
- requestUrl = requestUrl.substring(0, p-1);
- requestUrl += "/Broker/PicusSAML2";
- Saml2Service saml2 = ServiceFactory.getInstance(Saml2Service.class);
- metaData = saml2.generateEntityDescriptor(requestUrl);
- } finally {
- HibernateUtil.commitTransaction(owner);
- HibernateUtil.closeAllSessions();
- }
-%>
-
-
-
-
-
- SAML2設定サンプルJSP
-
-
-
-
-
-
- SAML2設定サンプルJSP
-
-
- ログアウト
-
-
-
-
-
-
ID Provider連携設定
-
-
-
-
-
-
- <%if (!BlankUtil.isBlank(metaData)) {%>
-
-
ID Providerに登録するAgileWorksのメタデータ(EntryDescriptor)ファイルの内容
- <%=metaData%>
-
-
- <%}%>
-
-
ID Provider公開鍵証明書ファイル(X.509公開鍵証明書)
-
- <%if (!BlankUtil.isBlank(certFile)) {%>登録済みのファイル:<%=certFile%> <%}%>
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/devJsp/saml2Conv.jsp b/AgileWorks/WebContent/devJsp/saml2Conv.jsp
deleted file mode 100644
index 4a3c1ad4b4e1b6aa4eaa7886db8cc3909673a7e6..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/devJsp/saml2Conv.jsp
+++ /dev/null
@@ -1,79 +0,0 @@
-<%@page import="jp.atled.workscape.util.Saml2RequestUtil"%>
-<%@page import="org.apache.commons.io.FilenameUtils"%>
-<%@page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
-
-<%@page import="java.net.URLDecoder"%>
-<%@page import="java.util.List"%>
-<%@page import="java.io.InputStream"%>
-<%@page import="java.io.File"%>
-<%@page import="java.net.URLDecoder"%>
-
-<%@page import="jp.atled.workscape.service.ServiceFactory" %>
-<%@page import="jp.atled.workscape.site.account.Account"%>
-<%@page import="jp.atled.workscape.broker.BrokerAction"%>
-<%@page import="jp.atled.workscape.site.account.AccountManager"%>
-<%@page import="jp.atled.workscape.service.storage.StorageFacade"%>
-<%@page import="jp.atled.workscape.service.storage.StorageFile"%>
-<%@page import="jp.atled.workscape.exception.SystemException"%>
-<%@page import="jp.atled.workscape.impl.service.storage.StoragePurpose"%>
-<%@page import="jp.atled.workscape.service.facilitator.RegistryFacilitator"%>
-<%@page import="jp.atled.workscape.util.BlankUtil"%>
-<%@page import="jp.atled.workscape.util.StringUtil"%>
-<%@page import="jp.atled.workscape.util.FileSystemUtil"%>
-<%@page import="jp.atled.workscape.dictionary.Dictionary"%>
-<%@page import="jp.atled.workscape.hibernate.HibernateUtil"%>
-<%@page import="jp.atled.workscape.service.federation.Saml2Service"%>
-
-<%@page import="org.apache.commons.fileupload.FileItemFactory"%>
-<%@page import="org.apache.commons.fileupload.servlet.ServletFileUpload"%>
-<%@page import="org.apache.commons.fileupload.disk.DiskFileItemFactory"%>
-<%@page import="org.apache.commons.fileupload.FileItem"%>
-<%@page import="org.apache.commons.lang.RandomStringUtils"%>
-
-<%@page import="org.hibernate.Session"%>
-
-<%!
-// static
-%>
-
-<%
-String base64 = BlankUtil.valueOf(request.getParameter("base64"));
-String xml = BlankUtil.valueOf(request.getParameter("xml"));
-
-if (!BlankUtil.isBlank(base64)) {
- if (base64.contains("%")) {
- base64 = URLDecoder.decode(base64, "UTF-8");
- }
- xml = "";
- try {
- xml = Saml2RequestUtil.decode(base64, true);
- } catch (Exception e) {
- xml = Saml2RequestUtil.decode(base64, false);
- }
-} else if (!BlankUtil.isBlank(xml)) {
- base64 = Saml2RequestUtil.encodeForRedirect(xml);
-}
-%>
-
-
-
-
-
- SAML2設定サンプルJSP
-
-
-
- SAML2 リクエストコンバータ
-
-
-
- <%=xml %>
-
-
-
-
-
diff --git a/AgileWorks/WebContent/devJsp/session.jsp b/AgileWorks/WebContent/devJsp/session.jsp
deleted file mode 100644
index 302bc10afb4d8235287ddddac0846968016e6c8d..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/devJsp/session.jsp
+++ /dev/null
@@ -1,32 +0,0 @@
-<%@page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
-
-
-<%
- if ("POST".equalsIgnoreCase(request.getMethod())) {
- if (!BlankUtil.isBlank(request.getParameter("maxInactiveInterval"))) {
- session.setMaxInactiveInterval(Integer.parseInt(request.getParameter("maxInactiveInterval")));
- }
- }
-%>
-
-<%@page import="jp.atled.workscape.util.BlankUtil"%>
-
-
- セッション情報
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/devJsp/statistics/css/asc.gif b/AgileWorks/WebContent/devJsp/statistics/css/asc.gif
deleted file mode 100644
index 74157867f25acbc146704d43399d6c3605ba7724..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/devJsp/statistics/css/asc.gif and /dev/null differ
diff --git a/AgileWorks/WebContent/devJsp/statistics/css/bg.gif b/AgileWorks/WebContent/devJsp/statistics/css/bg.gif
deleted file mode 100644
index fac668fcf42af844a3af0a239fa638ddbc08443c..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/devJsp/statistics/css/bg.gif and /dev/null differ
diff --git a/AgileWorks/WebContent/devJsp/statistics/css/desc.gif b/AgileWorks/WebContent/devJsp/statistics/css/desc.gif
deleted file mode 100644
index 3b30b3c58eabdb47a1c420ad03c8e30b966cc858..0000000000000000000000000000000000000000
Binary files a/AgileWorks/WebContent/devJsp/statistics/css/desc.gif and /dev/null differ
diff --git a/AgileWorks/WebContent/devJsp/statistics/css/style.css b/AgileWorks/WebContent/devJsp/statistics/css/style.css
deleted file mode 100644
index eb41f70c0f896f5367bf6a08da8f0579f101abe1..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/devJsp/statistics/css/style.css
+++ /dev/null
@@ -1,39 +0,0 @@
-/* tables */
-table.tablesorter {
- font-family:arial;
- background-color: #CDCDCD;
- margin:10px 0pt 15px;
- font-size: 8pt;
- width: 100%;
- text-align: left;
-}
-table.tablesorter thead tr th, table.tablesorter tfoot tr th {
- background-color: #e6EEEE;
- border: 1px solid #FFF;
- font-size: 8pt;
- padding: 4px;
-}
-table.tablesorter thead tr .header {
- background-image: url(bg.gif);
- background-repeat: no-repeat;
- background-position: center right;
- cursor: pointer;
-}
-table.tablesorter tbody td {
- color: #3D3D3D;
- padding: 4px;
- background-color: #FFF;
- vertical-align: top;
-}
-table.tablesorter tbody tr.odd td {
- background-color:#F0F0F6;
-}
-table.tablesorter thead tr .headerSortUp {
- background-image: url(asc.gif);
-}
-table.tablesorter thead tr .headerSortDown {
- background-image: url(desc.gif);
-}
-table.tablesorter thead tr .headerSortDown, table.tablesorter thead tr .headerSortUp {
-background-color: #8dbdd8;
-}
diff --git a/AgileWorks/WebContent/devJsp/statistics/hibernate.jsp b/AgileWorks/WebContent/devJsp/statistics/hibernate.jsp
deleted file mode 100644
index 6b37dd5d2889d2ce6f63d6c6774d0f8266ecf93f..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/devJsp/statistics/hibernate.jsp
+++ /dev/null
@@ -1,64 +0,0 @@
-<%@page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
-
-
-<%@page import="java.util.List"%>
-<%@page import="jp.atled.workscape.hibernate.HibernateUtil"%>
-<%@page import="jp.atled.workscape.model.Pair"%>
-<%@page import="org.hibernate.stat.QueryStatistics"%>
-
-<%
- HibernateUtil.startStatistics();
- if ("1".equals(request.getParameter("clear"))) {
- HibernateUtil.clearStatistics();
- response.sendRedirect(request.getRequestURI());
- }
-%>
-
-
-
- Hibernate 診断情報
-
-
-
-
-
-
-
-
-
-
-
- HB [回]
- Avg [msec]
- Total [msec]
- Total Recs
- クエリー
-
-
-
-<% for (final Pair p : HibernateUtil.getSystemQueryStatistics()) { %>
-
- <%=p.getSecond().getExecutionCount()%>
- <%=p.getSecond().getExecutionAvgTime()%>
- <%=p.getSecond().getExecutionAvgTime() * p.getSecond().getExecutionCount()%>
- <%=p.getSecond().getExecutionRowCount()%>
- <%=p.getFirst()%>
-
-<% } %>
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/devJsp/statistics/js/jquery.tablesorter.min.js b/AgileWorks/WebContent/devJsp/statistics/js/jquery.tablesorter.min.js
deleted file mode 100644
index b8605df1e7277e2f88237eb7bee7c7e38d80a232..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/devJsp/statistics/js/jquery.tablesorter.min.js
+++ /dev/null
@@ -1,4 +0,0 @@
-
-(function($){$.extend({tablesorter:new
-function(){var parsers=[],widgets=[];this.defaults={cssHeader:"header",cssAsc:"headerSortUp",cssDesc:"headerSortDown",cssChildRow:"expand-child",sortInitialOrder:"asc",sortMultiSortKey:"shiftKey",sortForce:null,sortAppend:null,sortLocaleCompare:true,textExtraction:"simple",parsers:{},widgets:[],widgetZebra:{css:["even","odd"]},headers:{},widthFixed:false,cancelSelection:true,sortList:[],headerList:[],dateFormat:"us",decimal:'/\.|\,/g',onRenderHeader:null,selectorHeaders:'thead th',debug:false};function benchmark(s,d){log(s+","+(new Date().getTime()-d.getTime())+"ms");}this.benchmark=benchmark;function log(s){if(typeof console!="undefined"&&typeof console.debug!="undefined"){console.log(s);}else{alert(s);}}function buildParserCache(table,$headers){if(table.config.debug){var parsersDebug="";}if(table.tBodies.length==0)return;var rows=table.tBodies[0].rows;if(rows[0]){var list=[],cells=rows[0].cells,l=cells.length;for(var i=0;i1){arr=arr.concat(checkCellColSpan(table,headerArr,row++));}else{if(table.tHead.length==1||(cell.rowSpan>1||!r[row+1])){arr.push(cell);}}}return arr;};function checkHeaderMetadata(cell){if(($.metadata)&&($(cell).metadata().sorter===false)){return true;};return false;}function checkHeaderOptions(table,i){if((table.config.headers[i])&&(table.config.headers[i].sorter===false)){return true;};return false;}function checkHeaderOptionsSortingLocked(table,i){if((table.config.headers[i])&&(table.config.headers[i].lockedOrder))return table.config.headers[i].lockedOrder;return false;}function applyWidget(table){var c=table.config.widgets;var l=c.length;for(var i=0;i');$("tr:first td",table.tBodies[0]).each(function(){colgroup.append($(' ').css('width',$(this).width()));});$(table).prepend(colgroup);};}function updateHeaderSortCount(table,sortList){var c=table.config,l=sortList.length;for(var i=0;i b["+i+"]) ? 1 : 0));";};function makeSortTextDesc(i){return"((b["+i+"] < a["+i+"]) ? -1 : ((b["+i+"] > a["+i+"]) ? 1 : 0));";};function makeSortNumeric(i){return"a["+i+"]-b["+i+"];";};function makeSortNumericDesc(i){return"b["+i+"]-a["+i+"];";};function sortText(a,b){if(table.config.sortLocaleCompare)return a.localeCompare(b);return((ab)?1:0));};function sortTextDesc(a,b){if(table.config.sortLocaleCompare)return b.localeCompare(a);return((ba)?1:0));};function sortNumeric(a,b){return a-b;};function sortNumericDesc(a,b){return b-a;};function getCachedSortType(parsers,i){return parsers[i].type;};this.construct=function(settings){return this.each(function(){if(!this.tHead||!this.tBodies)return;var $this,$document,$headers,cache,config,shiftDown=0,sortOrder;this.config={};config=$.extend(this.config,$.tablesorter.defaults,settings);$this=$(this);$.data(this,"tablesorter",config);$headers=buildHeaders(this);this.config.parsers=buildParserCache(this,$headers);cache=buildCache(this);var sortCSS=[config.cssDesc,config.cssAsc];fixColumnWidth(this);$headers.click(function(e){var totalRows=($this[0].tBodies[0]&&$this[0].tBodies[0].rows.length)||0;if(!this.sortDisabled&&totalRows>0){$this.trigger("sortStart");var $cell=$(this);var i=this.column;this.order=this.count++%2;if(this.lockedOrder)this.order=this.lockedOrder;if(!e[config.sortMultiSortKey]){config.sortList=[];if(config.sortForce!=null){var a=config.sortForce;for(var j=0;j 0){$this.trigger("sorton",[config.sortList]);}applyWidget(this);});};this.addParser=function(parser){var l=parsers.length,a=true;for(var i=0;i
-
-
-<%@page import="java.util.List"%>
-<%@page import="jp.atled.workscape.hibernate.HibernateUtil"%>
-<%@page import="jp.atled.workscape.hibernate.SQLQueryStatistics"%>
-<%@page import="jp.atled.workscape.model.Pair"%>
-
-<%
- HibernateUtil.startStatistics();
- if ("1".equals(request.getParameter("clear"))) {
- HibernateUtil.clearStatistics();
- response.sendRedirect(request.getRequestURI());
- }
-%>
-
-
-
- SQL 診断情報
-
-
-
-
-
-
-
-
-
-
-
- DB [回]
- クエリー
-
-
-
-<% for (final Pair p : HibernateUtil.getSQLQueryStatistics()) { %>
-
- <%=p.getSecond().getExecutionCount()%>
- <%=p.getFirst()%>
-
-<% } %>
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgileWorks/WebContent/devJsp/storage.jsp b/AgileWorks/WebContent/devJsp/storage.jsp
deleted file mode 100644
index e82ee654895751f809fdc51e78a308c7613ed596..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/devJsp/storage.jsp
+++ /dev/null
@@ -1,129 +0,0 @@
-<%@page import="java.lang.reflect.Constructor"%>
-<%@page import="org.apache.commons.beanutils.ConstructorUtils"%>
-<%@page import="java.io.File"%>
-<%@page import="java.util.List"%>
-<%@page import="jp.atled.workscape.broker.ServletContextUtil"%>
-<%@page import="jp.atled.workscape.resource.SystemProperty"%>
-<%@page import="java.util.Collections"%>
-<%@page import="jp.atled.workscape.impl.service.storage.StorageFileDbFileImpl"%>
-<%@page import="jp.atled.workscape.impl.service.storage.StorageFileBlobImpl"%>
-<%@page import="java.util.ArrayList"%>
-<%@page import="jp.atled.workscape.dao.storage.StorageFileEntityDao"%>
-<%@page import="jp.atled.workscape.impl.service.storage.StorageFileEntity"%>
-<%@page import="java.io.FileNotFoundException"%>
-<%@page import="jp.atled.workscape.service.storage.StorageManager"%>
-<%@page import="jp.atled.workscape.impl.service.storage.StorageManagerFSImpl"%>
-<%@page import="jp.atled.workscape.impl.service.storage.StorageManagerDbImpl"%>
-<%@page import="jp.atled.workscape.impl.service.storage.StoragePurpose"%>
-<%@page import="java.net.URLDecoder"%>
-<%@page import="jp.atled.workscape.service.ServiceFactory" %>
-<%@page import="jp.atled.workscape.site.account.Account"%>
-<%@page import="jp.atled.workscape.broker.BrokerAction"%>
-<%@page import="jp.atled.workscape.site.account.AccountManager"%>
-<%@page import="jp.atled.workscape.util.BlankUtil"%>
-<%@page import="jp.atled.workscape.service.storage.StorageFacade"%>
-<%@page import="jp.atled.workscape.service.storage.StorageFile"%>
-<%@page import="jp.atled.workscape.exception.SystemException"%>
-<%@page import="jp.atled.workscape.impl.service.storage.StorageKey"%>
-<%@page import="java.net.URLEncoder"%>
-<%@page import="jp.atled.workscape.impl.service.storage.StorageFacadeImpl"%>
-<%@page import="jp.atled.workscape.util.StringUtil"%>
-<%@page import="java.util.Arrays"%>
-<%@page import="org.apache.commons.io.FilenameUtils"%>
-<%@page import="java.util.Locale"%>
-<%@page import="jp.atled.workscape.util.EnumUtil" %>
-<%@page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
-
-<%!
- private static Iterable listAllFiles(final String repository) throws Exception {
- final List files = new ArrayList();
- for (final StoragePurpose purpose : StoragePurpose.values()) {
- for (final StorageFile file : listFiles(repository, purpose)) {
- files.add(file);
- }
- }
- return files;
- }
-
- private static Iterable listFiles(final String repository, final StoragePurpose purpose) throws Exception {
- final StorageFacade fa = ServiceFactory.getInstance(StorageFacade.class);
- if (StringUtil.isNumeric(repository)) {
- return fa.getPermanentFileList(Integer.parseInt(repository), purpose);
- } else if (Character.toUpperCase(repository.charAt(0)) == 'S') {
- return fa.getAllSystemFileList(purpose);
- } else if (Character.toUpperCase(repository.charAt(0)) == 'B') {
- return fa.getAllBackupFileList(purpose);
- } else {
- return Collections.emptyList();
- }
- }
-%>
-
-<%
- final StoragePurpose purpose = EnumUtil.getEnum(StoragePurpose.class, request.getParameter("purpose"));
- final String repository = StringUtil.nvl(request.getParameter("repository"), "0");
- final Iterable files;
- if (purpose == null) {
- files = listAllFiles(repository);
- } else {
- files = listFiles(repository, purpose);
- }
-%>
-
-
-
-
-
-
-
- Storage Path Analyzer
-
-
-
-
-
-
- Storage Path Analyzer
-
-
- ログアウト
-
-
-
- パスを指定
-
-
-
-
-
- 結果:
-
-
- ファイル名
- サイズ
- 種類
- キー
-
- <%for (final StorageFile strgFile : files) { %>
-
- <%
- long sz = -1L;
- try {
- if (strgFile.getSize() != null) {
- sz = strgFile.getSize();
- }
- } catch (NullPointerException e) {}
- %>
- <%=strgFile.getName() %>
- <%=sz %>
- <%=strgFile.getPurpose().toString() %>
- <%=strgFile.getKey()%>
-
- <%} %>
-
-
-
-
\ No newline at end of file
diff --git a/AgileWorks/WebContent/devJsp/storagePathAnalyzer.jsp b/AgileWorks/WebContent/devJsp/storagePathAnalyzer.jsp
deleted file mode 100644
index 18e6b324e09064ba72d321a246e0e654d3ba3cd5..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/devJsp/storagePathAnalyzer.jsp
+++ /dev/null
@@ -1,127 +0,0 @@
-<%@page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
-
-<%@page import="java.net.URLDecoder"%>
-
-<%@page import="jp.atled.workscape.service.ServiceFactory" %>
-<%@page import="jp.atled.workscape.site.account.Account"%>
-<%@page import="jp.atled.workscape.broker.BrokerAction"%>
-<%@page import="jp.atled.workscape.site.account.AccountManager"%>
-<%@page import="jp.atled.workscape.util.BlankUtil"%>
-<%@page import="jp.atled.workscape.service.storage.StorageFacade"%>
-<%@page import="jp.atled.workscape.service.storage.StorageFile"%>
-<%@page import="jp.atled.workscape.exception.SystemException"%>
-<%@page import="jp.atled.workscape.impl.service.storage.StorageKey"%>
-<%@page import="java.net.URLEncoder"%>
-<%@page import="jp.atled.workscape.impl.service.storage.StorageFacadeImpl"%>
-<%@page import="jp.atled.workscape.util.StringUtil"%>
-<%@page import="java.util.Arrays"%>
-<%@page import="org.apache.commons.io.FilenameUtils"%>
-<%@page import="java.util.Locale"%>
-
-<%!
- private static String formatKey(final String s) {
- if (s == null || !s.contains("\0")) return s;
- final StorageKey key = StorageKey.parse(s);
- return String.format("%s @ %s", key.getSubPath(), key.getPurpose());
- }
-%>
-
-<%
- final String encodedStoragePath = BlankUtil.valueOf(request.getParameter("text.encodedStoragePath"));
- final String fullPath = BlankUtil.valueOf(request.getParameter("text.fullPath"));
-
- StorageFacade sf = ServiceFactory.getInstance(StorageFacade.class);
- String message = null;
- String key = encodedStoragePath;
- if (BlankUtil.isBlank(key) && !BlankUtil.isBlank(fullPath)) {
- key = StorageFacadeImpl.encodeSafeKey(
- StringUtil.join("\0", Arrays.asList("A", FilenameUtils.getName(fullPath), fullPath))
- );
- }
- StorageFile strgFile = null;
- if (!BlankUtil.isBlank(key)) {
- try {
- strgFile = sf.getFileByEncodedKey(key);
- } catch (SystemException e) {
- message = e.getLocalizedMessage(Locale.JAPANESE);
- }
- }
-
-%>
-
-
-
-
-
-
-
- Storage Path Analyzer
-
-
-
-
-
-
-
- Storage Path Analyzer
-
-
- ログアウト
-
-
-
- エンコード済みキーを入力:
-
-
-
-
- ファイルのフルパスを入力:
-
-
-
-
- <%if (!BlankUtil.isBlank(message)) { %>
- <%=message %>
- <%} %>
- <%if (strgFile != null) { %>
- 結果:
-
-
- ファイル名
- <%=strgFile.getName() %>
-
-
- キー(BASE64)
- <%=strgFile.getKey()%>
-
-
- キー(BASE64 with HTTP Encode)
- <%=URLEncoder.encode(strgFile.getKey(), "UTF-8")%>
-
-
- キー(整形済み)
- <%=formatKey(strgFile.getKey())%>
-
- <%if (strgFile.getSize() != null) { %>
-
- サイズ
- <%
- long sz = strgFile.getSize();
- sz /= (1024*1024);
- %>
- <%=sz %> MB
-
- <%} %>
-
- 種類
- <%=strgFile.getPurpose().toString() %>
-
-
- <%} %>
-
-
-
diff --git a/AgileWorks/WebContent/devJsp/timeconv.jsp b/AgileWorks/WebContent/devJsp/timeconv.jsp
deleted file mode 100644
index 0d39e2cdfbf5603bf2dca797e337156b9f2159b8..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/devJsp/timeconv.jsp
+++ /dev/null
@@ -1,40 +0,0 @@
-<%@page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
-
-<%@page import="java.util.Date"%>
-<%@page import="java.text.SimpleDateFormat"%>
-<%
-
-final SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
-
-class Value {
- Date d;
- Long getLong() { return d != null ? d.getTime() : null; }
- String getDate() { return d != null ? sdf.format(d) : ""; }
-}
-
-Value v = new Value();
-
-if ("POST".equalsIgnoreCase(request.getMethod())) {
- if (request.getParameter("submit").contains("date")) {
- v.d = sdf.parse(request.getParameter("date"));
- } else {
- v.d = new Date(Long.parseLong(request.getParameter("long")));
- }
-}
-
-%>
-
-
-時刻型変換
-
-
-
-時刻型変換
-
-
-
-
-
\ No newline at end of file
diff --git a/AgileWorks/WebContent/devJsp/tokengen.jsp b/AgileWorks/WebContent/devJsp/tokengen.jsp
deleted file mode 100644
index 4e6329181e84b66cd367fc654f446feea3e136f9..0000000000000000000000000000000000000000
--- a/AgileWorks/WebContent/devJsp/tokengen.jsp
+++ /dev/null
@@ -1,48 +0,0 @@
-
-<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
-
-<%@page import="java.util.*" %>
-<%@page import="jp.atled.workscape.util.*" %>
-<%@page import="org.apache.commons.lang.*" %>
-<%@page import="org.apache.commons.codec.binary.Hex" %>
-
-<%
- final String token = request.getParameter("token");
- final String secret = request.getParameter("secret");
-
- String result = "";
- if (!StringUtils.isEmpty(token) && !StringUtils.isEmpty(secret)) {
- result = Hex.encodeHexString(CryptUtil.digest(token.getBytes(), secret, "HmacSHA256"));
- }
-
- request.setAttribute("token", token);
- request.setAttribute("secret", secret);
- request.setAttribute("result", result);
-%>
-
-
-
-
-トークン生成
-
-
-
-トークン生成
-
-
-
-
-