aboutsummaryrefslogtreecommitdiff
path: root/devel/cdash
diff options
context:
space:
mode:
authorPietro Cerutti <gahr@FreeBSD.org>2012-03-02 15:27:17 +0000
committerPietro Cerutti <gahr@FreeBSD.org>2012-03-02 15:27:17 +0000
commit366c5f62a4bc63a93896653d9562b153be04838e (patch)
tree04dafc0f3fe5e544ef5978209fd50233966e0579 /devel/cdash
parent1c6997db08cb7dbaadfd21124e6304cef5eb885e (diff)
downloadports-366c5f62a4bc63a93896653d9562b153be04838e.tar.gz
ports-366c5f62a4bc63a93896653d9562b153be04838e.zip
Notes
Diffstat (limited to 'devel/cdash')
-rw-r--r--devel/cdash/Makefile29
-rw-r--r--devel/cdash/distinfo4
-rw-r--r--devel/cdash/files/patch-CMakeLists.txt19
-rw-r--r--devel/cdash/files/patch-cdash_config.local.php111
-rw-r--r--devel/cdash/files/pkg-message.in2
-rw-r--r--devel/cdash/pkg-plist230
6 files changed, 256 insertions, 139 deletions
diff --git a/devel/cdash/Makefile b/devel/cdash/Makefile
index 0b982ad3c6a0..231674f7220f 100644
--- a/devel/cdash/Makefile
+++ b/devel/cdash/Makefile
@@ -6,8 +6,7 @@
#
PORTNAME= cdash
-PORTVERSION= 1.8.2
-PORTREVISION= 1
+PORTVERSION= 2.0.2
CATEGORIES= devel
MASTER_SITES= http://www.cdash.org/download/
DISTNAME= CDash-${PORTVERSION}
@@ -21,10 +20,14 @@ OPTIONS= MYSQL "Use MySQL" on \
PGSQL "Use PostgreSQL" off
USE_ZIP= yes
-USE_PHP= curl gd xsl
-USE_APACHE_RUN= 20+
-
-NO_BUILD= yes
+USE_CMAKE= yes
+CMAKE_OUTSOURCE=yes
+CMAKE_ARGS+= -DCDASH_DB_NAME:STRING=cdash \
+ -DCDASH_DB_LOGIN:STRING=cdash \
+ -DCDASH_DB_TYPE:STRING=${DB_TYPE}
+#USE_PHP= curl gd xsl
+
+WRKSRC= ${WRKDIR}/${DISTNAME:S/./-/g}
SUB_FILES= pkg-message
SUB_LIST+= DB_TYPE=${DB_TYPE}
@@ -35,24 +38,20 @@ IGNORE= please run 'make config' and select either MYSQL or PGSQL, but not both
.endif
.if defined(WITH_MYSQL)
-USE_MYSQL= yes
-USE_PHP+= mysql
+#USE_MYSQL= yes
+#USE_PHP+= mysql
DB_TYPE= mysql
.endif
.if defined(WITH_PGSQL)
-USE_PGSQL= yes
-USE_PHP+= pgsql
+#USE_PGSQL= yes
+#USE_PHP+= pgsql
DB_TYPE= pgsql
.endif
-post-patch:
- ${REINPLACE_CMD} -e 's|%%DB_TYPE%%|${DB_TYPE}|' ${WRKSRC}/cdash/config.local.php
-
do-install:
${MKDIR} ${PREFIX}/www/CDash
- ${RM} -f ${WRKSRC}/cdash/config.local.php.bak
- ${RM} -f ${WRKSRC}/cdash/config.local.php.orig
+ ${RM} -f ${WRKSRC}/CMakeLists.txt.orig
cd ${WRKSRC} && ${COPYTREE_SHARE} \* ${PREFIX}/www/CDash
${CHOWN} www ${PREFIX}/www/CDash/backup ${PREFIX}/www/CDash/rss
diff --git a/devel/cdash/distinfo b/devel/cdash/distinfo
index 639c3b02683d..3bf5a1a1ae6c 100644
--- a/devel/cdash/distinfo
+++ b/devel/cdash/distinfo
@@ -1,2 +1,2 @@
-SHA256 (CDash-1.8.2.zip) = a2b153311616d07234f9e6aa71162dbd1e8e17de38ea4c6c514bc6a346fb27c0
-SIZE (CDash-1.8.2.zip) = 1271110
+SHA256 (CDash-2.0.2.zip) = e50a7d0ad321ba2739d7210dea56c3d06006dc5a0677f2607b71fd2747eb91d1
+SIZE (CDash-2.0.2.zip) = 2394352
diff --git a/devel/cdash/files/patch-CMakeLists.txt b/devel/cdash/files/patch-CMakeLists.txt
new file mode 100644
index 000000000000..d40c7756b331
--- /dev/null
+++ b/devel/cdash/files/patch-CMakeLists.txt
@@ -0,0 +1,19 @@
+--- CMakeLists.txt.orig 2012-03-02 11:38:07.000000000 +0100
++++ CMakeLists.txt 2012-03-02 11:38:47.000000000 +0100
+@@ -11,6 +11,7 @@
+ set(CDASH_DB_PORT "" CACHE STRING "Port to connect to the database")
+ set(CDASH_DB_HOST "localhost" CACHE STRING "Hostname of the database server")
+ set(CDASH_DB_TYPE "mysql" CACHE STRING "Database type")
++set(CDASH_DB_NAME "cdash4simpletest" CACHE STRING "Database name")
+ option(CDASH_USE_SELENIUM "Should CDash use Selenium to test ajax functionality?" OFF)
+ option(CDASH_PRO "Are we testing CDashPro?" OFF)
+ set(CMake_SOURCE_DIR CACHE FILEPATH "Path to CMake source dir. Set this to import tests from CMake")
+@@ -87,7 +88,7 @@
+ //
+ // Some of the CDash tests also inject config settings below as tests run...
+ //
+-$CDASH_DB_NAME = 'cdash4simpletest';
++$CDASH_DB_NAME = '${CDASH_DB_NAME}';
+ $CDASH_TESTING_MODE = true;
+ $CDASH_REGISTRATION_EMAIL_VERIFY = false;
+ $CDASH_TESTING_RENAME_LOGS = ${rename_logs};
diff --git a/devel/cdash/files/patch-cdash_config.local.php b/devel/cdash/files/patch-cdash_config.local.php
deleted file mode 100644
index afc1fe29ea0e..000000000000
--- a/devel/cdash/files/patch-cdash_config.local.php
+++ /dev/null
@@ -1,111 +0,0 @@
---- /dev/null 2011-08-12 12:09:43.000000000 +0200
-+++ cdash/config.local.php 2011-08-12 11:57:38.000000000 +0200
-@@ -0,0 +1,108 @@
-+<?php
-+/*=========================================================================
-+
-+ Program: CDash - Cross-Platform Dashboard System
-+ Module: $Id: config.php 2618 2010-08-04 19:28:36Z david.cole $
-+ Language: PHP
-+ Date: $Date: 2010-08-04 21:28:36 +0200 (mer., 04 août 2010) $
-+ Version: $Revision: 2618 $
-+
-+ Copyright (c) 2002 Kitware, Inc. All rights reserved.
-+ See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
-+
-+ This software is distributed WITHOUT ANY WARRANTY; without even
-+ the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
-+ PURPOSE. See the above copyright notices for more information.
-+
-+=========================================================================*/
-+/** WARNING: It's recommended to create a config.local.php file and leave
-+ * this file as is.
-+ * If creating the config.local.php from config.php make sure you DELETE
-+ * any text after the 'DO NOT EDIT AFTER THIS LINE' otherwise your
-+ * configuration file will be referencing each other. */
-+
-+// Hostname of the database server
-+$CDASH_DB_HOST = 'localhost';
-+// Login for database access
-+$CDASH_DB_LOGIN = 'root';
-+// Password for database access
-+$CDASH_DB_PASS = '';
-+// Name of the database
-+$CDASH_DB_NAME = 'cdash';
-+// Database type (empty means mysql)
-+$CDASH_DB_TYPE = '%%DB_TYPE%%';
-+// Turn this variable ON when CDash has been installed
-+// Prevents from running the install.php again
-+$CDASH_PRODUCTION_MODE = false;
-+$CDASH_TESTING_MODE = false;
-+// Should we use asynchronous submission
-+$CDASH_ASYNCHRONOUS_SUBMISSION = false;
-+// Default from email
-+$CDASH_EMAILADMIN = 'admin@cdash.org';
-+$CDASH_EMAIL_FROM = 'admin@cdash.org';
-+$CDASH_EMAIL_REPLY = 'noreply@cdash.org';
-+// Duration of the cookie session (in seconds)
-+$CDASH_COOKIE_EXPIRATION_TIME='3600';
-+// Using HTTPS protocol to access CDash
-+$CDASH_USE_HTTPS ='0';
-+// Name of the server running CDash.
-+// Leave empty to use current name.
-+$CDASH_SERVER_NAME = '';
-+// If the remote request should use localhost or the full name
-+// This variable should be set to 1 in most of the server configurations
-+$CDASH_CURL_REQUEST_LOCALHOST='1';
-+$CDASH_CURL_LOCALHOST_PREFIX='';
-+// Define the location of the local directory
-+$CDASH_USE_LOCAL_DIRECTORY = '0';
-+// CSS file
-+$CDASH_CSS_FILE = 'cdash.css';
-+// Backup directory
-+$CDASH_BACKUP_DIRECTORY = 'backup';
-+// Log file location
-+$CDASH_LOG_FILE = $CDASH_BACKUP_DIRECTORY."/cdash.log";
-+// Using external authentication
-+$CDASH_EXTERNAL_AUTH = '0';
-+// Backup timeframe
-+$CDASH_BACKUP_TIMEFRAME = '48'; // 48 hours
-+// Request full email address to add new users
-+// instead of displaying a list
-+$CDASH_FULL_EMAIL_WHEN_ADDING_USER = '0';
-+// Use getIPfromApache script to get IP addresses
-+// when using forwarding script
-+$CDASH_FORWARDING_IP='192.%'; // should be an SQL format
-+$CDASH_DEFAULT_IP_LOCATIONS = array();
-+// Use compression (default on)
-+$CDASH_USE_COMPRESSION='1';
-+// Use LDAP
-+$CDASH_USE_LDAP='0';
-+$CDASH_LDAP_HOSTNAME='localhost';
-+$CDASH_LDAP_BASEDN='ou=people,dc=organization,dc=com';
-+$CDASH_LDAP_PROTOCOL_VERSION='3';
-+// For authentication against Active Directory, set CDASH_LDAP_AUTHENTICATED to '1'
-+// CDASH_LDAP_OPT_REFERRALS to '0', and specify a bind DN and password
-+$CDASH_LDAP_OPT_REFERRALS='1';
-+$CDASH_LDAP_AUTHENTICATED='0';
-+$CDASH_LDAP_BIND_DN='cn=user,ou=people,dc=orgranization,dc=com';
-+$CDASH_LDAP_BIND_PASSWORD='password';
-+// Allow rememberme
-+$CDASH_ALLOW_LOGIN_COOKIE='1';
-+// Set to start the autoremoval on the first build of the day
-+$CDASH_AUTOREMOVE_BUILDS='0';
-+// Google Map API
-+$CDASH_GOOGLE_MAP_API_KEY = array();
-+$CDASH_GOOGLE_MAP_API_KEY['localhost'] = 'ABQIAAAAT7I3XxP5nXC2xZUbg5AhLhQlpUmSySBnNeRIYFXQdqJETZJpYBStoWsCJtLvtHDiIJzsxJ953H3rgg';
-+// Enable Google Analytics
-+$CDASH_DEFAULT_GOOGLE_ANALYTICS='';
-+// How long since the last submission before considering a project
-+// non active
-+$CDASH_ACTIVE_PROJECT_DAYS = '7'; // a week
-+// Use CDash to manage build submissions
-+// This feature is currently experimental
-+$CDASH_MANAGE_CLIENTS = '0';
-+// Define the git command
-+$CDASH_GIT_COMMAND = 'git';
-+// The default git directory where the bare repositories should be created
-+$CDASH_DEFAULT_GIT_DIRECTORY = 'git';
-+// Number of seconds to allow processing a single submission before resetting
-+$CDASH_SUBMISSION_PROCESSING_TIME_LIMIT = '450';
-+?>
diff --git a/devel/cdash/files/pkg-message.in b/devel/cdash/files/pkg-message.in
index 95175b4e120a..e89931442175 100644
--- a/devel/cdash/files/pkg-message.in
+++ b/devel/cdash/files/pkg-message.in
@@ -1,5 +1,5 @@
Your CDash configuration file is located at
-%%PREFIX%%/www/cdash/cdash/config.local.php.
+%%PREFIX%%/www/CDash/cdash/config.local.php.
Please create the %%DB_TYPE%% username 'cdash' and
grant him privileges over a database named 'cdash'.
diff --git a/devel/cdash/pkg-plist b/devel/cdash/pkg-plist
index 7ac22311ff69..3e298d23d2ad 100644
--- a/devel/cdash/pkg-plist
+++ b/devel/cdash/pkg-plist
@@ -18,12 +18,14 @@ www/CDash/ajax/showbuildupdategraph.php
www/CDash/ajax/showcoveragegraph.php
www/CDash/ajax/showprojectupdategraph.php
www/CDash/ajax/showtestfailuregraph.php
+www/CDash/ajax/showtestmeasurementdatagraph.php
www/CDash/ajax/showtestpassinggraph.php
www/CDash/ajax/showtesttimegraph.php
www/CDash/api/api.php
www/CDash/api/api_build.php
www/CDash/api/api_coverage.php
www/CDash/api/api_project.php
+www/CDash/api/api_repository.php
www/CDash/api/api_user.php
www/CDash/api/getbuildid.php
www/CDash/api/getuserid.php
@@ -54,10 +56,13 @@ www/CDash/cdash/dailyupdates.php
www/CDash/cdash/dailyupdatescurl.php
www/CDash/cdash/defines.php
www/CDash/cdash/do_submit.php
+www/CDash/cdash/fnProcessFile.php
www/CDash/cdash/log.php
www/CDash/cdash/pdo.php
www/CDash/cdash/pdocore.php
+www/CDash/cdash/processfile.php
www/CDash/cdash/processsubmissions.php
+www/CDash/cdash/repository.php
www/CDash/cdash/sendemail.php
www/CDash/cdash/version.php
www/CDash/createProject.php
@@ -77,10 +82,9 @@ www/CDash/header.xsl
www/CDash/headeradminproject.xsl
www/CDash/headerback.xsl
www/CDash/headscripts.xsl
-www/CDash/images/Alert.gif
+www/CDash/help.html
www/CDash/images/Calendar.gif
www/CDash/images/Closed.gif
-www/CDash/images/Document.gif
www/CDash/images/DownBlack.gif
www/CDash/images/Generator.png
www/CDash/images/Info.png
@@ -90,6 +94,7 @@ www/CDash/images/New.gif
www/CDash/images/Open.gif
www/CDash/images/Plus.gif
www/CDash/images/RightBlack.gif
+www/CDash/images/activity-level.png
www/CDash/images/advanced.png
www/CDash/images/asc.gif
www/CDash/images/bg.gif
@@ -102,8 +107,13 @@ www/CDash/images/cancel.png
www/CDash/images/cdash-60.gif
www/CDash/images/cdash.gif
www/CDash/images/check.gif
+www/CDash/images/cleardot.gif
+www/CDash/images/clock.png
+www/CDash/images/console.png
www/CDash/images/delete.png
www/CDash/images/desc.gif
+www/CDash/images/disk.png
+www/CDash/images/document.png
www/CDash/images/edit.png
www/CDash/images/edit2.png
www/CDash/images/edit_group.png
@@ -128,6 +138,11 @@ www/CDash/images/menub2.gif
www/CDash/images/new_project.png
www/CDash/images/next.png
www/CDash/images/note.png
+www/CDash/images/package.png
+www/CDash/images/platform_freebsd.png
+www/CDash/images/platform_linux.png
+www/CDash/images/platform_mac.png
+www/CDash/images/platform_windows.png
www/CDash/images/previous.png
www/CDash/images/progressbar.gif
www/CDash/images/progressbg_green.gif
@@ -179,7 +194,6 @@ www/CDash/iphone/project.xsl
www/CDash/iphone/section.gif
www/CDash/iphone/user.php
www/CDash/iphone/user.xsl
-www/CDash/javascript/DashboardMap.js
www/CDash/javascript/OptionTransfer.js
www/CDash/javascript/cdashAddNote.js
www/CDash/javascript/cdashBuildError.js
@@ -198,32 +212,46 @@ www/CDash/javascript/cdashTableSorter.js
www/CDash/javascript/cdashTestGraph.js
www/CDash/javascript/cdashUpdateGraph.js
www/CDash/javascript/cdashUpgrade.js
+www/CDash/javascript/cdashUploadFilesSorter.js
www/CDash/javascript/cdashUser.js
www/CDash/javascript/cdashUserLabels.js
-www/CDash/javascript/cdashmenu.css
www/CDash/javascript/cdashmenu.js
www/CDash/javascript/excanvas.js
+www/CDash/javascript/images/ui-bg_diagonals-thick_90_eeeeee_40x40.png
+www/CDash/javascript/images/ui-bg_flat_15_cd0a0a_40x100.png
+www/CDash/javascript/images/ui-bg_glass_100_e4f1fb_1x400.png
+www/CDash/javascript/images/ui-bg_glass_50_3baae3_1x400.png
+www/CDash/javascript/images/ui-bg_glass_80_d7ebf9_1x400.png
+www/CDash/javascript/images/ui-bg_highlight-hard_100_f2f5f7_1x100.png
+www/CDash/javascript/images/ui-bg_highlight-hard_70_000000_1x100.png
+www/CDash/javascript/images/ui-bg_highlight-soft_100_deedf7_1x100.png
+www/CDash/javascript/images/ui-bg_highlight-soft_25_ffef8f_1x100.png
+www/CDash/javascript/images/ui-icons_2694e8_256x240.png
+www/CDash/javascript/images/ui-icons_2e83ff_256x240.png
+www/CDash/javascript/images/ui-icons_3d80b3_256x240.png
+www/CDash/javascript/images/ui-icons_72a7cf_256x240.png
+www/CDash/javascript/images/ui-icons_ffffff_256x240.png
www/CDash/javascript/jqModal.css
www/CDash/javascript/jqModal.js
+www/CDash/javascript/jquery-1.6.2.js
+www/CDash/javascript/jquery-ui-1.8.16.css
+www/CDash/javascript/jquery-ui-1.8.16.min.js
www/CDash/javascript/jquery.cookie.js
www/CDash/javascript/jquery.flot.min.js
www/CDash/javascript/jquery.flot.pie.js
www/CDash/javascript/jquery.flot.selection.min.js
-www/CDash/javascript/jquery.js
www/CDash/javascript/jquery.metadata.js
+www/CDash/javascript/jquery.qtip.min.css
+www/CDash/javascript/jquery.qtip.min.js
www/CDash/javascript/jquery.tablesorter.js
www/CDash/javascript/jtip.js
-www/CDash/javascript/menu.js
-www/CDash/javascript/rounded.js
www/CDash/javascript/tableheader.js
www/CDash/javascript/tooltip.js
www/CDash/javascript/tree.js
www/CDash/javascript/tree_init.js
-www/CDash/javascript/ui.datepicker.css
-www/CDash/javascript/ui.datepicker.js
www/CDash/javascript/ui.tabs.js
-www/CDash/key.html
www/CDash/local/README.txt
+www/CDash/local/cdash.local.css
www/CDash/local/footer.xsl
www/CDash/local/header.xsl
www/CDash/local/headeradminproject.xsl
@@ -296,8 +324,10 @@ www/CDash/models/subproject.php
www/CDash/models/test.php
www/CDash/models/testimage.php
www/CDash/models/testmeasurement.php
+www/CDash/models/uploadfile.php
www/CDash/models/user.php
www/CDash/models/userproject.php
+www/CDash/monitor.php
www/CDash/prepend_coverage.php
www/CDash/queryTests.php
www/CDash/queryTests.xsl
@@ -321,6 +351,8 @@ www/CDash/sql/mysql/cdash-upgrade-1.0-1.2.sql
www/CDash/sql/mysql/cdash-upgrade-1.2-1.4.sql
www/CDash/sql/mysql/cdash-upgrade-1.4-1.6.sql
www/CDash/sql/mysql/cdash-upgrade-1.6-1.8.sql
+www/CDash/sql/mysql/cdash-upgrade-1.8-2.0.sql
+www/CDash/sql/mysql/cdash-upgrade-2.0-2.1.sql
www/CDash/sql/mysql/cdash.sql
www/CDash/sql/mysqlcompat.patch
www/CDash/sql/pgsql/cdash-upgrade-0-0.8.sql
@@ -329,6 +361,8 @@ www/CDash/sql/pgsql/cdash-upgrade-1.0-1.2.sql
www/CDash/sql/pgsql/cdash-upgrade-1.2-1.4.sql
www/CDash/sql/pgsql/cdash-upgrade-1.4-1.6.sql
www/CDash/sql/pgsql/cdash-upgrade-1.6-1.8.sql
+www/CDash/sql/pgsql/cdash-upgrade-1.8-2.0.sql
+www/CDash/sql/pgsql/cdash-upgrade-2.0-2.1.sql
www/CDash/sql/pgsql/cdash.ext.sql
www/CDash/sql/pgsql/cdash.sql
www/CDash/submit.php
@@ -346,6 +380,7 @@ www/CDash/tests/CMakeLists.txt
www/CDash/tests/append_coverage.php.in
www/CDash/tests/autoremovebuilds/CMakeLists.txt
www/CDash/tests/cdash_test_case.php
+www/CDash/tests/config.test.local.php
www/CDash/tests/config.test.php
www/CDash/tests/ctest/CMakeLists.txt
www/CDash/tests/ctest/CTestSubmitLargeOutput/CMakeLists.txt
@@ -369,6 +404,158 @@ www/CDash/tests/ctest/simple2/simple.ctest.in
www/CDash/tests/ctest/simple2/simple.cxx
www/CDash/tests/ctest/simple2/test.cmake.in
www/CDash/tests/ctest/unittest.cmake.in
+www/CDash/tests/data/ActualTrilinosSubmission/TrilinosDriver_hut11.kitware_Windows_NT-TDD-hut11.kitware_20110722-1514-Experimental_131134764623_Build.xml
+www/CDash/tests/data/ActualTrilinosSubmission/TrilinosDriver_hut11.kitware_Windows_NT-TDD-hut11.kitware_20110722-1514-Experimental_131134764640_Configure.xml
+www/CDash/tests/data/ActualTrilinosSubmission/TrilinosDriver_hut11.kitware_Windows_NT-TDD-hut11.kitware_20110722-1514-Experimental_131134764660_Notes.xml
+www/CDash/tests/data/ActualTrilinosSubmission/TrilinosDriver_hut11.kitware_Windows_NT-TDD-hut11.kitware_20110722-1514-Experimental_131134909154_Test.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_131134773144_Project.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134775158_Configure.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134775226_Notes.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134775278_Build.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134775308_Build.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134779746_Test.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134779786_Update.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134781834_Configure.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134781848_Notes.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134790580_Build.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134790610_Update.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134792091_Configure.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134792106_Notes.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134792194_Build.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134792228_Build.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134792249_Test.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134792265_Update.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134794978_Configure.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134794993_Notes.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134795192_Build.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134821193_Build.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134822732_Test.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134822862_Update.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134824287_Configure.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134824301_Notes.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134824318_Update.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134825741_Configure.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134825756_Notes.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134825775_Update.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134827646_Configure.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134827663_Notes.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134830307_Build.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134832828_Build.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134832859_Test.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134832881_Update.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134834527_Configure.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134834541_Notes.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134835059_Build.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134835776_Build.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134835818_Test.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134835837_Update.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134837291_Configure.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134837305_Notes.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134837323_Update.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134838992_Configure.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134839009_Notes.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134840530_Build.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134840733_Build.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134840756_Test.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134840774_Update.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134842268_Configure.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134842283_Notes.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134842300_Update.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134843783_Configure.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134843798_Notes.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134843815_Update.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134845279_Configure.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134845293_Notes.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134845622_Update.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134847305_Configure.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134847320_Notes.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134847450_Build.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134847511_Build.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134847536_Test.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134847553_Update.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134849252_Configure.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134849271_Notes.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134849397_Build.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134849620_Build.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134849642_Test.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134849657_Update.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134851465_Configure.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134851481_Notes.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134852631_Build.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134853288_Build.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134853315_Test.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134853329_Update.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134854886_Configure.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134854901_Notes.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134854920_Update.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134856441_Configure.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134856454_Notes.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134856473_Update.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134857997_Configure.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134858016_Notes.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134858035_Update.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134859555_Configure.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134859579_Notes.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134859612_Update.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134861852_Configure.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134861889_Notes.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134863956_Build.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134865882_Build.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134865918_Test.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134865953_Update.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134867542_Configure.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134867559_Notes.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134867581_Update.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134869117_Configure.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134869132_Notes.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134869151_Update.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134870717_Configure.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134870732_Notes.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134870754_Update.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134872312_Configure.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134872327_Notes.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134872345_Update.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134873889_Configure.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134873904_Notes.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134873923_Update.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134875466_Configure.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134875481_Notes.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134875500_Update.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134877043_Configure.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134877057_Notes.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134877076_Update.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134880239_Configure.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134880254_Notes.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134880504_Build.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134880730_Build.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134880752_Test.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134880767_Update.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134882306_Configure.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134882321_Notes.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134882342_Update.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134883904_Configure.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134883919_Notes.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134883937_Update.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134885525_Configure.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134885542_Notes.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134885561_Update.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134887139_Configure.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134887154_Notes.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134887173_Update.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134889433_Configure.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134889448_Notes.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134889496_Build.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134891784_Build.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134891813_Test.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134891836_Update.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134894205_Configure.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134894219_Notes.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134907377_Build.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134907415_Update.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134909033_Configure.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134909048_Notes.xml
+www/CDash/tests/data/ActualTrilinosSubmission/Trilinos_hut11.kitware_Windows_NT-MSVC10-SERIAL_DEBUG_DEV_20110722-1515-Experimental_131134909069_Update.xml
+www/CDash/tests/data/ActualTrilinosSubmission/orderedFileList.txt
www/CDash/tests/data/BatchmakeNightlyExample/BatchMake_Nightly_Build.xml
www/CDash/tests/data/BatchmakeNightlyExample/BatchMake_Nightly_Configure.xml
www/CDash/tests/data/BatchmakeNightlyExample/BatchMake_Nightly_Notes.xml
@@ -378,14 +565,18 @@ www/CDash/tests/data/CompressedTest.xml
www/CDash/tests/data/EmailProjectExample/1_build.xml
www/CDash/tests/data/EmailProjectExample/1_configure.xml
www/CDash/tests/data/EmailProjectExample/1_test.xml
+www/CDash/tests/data/EmailProjectExample/1_upload.xml
www/CDash/tests/data/EmailProjectExample/2_build.xml
www/CDash/tests/data/EmailProjectExample/2_dynamicanalysis.xml
www/CDash/tests/data/EmailProjectExample/2_test.xml
www/CDash/tests/data/EmailProjectExample/2_update.xml
+www/CDash/tests/data/EmailProjectExample/3_test.xml
+www/CDash/tests/data/EmailProjectExample/3_update.xml
www/CDash/tests/data/EmailProjectExample/cdash_1.log
www/CDash/tests/data/EmailProjectExample/cdash_2.log
www/CDash/tests/data/EmailProjectExample/cdash_3.log
www/CDash/tests/data/EmailProjectExample/cdash_autoremove.log
+www/CDash/tests/data/EmailProjectExample/cdash_committeremail.log
www/CDash/tests/data/InsightExperimentalExample/Insight_Experimental_Build.xml
www/CDash/tests/data/InsightExperimentalExample/Insight_Experimental_Configure.xml
www/CDash/tests/data/InsightExperimentalExample/Insight_Experimental_Coverage.xml
@@ -393,6 +584,11 @@ www/CDash/tests/data/InsightExperimentalExample/Insight_Experimental_CoverageLog
www/CDash/tests/data/InsightExperimentalExample/Insight_Experimental_DynamicAnalysis.xml
www/CDash/tests/data/InsightExperimentalExample/Insight_Experimental_Notes.xml
www/CDash/tests/data/InsightExperimentalExample/Insight_Experimental_Test.xml
+www/CDash/tests/data/ProjectXmlSequence/Trilinos_129273760744.57_Project.xml
+www/CDash/tests/data/ProjectXmlSequence/Trilinos_129273770005.15_Project.xml
+www/CDash/tests/data/ProjectXmlSequence/Trilinos_129273771745.07_Project.xml
+www/CDash/tests/data/ProjectXmlSequence/Trilinos_129273989317.97_Project.xml
+www/CDash/tests/data/ProjectXmlSequence/Trilinos_129274192973.58_Project.xml
www/CDash/tests/data/Sites/VOGON.kitware/Win32-nmake71/2005-07-19-0514-Experimental/XML/Build.xml
www/CDash/tests/data/Sites/VOGON.kitware/Win32-nmake71/2005-07-19-0514-Experimental/XML/Configure.xml
www/CDash/tests/data/Sites/VOGON.kitware/Win32-nmake71/2005-07-19-0514-Experimental/XML/NoteCollection.xml
@@ -421,6 +617,7 @@ www/CDash/tests/data/SubProjectExample/cdash_2.log
www/CDash/tests/data/authors.txt
www/CDash/tests/data/camelot.cdash.xml
www/CDash/tests/data/git-Update.xml
+www/CDash/tests/data/git-Update2.xml
www/CDash/tests/data/smile.gif
www/CDash/tests/data/smile2.gif
www/CDash/tests/kwtest/kw_db.php
@@ -520,6 +717,7 @@ www/CDash/tests/selenium/test_subproject2.php
www/CDash/tests/simple.php
www/CDash/tests/simple2.php
www/CDash/tests/singletest.php
+www/CDash/tests/test_actualtrilinossubmission.php
www/CDash/tests/test_api.php
www/CDash/tests/test_autoremovebuilds.php
www/CDash/tests/test_autoremovebuilds_on_submit.php
@@ -532,6 +730,7 @@ www/CDash/tests/test_buildmodel.php
www/CDash/tests/test_buildoverview.php
www/CDash/tests/test_buildtestdiff.php
www/CDash/tests/test_buildusernote.php
+www/CDash/tests/test_committerinfo.php
www/CDash/tests/test_compressedtest.php
www/CDash/tests/test_createpublicdashboard.php
www/CDash/tests/test_customclientscript.php
@@ -563,6 +762,8 @@ www/CDash/tests/test_processsubmissions.php
www/CDash/tests/test_projectindb.php
www/CDash/tests/test_projectmodel.php
www/CDash/tests/test_projectwebpage.php
+www/CDash/tests/test_projectxmlsequence.php
+www/CDash/tests/test_properclientprocessing.php.in
www/CDash/tests/test_pubproject.php
www/CDash/tests/test_querytests.php
www/CDash/tests/test_recoverpassword.php
@@ -576,6 +777,7 @@ www/CDash/tests/test_testenv.php
www/CDash/tests/test_testmodel.php
www/CDash/tests/test_testoverview.php
www/CDash/tests/test_upgrade.php
+www/CDash/tests/test_uploadfile.php
www/CDash/tests/test_user.php
www/CDash/tests/test_userstatistics.php
www/CDash/tests/test_viewbuilderror.php
@@ -589,6 +791,7 @@ www/CDash/tests/test_viewmap.php
www/CDash/tests/test_viewsubprojectdependencies.php
www/CDash/upgrade.php
www/CDash/upgrade.xsl
+www/CDash/upload/.htaccess
www/CDash/user.php
www/CDash/user.xsl
www/CDash/userStatistics.php
@@ -609,6 +812,8 @@ www/CDash/viewDynamicAnalysisFile.php
www/CDash/viewDynamicAnalysisFile.xsl
www/CDash/viewErrorLog.php
www/CDash/viewErrorLog.xsl
+www/CDash/viewFiles.php
+www/CDash/viewFiles.xsl
www/CDash/viewIssues.php
www/CDash/viewIssues.xsl
www/CDash/viewMap.php
@@ -636,7 +841,9 @@ www/CDash/xml_handlers/sax_handler.php
www/CDash/xml_handlers/stack.php
www/CDash/xml_handlers/testing_handler.php
www/CDash/xml_handlers/update_handler.php
+www/CDash/xml_handlers/upload_handler.php
@dirrm www/CDash/xml_handlers
+@dirrm www/CDash/upload
@dirrm www/CDash/tests/selenium
@dirrm www/CDash/tests/kwtest/simpletest
@dirrm www/CDash/tests/kwtest
@@ -647,9 +854,11 @@ www/CDash/xml_handlers/update_handler.php
@dirrm www/CDash/tests/data/Sites/VOGON.kitware/Win32-nmake71
@dirrm www/CDash/tests/data/Sites/VOGON.kitware
@dirrm www/CDash/tests/data/Sites
+@dirrm www/CDash/tests/data/ProjectXmlSequence
@dirrm www/CDash/tests/data/InsightExperimentalExample
@dirrm www/CDash/tests/data/EmailProjectExample
@dirrm www/CDash/tests/data/BatchmakeNightlyExample
+@dirrm www/CDash/tests/data/ActualTrilinosSubmission
@dirrm www/CDash/tests/data
@dirrm www/CDash/tests/ctest/simple2
@dirrm www/CDash/tests/ctest/simple
@@ -665,6 +874,7 @@ www/CDash/xml_handlers/update_handler.php
@dirrm www/CDash/rss
@dirrm www/CDash/models
@dirrm www/CDash/local
+@dirrm www/CDash/javascript/images
@dirrm www/CDash/javascript
@dirrm www/CDash/iphone
@dirrm www/CDash/images