init
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
Manifest-Version: 1.0
|
||||
Ant-Version: Apache Ant 1.7.1
|
||||
Implementation-Title: dcm4chee-wado
|
||||
Implementation-Version: ${version} ${TODAY}
|
||||
Created-By: 20.45-b01 (Sun Microsystems Inc.)
|
||||
Implementation-Vendor: Agfa Healthcare
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,8 @@
|
||||
<jboss-web>
|
||||
<!-- Uncomment the security-domain to enable security. You will
|
||||
need to edit the htmladaptor login configuration to setup the
|
||||
login modules used to authentication users.
|
||||
-->
|
||||
<!-- <security-domain>java:/jaas/dcm4chee</security-domain> -->
|
||||
<context-root>/wado</context-root>
|
||||
</jboss-web>
|
||||
@@ -0,0 +1,88 @@
|
||||
<?xml version="1.0"?>
|
||||
<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN" "http://java.sun.com/j2ee/dtds/web-app_2_2.dtd">
|
||||
|
||||
<!--
|
||||
$Id: web.xml 7572 2008-10-16 08:31:58Z gunterze $
|
||||
$Source$
|
||||
-->
|
||||
|
||||
<web-app>
|
||||
<display-name>dcm4chee WADO</display-name>
|
||||
|
||||
<servlet>
|
||||
<servlet-name>wado</servlet-name>
|
||||
<display-name>WADO - Web Access to DICOM Persistent Objects</display-name>
|
||||
<servlet-class>org.dcm4chex.wado.web.WADOServlet</servlet-class>
|
||||
|
||||
<!--
|
||||
The configuration base for WADO service.
|
||||
-->
|
||||
|
||||
<init-param>
|
||||
<param-name>wadoServiceName</param-name>
|
||||
<param-value>dcm4chee.archive:service=WADOService</param-value>
|
||||
</init-param>
|
||||
|
||||
<!--
|
||||
Enable/Disable StudyPermissionCheck for WADO retrieve
|
||||
true: restrict WADO retrieve of objects according Study Read permission of remote user.
|
||||
denied access if no remote user information is associated with the request
|
||||
false: no restriction.
|
||||
-->
|
||||
<init-param>
|
||||
<param-name>enableStudyPermissionCheck</param-name>
|
||||
<param-value>false</param-value>
|
||||
</init-param>
|
||||
<!--
|
||||
Disable StudyPermissionCheck for dedicated user(s).
|
||||
List of users (seperated by ',') for which Study Read permissions are not checked on WADO retrieve,
|
||||
even if enableStudyPermissionCheck=true.
|
||||
default: admin
|
||||
-->
|
||||
<init-param>
|
||||
<param-name>disableStudyPermissionCheckForUser</param-name>
|
||||
<param-value>admin</param-value>
|
||||
</init-param>
|
||||
|
||||
<load-on-startup>2</load-on-startup>
|
||||
</servlet>
|
||||
|
||||
<servlet-mapping>
|
||||
<servlet-name>wado</servlet-name>
|
||||
<url-pattern>*</url-pattern>
|
||||
</servlet-mapping>
|
||||
|
||||
<welcome-file-list>
|
||||
<welcome-file>default.jsp</welcome-file>
|
||||
</welcome-file-list>
|
||||
|
||||
<!-- A security constraint that restricts access to the
|
||||
WADO service to users with the role WebAdmin.
|
||||
-->
|
||||
<!--
|
||||
<security-constraint>
|
||||
<web-resource-collection>
|
||||
<web-resource-name>wado</web-resource-name>
|
||||
<description>Only allows users with the role WebAdmin
|
||||
to access the Archive Web Administration pages
|
||||
</description>
|
||||
<url-pattern>/*</url-pattern>
|
||||
<http-method>GET</http-method>
|
||||
<http-method>POST</http-method>
|
||||
</web-resource-collection>
|
||||
<auth-constraint>
|
||||
<role-name>WebUser</role-name>
|
||||
</auth-constraint>
|
||||
</security-constraint>
|
||||
|
||||
<login-config>
|
||||
<auth-method>BASIC</auth-method>
|
||||
<realm-name>Archive Web Admin</realm-name>
|
||||
</login-config>
|
||||
|
||||
<security-role>
|
||||
<role-name>WebUser</role-name>
|
||||
</security-role>
|
||||
-->
|
||||
|
||||
</web-app>
|
||||
@@ -0,0 +1,155 @@
|
||||
/* DICOM+XML style sheet */
|
||||
body
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
a
|
||||
{
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
h1
|
||||
{
|
||||
font-size: 18pt;
|
||||
}
|
||||
|
||||
/* Generic table */
|
||||
table td
|
||||
{
|
||||
vertical-align: top;
|
||||
}
|
||||
/* DICOM ds table */
|
||||
table.dcmds
|
||||
{
|
||||
border: thin #FDFDDF ridge;
|
||||
font-family: "arial";
|
||||
}
|
||||
table.dcmds tr.head
|
||||
{
|
||||
font-size: 14pt;
|
||||
background-color: #CCCCCC;
|
||||
}
|
||||
table.dcmds tr
|
||||
{
|
||||
font-size: 10pt;
|
||||
}
|
||||
table.dcmds tr.row0
|
||||
{
|
||||
background-color: #FDFDDF;
|
||||
}
|
||||
table.dcmds tr.row1
|
||||
{
|
||||
background-color: #F0F0FD;
|
||||
}
|
||||
|
||||
table.dcmds td.itemno
|
||||
{
|
||||
border: thin #FDFDDF ridge;
|
||||
text-align: center;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
|
||||
STRONG {
|
||||
font-family : Verdana, Geneva, Arial, Helvetica, sans-serif;
|
||||
font-size : 11px;
|
||||
font-weight : bold;
|
||||
}
|
||||
|
||||
H0 {
|
||||
font : Verdana, Geneva, Arial, Helvetica, sans-serif;
|
||||
font-size : 15px;
|
||||
font-weight : bold;
|
||||
letter-spacing : 4px;
|
||||
align: top;
|
||||
vertical-align: top;
|
||||
}
|
||||
H1 {
|
||||
font : Verdana, Geneva, Arial, Helvetica, sans-serif;
|
||||
font-size : 12px;
|
||||
font-weight : bold;
|
||||
letter-spacing : 3px;
|
||||
align: top;
|
||||
}
|
||||
H2 {
|
||||
font : Verdana, Geneva, Arial, Helvetica, sans-serif;
|
||||
font-size : 11px;
|
||||
font-weight : bold;
|
||||
letter-spacing : 2px;
|
||||
text-decoration : none;
|
||||
}
|
||||
|
||||
H3 {
|
||||
font : Verdana, Geneva, Arial, Helvetica, sans-serif;
|
||||
font-size : 11px;
|
||||
font-weight : normal;
|
||||
letter-spacing : 2px;
|
||||
color : Red;
|
||||
font-position: center center;
|
||||
}
|
||||
|
||||
H4 {
|
||||
font : normal 9px Verdana, Geneva, Arial, Helvetica, sans-serif;
|
||||
color : 666666;
|
||||
vertical-align: middle;
|
||||
|
||||
}
|
||||
|
||||
P {
|
||||
font-family : Verdana, Geneva, Arial, Helvetica, sans-serif;
|
||||
font-size : 9px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
TABLE {
|
||||
background : transparent;
|
||||
font : normal 11px Verdana, Geneva, Arial, Helvetica, sans-serif;
|
||||
text-decoration : none;
|
||||
}
|
||||
|
||||
BODY {
|
||||
color : #666666;
|
||||
}
|
||||
|
||||
|
||||
P {
|
||||
font-family : Verdana, Geneva, Arial, Helvetica, sans-serif;
|
||||
font-size : 11px;
|
||||
}
|
||||
|
||||
A {text-decoration: none; font-family : Verdana, Geneva, Arial, Helvetica, sans-serif;
|
||||
font-size : 11px;}
|
||||
|
||||
A:hover {text-decoration: underline; color: #FF0000}
|
||||
|
||||
UL, LI {
|
||||
font-family : Verdana, Geneva, Arial, Helvetica, sans-serif;
|
||||
font-size : 11px;
|
||||
list-style : disc;
|
||||
list-style-position : inside;
|
||||
}
|
||||
|
||||
B {
|
||||
font-family : Verdana, Geneva, Arial, Helvetica, sans-serif;
|
||||
font-size : 11px;
|
||||
font : bold;
|
||||
}
|
||||
|
||||
HR {
|
||||
color : Silver;
|
||||
font : Verdana, Geneva, Arial, Helvetica, sans-serif;
|
||||
font-size : 11px;
|
||||
}
|
||||
|
||||
BLOCKQUOTE {
|
||||
color : Red;
|
||||
font : BankGothic Md BT;
|
||||
font-family : Verdana, Geneva, Arial, Helvetica, sans-serif;
|
||||
font-size : 11px;
|
||||
font-style : normal;
|
||||
font-variant : small-caps;
|
||||
font-weight : bold;
|
||||
letter-spacing : 2px;
|
||||
text-transform : none;
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
<%--
|
||||
$Id: default.jsp 1888 2005-08-10 13:43:20Z javawilli $
|
||||
$Source$
|
||||
--%>
|
||||
|
||||
<jsp:forward page="wado"/>
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 1.8 KiB |
Reference in New Issue
Block a user