LISTSERV mailing list manager LISTSERV 16.5

Help for HPS-SVN Archives


HPS-SVN Archives

HPS-SVN Archives


HPS-SVN@LISTSERV.SLAC.STANFORD.EDU


View:

Message:

[

First

|

Previous

|

Next

|

Last

]

By Topic:

[

First

|

Previous

|

Next

|

Last

]

By Author:

[

First

|

Previous

|

Next

|

Last

]

Font:

Proportional Font

LISTSERV Archives

LISTSERV Archives

HPS-SVN Home

HPS-SVN Home

HPS-SVN  August 2015

HPS-SVN August 2015

Subject:

r3457 - in /java/trunk/run-webapp/src/main: java/org/hps/run/ java/org/hps/run/webapp/ java/org/hps/runweb/ webapp/ webapp/WEB-INF/

From:

[log in to unmask]

Reply-To:

Notification of commits to the hps svn repository <[log in to unmask]>

Date:

Sat, 29 Aug 2015 01:26:17 -0000

Content-Type:

text/plain

Parts/Attachments:

Parts/Attachments

text/plain (161 lines)

Author: [log in to unmask]
Date: Fri Aug 28 18:26:14 2015
New Revision: 3457

Log:
Change package name in run webapp.

Added:
    java/trunk/run-webapp/src/main/java/org/hps/run/
    java/trunk/run-webapp/src/main/java/org/hps/run/webapp/
    java/trunk/run-webapp/src/main/java/org/hps/run/webapp/DatabaseUtilities.java
      - copied, changed from r3455, java/trunk/run-webapp/src/main/java/org/hps/runweb/DatabaseUtilities.java
    java/trunk/run-webapp/src/main/java/org/hps/run/webapp/EpicsDataServlet.java
      - copied, changed from r3455, java/trunk/run-webapp/src/main/java/org/hps/runweb/EpicsDataServlet.java
    java/trunk/run-webapp/src/main/java/org/hps/run/webapp/RunSummaryServlet.java
      - copied, changed from r3455, java/trunk/run-webapp/src/main/java/org/hps/runweb/RunSummaryServlet.java
    java/trunk/run-webapp/src/main/java/org/hps/run/webapp/RunsServlet.java
      - copied, changed from r3455, java/trunk/run-webapp/src/main/java/org/hps/runweb/RunsServlet.java
    java/trunk/run-webapp/src/main/java/org/hps/run/webapp/ScalerDataServlet.java
      - copied, changed from r3455, java/trunk/run-webapp/src/main/java/org/hps/runweb/ScalerDataServlet.java
Removed:
    java/trunk/run-webapp/src/main/java/org/hps/runweb/DatabaseUtilities.java
    java/trunk/run-webapp/src/main/java/org/hps/runweb/EpicsDataServlet.java
    java/trunk/run-webapp/src/main/java/org/hps/runweb/RunSummaryServlet.java
    java/trunk/run-webapp/src/main/java/org/hps/runweb/RunsServlet.java
    java/trunk/run-webapp/src/main/java/org/hps/runweb/ScalerDataServlet.java
Modified:
    java/trunk/run-webapp/src/main/webapp/WEB-INF/web.xml
    java/trunk/run-webapp/src/main/webapp/runEpics.jsp
    java/trunk/run-webapp/src/main/webapp/runSummary.jsp
    java/trunk/run-webapp/src/main/webapp/runTable.jsp

Copied: java/trunk/run-webapp/src/main/java/org/hps/run/webapp/DatabaseUtilities.java (from r3455, java/trunk/run-webapp/src/main/java/org/hps/runweb/DatabaseUtilities.java)
 =============================================================================
--- java/trunk/run-webapp/src/main/java/org/hps/runweb/DatabaseUtilities.java	(original)
+++ java/trunk/run-webapp/src/main/java/org/hps/run/webapp/DatabaseUtilities.java	Fri Aug 28 18:26:14 2015
@@ -1,4 +1,4 @@
-package org.hps.runweb;
+package org.hps.run.webapp;
 
 import javax.naming.InitialContext;
 import javax.naming.NamingException;

Copied: java/trunk/run-webapp/src/main/java/org/hps/run/webapp/EpicsDataServlet.java (from r3455, java/trunk/run-webapp/src/main/java/org/hps/runweb/EpicsDataServlet.java)
 =============================================================================
--- java/trunk/run-webapp/src/main/java/org/hps/runweb/EpicsDataServlet.java	(original)
+++ java/trunk/run-webapp/src/main/java/org/hps/run/webapp/EpicsDataServlet.java	Fri Aug 28 18:26:14 2015
@@ -1,4 +1,4 @@
-package org.hps.runweb;
+package org.hps.run.webapp;
 
 import java.io.IOException;
 import java.sql.Connection;

Copied: java/trunk/run-webapp/src/main/java/org/hps/run/webapp/RunSummaryServlet.java (from r3455, java/trunk/run-webapp/src/main/java/org/hps/runweb/RunSummaryServlet.java)
 =============================================================================
--- java/trunk/run-webapp/src/main/java/org/hps/runweb/RunSummaryServlet.java	(original)
+++ java/trunk/run-webapp/src/main/java/org/hps/run/webapp/RunSummaryServlet.java	Fri Aug 28 18:26:14 2015
@@ -1,4 +1,4 @@
-package org.hps.runweb;
+package org.hps.run.webapp;
 
 import java.io.IOException;
 import java.sql.Connection;

Copied: java/trunk/run-webapp/src/main/java/org/hps/run/webapp/RunsServlet.java (from r3455, java/trunk/run-webapp/src/main/java/org/hps/runweb/RunsServlet.java)
 =============================================================================
--- java/trunk/run-webapp/src/main/java/org/hps/runweb/RunsServlet.java	(original)
+++ java/trunk/run-webapp/src/main/java/org/hps/run/webapp/RunsServlet.java	Fri Aug 28 18:26:14 2015
@@ -1,4 +1,4 @@
-package org.hps.runweb;
+package org.hps.run.webapp;
 
 import java.io.IOException;
 import java.sql.Connection;

Copied: java/trunk/run-webapp/src/main/java/org/hps/run/webapp/ScalerDataServlet.java (from r3455, java/trunk/run-webapp/src/main/java/org/hps/runweb/ScalerDataServlet.java)
 =============================================================================
--- java/trunk/run-webapp/src/main/java/org/hps/runweb/ScalerDataServlet.java	(original)
+++ java/trunk/run-webapp/src/main/java/org/hps/run/webapp/ScalerDataServlet.java	Fri Aug 28 18:26:14 2015
@@ -1,4 +1,4 @@
-package org.hps.runweb;
+package org.hps.run.webapp;
 
 import java.io.IOException;
 import java.sql.Connection;

Modified: java/trunk/run-webapp/src/main/webapp/WEB-INF/web.xml
 =============================================================================
--- java/trunk/run-webapp/src/main/webapp/WEB-INF/web.xml	(original)
+++ java/trunk/run-webapp/src/main/webapp/WEB-INF/web.xml	Fri Aug 28 18:26:14 2015
@@ -22,7 +22,7 @@
             
     <servlet>
         <servlet-name>RunsServlet</servlet-name>
-        <servlet-class>org.hps.runweb.RunsServlet</servlet-class>
+        <servlet-class>org.hps.run.webapp.RunsServlet</servlet-class>
     </servlet>
 
     <servlet-mapping>
@@ -34,7 +34,7 @@
     
     <servlet>
         <servlet-name>RunSummaryServlet</servlet-name>
-        <servlet-class>org.hps.runweb.RunSummaryServlet</servlet-class>
+        <servlet-class>org.hps.run.webapp.RunSummaryServlet</servlet-class>
     </servlet>
 
     <servlet-mapping>
@@ -46,7 +46,7 @@
     
     <servlet>
         <servlet-name>EpicsDataServlet</servlet-name>
-        <servlet-class>org.hps.runweb.EpicsDataServlet</servlet-class>
+        <servlet-class>org.hps.run.webapp.EpicsDataServlet</servlet-class>
     </servlet>
 
     <servlet-mapping>
@@ -58,7 +58,7 @@
     
     <servlet>
         <servlet-name>ScalerDataServlet</servlet-name>
-        <servlet-class>org.hps.runweb.ScalerDataServlet</servlet-class>
+        <servlet-class>org.hps.run.webapp.ScalerDataServlet</servlet-class>
     </servlet>
     
     <servlet-mapping>

Modified: java/trunk/run-webapp/src/main/webapp/runEpics.jsp
 =============================================================================
--- java/trunk/run-webapp/src/main/webapp/runEpics.jsp	(original)
+++ java/trunk/run-webapp/src/main/webapp/runEpics.jsp	Fri Aug 28 18:26:14 2015
@@ -1,4 +1,4 @@
-<%@ page contentType="text/html" import="java.util.*,java.text.SimpleDateFormat,org.hps.record.epics.*,org.hps.rundb.*" %>
+<%@ page contentType="text/html" import="java.util.*,java.text.SimpleDateFormat,org.hps.record.epics.*,org.hps.run.database.*" %>
 <!DOCTYPE html>
 <html>
 <link rel="stylesheet" href="css/style.css" />

Modified: java/trunk/run-webapp/src/main/webapp/runSummary.jsp
 =============================================================================
--- java/trunk/run-webapp/src/main/webapp/runSummary.jsp	(original)
+++ java/trunk/run-webapp/src/main/webapp/runSummary.jsp	Fri Aug 28 18:26:14 2015
@@ -1,4 +1,4 @@
-<%@ page contentType="text/html" import="java.util.*,org.hps.rundb.*,java.text.SimpleDateFormat"%>
+<%@ page contentType="text/html" import="java.util.*,org.hps.run.database.*,java.text.SimpleDateFormat"%>
 <!DOCTYPE html>
 <html>
 <link rel="stylesheet" href="css/style.css" />

Modified: java/trunk/run-webapp/src/main/webapp/runTable.jsp
 =============================================================================
--- java/trunk/run-webapp/src/main/webapp/runTable.jsp	(original)
+++ java/trunk/run-webapp/src/main/webapp/runTable.jsp	Fri Aug 28 18:26:14 2015
@@ -1,4 +1,4 @@
-<%@ page contentType="text/html" import="java.util.*,org.hps.rundb.RunSummary,java.text.SimpleDateFormat"%>
+<%@ page contentType="text/html" import="java.util.*,org.hps.run.database.RunSummary,java.text.SimpleDateFormat"%>
 <!DOCTYPE html>
 <html>
 

Top of Message | Previous Page | Permalink

Advanced Options


Options

Log In

Log In

Get Password

Get Password


Search Archives

Search Archives


Subscribe or Unsubscribe

Subscribe or Unsubscribe


Archives

November 2017
August 2017
July 2017
January 2017
December 2016
November 2016
October 2016
September 2016
August 2016
July 2016
June 2016
May 2016
April 2016
March 2016
February 2016
January 2016
December 2015
November 2015
October 2015
September 2015
August 2015
July 2015
June 2015
May 2015
April 2015
March 2015
February 2015
January 2015
December 2014
November 2014
October 2014
September 2014
August 2014
July 2014
June 2014
May 2014
April 2014
March 2014
February 2014
January 2014
December 2013
November 2013

ATOM RSS1 RSS2



LISTSERV.SLAC.STANFORD.EDU

Secured by F-Secure Anti-Virus CataList Email List Search Powered by the LISTSERV Email List Manager

Privacy Notice, Security Notice and Terms of Use