Changeset 899


Ignore:
Timestamp:
06/02/11 17:57:34 (2 years ago)
Author:
philsmart
Message:
 
Location:
raptor-web/trunk
Files:
2 added
83 edited

Legend:

Unmodified
Added
Removed
  • raptor-web/trunk/pom.xml

    r836 r899  
    88        <packaging>war</packaging> 
    99        <url>http://iam.cf.ac.uk</url> 
    10         <ciManagement> 
    11                 <system>Hudson</system> 
    12                 <url>http://iam.cf.ac.uk/hudson/</url> 
    13         </ciManagement> 
     10         
     11           <licenses> 
     12        <license> 
     13            <name>Apache 2</name> 
     14            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> 
     15            <distribution>repo</distribution> 
     16        </license> 
     17    </licenses> 
     18         
     19 
    1420        <scm> 
    1521                <developerConnection>scm:svn:http://iam.cf.ac.uk/repos/RAPTOR/raptor-web/trunk</developerConnection> 
     
    165171                                </dependencies> 
    166172                        </plugin> 
     173                        <plugin> 
     174                <groupId>com.google.code.maven-license-plugin</groupId> 
     175                <artifactId>maven-license-plugin</artifactId> 
     176                <version>1.4.0</version> 
     177                <configuration> 
     178                    <includes> 
     179                        <include>src/**</include> 
     180                        <include>**/test/**</include> 
     181                    </includes> 
     182                    <excludes> 
     183                        <exclude>target/**</exclude> 
     184                        <exclude>.clover/**</exclude> 
     185                    </excludes> 
     186                    <header>src/main/resources/license-apache</header> 
     187                    <properties> 
     188                        <year>2010</year> 
     189                        <email>smartp@cf.ac.uk</email> 
     190                        <name>Cardiff University, Wales</name> 
     191                    </properties> 
     192                </configuration> 
     193                <executions> 
     194                    <execution> 
     195                        <goals> 
     196                            <goal>check</goal> 
     197                        </goals> 
     198                    </execution> 
     199                </executions> 
     200            </plugin> 
    167201                </plugins> 
    168202        </build> 
     
    170204 
    171205 
    172                 <!-- Myfaces <dependency> <groupId>org.apache.myfaces.core</groupId> <artifactId>myfaces-api</artifactId>  
    173                         <version>${myfaces.version}</version> <scope>compile</scope> </dependency>  
    174                         <dependency> <groupId>org.apache.myfaces.core</groupId> <artifactId>myfaces-impl</artifactId>  
    175                         <version>${myfaces.version}</version> <scope>compile</scope> </dependency> --> 
    176                 <!-- Trinidad <dependency> <groupId>org.apache.myfaces.trinidad</groupId>  
    177                         <artifactId>trinidad-api</artifactId> <version>${trinidad.version}</version>  
    178                         <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.myfaces.trinidad</groupId>  
    179                         <artifactId>trinidad-impl</artifactId> <version>${trinidad.version}</version>  
    180                         <scope>compile</scope> </dependency> --> 
    181206 
    182207                <!-- RICHFACES --> 
  • raptor-web/trunk/src/main/java/uk/ac/cardiff/raptorweb/engine/ChartProcessor.java

    r698 r899  
     1/** 
     2 * Copyright (C) 2010 Cardiff University, Wales <smartp@cf.ac.uk> 
     3 * 
     4 * Licensed under the Apache License, Version 2.0 (the "License"); 
     5 * you may not use this file except in compliance with the License. 
     6 * You may obtain a copy of the License at 
     7 * 
     8 *         http://www.apache.org/licenses/LICENSE-2.0 
     9 * 
     10 * Unless required by applicable law or agreed to in writing, software 
     11 * distributed under the License is distributed on an "AS IS" BASIS, 
     12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     13 * See the License for the specific language governing permissions and 
     14 * limitations under the License. 
     15 */ 
    116/** 
    217 * 
  • raptor-web/trunk/src/main/java/uk/ac/cardiff/raptorweb/engine/ChartProcessorHelper.java

    r507 r899  
     1/** 
     2 * Copyright (C) 2010 Cardiff University, Wales <smartp@cf.ac.uk> 
     3 * 
     4 * Licensed under the Apache License, Version 2.0 (the "License"); 
     5 * you may not use this file except in compliance with the License. 
     6 * You may obtain a copy of the License at 
     7 * 
     8 *         http://www.apache.org/licenses/LICENSE-2.0 
     9 * 
     10 * Unless required by applicable law or agreed to in writing, software 
     11 * distributed under the License is distributed on an "AS IS" BASIS, 
     12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     13 * See the License for the specific language governing permissions and 
     14 * limitations under the License. 
     15 */ 
    116/** 
    217 * 
  • raptor-web/trunk/src/main/java/uk/ac/cardiff/raptorweb/engine/MUARegistry.java

    r786 r899  
     1/** 
     2 * Copyright (C) 2010 Cardiff University, Wales <smartp@cf.ac.uk> 
     3 * 
     4 * Licensed under the Apache License, Version 2.0 (the "License"); 
     5 * you may not use this file except in compliance with the License. 
     6 * You may obtain a copy of the License at 
     7 * 
     8 *         http://www.apache.org/licenses/LICENSE-2.0 
     9 * 
     10 * Unless required by applicable law or agreed to in writing, software 
     11 * distributed under the License is distributed on an "AS IS" BASIS, 
     12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     13 * See the License for the specific language governing permissions and 
     14 * limitations under the License. 
     15 */ 
    116/** 
    217 * 
  • raptor-web/trunk/src/main/java/uk/ac/cardiff/raptorweb/engine/RaptorWebEngine.java

    r803 r899  
     1/** 
     2 * Copyright (C) 2010 Cardiff University, Wales <smartp@cf.ac.uk> 
     3 * 
     4 * Licensed under the Apache License, Version 2.0 (the "License"); 
     5 * you may not use this file except in compliance with the License. 
     6 * You may obtain a copy of the License at 
     7 * 
     8 *         http://www.apache.org/licenses/LICENSE-2.0 
     9 * 
     10 * Unless required by applicable law or agreed to in writing, software 
     11 * distributed under the License is distributed on an "AS IS" BASIS, 
     12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     13 * See the License for the specific language governing permissions and 
     14 * limitations under the License. 
     15 */ 
    116/** 
    217 * 
  • raptor-web/trunk/src/main/java/uk/ac/cardiff/raptorweb/engine/reports/CSVReportGenerator.java

    r803 r899  
     1/** 
     2 * Copyright (C) 2010 Cardiff University, Wales <smartp@cf.ac.uk> 
     3 * 
     4 * Licensed under the Apache License, Version 2.0 (the "License"); 
     5 * you may not use this file except in compliance with the License. 
     6 * You may obtain a copy of the License at 
     7 * 
     8 *         http://www.apache.org/licenses/LICENSE-2.0 
     9 * 
     10 * Unless required by applicable law or agreed to in writing, software 
     11 * distributed under the License is distributed on an "AS IS" BASIS, 
     12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     13 * See the License for the specific language governing permissions and 
     14 * limitations under the License. 
     15 */ 
    116/** 
    217 * 
  • raptor-web/trunk/src/main/java/uk/ac/cardiff/raptorweb/engine/reports/ExcelReportGenerator.java

    r803 r899  
     1/** 
     2 * Copyright (C) 2010 Cardiff University, Wales <smartp@cf.ac.uk> 
     3 * 
     4 * Licensed under the Apache License, Version 2.0 (the "License"); 
     5 * you may not use this file except in compliance with the License. 
     6 * You may obtain a copy of the License at 
     7 * 
     8 *         http://www.apache.org/licenses/LICENSE-2.0 
     9 * 
     10 * Unless required by applicable law or agreed to in writing, software 
     11 * distributed under the License is distributed on an "AS IS" BASIS, 
     12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     13 * See the License for the specific language governing permissions and 
     14 * limitations under the License. 
     15 */ 
    116/** 
    217 * 
  • raptor-web/trunk/src/main/java/uk/ac/cardiff/raptorweb/engine/reports/GraphAndChartPDFReportGenerator.java

    r803 r899  
     1/** 
     2 * Copyright (C) 2010 Cardiff University, Wales <smartp@cf.ac.uk> 
     3 * 
     4 * Licensed under the Apache License, Version 2.0 (the "License"); 
     5 * you may not use this file except in compliance with the License. 
     6 * You may obtain a copy of the License at 
     7 * 
     8 *         http://www.apache.org/licenses/LICENSE-2.0 
     9 * 
     10 * Unless required by applicable law or agreed to in writing, software 
     11 * distributed under the License is distributed on an "AS IS" BASIS, 
     12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     13 * See the License for the specific language governing permissions and 
     14 * limitations under the License. 
     15 */ 
    116package uk.ac.cardiff.raptorweb.engine.reports; 
    217 
  • raptor-web/trunk/src/main/java/uk/ac/cardiff/raptorweb/engine/reports/ReportConstructor.java

    r803 r899  
     1/** 
     2 * Copyright (C) 2010 Cardiff University, Wales <smartp@cf.ac.uk> 
     3 * 
     4 * Licensed under the Apache License, Version 2.0 (the "License"); 
     5 * you may not use this file except in compliance with the License. 
     6 * You may obtain a copy of the License at 
     7 * 
     8 *         http://www.apache.org/licenses/LICENSE-2.0 
     9 * 
     10 * Unless required by applicable law or agreed to in writing, software 
     11 * distributed under the License is distributed on an "AS IS" BASIS, 
     12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     13 * See the License for the specific language governing permissions and 
     14 * limitations under the License. 
     15 */ 
    116/** 
    217 * 
  • raptor-web/trunk/src/main/java/uk/ac/cardiff/raptorweb/engine/reports/ReportHandler.java

    r572 r899  
     1/** 
     2 * Copyright (C) 2010 Cardiff University, Wales <smartp@cf.ac.uk> 
     3 * 
     4 * Licensed under the Apache License, Version 2.0 (the "License"); 
     5 * you may not use this file except in compliance with the License. 
     6 * You may obtain a copy of the License at 
     7 * 
     8 *         http://www.apache.org/licenses/LICENSE-2.0 
     9 * 
     10 * Unless required by applicable law or agreed to in writing, software 
     11 * distributed under the License is distributed on an "AS IS" BASIS, 
     12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     13 * See the License for the specific language governing permissions and 
     14 * limitations under the License. 
     15 */ 
    116/** 
    217 * 
  • raptor-web/trunk/src/main/java/uk/ac/cardiff/raptorweb/engine/reports/beans/DynamicTableModel.java

    r570 r899  
     1/** 
     2 * Copyright (C) 2010 Cardiff University, Wales <smartp@cf.ac.uk> 
     3 * 
     4 * Licensed under the Apache License, Version 2.0 (the "License"); 
     5 * you may not use this file except in compliance with the License. 
     6 * You may obtain a copy of the License at 
     7 * 
     8 *         http://www.apache.org/licenses/LICENSE-2.0 
     9 * 
     10 * Unless required by applicable law or agreed to in writing, software 
     11 * distributed under the License is distributed on an "AS IS" BASIS, 
     12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     13 * See the License for the specific language governing permissions and 
     14 * limitations under the License. 
     15 */ 
    116/** 
    217 * 
  • raptor-web/trunk/src/main/java/uk/ac/cardiff/raptorweb/engine/reports/beans/GenericReportBean.java

    r569 r899  
     1/** 
     2 * Copyright (C) 2010 Cardiff University, Wales <smartp@cf.ac.uk> 
     3 * 
     4 * Licensed under the Apache License, Version 2.0 (the "License"); 
     5 * you may not use this file except in compliance with the License. 
     6 * You may obtain a copy of the License at 
     7 * 
     8 *         http://www.apache.org/licenses/LICENSE-2.0 
     9 * 
     10 * Unless required by applicable law or agreed to in writing, software 
     11 * distributed under the License is distributed on an "AS IS" BASIS, 
     12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     13 * See the License for the specific language governing permissions and 
     14 * limitations under the License. 
     15 */ 
    116package uk.ac.cardiff.raptorweb.engine.reports.beans; 
    217 
  • raptor-web/trunk/src/main/java/uk/ac/cardiff/raptorweb/engine/reports/beans/SimpleRowBean.java

    r570 r899  
     1/** 
     2 * Copyright (C) 2010 Cardiff University, Wales <smartp@cf.ac.uk> 
     3 * 
     4 * Licensed under the Apache License, Version 2.0 (the "License"); 
     5 * you may not use this file except in compliance with the License. 
     6 * You may obtain a copy of the License at 
     7 * 
     8 *         http://www.apache.org/licenses/LICENSE-2.0 
     9 * 
     10 * Unless required by applicable law or agreed to in writing, software 
     11 * distributed under the License is distributed on an "AS IS" BASIS, 
     12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     13 * See the License for the specific language governing permissions and 
     14 * limitations under the License. 
     15 */ 
    116package uk.ac.cardiff.raptorweb.engine.reports.beans; 
    217 
  • raptor-web/trunk/src/main/java/uk/ac/cardiff/raptorweb/engine/upload/FileUpload.java

    r803 r899  
     1/** 
     2 * Copyright (C) 2010 Cardiff University, Wales <smartp@cf.ac.uk> 
     3 * 
     4 * Licensed under the Apache License, Version 2.0 (the "License"); 
     5 * you may not use this file except in compliance with the License. 
     6 * You may obtain a copy of the License at 
     7 * 
     8 *         http://www.apache.org/licenses/LICENSE-2.0 
     9 * 
     10 * Unless required by applicable law or agreed to in writing, software 
     11 * distributed under the License is distributed on an "AS IS" BASIS, 
     12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     13 * See the License for the specific language governing permissions and 
     14 * limitations under the License. 
     15 */ 
    116package uk.ac.cardiff.raptorweb.engine.upload; 
    217 
  • raptor-web/trunk/src/main/java/uk/ac/cardiff/raptorweb/model/CachedStartStatistics.java

    r693 r899  
     1/** 
     2 * Copyright (C) 2010 Cardiff University, Wales <smartp@cf.ac.uk> 
     3 * 
     4 * Licensed under the Apache License, Version 2.0 (the "License"); 
     5 * you may not use this file except in compliance with the License. 
     6 * You may obtain a copy of the License at 
     7 * 
     8 *         http://www.apache.org/licenses/LICENSE-2.0 
     9 * 
     10 * Unless required by applicable law or agreed to in writing, software 
     11 * distributed under the License is distributed on an "AS IS" BASIS, 
     12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     13 * See the License for the specific language governing permissions and 
     14 * limitations under the License. 
     15 */ 
    116/** 
    217 * 
  • raptor-web/trunk/src/main/java/uk/ac/cardiff/raptorweb/model/ChartOptions.java

    r741 r899  
     1/** 
     2 * Copyright (C) 2010 Cardiff University, Wales <smartp@cf.ac.uk> 
     3 * 
     4 * Licensed under the Apache License, Version 2.0 (the "License"); 
     5 * you may not use this file except in compliance with the License. 
     6 * You may obtain a copy of the License at 
     7 * 
     8 *         http://www.apache.org/licenses/LICENSE-2.0 
     9 * 
     10 * Unless required by applicable law or agreed to in writing, software 
     11 * distributed under the License is distributed on an "AS IS" BASIS, 
     12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     13 * See the License for the specific language governing permissions and 
     14 * limitations under the License. 
     15 */ 
    116/** 
    217 * 
  • raptor-web/trunk/src/main/java/uk/ac/cardiff/raptorweb/model/CommonModel.java

    r365 r899  
     1/** 
     2 * Copyright (C) 2010 Cardiff University, Wales <smartp@cf.ac.uk> 
     3 * 
     4 * Licensed under the Apache License, Version 2.0 (the "License"); 
     5 * you may not use this file except in compliance with the License. 
     6 * You may obtain a copy of the License at 
     7 * 
     8 *         http://www.apache.org/licenses/LICENSE-2.0 
     9 * 
     10 * Unless required by applicable law or agreed to in writing, software 
     11 * distributed under the License is distributed on an "AS IS" BASIS, 
     12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     13 * See the License for the specific language governing permissions and 
     14 * limitations under the License. 
     15 */ 
    116package uk.ac.cardiff.raptorweb.model; 
    217 
  • raptor-web/trunk/src/main/java/uk/ac/cardiff/raptorweb/model/DownloadFile.java

    r572 r899  
     1/** 
     2 * Copyright (C) 2010 Cardiff University, Wales <smartp@cf.ac.uk> 
     3 * 
     4 * Licensed under the Apache License, Version 2.0 (the "License"); 
     5 * you may not use this file except in compliance with the License. 
     6 * You may obtain a copy of the License at 
     7 * 
     8 *         http://www.apache.org/licenses/LICENSE-2.0 
     9 * 
     10 * Unless required by applicable law or agreed to in writing, software 
     11 * distributed under the License is distributed on an "AS IS" BASIS, 
     12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     13 * See the License for the specific language governing permissions and 
     14 * limitations under the License. 
     15 */ 
    116/** 
    217 * 
  • raptor-web/trunk/src/main/java/uk/ac/cardiff/raptorweb/model/GraphModel.java

    r803 r899  
     1/** 
     2 * Copyright (C) 2010 Cardiff University, Wales <smartp@cf.ac.uk> 
     3 * 
     4 * Licensed under the Apache License, Version 2.0 (the "License"); 
     5 * you may not use this file except in compliance with the License. 
     6 * You may obtain a copy of the License at 
     7 * 
     8 *         http://www.apache.org/licenses/LICENSE-2.0 
     9 * 
     10 * Unless required by applicable law or agreed to in writing, software 
     11 * distributed under the License is distributed on an "AS IS" BASIS, 
     12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     13 * See the License for the specific language governing permissions and 
     14 * limitations under the License. 
     15 */ 
    116package uk.ac.cardiff.raptorweb.model; 
    217 
  • raptor-web/trunk/src/main/java/uk/ac/cardiff/raptorweb/model/MUAEntry.java

    r642 r899  
     1/** 
     2 * Copyright (C) 2010 Cardiff University, Wales <smartp@cf.ac.uk> 
     3 * 
     4 * Licensed under the Apache License, Version 2.0 (the "License"); 
     5 * you may not use this file except in compliance with the License. 
     6 * You may obtain a copy of the License at 
     7 * 
     8 *         http://www.apache.org/licenses/LICENSE-2.0 
     9 * 
     10 * Unless required by applicable law or agreed to in writing, software 
     11 * distributed under the License is distributed on an "AS IS" BASIS, 
     12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     13 * See the License for the specific language governing permissions and 
     14 * limitations under the License. 
     15 */ 
    116/** 
    217 * 
  • raptor-web/trunk/src/main/java/uk/ac/cardiff/raptorweb/model/ManyRow.java

    r523 r899  
     1/** 
     2 * Copyright (C) 2010 Cardiff University, Wales <smartp@cf.ac.uk> 
     3 * 
     4 * Licensed under the Apache License, Version 2.0 (the "License"); 
     5 * you may not use this file except in compliance with the License. 
     6 * You may obtain a copy of the License at 
     7 * 
     8 *         http://www.apache.org/licenses/LICENSE-2.0 
     9 * 
     10 * Unless required by applicable law or agreed to in writing, software 
     11 * distributed under the License is distributed on an "AS IS" BASIS, 
     12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     13 * See the License for the specific language governing permissions and 
     14 * limitations under the License. 
     15 */ 
    116/** 
    217 * 
  • raptor-web/trunk/src/main/java/uk/ac/cardiff/raptorweb/model/RaptorGraphModel.java

    r519 r899  
     1/** 
     2 * Copyright (C) 2010 Cardiff University, Wales <smartp@cf.ac.uk> 
     3 * 
     4 * Licensed under the Apache License, Version 2.0 (the "License"); 
     5 * you may not use this file except in compliance with the License. 
     6 * You may obtain a copy of the License at 
     7 * 
     8 *         http://www.apache.org/licenses/LICENSE-2.0 
     9 * 
     10 * Unless required by applicable law or agreed to in writing, software 
     11 * distributed under the License is distributed on an "AS IS" BASIS, 
     12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     13 * See the License for the specific language governing permissions and 
     14 * limitations under the License. 
     15 */ 
    116/** 
    217 * 
  • raptor-web/trunk/src/main/java/uk/ac/cardiff/raptorweb/model/RaptorJFreeChartModel.java

    r568 r899  
     1/** 
     2 * Copyright (C) 2010 Cardiff University, Wales <smartp@cf.ac.uk> 
     3 * 
     4 * Licensed under the Apache License, Version 2.0 (the "License"); 
     5 * you may not use this file except in compliance with the License. 
     6 * You may obtain a copy of the License at 
     7 * 
     8 *         http://www.apache.org/licenses/LICENSE-2.0 
     9 * 
     10 * Unless required by applicable law or agreed to in writing, software 
     11 * distributed under the License is distributed on an "AS IS" BASIS, 
     12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     13 * See the License for the specific language governing permissions and 
     14 * limitations under the License. 
     15 */ 
    116/** 
    217 * 
  • raptor-web/trunk/src/main/java/uk/ac/cardiff/raptorweb/model/RaptorTableChartModel.java

    r527 r899  
     1/** 
     2 * Copyright (C) 2010 Cardiff University, Wales <smartp@cf.ac.uk> 
     3 * 
     4 * Licensed under the Apache License, Version 2.0 (the "License"); 
     5 * you may not use this file except in compliance with the License. 
     6 * You may obtain a copy of the License at 
     7 * 
     8 *         http://www.apache.org/licenses/LICENSE-2.0 
     9 * 
     10 * Unless required by applicable law or agreed to in writing, software 
     11 * distributed under the License is distributed on an "AS IS" BASIS, 
     12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     13 * See the License for the specific language governing permissions and 
     14 * limitations under the License. 
     15 */ 
    116/** 
    217 * 
  • raptor-web/trunk/src/main/java/uk/ac/cardiff/raptorweb/model/ReportModel.java

    r572 r899  
     1/** 
     2 * Copyright (C) 2010 Cardiff University, Wales <smartp@cf.ac.uk> 
     3 * 
     4 * Licensed under the Apache License, Version 2.0 (the "License"); 
     5 * you may not use this file except in compliance with the License. 
     6 * You may obtain a copy of the License at 
     7 * 
     8 *         http://www.apache.org/licenses/LICENSE-2.0 
     9 * 
     10 * Unless required by applicable law or agreed to in writing, software 
     11 * distributed under the License is distributed on an "AS IS" BASIS, 
     12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     13 * See the License for the specific language governing permissions and 
     14 * limitations under the License. 
     15 */ 
    116/** 
    217 * 
  • raptor-web/trunk/src/main/java/uk/ac/cardiff/raptorweb/model/SetupModel.java

    r724 r899  
     1/** 
     2 * Copyright (C) 2010 Cardiff University, Wales <smartp@cf.ac.uk> 
     3 * 
     4 * Licensed under the Apache License, Version 2.0 (the "License"); 
     5 * you may not use this file except in compliance with the License. 
     6 * You may obtain a copy of the License at 
     7 * 
     8 *         http://www.apache.org/licenses/LICENSE-2.0 
     9 * 
     10 * Unless required by applicable law or agreed to in writing, software 
     11 * distributed under the License is distributed on an "AS IS" BASIS, 
     12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     13 * See the License for the specific language governing permissions and 
     14 * limitations under the License. 
     15 */ 
    116/** 
    217 * 
  • raptor-web/trunk/src/main/java/uk/ac/cardiff/raptorweb/model/StartModel.java

    r836 r899  
     1/** 
     2 * Copyright (C) 2010 Cardiff University, Wales <smartp@cf.ac.uk> 
     3 * 
     4 * Licensed under the Apache License, Version 2.0 (the "License"); 
     5 * you may not use this file except in compliance with the License. 
     6 * You may obtain a copy of the License at 
     7 * 
     8 *         http://www.apache.org/licenses/LICENSE-2.0 
     9 * 
     10 * Unless required by applicable law or agreed to in writing, software 
     11 * distributed under the License is distributed on an "AS IS" BASIS, 
     12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     13 * See the License for the specific language governing permissions and 
     14 * limitations under the License. 
     15 */ 
    116/** 
    217 * 
  • raptor-web/trunk/src/main/java/uk/ac/cardiff/raptorweb/model/StartStatistics.java

    r698 r899  
     1/** 
     2 * Copyright (C) 2010 Cardiff University, Wales <smartp@cf.ac.uk> 
     3 * 
     4 * Licensed under the Apache License, Version 2.0 (the "License"); 
     5 * you may not use this file except in compliance with the License. 
     6 * You may obtain a copy of the License at 
     7 * 
     8 *         http://www.apache.org/licenses/LICENSE-2.0 
     9 * 
     10 * Unless required by applicable law or agreed to in writing, software 
     11 * distributed under the License is distributed on an "AS IS" BASIS, 
     12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     13 * See the License for the specific language governing permissions and 
     14 * limitations under the License. 
     15 */ 
    116package uk.ac.cardiff.raptorweb.model; 
    217 
  • raptor-web/trunk/src/main/java/uk/ac/cardiff/raptorweb/model/StatisticalUnitInformationView.java

    r621 r899  
     1/** 
     2 * Copyright (C) 2010 Cardiff University, Wales <smartp@cf.ac.uk> 
     3 * 
     4 * Licensed under the Apache License, Version 2.0 (the "License"); 
     5 * you may not use this file except in compliance with the License. 
     6 * You may obtain a copy of the License at 
     7 * 
     8 *         http://www.apache.org/licenses/LICENSE-2.0 
     9 * 
     10 * Unless required by applicable law or agreed to in writing, software 
     11 * distributed under the License is distributed on an "AS IS" BASIS, 
     12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     13 * See the License for the specific language governing permissions and 
     14 * limitations under the License. 
     15 */ 
    116/** 
    217 * 
  • raptor-web/trunk/src/main/java/uk/ac/cardiff/raptorweb/model/TableSeries.java

    r518 r899  
     1/** 
     2 * Copyright (C) 2010 Cardiff University, Wales <smartp@cf.ac.uk> 
     3 * 
     4 * Licensed under the Apache License, Version 2.0 (the "License"); 
     5 * you may not use this file except in compliance with the License. 
     6 * You may obtain a copy of the License at 
     7 * 
     8 *         http://www.apache.org/licenses/LICENSE-2.0 
     9 * 
     10 * Unless required by applicable law or agreed to in writing, software 
     11 * distributed under the License is distributed on an "AS IS" BASIS, 
     12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     13 * See the License for the specific language governing permissions and 
     14 * limitations under the License. 
     15 */ 
    116/** 
    217 * 
  • raptor-web/trunk/src/main/java/uk/ac/cardiff/raptorweb/model/WebSession.java

    r484 r899  
     1/** 
     2 * Copyright (C) 2010 Cardiff University, Wales <smartp@cf.ac.uk> 
     3 * 
     4 * Licensed under the Apache License, Version 2.0 (the "License"); 
     5 * you may not use this file except in compliance with the License. 
     6 * You may obtain a copy of the License at 
     7 * 
     8 *         http://www.apache.org/licenses/LICENSE-2.0 
     9 * 
     10 * Unless required by applicable law or agreed to in writing, software 
     11 * distributed under the License is distributed on an "AS IS" BASIS, 
     12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     13 * See the License for the specific language governing permissions and 
     14 * limitations under the License. 
     15 */ 
    116package uk.ac.cardiff.raptorweb.model; 
    217 
  • raptor-web/trunk/src/main/java/uk/ac/cardiff/raptorweb/model/dashboard/AbstractDashboardStatistic.java

    r698 r899  
     1/** 
     2 * Copyright (C) 2010 Cardiff University, Wales <smartp@cf.ac.uk> 
     3 * 
     4 * Licensed under the Apache License, Version 2.0 (the "License"); 
     5 * you may not use this file except in compliance with the License. 
     6 * You may obtain a copy of the License at 
     7 * 
     8 *         http://www.apache.org/licenses/LICENSE-2.0 
     9 * 
     10 * Unless required by applicable law or agreed to in writing, software 
     11 * distributed under the License is distributed on an "AS IS" BASIS, 
     12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     13 * See the License for the specific language governing permissions and 
     14 * limitations under the License. 
     15 */ 
    116package uk.ac.cardiff.raptorweb.model.dashboard; 
    217 
  • raptor-web/trunk/src/main/java/uk/ac/cardiff/raptorweb/model/dashboard/DashboardStatisticException.java

    r698 r899  
     1/** 
     2 * Copyright (C) 2010 Cardiff University, Wales <smartp@cf.ac.uk> 
     3 * 
     4 * Licensed under the Apache License, Version 2.0 (the "License"); 
     5 * you may not use this file except in compliance with the License. 
     6 * You may obtain a copy of the License at 
     7 * 
     8 *         http://www.apache.org/licenses/LICENSE-2.0 
     9 * 
     10 * Unless required by applicable law or agreed to in writing, software 
     11 * distributed under the License is distributed on an "AS IS" BASIS, 
     12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     13 * See the License for the specific language governing permissions and 
     14 * limitations under the License. 
     15 */ 
    116package uk.ac.cardiff.raptorweb.model.dashboard; 
    217 
  • raptor-web/trunk/src/main/java/uk/ac/cardiff/raptorweb/model/dashboard/DefaultChartDashboardStatistic.java

    r698 r899  
     1/** 
     2 * Copyright (C) 2010 Cardiff University, Wales <smartp@cf.ac.uk> 
     3 * 
     4 * Licensed under the Apache License, Version 2.0 (the "License"); 
     5 * you may not use this file except in compliance with the License. 
     6 * You may obtain a copy of the License at 
     7 * 
     8 *         http://www.apache.org/licenses/LICENSE-2.0 
     9 * 
     10 * Unless required by applicable law or agreed to in writing, software 
     11 * distributed under the License is distributed on an "AS IS" BASIS, 
     12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     13 * See the License for the specific language governing permissions and 
     14 * limitations under the License. 
     15 */ 
    116package uk.ac.cardiff.raptorweb.model.dashboard; 
    217 
  • raptor-web/trunk/src/main/java/uk/ac/cardiff/raptorweb/model/dashboard/DefaultGraphDashboardStatistic.java

    r698 r899  
     1/** 
     2 * Copyright (C) 2010 Cardiff University, Wales <smartp@cf.ac.uk> 
     3 * 
     4 * Licensed under the Apache License, Version 2.0 (the "License"); 
     5 * you may not use this file except in compliance with the License. 
     6 * You may obtain a copy of the License at 
     7 * 
     8 *         http://www.apache.org/licenses/LICENSE-2.0 
     9 * 
     10 * Unless required by applicable law or agreed to in writing, software 
     11 * distributed under the License is distributed on an "AS IS" BASIS, 
     12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     13 * See the License for the specific language governing permissions and 
     14 * limitations under the License. 
     15 */ 
    116package uk.ac.cardiff.raptorweb.model.dashboard; 
    217 
  • raptor-web/trunk/src/main/java/uk/ac/cardiff/raptorweb/model/dashboard/NoRowsChartDashboardStatistic.java

    r698 r899  
     1/** 
     2 * Copyright (C) 2010 Cardiff University, Wales <smartp@cf.ac.uk> 
     3 * 
     4 * Licensed under the Apache License, Version 2.0 (the "License"); 
     5 * you may not use this file except in compliance with the License. 
     6 * You may obtain a copy of the License at 
     7 * 
     8 *         http://www.apache.org/licenses/LICENSE-2.0 
     9 * 
     10 * Unless required by applicable law or agreed to in writing, software 
     11 * distributed under the License is distributed on an "AS IS" BASIS, 
     12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     13 * See the License for the specific language governing permissions and 
     14 * limitations under the License. 
     15 */ 
    116package uk.ac.cardiff.raptorweb.model.dashboard; 
    217 
  • raptor-web/trunk/src/main/java/uk/ac/cardiff/raptorweb/model/dashboard/UniqueChartDashboardStatistic.java

    r698 r899  
     1/** 
     2 * Copyright (C) 2010 Cardiff University, Wales <smartp@cf.ac.uk> 
     3 * 
     4 * Licensed under the Apache License, Version 2.0 (the "License"); 
     5 * you may not use this file except in compliance with the License. 
     6 * You may obtain a copy of the License at 
     7 * 
     8 *         http://www.apache.org/licenses/LICENSE-2.0 
     9 * 
     10 * Unless required by applicable law or agreed to in writing, software 
     11 * distributed under the License is distributed on an "AS IS" BASIS, 
     12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     13 * See the License for the specific language governing permissions and 
     14 * limitations under the License. 
     15 */ 
    116package uk.ac.cardiff.raptorweb.model.dashboard; 
    217 
  • raptor-web/trunk/src/main/java/uk/ac/cardiff/raptorweb/model/records/Row.java

    r569 r899  
     1/** 
     2 * Copyright (C) 2010 Cardiff University, Wales <smartp@cf.ac.uk> 
     3 * 
     4 * Licensed under the Apache License, Version 2.0 (the "License"); 
     5 * you may not use this file except in compliance with the License. 
     6 * You may obtain a copy of the License at 
     7 * 
     8 *         http://www.apache.org/licenses/LICENSE-2.0 
     9 * 
     10 * Unless required by applicable law or agreed to in writing, software 
     11 * distributed under the License is distributed on an "AS IS" BASIS, 
     12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     13 * See the License for the specific language governing permissions and 
     14 * limitations under the License. 
     15 */ 
    116/** 
    217 * 
  • raptor-web/trunk/src/main/java/uk/ac/cardiff/raptorweb/sei/ServiceEndpointClient.java

    r842 r899  
     1/** 
     2 * Copyright (C) 2010 Cardiff University, Wales <smartp@cf.ac.uk> 
     3 * 
     4 * Licensed under the Apache License, Version 2.0 (the "License"); 
     5 * you may not use this file except in compliance with the License. 
     6 * You may obtain a copy of the License at 
     7 * 
     8 *         http://www.apache.org/licenses/LICENSE-2.0 
     9 * 
     10 * Unless required by applicable law or agreed to in writing, software 
     11 * distributed under the License is distributed on an "AS IS" BASIS, 
     12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     13 * See the License for the specific language governing permissions and 
     14 * limitations under the License. 
     15 */ 
    116package uk.ac.cardiff.raptorweb.sei; 
    217 
  • raptor-web/trunk/src/main/java/uk/ac/cardiff/raptorweb/service/GraphService.java

    r567 r899  
     1/** 
     2 * Copyright (C) 2010 Cardiff University, Wales <smartp@cf.ac.uk> 
     3 * 
     4 * Licensed under the Apache License, Version 2.0 (the "License"); 
     5 * you may not use this file except in compliance with the License. 
     6 * You may obtain a copy of the License at 
     7 * 
     8 *         http://www.apache.org/licenses/LICENSE-2.0 
     9 * 
     10 * Unless required by applicable law or agreed to in writing, software 
     11 * distributed under the License is distributed on an "AS IS" BASIS, 
     12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     13 * See the License for the specific language governing permissions and 
     14 * limitations under the License. 
     15 */ 
    116/** 
    217 * 
  • raptor-web/trunk/src/main/java/uk/ac/cardiff/raptorweb/service/PreferenceService.java

    r484 r899  
     1/** 
     2 * Copyright (C) 2010 Cardiff University, Wales <smartp@cf.ac.uk> 
     3 * 
     4 * Licensed under the Apache License, Version 2.0 (the "License"); 
     5 * you may not use this file except in compliance with the License. 
     6 * You may obtain a copy of the License at 
     7 * 
     8 *         http://www.apache.org/licenses/LICENSE-2.0 
     9 * 
     10 * Unless required by applicable law or agreed to in writing, software 
     11 * distributed under the License is distributed on an "AS IS" BASIS, 
     12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     13 * See the License for the specific language governing permissions and 
     14 * limitations under the License. 
     15 */ 
    116package uk.ac.cardiff.raptorweb.service; 
    217 
  • raptor-web/trunk/src/main/java/uk/ac/cardiff/raptorweb/service/SetupService.java

    r803 r899  
     1/** 
     2 * Copyright (C) 2010 Cardiff University, Wales <smartp@cf.ac.uk> 
     3 * 
     4 * Licensed under the Apache License, Version 2.0 (the "License"); 
     5 * you may not use this file except in compliance with the License. 
     6 * You may obtain a copy of the License at 
     7 * 
     8 *         http://www.apache.org/licenses/LICENSE-2.0 
     9 * 
     10 * Unless required by applicable law or agreed to in writing, software 
     11 * distributed under the License is distributed on an "AS IS" BASIS, 
     12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     13 * See the License for the specific language governing permissions and 
     14 * limitations under the License. 
     15 */ 
    116/** 
    217 * 
  • raptor-web/trunk/src/main/java/uk/ac/cardiff/raptorweb/service/StartService.java

    r724 r899  
     1/** 
     2 * Copyright (C) 2010 Cardiff University, Wales <smartp@cf.ac.uk> 
     3 * 
     4 * Licensed under the Apache License, Version 2.0 (the "License"); 
     5 * you may not use this file except in compliance with the License. 
     6 * You may obtain a copy of the License at 
     7 * 
     8 *         http://www.apache.org/licenses/LICENSE-2.0 
     9 * 
     10 * Unless required by applicable law or agreed to in writing, software 
     11 * distributed under the License is distributed on an "AS IS" BASIS, 
     12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     13 * See the License for the specific language governing permissions and 
     14 * limitations under the License. 
     15 */ 
    116/** 
    217 * 
  • raptor-web/trunk/src/main/java/uk/ac/cardiff/raptorweb/service/impl/GraphServiceImpl.java

    r737 r899  
     1/** 
     2 * Copyright (C) 2010 Cardiff University, Wales <smartp@cf.ac.uk> 
     3 * 
     4 * Licensed under the Apache License, Version 2.0 (the "License"); 
     5 * you may not use this file except in compliance with the License. 
     6 * You may obtain a copy of the License at 
     7 * 
     8 *         http://www.apache.org/licenses/LICENSE-2.0 
     9 * 
     10 * Unless required by applicable law or agreed to in writing, software 
     11 * distributed under the License is distributed on an "AS IS" BASIS, 
     12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     13 * See the License for the specific language governing permissions and 
     14 * limitations under the License. 
     15 */ 
    116/** 
    217 * 
  • raptor-web/trunk/src/main/java/uk/ac/cardiff/raptorweb/service/impl/PreferenceServiceImpl.java

    r484 r899  
     1/** 
     2 * Copyright (C) 2010 Cardiff University, Wales <smartp@cf.ac.uk> 
     3 * 
     4 * Licensed under the Apache License, Version 2.0 (the "License"); 
     5 * you may not use this file except in compliance with the License. 
     6 * You may obtain a copy of the License at 
     7 * 
     8 *         http://www.apache.org/licenses/LICENSE-2.0 
     9 * 
     10 * Unless required by applicable law or agreed to in writing, software 
     11 * distributed under the License is distributed on an "AS IS" BASIS, 
     12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     13 * See the License for the specific language governing permissions and 
     14 * limitations under the License. 
     15 */ 
    116package uk.ac.cardiff.raptorweb.service.impl; 
    217 
  • raptor-web/trunk/src/main/java/uk/ac/cardiff/raptorweb/service/impl/SetupServiceImpl.java

    r803 r899  
     1/** 
     2 * Copyright (C) 2010 Cardiff University, Wales <smartp@cf.ac.uk> 
     3 * 
     4 * Licensed under the Apache License, Version 2.0 (the "License"); 
     5 * you may not use this file except in compliance with the License. 
     6 * You may obtain a copy of the License at 
     7 * 
     8 *         http://www.apache.org/licenses/LICENSE-2.0 
     9 * 
     10 * Unless required by applicable law or agreed to in writing, software 
     11 * distributed under the License is distributed on an "AS IS" BASIS, 
     12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     13 * See the License for the specific language governing permissions and 
     14 * limitations under the License. 
     15 */ 
    116/** 
    217 * 
  • raptor-web/trunk/src/main/java/uk/ac/cardiff/raptorweb/service/impl/StartServiceImpl.java

    r803 r899  
     1/** 
     2 * Copyright (C) 2010 Cardiff University, Wales <smartp@cf.ac.uk> 
     3 * 
     4 * Licensed under the Apache License, Version 2.0 (the "License"); 
     5 * you may not use this file except in compliance with the License. 
     6 * You may obtain a copy of the License at 
     7 * 
     8 *         http://www.apache.org/licenses/LICENSE-2.0 
     9 * 
     10 * Unless required by applicable law or agreed to in writing, software 
     11 * distributed under the License is distributed on an "AS IS" BASIS, 
     12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     13 * See the License for the specific language governing permissions and 
     14 * limitations under the License. 
     15 */ 
    116/** 
    217 * 
  • raptor-web/trunk/src/main/java/uk/ac/cardiff/raptorweb/servlet/TrinidadServletFilter.java

    r365 r899  
     1/** 
     2 * Copyright (C) 2010 Cardiff University, Wales <smartp@cf.ac.uk> 
     3 * 
     4 * Licensed under the Apache License, Version 2.0 (the "License"); 
     5 * you may not use this file except in compliance with the License. 
     6 * You may obtain a copy of the License at 
     7 * 
     8 *         http://www.apache.org/licenses/LICENSE-2.0 
     9 * 
     10 * Unless required by applicable law or agreed to in writing, software 
     11 * distributed under the License is distributed on an "AS IS" BASIS, 
     12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     13 * See the License for the specific language governing permissions and 
     14 * limitations under the License. 
     15 */ 
    116/** 
    217 * 
  • raptor-web/trunk/src/main/resources/logging.xml

    r836 r899  
    11<?xml version="1.0" encoding="UTF-8"?> 
     2<!-- 
     3 
     4    Copyright (C) 2010 Cardiff University, Wales <smartp@cf.ac.uk> 
     5 
     6    Licensed under the Apache License, Version 2.0 (the "License"); 
     7    you may not use this file except in compliance with the License. 
     8    You may obtain a copy of the License at 
     9 
     10            http://www.apache.org/licenses/LICENSE-2.0 
     11 
     12    Unless required by applicable law or agreed to in writing, software 
     13    distributed under the License is distributed on an "AS IS" BASIS, 
     14    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     15    See the License for the specific language governing permissions and 
     16    limitations under the License. 
     17 
     18--> 
    219 
    320<configuration> 
  • raptor-web/trunk/src/main/webapp/WEB-INF/config/dashboard-statistics.xml

    r698 r899  
    11<?xml version="1.0" encoding="UTF-8"?> 
     2<!-- 
     3 
     4    Copyright (C) 2010 Cardiff University, Wales <smartp@cf.ac.uk> 
     5 
     6    Licensed under the Apache License, Version 2.0 (the "License"); 
     7    you may not use this file except in compliance with the License. 
     8    You may obtain a copy of the License at 
     9 
     10            http://www.apache.org/licenses/LICENSE-2.0 
     11 
     12    Unless required by applicable law or agreed to in writing, software 
     13    distributed under the License is distributed on an "AS IS" BASIS, 
     14    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     15    See the License for the specific language governing permissions and 
     16    limitations under the License. 
     17 
     18--> 
    219<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    320    xmlns:util="http://www.springframework.org/schema/util" 
  • raptor-web/trunk/src/main/webapp/WEB-INF/config/metadata.xml

    r811 r899  
    11<?xml version="1.0" encoding="UTF-8"?> 
     2<!-- 
     3 
     4    Copyright (C) 2010 Cardiff University, Wales <smartp@cf.ac.uk> 
     5 
     6    Licensed under the Apache License, Version 2.0 (the "License"); 
     7    you may not use this file except in compliance with the License. 
     8    You may obtain a copy of the License at 
     9 
     10            http://www.apache.org/licenses/LICENSE-2.0 
     11 
     12    Unless required by applicable law or agreed to in writing, software 
     13    distributed under the License is distributed on an "AS IS" BASIS, 
     14    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     15    See the License for the specific language governing permissions and 
     16    limitations under the License. 
     17 
     18--> 
    219<beans xmlns="http://www.springframework.org/schema/beans" 
    320        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
  • raptor-web/trunk/src/main/webapp/WEB-INF/config/mua-endpoints.xml

    r811 r899  
    11<?xml version="1.0" encoding="UTF-8"?> 
     2<!-- 
     3 
     4    Copyright (C) 2010 Cardiff University, Wales <smartp@cf.ac.uk> 
     5 
     6    Licensed under the Apache License, Version 2.0 (the "License"); 
     7    you may not use this file except in compliance with the License. 
     8    You may obtain a copy of the License at 
     9 
     10            http://www.apache.org/licenses/LICENSE-2.0 
     11 
     12    Unless required by applicable law or agreed to in writing, software 
     13    distributed under the License is distributed on an "AS IS" BASIS, 
     14    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     15    See the License for the specific language governing permissions and 
     16    limitations under the License. 
     17 
     18--> 
    219<beans xmlns="http://www.springframework.org/schema/beans" 
    320       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
  • raptor-web/trunk/src/main/webapp/WEB-INF/config/raptorweb-servlet.xml

    r811 r899  
    11<?xml version="1.0" encoding="UTF-8"?> 
     2<!-- 
     3 
     4    Copyright (C) 2010 Cardiff University, Wales <smartp@cf.ac.uk> 
     5 
     6    Licensed under the Apache License, Version 2.0 (the "License"); 
     7    you may not use this file except in compliance with the License. 
     8    You may obtain a copy of the License at 
     9 
     10            http://www.apache.org/licenses/LICENSE-2.0 
     11 
     12    Unless required by applicable law or agreed to in writing, software 
     13    distributed under the License is distributed on an "AS IS" BASIS, 
     14    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     15    See the License for the specific language governing permissions and 
     16    limitations under the License. 
     17 
     18--> 
    219<beans xmlns="http://www.springframework.org/schema/beans" 
    320       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
  • raptor-web/trunk/src/main/webapp/WEB-INF/config/security.xml

    r811 r899  
    11<?xml version="1.0" encoding="UTF-8"?> 
     2<!-- 
     3 
     4    Copyright (C) 2010 Cardiff University, Wales <smartp@cf.ac.uk> 
     5 
     6    Licensed under the Apache License, Version 2.0 (the "License"); 
     7    you may not use this file except in compliance with the License. 
     8    You may obtain a copy of the License at 
     9 
     10            http://www.apache.org/licenses/LICENSE-2.0 
     11 
     12    Unless required by applicable law or agreed to in writing, software 
     13    distributed under the License is distributed on an "AS IS" BASIS, 
     14    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     15    See the License for the specific language governing permissions and 
     16    limitations under the License. 
     17 
     18--> 
    219 
    320<beans xmlns="http://www.springframework.org/schema/beans" 
  • raptor-web/trunk/src/main/webapp/WEB-INF/config/users.xml

    r811 r899  
    11<?xml version="1.0" encoding="UTF-8"?> 
     2<!-- 
     3 
     4    Copyright (C) 2010 Cardiff University, Wales <smartp@cf.ac.uk> 
     5 
     6    Licensed under the Apache License, Version 2.0 (the "License"); 
     7    you may not use this file except in compliance with the License. 
     8    You may obtain a copy of the License at 
     9 
     10            http://www.apache.org/licenses/LICENSE-2.0 
     11 
     12    Unless required by applicable law or agreed to in writing, software 
     13    distributed under the License is distributed on an "AS IS" BASIS, 
     14    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     15    See the License for the specific language governing permissions and 
     16    limitations under the License. 
     17 
     18--> 
    219 
    320<beans xmlns="http://www.springframework.org/schema/beans" 
  • raptor-web/trunk/src/main/webapp/WEB-INF/config/web-core.xml

    r811 r899  
    11<?xml version="1.0" encoding="UTF-8"?> 
     2<!-- 
     3 
     4    Copyright (C) 2010 Cardiff University, Wales <smartp@cf.ac.uk> 
     5 
     6    Licensed under the Apache License, Version 2.0 (the "License"); 
     7    you may not use this file except in compliance with the License. 
     8    You may obtain a copy of the License at 
     9 
     10            http://www.apache.org/licenses/LICENSE-2.0 
     11 
     12    Unless required by applicable law or agreed to in writing, software 
     13    distributed under the License is distributed on an "AS IS" BASIS, 
     14    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     15    See the License for the specific language governing permissions and 
     16    limitations under the License. 
     17 
     18--> 
    219<beans xmlns="http://www.springframework.org/schema/beans" 
    320       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
  • raptor-web/trunk/src/main/webapp/WEB-INF/config/webflow-config.xml

    r519 r899  
    11<?xml version="1.0" encoding="UTF-8"?> 
     2<!-- 
     3 
     4    Copyright (C) 2010 Cardiff University, Wales <smartp@cf.ac.uk> 
     5 
     6    Licensed under the Apache License, Version 2.0 (the "License"); 
     7    you may not use this file except in compliance with the License. 
     8    You may obtain a copy of the License at 
     9 
     10            http://www.apache.org/licenses/LICENSE-2.0 
     11 
     12    Unless required by applicable law or agreed to in writing, software 
     13    distributed under the License is distributed on an "AS IS" BASIS, 
     14    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     15    See the License for the specific language governing permissions and 
     16    limitations under the License. 
     17 
     18--> 
    219<beans xmlns="http://www.springframework.org/schema/beans" 
    320       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
  • raptor-web/trunk/src/main/webapp/WEB-INF/faces-config.xml

    r561 r899  
    11<?xml version="1.0"?> 
    2 <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor  
    3         license agreements. See the NOTICE file distributed with this work for additional  
    4         information regarding copyright ownership. The ASF licenses this file to  
    5         you under the Apache License, Version 2.0 (the "License"); you may not use  
    6         this file except in compliance with the License. You may obtain a copy of  
    7         the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required  
    8         by applicable law or agreed to in writing, software distributed under the  
    9         License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS  
    10         OF ANY KIND, either express or implied. See the License for the specific  
    11         language governing permissions and limitations under the License. --> 
     2<!-- 
     3 
     4    Copyright (C) 2010 Cardiff University, Wales <smartp@cf.ac.uk> 
     5 
     6    Licensed under the Apache License, Version 2.0 (the "License"); 
     7    you may not use this file except in compliance with the License. 
     8    You may obtain a copy of the License at 
     9 
     10            http://www.apache.org/licenses/LICENSE-2.0 
     11 
     12    Unless required by applicable law or agreed to in writing, software 
     13    distributed under the License is distributed on an "AS IS" BASIS, 
     14    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     15    See the License for the specific language governing permissions and 
     16    limitations under the License. 
     17 
     18--> 
    1219<faces-config xmlns="http://java.sun.com/xml/ns/javaee" 
    1320        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
  • raptor-web/trunk/src/main/webapp/WEB-INF/flows/reports/about.jspx

    r836 r899  
    11<?xml version="1.0" encoding="ISO-8859-1"?> 
     2<!-- 
     3 
     4    Copyright (C) 2010 Cardiff University, Wales <smartp@cf.ac.uk> 
     5 
     6    Licensed under the Apache License, Version 2.0 (the "License"); 
     7    you may not use this file except in compliance with the License. 
     8    You may obtain a copy of the License at 
     9 
     10            http://www.apache.org/licenses/LICENSE-2.0 
     11 
     12    Unless required by applicable law or agreed to in writing, software 
     13    distributed under the License is distributed on an "AS IS" BASIS, 
     14    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     15    See the License for the specific language governing permissions and 
     16    limitations under the License. 
     17 
     18--> 
    219 
    320<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0" 
  • raptor-web/trunk/src/main/webapp/WEB-INF/flows/reports/graphicalReports.xhtml

    r803 r899  
     1<!-- 
     2 
     3    Copyright (C) 2010 Cardiff University, Wales <smartp@cf.ac.uk> 
     4 
     5    Licensed under the Apache License, Version 2.0 (the "License"); 
     6    you may not use this file except in compliance with the License. 
     7    You may obtain a copy of the License at 
     8 
     9            http://www.apache.org/licenses/LICENSE-2.0 
     10 
     11    Unless required by applicable law or agreed to in writing, software 
     12    distributed under the License is distributed on an "AS IS" BASIS, 
     13    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     14    See the License for the specific language governing permissions and 
     15    limitations under the License. 
     16 
     17--> 
    118<!DOCTYPE composition PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
    219 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
  • raptor-web/trunk/src/main/webapp/WEB-INF/flows/reports/reports-flow.xml

    r803 r899  
     1<!-- 
     2 
     3    Copyright (C) 2010 Cardiff University, Wales <smartp@cf.ac.uk> 
     4 
     5    Licensed under the Apache License, Version 2.0 (the "License"); 
     6    you may not use this file except in compliance with the License. 
     7    You may obtain a copy of the License at 
     8 
     9            http://www.apache.org/licenses/LICENSE-2.0 
     10 
     11    Unless required by applicable law or agreed to in writing, software 
     12    distributed under the License is distributed on an "AS IS" BASIS, 
     13    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     14    See the License for the specific language governing permissions and 
     15    limitations under the License. 
     16 
     17--> 
    118<flow xmlns="http://www.springframework.org/schema/webflow" 
    219        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
  • raptor-web/trunk/src/main/webapp/WEB-INF/flows/reports/seriesPanel.xhtml

    r741 r899  
     1<!-- 
     2 
     3    Copyright (C) 2010 Cardiff University, Wales <smartp@cf.ac.uk> 
     4 
     5    Licensed under the Apache License, Version 2.0 (the "License"); 
     6    you may not use this file except in compliance with the License. 
     7    You may obtain a copy of the License at 
     8 
     9            http://www.apache.org/licenses/LICENSE-2.0 
     10 
     11    Unless required by applicable law or agreed to in writing, software 
     12    distributed under the License is distributed on an "AS IS" BASIS, 
     13    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     14    See the License for the specific language governing permissions and 
     15    limitations under the License. 
     16 
     17--> 
    118<!DOCTYPE composition PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
    219 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
  • raptor-web/trunk/src/main/webapp/WEB-INF/flows/reports/setupRaptorWeb.xhtml

    r803 r899  
     1<!-- 
     2 
     3    Copyright (C) 2010 Cardiff University, Wales <smartp@cf.ac.uk> 
     4 
     5    Licensed under the Apache License, Version 2.0 (the "License"); 
     6    you may not use this file except in compliance with the License. 
     7    You may obtain a copy of the License at 
     8 
     9            http://www.apache.org/licenses/LICENSE-2.0 
     10 
     11    Unless required by applicable law or agreed to in writing, software 
     12    distributed under the License is distributed on an "AS IS" BASIS, 
     13    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     14    See the License for the specific language governing permissions and 
     15    limitations under the License. 
     16 
     17--> 
    118<!DOCTYPE composition PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
    219 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
  • raptor-web/trunk/src/main/webapp/WEB-INF/flows/reports/startReport.xhtml

    r803 r899  
     1<!-- 
     2 
     3    Copyright (C) 2010 Cardiff University, Wales <smartp@cf.ac.uk> 
     4 
     5    Licensed under the Apache License, Version 2.0 (the "License"); 
     6    you may not use this file except in compliance with the License. 
     7    You may obtain a copy of the License at 
     8 
     9            http://www.apache.org/licenses/LICENSE-2.0 
     10 
     11    Unless required by applicable law or agreed to in writing, software 
     12    distributed under the License is distributed on an "AS IS" BASIS, 
     13    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     14    See the License for the specific language governing permissions and 
     15    limitations under the License. 
     16 
     17--> 
    118<!DOCTYPE composition PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
    219 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
  • raptor-web/trunk/src/main/webapp/WEB-INF/flows/reports/viewStatistics.html

    r365 r899  
     1<!-- 
     2 
     3    Copyright (C) 2010 Cardiff University, Wales <smartp@cf.ac.uk> 
     4 
     5    Licensed under the Apache License, Version 2.0 (the "License"); 
     6    you may not use this file except in compliance with the License. 
     7    You may obtain a copy of the License at 
     8 
     9            http://www.apache.org/licenses/LICENSE-2.0 
     10 
     11    Unless required by applicable law or agreed to in writing, software 
     12    distributed under the License is distributed on an "AS IS" BASIS, 
     13    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     14    See the License for the specific language governing permissions and 
     15    limitations under the License. 
     16 
     17--> 
    118<!DOCTYPE composition PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
    219 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
  • raptor-web/trunk/src/main/webapp/WEB-INF/flows/reports/working-panel.xhtml

    r531 r899  
     1<!-- 
     2 
     3    Copyright (C) 2010 Cardiff University, Wales <smartp@cf.ac.uk> 
     4 
     5    Licensed under the Apache License, Version 2.0 (the "License"); 
     6    you may not use this file except in compliance with the License. 
     7    You may obtain a copy of the License at 
     8 
     9            http://www.apache.org/licenses/LICENSE-2.0 
     10 
     11    Unless required by applicable law or agreed to in writing, software 
     12    distributed under the License is distributed on an "AS IS" BASIS, 
     13    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     14    See the License for the specific language governing permissions and 
     15    limitations under the License. 
     16 
     17--> 
    118<!DOCTYPE composition PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
    219 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
  • raptor-web/trunk/src/main/webapp/WEB-INF/trinidad-config.xml

    r365 r899  
    11<?xml version="1.0"?> 
    22<!-- 
    3     Licensed to the Apache Software Foundation (ASF) under one 
    4     or more contributor license agreements.  See the NOTICE file 
    5     distributed with this work for additional information 
    6     regarding copyright ownership.  The ASF licenses this file 
    7     to you under the Apache License, Version 2.0 (the 
    8     "License"); you may not use this file except in compliance 
    9     with the License.  You may obtain a copy of the License at 
    103 
    11     http://www.apache.org/licenses/LICENSE-2.0 
     4    Copyright (C) 2010 Cardiff University, Wales <smartp@cf.ac.uk> 
    125 
    13     Unless required by applicable law or agreed to in writing, 
    14     software distributed under the License is distributed on an 
    15     "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 
    16     KIND, either express or implied.  See the License for the 
    17     specific language governing permissions and limitations 
    18     under the License. 
     6    Licensed under the Apache License, Version 2.0 (the "License"); 
     7    you may not use this file except in compliance with the License. 
     8    You may obtain a copy of the License at 
     9 
     10            http://www.apache.org/licenses/LICENSE-2.0 
     11 
     12    Unless required by applicable law or agreed to in writing, software 
     13    distributed under the License is distributed on an "AS IS" BASIS, 
     14    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     15    See the License for the specific language governing permissions and 
     16    limitations under the License. 
    1917 
    2018--> 
  • raptor-web/trunk/src/main/webapp/WEB-INF/trinidad-skins.xml

    r365 r899  
    11<?xml version="1.0" encoding="ISO-8859-1"?> 
    22<!-- 
    3     Licensed to the Apache Software Foundation (ASF) under one 
    4     or more contributor license agreements.  See the NOTICE file 
    5     distributed with this work for additional information 
    6     regarding copyright ownership.  The ASF licenses this file 
    7     to you under the Apache License, Version 2.0 (the 
    8     "License"); you may not use this file except in compliance 
    9     with the License.  You may obtain a copy of the License at 
    103 
    11     http://www.apache.org/licenses/LICENSE-2.0 
     4    Copyright (C) 2010 Cardiff University, Wales <smartp@cf.ac.uk> 
    125 
    13     Unless required by applicable law or agreed to in writing, 
    14     software distributed under the License is distributed on an 
    15     "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 
    16     KIND, either express or implied.  See the License for the 
    17     specific language governing permissions and limitations 
    18     under the License. 
     6    Licensed under the Apache License, Version 2.0 (the "License"); 
     7    you may not use this file except in compliance with the License. 
     8    You may obtain a copy of the License at 
     9 
     10            http://www.apache.org/licenses/LICENSE-2.0 
     11 
     12    Unless required by applicable law or agreed to in writing, software 
     13    distributed under the License is distributed on an "AS IS" BASIS, 
     14    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     15    See the License for the specific language governing permissions and 
     16    limitations under the License. 
    1917 
    2018--> 
  • raptor-web/trunk/src/main/webapp/WEB-INF/web.xml

    r803 r899  
    11<?xml version = '1.0' encoding = 'ISO-8859-1'?> 
    2 <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file 
    3     distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under 
    4     the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may 
    5     obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to 
    6     in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF 
    7     ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under 
    8     the License. --> 
    9 <web-app xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    10     xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd" version="2.4"> 
     2<!-- 
    113 
    12     <description>RaptorWeb</description> 
     4    Copyright (C) 2010 Cardiff University, Wales <smartp@cf.ac.uk> 
    135 
     6    Licensed under the Apache License, Version 2.0 (the "License"); 
     7    you may not use this file except in compliance with the License. 
     8    You may obtain a copy of the License at 
    149 
    15     <!-- - defines setup that can be accessed by the entire servlet, not just spring hence why security is defined here --> 
    16     <context-param> 
    17         <param-name>contextConfigLocation</param-name> 
    18         <param-value> 
    19           /WEB-INF/config/security.xml 
    20       </param-value> 
    21     </context-param> 
     10            http://www.apache.org/licenses/LICENSE-2.0 
    2211 
    23     <filter> 
    24         <filter-name>springSecurityFilterChain</filter-name> 
    25         <filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class> 
    26     </filter> 
    27     <filter-mapping> 
    28         <filter-name>springSecurityFilterChain</filter-name> 
    29         <url-pattern>/*</url-pattern> 
    30     </filter-mapping> 
     12    Unless required by applicable law or agreed to in writing, software 
     13    distributed under the License is distributed on an "AS IS" BASIS, 
     14    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     15    See the License for the specific language governing permissions and 
     16    limitations under the License. 
    3117 
    32     <context-param> 
    33         <param-name>javax.faces.STATE_SAVING_METHOD</param-name> 
    34         <param-value>server</param-value> 
    35     </context-param> 
    36  
    37  
    38     <!-- Use xhtml view templates saved as *.xhtml, for use with Facelets --> 
    39     <context-param> 
    40         <param-name>javax.faces.DEFAULT_SUFFIX</param-name> 
    41         <param-value>.xhtml</param-value> 
    42     </context-param> 
    43     <!-- Enables special Facelets debug output during development --> 
    44     <context-param> 
    45         <param-name>facelets.DEVELOPMENT</param-name> 
    46         <param-value>true</param-value> 
    47     </context-param> 
    48     <!-- Causes Facelets to refresh templates during development --> 
    49     <context-param> 
    50         <param-name>facelets.REFRESH_PERIOD</param-name> 
    51         <param-value>1</param-value> 
    52     </context-param> 
    53  
    54     <!-- Enforce UTF-8 Character Encoding --> 
    55     <filter> 
    56         <filter-name>charEncodingFilter</filter-name> 
    57         <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class> 
    58         <init-param> 
    59             <param-name>encoding</param-name> 
    60             <param-value>ISO-8859-1</param-value> 
    61         </init-param> 
    62         <init-param> 
    63             <param-name>forceEncoding</param-name> 
    64             <param-value>true</param-value> 
    65         </init-param> 
    66     </filter> 
    67  
    68     <filter-mapping> 
    69         <filter-name>charEncodingFilter</filter-name> 
    70         <url-pattern>/*</url-pattern> 
    71     </filter-mapping> 
    72  
    73     <!-- Listener for spring --> 
    74     <listener> 
    75         <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> 
    76     </listener> 
    77     <listener> 
    78         <listener-class>org.springframework.web.context.request.RequestContextListener</listener-class> 
    79     </listener> 
    80     <!-- Listener, to allow Jetty serving MyFaces apps <listener> <listener-class>org.apache.myfaces.webapp.StartupServletContextListener</listener-class> 
    81         </listener> --> 
    82  
    83     <!-- Spring web flow servlet, defines config specific to the current application instance --> 
    84     <servlet> 
    85         <servlet-name>Spring MVC Dispatcher Servlet</servlet-name> 
    86         <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> 
    87         <init-param> 
    88             <param-name>contextConfigLocation</param-name> 
    89             <param-value>/WEB-INF/config/raptorweb-servlet.xml 
    90                         </param-value> 
    91         </init-param> 
    92         <load-on-startup>1</load-on-startup> 
    93     </servlet> 
    94  
    95     <!-- allows spring security to monitor the HTTPSession, so on logout the session is released furthermore, this is required 
    96         to allow concurrency control e.g. 1 user session max, otherwise sessions are only every timed out --> 
    97     <listener> 
    98         <listener-class>org.springframework.security.web.session.HttpSessionEventPublisher</listener-class> 
    99     </listener> 
    100  
    101     <!-- Serves static resource content from .jar files such as spring-faces.jar --> 
    102     <servlet> 
    103         <servlet-name>Resources Servlet</servlet-name> 
    104         <servlet-class>org.springframework.js.resource.ResourceServlet</servlet-class> 
    105         <load-on-startup>0</load-on-startup> 
    106     </servlet> 
    107  
    108     <!-- Map all /resources requests to the Resource Servlet for handling --> 
    109     <servlet-mapping> 
    110         <servlet-name>Resources Servlet</servlet-name> 
    111         <url-pattern>/resources/*</url-pattern> 
    112     </servlet-mapping> 
    113  
    114     <!-- Faces Servlet --> 
    115     <!--<servlet> <servlet-name>faces</servlet-name> <servlet-class>javax.faces.webapp.FacesServlet</servlet-class> </servlet> --> 
    116  
    117     <servlet> 
    118         <servlet-name>Faces Servlet</servlet-name> 
    119         <servlet-class>javax.faces.webapp.FacesServlet</servlet-class> 
    120         <load-on-startup>1</load-on-startup> 
    121     </servlet> 
    122  
    123     <!-- Just here so the JSF implementation can initialize --> 
    124     <servlet-mapping> 
    125         <servlet-name>Faces Servlet</servlet-name> 
    126         <url-pattern>*.faces</url-pattern> 
    127     </servlet-mapping> 
    128  
    129  
    130     <!-- Richfaces config --> 
    131     <context-param> 
    132         <param-name>org.richfaces.SKIN</param-name> 
    133         <param-value>darkX</param-value> 
    134     </context-param> 
    135  
    136     <!-- Making the RichFaces skin spread to standard HTML controls --> 
    137     <context-param> 
    138         <param-name>org.richfaces.CONTROL_SKINNING</param-name> 
    139         <param-value>enable</param-value> 
    140     </context-param> 
    141  
    142  
    143  
    144     <filter> 
    145         <display-name>RichFaces Filter</display-name> 
    146         <filter-name>richfaces</filter-name> 
    147         <filter-class>org.ajax4jsf.Filter</filter-class> 
    148         <init-param> 
    149             <param-name>maxRequestSize</param-name> 
    150             <param-value>10000000</param-value> 
    151         </init-param> 
    152         <init-param> 
    153             <param-name>createTempFiles</param-name> 
    154             <param-value>false</param-value> 
    155         </init-param> 
    156  
    157     </filter> 
    158     <filter-mapping> 
    159         <filter-name>richfaces</filter-name> 
    160         <servlet-name>Spring MVC Dispatcher Servlet</servlet-name> 
    161         <dispatcher>REQUEST</dispatcher> 
    162         <dispatcher>FORWARD</dispatcher> 
    163         <dispatcher>INCLUDE</dispatcher> 
    164     </filter-mapping> 
    165  
    166     <!-- Spring web flow servlet mapping --> 
    167     <servlet-mapping> 
    168         <servlet-name>Spring MVC Dispatcher Servlet</servlet-name> 
    169         <url-pattern>/spring/*</url-pattern> 
    170     </servlet-mapping> 
    171  
    172     <!-- Welcome Files --> 
    173     <welcome-file-list> 
    174         <welcome-file>index.html</welcome-file> 
    175     </welcome-file-list> 
    176  
    177 </web-app> 
     18--> 
  • raptor-web/trunk/src/main/webapp/css/style.css

    r365 r899  
     1/** 
     2 * Copyright (C) 2010 Cardiff University, Wales <smartp@cf.ac.uk> 
     3 * 
     4 * Licensed under the Apache License, Version 2.0 (the "License"); 
     5 * you may not use this file except in compliance with the License. 
     6 * You may obtain a copy of the License at 
     7 * 
     8 *         http://www.apache.org/licenses/LICENSE-2.0 
     9 * 
     10 * Unless required by applicable law or agreed to in writing, software 
     11 * distributed under the License is distributed on an "AS IS" BASIS, 
     12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     13 * See the License for the specific language governing permissions and 
     14 * limitations under the License. 
     15 */ 
    116body, html { 
    217        width: 100%; 
  • raptor-web/trunk/src/main/webapp/index.html

    r365 r899  
     1<!-- 
     2 
     3    Copyright (C) 2010 Cardiff University, Wales <smartp@cf.ac.uk> 
     4 
     5    Licensed under the Apache License, Version 2.0 (the "License"); 
     6    you may not use this file except in compliance with the License. 
     7    You may obtain a copy of the License at 
     8 
     9            http://www.apache.org/licenses/LICENSE-2.0 
     10 
     11    Unless required by applicable law or agreed to in writing, software 
     12    distributed under the License is distributed on an "AS IS" BASIS, 
     13    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     14    See the License for the specific language governing permissions and 
     15    limitations under the License. 
     16 
     17--> 
    118<html> 
    219 
  • raptor-web/trunk/src/main/webapp/login.html

    r741 r899  
     1<!-- 
     2 
     3    Copyright (C) 2010 Cardiff University, Wales <smartp@cf.ac.uk> 
     4 
     5    Licensed under the Apache License, Version 2.0 (the "License"); 
     6    you may not use this file except in compliance with the License. 
     7    You may obtain a copy of the License at 
     8 
     9            http://www.apache.org/licenses/LICENSE-2.0 
     10 
     11    Unless required by applicable law or agreed to in writing, software 
     12    distributed under the License is distributed on an "AS IS" BASIS, 
     13    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     14    See the License for the specific language governing permissions and 
     15    limitations under the License. 
     16 
     17--> 
    118 
    219<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" > 
  • raptor-web/trunk/src/main/webapp/logout.html

    r497 r899  
     1<!-- 
     2 
     3    Copyright (C) 2010 Cardiff University, Wales <smartp@cf.ac.uk> 
     4 
     5    Licensed under the Apache License, Version 2.0 (the "License"); 
     6    you may not use this file except in compliance with the License. 
     7    You may obtain a copy of the License at 
     8 
     9            http://www.apache.org/licenses/LICENSE-2.0 
     10 
     11    Unless required by applicable law or agreed to in writing, software 
     12    distributed under the License is distributed on an "AS IS" BASIS, 
     13    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     14    See the License for the specific language governing permissions and 
     15    limitations under the License. 
     16 
     17--> 
    118 
    219<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" > 
  • raptor-web/trunk/src/main/webapp/report-templates/generic-report.xml

    r571 r899  
    11<?xml version="1.0" encoding="UTF-8"?> 
     2<!-- 
     3 
     4    Copyright (C) 2010 Cardiff University, Wales <smartp@cf.ac.uk> 
     5 
     6    Licensed under the Apache License, Version 2.0 (the "License"); 
     7    you may not use this file except in compliance with the License. 
     8    You may obtain a copy of the License at 
     9 
     10            http://www.apache.org/licenses/LICENSE-2.0 
     11 
     12    Unless required by applicable law or agreed to in writing, software 
     13    distributed under the License is distributed on an "AS IS" BASIS, 
     14    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     15    See the License for the specific language governing permissions and 
     16    limitations under the License. 
     17 
     18--> 
    219<jasperReport xmlns="http://jasperreports.sourceforge.net/jasperreports" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://jasperreports.sourceforge.net/jasperreports http://jasperreports.sourceforge.net/xsd/jasperreport.xsd" name="DataSourceReport" pageWidth="595" pageHeight="842" columnWidth="515" leftMargin="40" rightMargin="40" topMargin="50" bottomMargin="50"> 
    320    <!--  This report is augmented with a table by DynamicJasper. DynamicJasper prohibits the use of the following 
  • raptor-web/trunk/src/main/webapp/report-templates/standard-report.xml

    r570 r899  
    11<?xml version="1.0" encoding="UTF-8"  ?> 
     2<!-- 
     3 
     4    Copyright (C) 2010 Cardiff University, Wales <smartp@cf.ac.uk> 
     5 
     6    Licensed under the Apache License, Version 2.0 (the "License"); 
     7    you may not use this file except in compliance with the License. 
     8    You may obtain a copy of the License at 
     9 
     10            http://www.apache.org/licenses/LICENSE-2.0 
     11 
     12    Unless required by applicable law or agreed to in writing, software 
     13    distributed under the License is distributed on an "AS IS" BASIS, 
     14    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     15    See the License for the specific language governing permissions and 
     16    limitations under the License. 
     17 
     18--> 
    219<!DOCTYPE jasperReport PUBLIC "//JasperReports//DTD Report Design//EN" "http://jasperreports.sourceforge.net/dtds/jasperreport.dtd"> 
    320<jasperReport name="crosstabtest" columnCount="1" 
  • raptor-web/trunk/src/main/webapp/skins/casablanca/casablancaSkin.css

    r365 r899  
     1/** 
     2 * Copyright (C) 2010 Cardiff University, Wales <smartp@cf.ac.uk> 
     3 * 
     4 * Licensed under the Apache License, Version 2.0 (the "License"); 
     5 * you may not use this file except in compliance with the License. 
     6 * You may obtain a copy of the License at 
     7 * 
     8 *         http://www.apache.org/licenses/LICENSE-2.0 
     9 * 
     10 * Unless required by applicable law or agreed to in writing, software 
     11 * distributed under the License is distributed on an "AS IS" BASIS, 
     12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     13 * See the License for the specific language governing permissions and 
     14 * limitations under the License. 
     15 */ 
    116/* 
    217 * CassaBlanca skin (and it's approach) 
  • raptor-web/trunk/src/main/webapp/skins/suede/suede-ps.css

    r365 r899  
    1 /* 
    2  *  Licensed to the Apache Software Foundation (ASF) under one 
    3  *  or more contributor license agreements.  See the NOTICE file 
    4  *  distributed with this work for additional information 
    5  *  regarding copyright ownership.  The ASF licenses this file 
    6  *  to you under the Apache License, Version 2.0 (the 
    7  *  "License"); you may not use this file except in compliance 
    8  *  with the License.  You may obtain a copy of the License at 
     1/** 
     2 * Copyright (C) 2010 Cardiff University, Wales <smartp@cf.ac.uk> 
    93 * 
    10  *  http://www.apache.org/licenses/LICENSE-2.0 
     4 * Licensed under the Apache License, Version 2.0 (the "License"); 
     5 * you may not use this file except in compliance with the License. 
     6 * You may obtain a copy of the License at 
    117 * 
    12  *  Unless required by applicable law or agreed to in writing, 
    13  *  software distributed under the License is distributed on an 
    14  *  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 
    15  *  KIND, either express or implied.  See the License for the 
    16  *  specific language governing permissions and limitations 
    17  *  under the License. 
     8 *         http://www.apache.org/licenses/LICENSE-2.0 
     9 * 
     10 * Unless required by applicable law or agreed to in writing, software 
     11 * distributed under the License is distributed on an "AS IS" BASIS, 
     12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     13 * See the License for the specific language governing permissions and 
     14 * limitations under the License. 
    1815 */ 
    19  
    2016/* 
    2117     Global Color Styles:  oracle-desktop inherits most of the named 
  • raptor-web/trunk/src/main/webapp/skins/suede/suede.css

    r365 r899  
    1 /* 
    2  *  Licensed to the Apache Software Foundation (ASF) under one 
    3  *  or more contributor license agreements.  See the NOTICE file 
    4  *  distributed with this work for additional information 
    5  *  regarding copyright ownership.  The ASF licenses this file 
    6  *  to you under the Apache License, Version 2.0 (the 
    7  *  "License"); you may not use this file except in compliance 
    8  *  with the License.  You may obtain a copy of the License at 
     1/** 
     2 * Copyright (C) 2010 Cardiff University, Wales <smartp@cf.ac.uk> 
    93 * 
    10  *  http://www.apache.org/licenses/LICENSE-2.0 
     4 * Licensed under the Apache License, Version 2.0 (the "License"); 
     5 * you may not use this file except in compliance with the License. 
     6 * You may obtain a copy of the License at 
    117 * 
    12  *  Unless required by applicable law or agreed to in writing, 
    13  *  software distributed under the License is distributed on an 
    14  *  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 
    15  *  KIND, either express or implied.  See the License for the 
    16  *  specific language governing permissions and limitations 
    17  *  under the License. 
     8 *         http://www.apache.org/licenses/LICENSE-2.0 
     9 * 
     10 * Unless required by applicable law or agreed to in writing, software 
     11 * distributed under the License is distributed on an "AS IS" BASIS, 
     12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     13 * See the License for the specific language governing permissions and 
     14 * limitations under the License. 
    1815 */ 
    19  
    2016/* 
    2117     Global Color Styles:  oracle-desktop inherits most of the named 
  • raptor-web/trunk/src/main/webapp/templates/raptor/css/common-reg.css

    r399 r899  
     1/** 
     2 * Copyright (C) 2010 Cardiff University, Wales <smartp@cf.ac.uk> 
     3 * 
     4 * Licensed under the Apache License, Version 2.0 (the "License"); 
     5 * you may not use this file except in compliance with the License. 
     6 * You may obtain a copy of the License at 
     7 * 
     8 *         http://www.apache.org/licenses/LICENSE-2.0 
     9 * 
     10 * Unless required by applicable law or agreed to in writing, software 
     11 * distributed under the License is distributed on an "AS IS" BASIS, 
     12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     13 * See the License for the specific language governing permissions and 
     14 * limitations under the License. 
     15 */ 
    116 
    217/* 
  • raptor-web/trunk/src/main/webapp/templates/raptor/css/common.css

    r737 r899  
     1/** 
     2 * Copyright (C) 2010 Cardiff University, Wales <smartp@cf.ac.uk> 
     3 * 
     4 * Licensed under the Apache License, Version 2.0 (the "License"); 
     5 * you may not use this file except in compliance with the License. 
     6 * You may obtain a copy of the License at 
     7 * 
     8 *         http://www.apache.org/licenses/LICENSE-2.0 
     9 * 
     10 * Unless required by applicable law or agreed to in writing, software 
     11 * distributed under the License is distributed on an "AS IS" BASIS, 
     12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     13 * See the License for the specific language governing permissions and 
     14 * limitations under the License. 
     15 */ 
    116* { margin: 0px; padding: 0px; } 
    217html            { min-height: 100%; } 
  • raptor-web/trunk/src/main/webapp/templates/raptor/footer.xhtml

    r423 r899  
    11<?xml version="1.0" encoding="ISO-8859-1"?> 
     2<!-- 
     3 
     4    Copyright (C) 2010 Cardiff University, Wales <smartp@cf.ac.uk> 
     5 
     6    Licensed under the Apache License, Version 2.0 (the "License"); 
     7    you may not use this file except in compliance with the License. 
     8    You may obtain a copy of the License at 
     9 
     10            http://www.apache.org/licenses/LICENSE-2.0 
     11 
     12    Unless required by applicable law or agreed to in writing, software 
     13    distributed under the License is distributed on an "AS IS" BASIS, 
     14    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     15    See the License for the specific language governing permissions and 
     16    limitations under the License. 
     17 
     18--> 
    219<div id="footer"> 
    320        Cardiff University, Apache 2.0 License 
  • raptor-web/trunk/src/main/webapp/templates/raptor/full.xhtml

    r741 r899  
    11<?xml version="1.0" encoding="ISO-8859-1"?> 
     2<!-- 
     3 
     4    Copyright (C) 2010 Cardiff University, Wales <smartp@cf.ac.uk> 
     5 
     6    Licensed under the Apache License, Version 2.0 (the "License"); 
     7    you may not use this file except in compliance with the License. 
     8    You may obtain a copy of the License at 
     9 
     10            http://www.apache.org/licenses/LICENSE-2.0 
     11 
     12    Unless required by applicable law or agreed to in writing, software 
     13    distributed under the License is distributed on an "AS IS" BASIS, 
     14    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     15    See the License for the specific language governing permissions and 
     16    limitations under the License. 
     17 
     18--> 
    219<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
    320    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
  • raptor-web/trunk/src/main/webapp/timeout.jsp

    r475 r899  
     1<%-- 
     2 
     3    Copyright (C) 2010 Cardiff University, Wales <smartp@cf.ac.uk> 
     4 
     5    Licensed under the Apache License, Version 2.0 (the "License"); 
     6    you may not use this file except in compliance with the License. 
     7    You may obtain a copy of the License at 
     8 
     9            http://www.apache.org/licenses/LICENSE-2.0 
     10 
     11    Unless required by applicable law or agreed to in writing, software 
     12    distributed under the License is distributed on an "AS IS" BASIS, 
     13    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     14    See the License for the specific language governing permissions and 
     15    limitations under the License. 
     16 
     17--%> 
    118<%@page session="false" %> 
    219<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core_rt"%> 
Note: See TracChangeset for help on using the changeset viewer.