[jboss-cvs] jboss-profiler/java/webapp/lzx ...

Takuro Okada t2-okada at nri.co.jp
Thu Oct 26 05:02:59 EDT 2006


  User: tokada  
  Date: 06/10/26 05:02:59

  Added:       java/webapp/lzx   Tag: JBossProfiler_Expansion
                        datapathutil.js appinfo.js
  Log:
  
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.1.2.1   +48 -0     jboss-profiler/java/webapp/lzx/Attic/datapathutil.js
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: datapathutil.js
  ===================================================================
  RCS file: datapathutil.js
  diff -N datapathutil.js
  --- /dev/null	1 Jan 1970 00:00:00 -0000
  +++ datapathutil.js	26 Oct 2006 09:02:59 -0000	1.1.2.1
  @@ -0,0 +1,48 @@
  +/*
  + * JBoss, Home of Professional Open Source
  + * Copyright 2006, JBoss Inc., and individual contributors as indicated
  + * by the @authors tag. See the copyright.txt in the distribution for a
  + * full listing of individual contributors.
  + *
  + * This is free software; you can redistribute it and/or modify it
  + * under the terms of the GNU Lesser General Public License as
  + * published by the Free Software Foundation; either version 2.1 of
  + * the License, or (at your option) any later version.
  + *
  + * This software is distributed in the hope that it will be useful,
  + * but WITHOUT ANY WARRANTY; without even the implied warranty of
  + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  + * Lesser General Public License for more details.
  + *
  + * You should have received a copy of the GNU Lesser General Public
  + * License along with this software; if not, write to the Free
  + * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
  + * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
  + */
  +
  +/**
  + * 
  + * @author Takuro Okada (Nomura Research Institute, Ltd.)
  + * Copyright 2006 Nomura Research Institute, Ltd. All Rights Reserved.
  + * Copyright(c) Information-technology Promotion Agency, Japan. All rights reserved 2006.
  + * Result of Open Source Software Development Activities of Information-technology Promotion Agency, Japan.
  + */
  +function DatapathUtil() {
  +}
  +
  +// ##### Class Member Definition #####
  +DatapathUtil.ATTR_PREFIX = "@";
  +DatapathUtil.SEPARATOR = "/";
  +DatapathUtil.hasAttribute = _DatapathUtil_hasAttribute;
  +DatapathUtil.retrieveAttributeName = _DatapathUtil_retrieveAttributeName;
  +
  +// ##### Method Definition #####
  +function _DatapathUtil_hasAttribute(target) {
  +  var index = target.indexOf(DatapathUtil.ATTR_PREFIX);
  +  return index==-1?false:true;
  +}
  +function _DatapathUtil_retrieveAttributeName(target) {
  +  if(!DatapathUtil.hasAttribute(target)) return null;
  +  var index = target.indexOf(DatapathUtil.ATTR_PREFIX);
  +  return target.substr(index+1);
  +}
  
  
  
  1.1.2.1   +37 -0     jboss-profiler/java/webapp/lzx/Attic/appinfo.js
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: appinfo.js
  ===================================================================
  RCS file: appinfo.js
  diff -N appinfo.js
  --- /dev/null	1 Jan 1970 00:00:00 -0000
  +++ appinfo.js	26 Oct 2006 09:02:59 -0000	1.1.2.1
  @@ -0,0 +1,37 @@
  +/*
  + * JBoss, Home of Professional Open Source
  + * Copyright 2006, JBoss Inc., and individual contributors as indicated
  + * by the @authors tag. See the copyright.txt in the distribution for a
  + * full listing of individual contributors.
  + *
  + * This is free software; you can redistribute it and/or modify it
  + * under the terms of the GNU Lesser General Public License as
  + * published by the Free Software Foundation; either version 2.1 of
  + * the License, or (at your option) any later version.
  + *
  + * This software is distributed in the hope that it will be useful,
  + * but WITHOUT ANY WARRANTY; without even the implied warranty of
  + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  + * Lesser General Public License for more details.
  + *
  + * You should have received a copy of the GNU Lesser General Public
  + * License along with this software; if not, write to the Free
  + * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
  + * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
  + */
  +
  +/**
  + * 
  + * @author Takuro Okada (Nomura Research Institute, Ltd.)
  + * Copyright 2006 Nomura Research Institute, Ltd. All Rights Reserved.
  + * Copyright(c) Information-technology Promotion Agency, Japan. All rights reserved 2006.
  + * Result of Open Source Software Development Activities of Information-technology Promotion Agency, Japan.
  + */
  +function AppInfo() {
  +}
  +
  +// ##### Class Member Definition #####
  +AppInfo.RPK_METRIC_NAME = "org.jboss.profiler.exp.view.setting.MetricName";
  +AppInfo.RPK_CATEGORIES = "org.jboss.profiler.exp.view.request.Categories";
  +AppInfo.RPK_THREAD_ID = "org.jboss.profiler.exp.view.request.ThreadId";
  +AppInfo.RPK_CALLER = "org.jboss.profiler.exp.view.request.Caller";
  
  
  



More information about the jboss-cvs-commits mailing list