<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.umiacs.umd.edu/adapt/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Toaster</id>
	<title>Adapt - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.umiacs.umd.edu/adapt/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Toaster"/>
	<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/adapt/index.php/Special:Contributions/Toaster"/>
	<updated>2026-04-29T18:08:21Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.7</generator>
	<entry>
		<id>https://wiki.umiacs.umd.edu/adapt/index.php?title=Ace:Audit_Manager_Installation_Guide&amp;diff=2906</id>
		<title>Ace:Audit Manager Installation Guide</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/adapt/index.php?title=Ace:Audit_Manager_Installation_Guide&amp;diff=2906"/>
		<updated>2014-11-24T14:16:48Z</updated>

		<summary type="html">&lt;p&gt;Toaster: /* Files */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The ACE Audit manager is a web portal to monitor the integrity of any collection you specify. The manager will register any new files found in addition to checking the integrity of files in a collection during an audit. &lt;br /&gt;
&lt;br /&gt;
==Requirements==&lt;br /&gt;
Before you begin, you will need to have the following software installed:&lt;br /&gt;
* Java 1.7 or later http://java.sun.com&lt;br /&gt;
* Tomcat 6.0 or later http://tomcat.apache.org&lt;br /&gt;
* MySQL 4.0 or later http://www.mysql.org&lt;br /&gt;
* MySQL connector 5.0.7 or better http://www.mysql.com/products/connector/j/&lt;br /&gt;
&lt;br /&gt;
==Files==&lt;br /&gt;
&lt;br /&gt;
The following files are needed to install the Audit Manager &lt;br /&gt;
* ace.sql : sql tables&lt;br /&gt;
* ace-am.war: ace webapp&lt;br /&gt;
* ace-am.xml: ace configuration file&lt;br /&gt;
&lt;br /&gt;
The latest versions of these can be downloaded from:&lt;br /&gt;
https://gitlab.umiacs.umd.edu/adapt/ace/tree/svn/tags/ace-1.8&lt;br /&gt;
&lt;br /&gt;
==Quick Setup==&lt;br /&gt;
&lt;br /&gt;
This is for new installations only. To update, follow the directions [[Ace:Update Audit Manager|here]]&lt;br /&gt;
&lt;br /&gt;
;1. Create Database : Create a new database called &#039;aceam&#039;, grant permissions and setup table structure.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Welcome to the MySQL monitor.  Commands end with ; or \g.&lt;br /&gt;
Your MySQL connection id is 2 to server version: 4.1.20&lt;br /&gt;
&lt;br /&gt;
Type &#039;help;&#039; or &#039;\h&#039; for help. Type &#039;\c&#039; to clear the buffer.&lt;br /&gt;
&lt;br /&gt;
mysql&amp;gt; create database aceam;&lt;br /&gt;
Query OK, 1 row affected (0.01 sec)&lt;br /&gt;
&lt;br /&gt;
mysql&amp;gt; grant all on aceam.* to &#039;aceam&#039;@&#039;localhost&#039; identified by &#039;YOUR_PASSWORD&#039;;&lt;br /&gt;
Query OK, 0 rows affected (0.00 sec)&lt;br /&gt;
&lt;br /&gt;
mysql&amp;gt; use aceam;&lt;br /&gt;
Database changed&lt;br /&gt;
mysql&amp;gt; source ace.sql;&lt;br /&gt;
ERROR 1146 (42S02): Table &#039;aceam.ACTIVITY_LOG_ENTRY&#039; doesn&#039;t exist&lt;br /&gt;
ERROR 1146 (42S02): Table &#039;aceam.ACTIVITY_LOG_ENTRY&#039; doesn&#039;t exist&lt;br /&gt;
...&lt;br /&gt;
...&lt;br /&gt;
Query OK, 0 rows affected (0.00 sec)&lt;br /&gt;
Records: 0  Duplicates: 0  Warnings: 0&lt;br /&gt;
&lt;br /&gt;
mysql&amp;gt; exit&lt;br /&gt;
Bye&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The ace.sql listed is the file from above. Set YOUR_PASSWORD to a password to use for this database. This password is only used to connect the Audit Manager to the database.&lt;br /&gt;
&lt;br /&gt;
;2. Install Webapp : Install tomcat on your server and verify it&#039;s working. Shutdown the server and place a copy of the ace-am.war file in your TOMCAT/webapps directory. Place a copy of the configuration file ace-am.xml in your TOMCAT/conf/Catalina/localhost directory. Open up the configuration file and edit the following setting.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;Resource auth=&amp;quot;Container&amp;quot; driverClassName=&amp;quot;com.mysql.jdbc.Driver&amp;quot; maxActive=&amp;quot;20&amp;quot;&lt;br /&gt;
      maxIdle=&amp;quot;10&amp;quot; maxWait=&amp;quot;-1&amp;quot; name=&amp;quot;jdbc/aceamdb&amp;quot; &lt;br /&gt;
      password=&amp;quot;ace&amp;quot; username=&amp;quot;aceam&amp;quot; &lt;br /&gt;
      url=&amp;quot;jdbc:mysql://localhost/aceam?characterEncoding=UTF-8&amp;quot; &lt;br /&gt;
      testOnBorrow=&amp;quot;true&amp;quot; type=&amp;quot;javax.sql.DataSource&amp;quot; validationQuery=&amp;quot;SELECT 1&amp;quot;/&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Change the password from YOUR_PASSWORD to whatever you used above.&lt;br /&gt;
&lt;br /&gt;
* Place a copy of the mysql-connector-java-5.0.XX-bin.jar in your TOMCAT/lib directory.&lt;br /&gt;
&lt;br /&gt;
; 3. Register your first collection : When the monitor starts up, you will see a status screen with no collections.&lt;br /&gt;
&lt;br /&gt;
* Click &#039;&#039;Add Collection&#039;&#039; from the status screen. &lt;br /&gt;
**You should be prompted for a password. Enter &#039;admin&#039; for both the username and password.&lt;br /&gt;
* Enter a descriptive name, and the directory you want to monitor. Choose the type of storage where this directory is located. &lt;br /&gt;
**Click &#039;&#039;Configure Storage&#039;&#039; when finished.&lt;br /&gt;
* If you selected something other than &#039;&#039;local&#039;&#039; for your storage, a box will appear with additional setting you need to fill out.&lt;br /&gt;
* Click &#039;&#039;Save&#039;&#039; when finished.&lt;br /&gt;
&lt;br /&gt;
; 4. Audit your collection : Click the &#039;&#039;Status&#039;&#039; link at the top of the page. Click on the name of the collection and then click the [[Image:file-audit-start.jpg]] icon in the details box. Your collection will now scan all files and register tokens. Please see the [[Audit Manager User Documentation|User Documentation]] for more details.&lt;/div&gt;</summary>
		<author><name>Toaster</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/adapt/index.php?title=Main_Page&amp;diff=2893</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/adapt/index.php?title=Main_Page&amp;diff=2893"/>
		<updated>2012-07-11T14:37:32Z</updated>

		<summary type="html">&lt;p&gt;Toaster: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Overview=&lt;br /&gt;
The ADAPT project is developing technologies for building a scalable and reliable infrastructure for the long-term access and preservation of digital assets. Over the past years, we&#039;ve developed numerous tools and have active research in many areas.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table width=&amp;quot;75%&amp;quot; style=&amp;quot;margin-left: 75px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;&#039;&#039;&#039;Open Source Tools&#039;&#039;&#039;&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&#039;&#039;&#039;Research&#039;&#039;&#039;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td valign=&amp;quot;top&amp;quot;&amp;gt;&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;[[Ace|Integrity Management (ACE)]]&amp;lt;li&amp;gt;[[WarcManager|Warc Management Utility]]&amp;lt;li&amp;gt;[https://scm.umiacs.umd.edu/redmine/adapt/projects/ingestion RESTful Bag server Implementation]&amp;lt;/ul&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;[[Webarc:Main|Web Archive Indexing]]&amp;lt;li&amp;gt;[[Replication:Main|Replication Monitoring]]&lt;br /&gt;
&amp;lt;li&amp;gt;[[Chronopolis|Chronopolis]]&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Undergrad positions available&#039;&#039;&#039;&lt;br /&gt;
* The ADAPT project is hiring undergrad programmers to work on a variety of projects&lt;br /&gt;
* Learn more on our [[Employment]] page&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ACE V 1.6 (2/3)&#039;&#039;&#039;&lt;br /&gt;
* Token store exporting, improved db storing&lt;br /&gt;
* Frontend UI improvements, &lt;br /&gt;
* Build system (maven) changes&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ACE Development infrastructure improvements (1/26)&#039;&#039;&#039;&lt;br /&gt;
* public source repository https://subversion.umiacs.umd.edu/ace/&lt;br /&gt;
* &amp;lt;strike&amp;gt;Hudson&amp;lt;/strike&amp;gt;Jenkins testing and daily builds http://adaptci01.umiacs.umd.edu:8080/jenkins/job/ACE%20Audit%20Manager/&lt;br /&gt;
* Projects converted from netbeans build to maven3 for easier collaboration&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Python tutorials for ACE&#039;&#039;&#039;&lt;br /&gt;
* [[Ace:IMSPython| Requesting and validating IMS tokens]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Ace V 1.5 Released (6/25)&#039;&#039;&#039;&lt;br /&gt;
* Source Released under BSD License&lt;br /&gt;
* Resource migration&lt;br /&gt;
* Lots of internal refactoring, dependency restructuring&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;New Issue Tracker&#039;&#039;&#039;&lt;br /&gt;
The adapt project now has an issue tracker to manage releases of our software and track bugs/feature requests.&lt;br /&gt;
* https://scm.umiacs.umd.edu/redmine/adapt/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Conference Videos Online (4/21/09)&#039;&#039;&#039;&lt;br /&gt;
Videos for the two-day conference, &amp;quot;Partnerships in Innovation II: From Vision to Reality and Beyond&amp;quot; held on October 7- 8, 2008 in College Park, Maryland, USA are now [[Partnerships 2008 Videos|online]]&lt;br /&gt;
&lt;br /&gt;
=Old Projects=&lt;br /&gt;
&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;[[PAWN:Main|Ingestion (PAWN)]]&lt;br /&gt;
&amp;lt;li&amp;gt;[[Focus:Main|Format Stewardship (FOCUS)]]&lt;br /&gt;
&amp;lt;li&amp;gt;[[TPAP|TPAP]] - Transcontinental persistent archive prototype&lt;/div&gt;</summary>
		<author><name>Toaster</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/adapt/index.php?title=Ace:Devel_Pages&amp;diff=2892</id>
		<title>Ace:Devel Pages</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/adapt/index.php?title=Ace:Devel_Pages&amp;diff=2892"/>
		<updated>2012-07-11T13:42:49Z</updated>

		<summary type="html">&lt;p&gt;Toaster: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=General=&lt;br /&gt;
&lt;br /&gt;
* [https://scm.umiacs.umd.edu/redmine/adapt/projects/ace Bug Tracker, Source code..]&lt;br /&gt;
* [http://groups.google.com/group/ace-devel Discussion List]&lt;br /&gt;
* [http://adapt-ci.umiacs.umd.edu:8080/hudson/job/ACE%20Audit%20Manager Hudson build tests]&lt;br /&gt;
&lt;br /&gt;
=Token Store Format=&lt;br /&gt;
&lt;br /&gt;
Information for creating, parsing and validating Token stores&lt;br /&gt;
&lt;br /&gt;
* [[Ace:TokenStore|Token Store Format]]&lt;br /&gt;
* [[Ace:StorePython|Processing Token Stores in Python]]&lt;br /&gt;
&lt;br /&gt;
=Audit Manager=&lt;br /&gt;
&lt;br /&gt;
Developer pages and documentation for the ACE Audit Manager web application&lt;br /&gt;
&lt;br /&gt;
* [[Ace:JSON Interface|JSON Interface to Audit Manager]]&lt;br /&gt;
* [[Ace:Roles|Security Roles]]&lt;br /&gt;
* [[Ace:Summary Details|Summary generation]]&lt;br /&gt;
* [[Ace:Expanding the Audit Manager|Adding Storage Types]] &lt;br /&gt;
* [[Ace:Release Guidlines|Release Guidelines]]&lt;br /&gt;
&lt;br /&gt;
=Integrity Management Service=&lt;br /&gt;
&lt;br /&gt;
* [[Ace:IMSPython|Accessing the IMS using python]]&lt;br /&gt;
&lt;br /&gt;
=Other=&lt;br /&gt;
&lt;br /&gt;
* [[Ace:Deprecated|Deprecated Pages]]&lt;/div&gt;</summary>
		<author><name>Toaster</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/adapt/index.php?title=People&amp;diff=2891</id>
		<title>People</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/adapt/index.php?title=People&amp;diff=2891"/>
		<updated>2012-07-11T13:40:54Z</updated>

		<summary type="html">&lt;p&gt;Toaster: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Current Personal&#039;&#039;&#039;&lt;br /&gt;
* [http://www.umiacs.umd.edu/~joseph Joseph JaJa], Principal Investigator&lt;br /&gt;
* Mike Smorul, Lead Programmer and Manager of the Persistent Archives Project&lt;br /&gt;
* Mike Ritter, Programmer&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Past Members&#039;&#039;&#039;&lt;br /&gt;
* [http://www.ece.umd.edu/~scsong Sangchul Song], Graduate Research Assistant&lt;br /&gt;
* Mike McGann, Programmer&lt;br /&gt;
* Muluwork Geremew, Graduate Research Assistant&lt;br /&gt;
* Chris Wamble, Student Programmer&lt;br /&gt;
* Yang Wang, Programmer&lt;br /&gt;
* Gary Jackson, Programmer&lt;br /&gt;
* Anthony DeMartini, Student Programmer &lt;br /&gt;
* Qingmin Shi, Postdoctoral Associate &lt;br /&gt;
* Damon Earp, Student Programmer&lt;br /&gt;
* Malcom Ray, Student Programmer&lt;/div&gt;</summary>
		<author><name>Toaster</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/adapt/index.php?title=People&amp;diff=2890</id>
		<title>People</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/adapt/index.php?title=People&amp;diff=2890"/>
		<updated>2012-07-11T13:40:47Z</updated>

		<summary type="html">&lt;p&gt;Toaster: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Current Personal&#039;&#039;&#039;&lt;br /&gt;
* [http://www.umiacs.umd.edu/~joseph Joseph JaJa], Principal Investigator&lt;br /&gt;
* Mike Smorul, Lead Programmer and Manager of the Persistent Archives Project&lt;br /&gt;
* Mike Ritter&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Past Members&#039;&#039;&#039;&lt;br /&gt;
* [http://www.ece.umd.edu/~scsong Sangchul Song], Graduate Research Assistant&lt;br /&gt;
* Mike McGann, Programmer&lt;br /&gt;
* Muluwork Geremew, Graduate Research Assistant&lt;br /&gt;
* Chris Wamble, Student Programmer&lt;br /&gt;
* Yang Wang, Programmer&lt;br /&gt;
* Gary Jackson, Programmer&lt;br /&gt;
* Anthony DeMartini, Student Programmer &lt;br /&gt;
* Qingmin Shi, Postdoctoral Associate &lt;br /&gt;
* Damon Earp, Student Programmer&lt;br /&gt;
* Malcom Ray, Student Programmer&lt;/div&gt;</summary>
		<author><name>Toaster</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/adapt/index.php?title=Main_Page&amp;diff=2889</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/adapt/index.php?title=Main_Page&amp;diff=2889"/>
		<updated>2012-07-11T13:40:19Z</updated>

		<summary type="html">&lt;p&gt;Toaster: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Overview=&lt;br /&gt;
The ADAPT project is developing technologies for building a scalable and reliable infrastructure for the long-term access and preservation of digital assets. Over the past years, we&#039;ve developed numerous tools and have active research in many areas.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table width=&amp;quot;75%&amp;quot; style=&amp;quot;margin-left: 75px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;&#039;&#039;&#039;Open Source Tools&#039;&#039;&#039;&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&#039;&#039;&#039;Research&#039;&#039;&#039;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td valign=&amp;quot;top&amp;quot;&amp;gt;&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;[[Ace|Integrity Management (ACE)]]&amp;lt;li&amp;gt;[[WarcManager|Warc Management Utility]]&amp;lt;li&amp;gt;[https://scm.umiacs.umd.edu/redmine/adapt/projects/ingestion RESTful Bag server Implementation]&amp;lt;/ul&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;[[Webarc:Main|Web Archive Indexing]]&amp;lt;li&amp;gt;[[Replication:Main|Replication Monitoring]]&lt;br /&gt;
&amp;lt;li&amp;gt;[[Chronopolis|Chronopolis]]&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Undergrad positions available&#039;&#039;&#039;&lt;br /&gt;
* The ADAPT project is hiring undergrad programmers to work on a variety of projects&lt;br /&gt;
* Learn more on our [[Employment]] page&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ACE V 1.6 (2/3)&#039;&#039;&#039;&lt;br /&gt;
* Token store exporting, improved db storing&lt;br /&gt;
* Frontend UI improvements, &lt;br /&gt;
* Build system (maven) changes&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ACE Development infrastructure improvements (1/26)&#039;&#039;&#039;&lt;br /&gt;
* public source repository https://subversion.umiacs.umd.edu/ace/&lt;br /&gt;
* &amp;lt;strike&amp;gt;Hudson&amp;lt;/strike&amp;gt;Jenkins testing and daily builds http://adaptvm01.umiacs.umd.edu:8080/jenkins/job/ACE%20Audit%20Manager/&lt;br /&gt;
* Projects converted from netbeans build to maven3 for easier collaboration&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Python tutorials for ACE&#039;&#039;&#039;&lt;br /&gt;
* [[Ace:IMSPython| Requesting and validating IMS tokens]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Ace V 1.5 Released (6/25)&#039;&#039;&#039;&lt;br /&gt;
* Source Released under BSD License&lt;br /&gt;
* Resource migration&lt;br /&gt;
* Lots of internal refactoring, dependency restructuring&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;New Issue Tracker&#039;&#039;&#039;&lt;br /&gt;
The adapt project now has an issue tracker to manage releases of our software and track bugs/feature requests.&lt;br /&gt;
* https://scm.umiacs.umd.edu/redmine/adapt/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Conference Videos Online (4/21/09)&#039;&#039;&#039;&lt;br /&gt;
Videos for the two-day conference, &amp;quot;Partnerships in Innovation II: From Vision to Reality and Beyond&amp;quot; held on October 7- 8, 2008 in College Park, Maryland, USA are now [[Partnerships 2008 Videos|online]]&lt;br /&gt;
&lt;br /&gt;
=Old Projects=&lt;br /&gt;
&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;[[PAWN:Main|Ingestion (PAWN)]]&lt;br /&gt;
&amp;lt;li&amp;gt;[[Focus:Main|Format Stewardship (FOCUS)]]&lt;br /&gt;
&amp;lt;li&amp;gt;[[TPAP|TPAP]] - Transcontinental persistent archive prototype&lt;/div&gt;</summary>
		<author><name>Toaster</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/adapt/index.php?title=EAP_decommission&amp;diff=2888</id>
		<title>EAP decommission</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/adapt/index.php?title=EAP_decommission&amp;diff=2888"/>
		<updated>2012-02-15T05:24:29Z</updated>

		<summary type="html">&lt;p&gt;Toaster: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The technology demonstration displaying electronic content on loan from the National Archives and Records Administration has been retired due to hardware obsolescence. For copies of any content hosted in this collection, please contact NARA at inquire@nara.gov.&lt;/div&gt;</summary>
		<author><name>Toaster</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/adapt/index.php?title=Ace:Main&amp;diff=2887</id>
		<title>Ace:Main</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/adapt/index.php?title=Ace:Main&amp;diff=2887"/>
		<updated>2011-11-07T22:15:22Z</updated>

		<summary type="html">&lt;p&gt;Toaster: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;ACE (Auditing Control Environment) is a system that incorporates a new methodology to address the integrity of long term archives using rigorous cryptographic techniques. ACE continuously audits the contents of the various objects according to the policy set by the archive, and provides mechanisms for an independent third-party auditor to certify the integrity of any object.&lt;br /&gt;
&lt;br /&gt;
ACE consists of two components, the first an Audit Manager(AM) that checks files locally to ensure they have not been compromised. The second part, the Integrity Management Service (IMS), issues tokens that the AM can use to verify that its local store of file digests has not been tampered with. &lt;br /&gt;
&lt;br /&gt;
Anyone wishing to audit their files with ACE only needs to install an Audit Manager locally to manage their files. The ADAPT project runs a publically available IMS at ims.umiacs.umd.edu that any group may freely use.&lt;br /&gt;
&lt;br /&gt;
{| width=&amp;quot;75%&amp;quot; style=&amp;quot;margin-left: 75px;&amp;quot;&lt;br /&gt;
| &#039;&#039;&#039;Audit Manager&#039;&#039;&#039; || &#039;&#039;&#039;Integrity Management Service&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| [[Ace:Audit Manager Installation Guide|Download Audit Manager]] || [[Ace:Ace IMS System|System Documentation]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Ace:Audit Manager User Guide|User Guide]] || [http://ims.umiacs.umd.edu:8080/ace-ims/IMSWebService IMS Webservice]&lt;br /&gt;
|-&lt;br /&gt;
| [http://groups.google.com/group/ace-devel Discussion List] || [[Ace:Validating Witness and Tokens|Validating Tokens and Witnesses]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Ace:Audit Manager Upgrading|Upgrade Audit Manager]] || [http://groups.google.com/group/ace-ims-witness?hl=en IMS Witness Google Goup]&lt;br /&gt;
|- &lt;br /&gt;
| [[Ace:AM Config Reference|AM Configuration Options]] || [http://mailman.umiacs.umd.edu/mailman/listinfo/ims-witness IMS Witness UMIACS listserv]&lt;br /&gt;
|-&lt;br /&gt;
|  || [[Ace:IMS Installation| IMS Installation Guide]]&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;Resources&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| [https://scm.umiacs.umd.edu/redmine/adapt/projects/show/ace Files and Issue Tracker]&lt;br /&gt;
|-&lt;br /&gt;
| [[Ace:Devel Pages|Development Documentation]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Ace:Webstart Client|Auditor Application]] || &lt;br /&gt;
|-&lt;br /&gt;
| [http://digitalcommons.uconn.edu/libr_pubs/39/ Step by Step installation instructions]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Papers and Presentations&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Smorul, M., Song, S., and JaJa, J. An Implementation of the Audit Control Environment(ACE) to Support the Long Term Integrity of Digital Archives. in DigCCurr 2009. 2009: University of North Carolina.[[media:DigCCurr2009_060909.pdf|pdf]] presentation [[media:Smorul-digccurr09.ppt|ppt]]&lt;br /&gt;
* ACE Presentation at Archiving 2007 (5/07) [[media: ACE-Archiving2007.ppt|ppt]]&lt;br /&gt;
* Song, S. and JaJa, J. ACE: A Novel Software Platform to Ensure the Integrity of Long Term Archives. in Archiving 2007. 2007: IS&amp;amp;T. [[media:rad71E67.pdf|pdf]]&lt;br /&gt;
&lt;br /&gt;
Development of the ACE Version1.0 release was partially sponsored by the US National Archives and Records Administration. The basic research on ACE was partially sponsored under a DIGARCH grant from NSF/Library of Congress.&lt;/div&gt;</summary>
		<author><name>Toaster</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/adapt/index.php?title=Ace:Main&amp;diff=2886</id>
		<title>Ace:Main</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/adapt/index.php?title=Ace:Main&amp;diff=2886"/>
		<updated>2011-11-07T22:15:07Z</updated>

		<summary type="html">&lt;p&gt;Toaster: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;ACE (Auditing Control Environment) is a system that incorporates a new methodology to address the integrity of long term archives using rigorous cryptographic techniques. ACE continuously audits the contents of the various objects according to the policy set by the archive, and provides mechanisms for an independent third-party auditor to certify the integrity of any object.&lt;br /&gt;
&lt;br /&gt;
ACE consists of two components, the first an Audit Manager(AM) that checks files locally to ensure they have not been compromised. The second part, the Integrity Management Service (IMS), issues tokens that the AM can use to verify that its local store of file digests has not been tampered with. &lt;br /&gt;
&lt;br /&gt;
Anyone wishing to audit their files with ACE only needs to install an Audit Manager locally to manage their files. The ADAPT project runs a publically available IMS at ims.umiacs.umd.edu that any group may freely use.&lt;br /&gt;
&lt;br /&gt;
{| width=&amp;quot;75%&amp;quot; style=&amp;quot;margin-left: 75px;&amp;quot;&lt;br /&gt;
| &#039;&#039;&#039;Audit Manager&#039;&#039;&#039; || &#039;&#039;&#039;Integrity Management Service&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| [[Ace:Audit Manager Installation Guide|Download Audit Manager]] || [[Ace:Ace IMS System|System Documentation]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Ace:Audit Manager User Guide|User Guide]] || [http://ims.umiacs.umd.edu:8080/ace-ims/IMSWebService IMS Webservice]&lt;br /&gt;
|-&lt;br /&gt;
| [http://groups.google.com/group/ace-devel Discussion List] || [[Ace:Validating Witness and Tokens|Validating Tokens and Witnesses]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Ace:Audit Manager Upgrading|Upgrade Audit Manager]] || [http://groups.google.com/group/ace-ims-witness?hl=en IMS Witness Google Goup]&lt;br /&gt;
|- &lt;br /&gt;
| [[Ace:AM Config Reference|AM Configuration Options]] || [http://mailman.umiacs.umd.edu/mailman/listinfo/ims-witness IMS Witness UMIACS listserv]&lt;br /&gt;
|-&lt;br /&gt;
|  || [[Ace:IMS Installation| IMS Installation Guide]]&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;Resources&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| [https://scm.umiacs.umd.edu/redmine/adapt/projects/show/ace Files and Issue Tracker]&lt;br /&gt;
|-&lt;br /&gt;
| [[Ace:Devel Pages|Development Documentation]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Ace:Webstart Client|Auditor Application]] || &lt;br /&gt;
|-&lt;br /&gt;
| [[http://digitalcommons.uconn.edu/libr_pubs/39/ Step by Step installation instructions&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Papers and Presentations&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Smorul, M., Song, S., and JaJa, J. An Implementation of the Audit Control Environment(ACE) to Support the Long Term Integrity of Digital Archives. in DigCCurr 2009. 2009: University of North Carolina.[[media:DigCCurr2009_060909.pdf|pdf]] presentation [[media:Smorul-digccurr09.ppt|ppt]]&lt;br /&gt;
* ACE Presentation at Archiving 2007 (5/07) [[media: ACE-Archiving2007.ppt|ppt]]&lt;br /&gt;
* Song, S. and JaJa, J. ACE: A Novel Software Platform to Ensure the Integrity of Long Term Archives. in Archiving 2007. 2007: IS&amp;amp;T. [[media:rad71E67.pdf|pdf]]&lt;br /&gt;
&lt;br /&gt;
Development of the ACE Version1.0 release was partially sponsored by the US National Archives and Records Administration. The basic research on ACE was partially sponsored under a DIGARCH grant from NSF/Library of Congress.&lt;/div&gt;</summary>
		<author><name>Toaster</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/adapt/index.php?title=Main_Page&amp;diff=2885</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/adapt/index.php?title=Main_Page&amp;diff=2885"/>
		<updated>2011-08-17T14:23:03Z</updated>

		<summary type="html">&lt;p&gt;Toaster: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Overview=&lt;br /&gt;
The ADAPT project is developing technologies for building a scalable and reliable infrastructure for the long-term access and preservation of digital assets. Over the past years, we&#039;ve developed numerous tools and have active research in many areas.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table width=&amp;quot;75%&amp;quot; style=&amp;quot;margin-left: 75px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;&#039;&#039;&#039;Open Source Tools&#039;&#039;&#039;&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&#039;&#039;&#039;Research&#039;&#039;&#039;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td valign=&amp;quot;top&amp;quot;&amp;gt;&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;[[Ace|Integrity Management (ACE)]]&amp;lt;li&amp;gt;[[WarcManager|Warc Management Utility]]&amp;lt;li&amp;gt;[https://scm.umiacs.umd.edu/redmine/adapt/projects/ingestion RESTful Bag server Implementation]&amp;lt;/ul&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;[[Webarc:Main|Web Archive Indexing]]&amp;lt;li&amp;gt;[[Replication:Main|Replication Monitoring]]&lt;br /&gt;
&amp;lt;li&amp;gt;[[Chronopolis|Chronopolis]]&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Java Programmer Job Opening&#039;&#039;&#039;&lt;br /&gt;
* ADAPT is currently hiring a full time java programmer. Please see our [[Employment]] page for details.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Undergrad positions available&#039;&#039;&#039;&lt;br /&gt;
* The ADAPT project is hiring undergrad programmers to work on a variety of projects&lt;br /&gt;
* Learn more on our [[Employment]] page&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ACE V 1.6 (2/3)&#039;&#039;&#039;&lt;br /&gt;
* Token store exporting, improved db storing&lt;br /&gt;
* Frontend UI improvements, &lt;br /&gt;
* Build system (maven) changes&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ACE Development infrastructure improvements (1/26)&#039;&#039;&#039;&lt;br /&gt;
* public source repository https://subversion.umiacs.umd.edu/ace/&lt;br /&gt;
* &amp;lt;strike&amp;gt;Hudson&amp;lt;/strike&amp;gt;Jenkins testing and daily builds http://adaptvm01.umiacs.umd.edu:8080/jenkins/job/ACE%20Audit%20Manager/&lt;br /&gt;
* Projects converted from netbeans build to maven3 for easier collaboration&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Python tutorials for ACE&#039;&#039;&#039;&lt;br /&gt;
* [[Ace:IMSPython| Requesting and validating IMS tokens]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Ace V 1.5 Released (6/25)&#039;&#039;&#039;&lt;br /&gt;
* Source Released under BSD License&lt;br /&gt;
* Resource migration&lt;br /&gt;
* Lots of internal refactoring, dependency restructuring&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;New Issue Tracker&#039;&#039;&#039;&lt;br /&gt;
The adapt project now has an issue tracker to manage releases of our software and track bugs/feature requests.&lt;br /&gt;
* https://scm.umiacs.umd.edu/redmine/adapt/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Conference Videos Online (4/21/09)&#039;&#039;&#039;&lt;br /&gt;
Videos for the two-day conference, &amp;quot;Partnerships in Innovation II: From Vision to Reality and Beyond&amp;quot; held on October 7- 8, 2008 in College Park, Maryland, USA are now [[Partnerships 2008 Videos|online]]&lt;br /&gt;
&lt;br /&gt;
=Old Projects=&lt;br /&gt;
&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;[[PAWN:Main|Ingestion (PAWN)]]&lt;br /&gt;
&amp;lt;li&amp;gt;[[Focus:Main|Format Stewardship (FOCUS)]]&lt;br /&gt;
&amp;lt;li&amp;gt;[[TPAP|TPAP]] - Transcontinental persistent archive prototype&lt;/div&gt;</summary>
		<author><name>Toaster</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/adapt/index.php?title=Employment&amp;diff=2884</id>
		<title>Employment</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/adapt/index.php?title=Employment&amp;diff=2884"/>
		<updated>2011-08-17T14:21:19Z</updated>

		<summary type="html">&lt;p&gt;Toaster: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Full Time Position=&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Summary&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The UMIACS ADAPT Project is looking for a Java programmer to assist in&lt;br /&gt;
a number of open source digital preservation efforts. This programmer&lt;br /&gt;
will initially work in a small group to help develop and extend&lt;br /&gt;
several Tomcat/MySQL based web applications. Due to the small size of&lt;br /&gt;
the research group, applicants must be able to work independently and&lt;br /&gt;
will be expected to set their own schedule and identify deliverables&lt;br /&gt;
within the context of current projects. Applicants will work with&lt;br /&gt;
external collaborators to ensure the software meets the needs of the&lt;br /&gt;
broader digital preservation community. Minimal travel of one to two&lt;br /&gt;
times a year will be required.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Daily Activity&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The developer&#039;s will focus on building a new web application in collaboration with the Lab&#039;s researchers and faculty. In any given week the developer will be expected to spend:&lt;br /&gt;
* at least 20 hours of software development and testing.&lt;br /&gt;
* at least 5 hours working with outside collaborators to identify necessary additions and identify software bugs.&lt;br /&gt;
* at least 3 hours a week attending conference calls and group meetings.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Required Skills&#039;&#039;&#039;&lt;br /&gt;
* Experienced in Java 1.6+&lt;br /&gt;
* Bachelors degree in Computer Science, Computer Engineering or equivalent work experience.&lt;br /&gt;
* Familiar with java persistence or similar ORM technologies&lt;br /&gt;
* Experienced in developing database backed Servlet or RESTful web services.&lt;br /&gt;
* Experienced developing and deploying applications on Tomcat server installations running on linux.&lt;br /&gt;
&lt;br /&gt;
Excellent candidates should have the additional experience.&lt;br /&gt;
* Familiar with developing command-line python utilities.&lt;br /&gt;
* Experienced in developing applications in a CI environment&lt;br /&gt;
* Minimal Systems Administration experience in a Linux environment.&lt;br /&gt;
This position is a demanding professional position that will expose applicants to a wide variety of technologies. Applicants must show a desire to continually explore new technologies and work with others to identify new challenges in digital preservation.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;About ADAPT&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The adapt project is a research group housed within the University of&lt;br /&gt;
Maryland Institute for Advanced Computer Studies. The group has worked&lt;br /&gt;
with numerous partners including the Library of Congress and U.S.&lt;br /&gt;
National Archives to develop several technologies to assist in long&lt;br /&gt;
term digital preservation at scale. For more information and a list of&lt;br /&gt;
projects currently supported by the ADAPT project, please visit&lt;br /&gt;
http://adapt.umiacs.umd.edu&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Applying&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
If you are interested, please contact Mike Smorul directly by emailing&lt;br /&gt;
the following information to msmorul@umiacs.umd.edu&lt;br /&gt;
* Your CV&lt;br /&gt;
* Three references.&lt;br /&gt;
* A portfolio which includes either pointers to web applications you contributed or descriptions of applications you assisted in developing and your role during development&lt;br /&gt;
* Your salary requirements&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Undergraduate Positions=&lt;br /&gt;
&lt;br /&gt;
The ADAPT Project has the following undergraduate positions available at this time.&lt;br /&gt;
&lt;br /&gt;
===Web Designer/Programmer===&lt;br /&gt;
&#039;&#039;&#039;Description&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The ADAPT Project is currently developing several web-based applications which support digital preservation. These applications consist of two parts, a server component which is controlled through a RESTful API, and a web-based client which controls and displays information from the service using JSON.&lt;br /&gt;
&lt;br /&gt;
The student will initially work to create an attractive javascript-bsed web interface for these services. Depending on skill and motivation, there are a variety of other programming opportunities available in the lab.&lt;br /&gt;
&lt;br /&gt;
Due to the amount of development involved, interested students should expect a time commitment of over 10hrs/week. Starting pay is $10.25/hr with semester-end reviews.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Requirements&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Candidates must have experience in designing web page using javascript. Ideally, candidates will also have java programming and experience in working with REST/JSON based web technologies.&lt;br /&gt;
&lt;br /&gt;
=Applying=&lt;br /&gt;
Please send a copy of your resume/CV to msmorul at umiacs.umd.edu&lt;/div&gt;</summary>
		<author><name>Toaster</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/adapt/index.php?title=MediaWiki:Sidebar&amp;diff=2883</id>
		<title>MediaWiki:Sidebar</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/adapt/index.php?title=MediaWiki:Sidebar&amp;diff=2883"/>
		<updated>2011-07-20T18:13:00Z</updated>

		<summary type="html">&lt;p&gt;Toaster: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* General&lt;br /&gt;
** Adapt:About|Overview&lt;br /&gt;
** Projects|Projects&lt;br /&gt;
** papers|Papers&lt;br /&gt;
** people|People&lt;br /&gt;
** lab|Lab Resources&lt;br /&gt;
** https://scm.umiacs.umd.edu/redmine/adapt/|Redmine&lt;br /&gt;
*Projects&lt;br /&gt;
** Ace:Main|Integrity Auditing (ACE)&lt;br /&gt;
** WarcManager|Warc Management Utility&lt;br /&gt;
** https://scm.umiacs.umd.edu/redmine/adapt/projects/ingestion|RESTful Bag server Implementation&lt;br /&gt;
* Research&lt;br /&gt;
** PAWN:Main|Ingestion (PAWN)&lt;br /&gt;
** Replication:Main|Replication&lt;br /&gt;
** Webarc:Main|Web Archive Searching&lt;br /&gt;
** all_projects|All Research&lt;/div&gt;</summary>
		<author><name>Toaster</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/adapt/index.php?title=MediaWiki:Sidebar&amp;diff=2882</id>
		<title>MediaWiki:Sidebar</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/adapt/index.php?title=MediaWiki:Sidebar&amp;diff=2882"/>
		<updated>2011-07-20T18:12:16Z</updated>

		<summary type="html">&lt;p&gt;Toaster: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* General&lt;br /&gt;
** Adapt:About|Overview&lt;br /&gt;
** Projects|Projects&lt;br /&gt;
** papers|Papers&lt;br /&gt;
** people|People&lt;br /&gt;
** lab|Lab Resources&lt;br /&gt;
** https://scm.umiacs.umd.edu/redmine/adapt/|Redmine&lt;br /&gt;
*Projects&lt;br /&gt;
** Ace:Main|Integrity Auditing (ACE)&lt;br /&gt;
** WarcManager|Warc Management Utility&lt;br /&gt;
** https://scm.umiacs.umd.edu/redmine/adapt/projects/ingestion|RESTful Bag server Implementation&lt;br /&gt;
* Research&lt;br /&gt;
** PAWN:Main|Ingestion (PAWN)&lt;br /&gt;
** Replication:Main|Replication&lt;br /&gt;
** Webarc:Main|Web Archive Searching&lt;br /&gt;
** all_projects|All Research&lt;br /&gt;
* Demonstrations&lt;br /&gt;
** Ace:Webstart_Client|ACE Client&lt;br /&gt;
** http://narademo.umiacs.umd.edu/cgi-bin/isadg/main.html|EAP Browser&lt;br /&gt;
** Pawn:Public_Demonstration|PAWN&lt;/div&gt;</summary>
		<author><name>Toaster</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/adapt/index.php?title=MediaWiki:Sidebar&amp;diff=2881</id>
		<title>MediaWiki:Sidebar</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/adapt/index.php?title=MediaWiki:Sidebar&amp;diff=2881"/>
		<updated>2011-07-20T18:11:35Z</updated>

		<summary type="html">&lt;p&gt;Toaster: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* General&lt;br /&gt;
** Adapt:About|Overview&lt;br /&gt;
** Projects|Projects&lt;br /&gt;
** papers|Papers&lt;br /&gt;
** people|People&lt;br /&gt;
** lab|Lab Resources&lt;br /&gt;
** https://scm.umiacs.umd.edu/redmine/adapt/|Redmine&lt;br /&gt;
*Projects&lt;br /&gt;
** Ace:Main|Integrity Auditing (ACE)&lt;br /&gt;
** WarcManager|Warc Management Utility&lt;br /&gt;
** https://scm.umiacs.umd.edu/redmine/adapt/projects/ingestion RESTful Bag server Implementation&lt;br /&gt;
* Research&lt;br /&gt;
** PAWN:Main|Ingestion (PAWN)&lt;br /&gt;
** Replication:Main|Replication&lt;br /&gt;
** Webarc:Main|Web Archive Searching&lt;br /&gt;
** all_projects|All Research&lt;br /&gt;
* Demonstrations&lt;br /&gt;
** Ace:Webstart_Client|ACE Client&lt;br /&gt;
** http://narademo.umiacs.umd.edu/cgi-bin/isadg/main.html|EAP Browser&lt;br /&gt;
** Pawn:Public_Demonstration|PAWN&lt;/div&gt;</summary>
		<author><name>Toaster</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/adapt/index.php?title=Main_Page&amp;diff=2880</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/adapt/index.php?title=Main_Page&amp;diff=2880"/>
		<updated>2011-07-20T18:07:45Z</updated>

		<summary type="html">&lt;p&gt;Toaster: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Overview=&lt;br /&gt;
The ADAPT project is developing technologies for building a scalable and reliable infrastructure for the long-term access and preservation of digital assets. Over the past years, we&#039;ve developed numerous tools and have active research in many areas.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table width=&amp;quot;75%&amp;quot; style=&amp;quot;margin-left: 75px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;&#039;&#039;&#039;Open Source Tools&#039;&#039;&#039;&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&#039;&#039;&#039;Research&#039;&#039;&#039;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td valign=&amp;quot;top&amp;quot;&amp;gt;&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;[[Ace|Integrity Management (ACE)]]&amp;lt;li&amp;gt;[[WarcManager|Warc Management Utility]]&amp;lt;li&amp;gt;[https://scm.umiacs.umd.edu/redmine/adapt/projects/ingestion RESTful Bag server Implementation]&amp;lt;/ul&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;[[Webarc:Main|Web Archive Indexing]]&amp;lt;li&amp;gt;[[Replication:Main|Replication Monitoring]]&lt;br /&gt;
&amp;lt;li&amp;gt;[[Chronopolis|Chronopolis]]&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/table&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;AEC V 1.6 (2/3)&#039;&#039;&#039;&lt;br /&gt;
* Token store exporting, improved db storing&lt;br /&gt;
* Frontend UI improvements, &lt;br /&gt;
* Build system (maven) changes&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ACE Development infrastructure improvements (1/26)&#039;&#039;&#039;&lt;br /&gt;
* public source repository https://subversion.umiacs.umd.edu/ace/&lt;br /&gt;
* &amp;lt;strike&amp;gt;Hudson&amp;lt;/strike&amp;gt;Jenkins testing and daily builds http://adaptvm01.umiacs.umd.edu:8080/jenkins/job/ACE%20Audit%20Manager/&lt;br /&gt;
* Projects converted from netbeans build to maven3 for easier collaboration&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Python tutorials for ACE&#039;&#039;&#039;&lt;br /&gt;
* [[Ace:IMSPython| Requesting and validating IMS tokens]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Undergrad positions available&#039;&#039;&#039;&lt;br /&gt;
* The ADAPT project is hiring undergrad programmers to work on a variety of projects&lt;br /&gt;
* Learn more on our [[Employment]] page&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Ace V 1.5 Released (6/25)&#039;&#039;&#039;&lt;br /&gt;
* Source Released under BSD License&lt;br /&gt;
* Resource migration&lt;br /&gt;
* Lots of internal refactoring, dependency restructuring&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;New Issue Tracker&#039;&#039;&#039;&lt;br /&gt;
The adapt project now has an issue tracker to manage releases of our software and track bugs/feature requests.&lt;br /&gt;
* https://scm.umiacs.umd.edu/redmine/adapt/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Conference Videos Online (4/21/09)&#039;&#039;&#039;&lt;br /&gt;
Videos for the two-day conference, &amp;quot;Partnerships in Innovation II: From Vision to Reality and Beyond&amp;quot; held on October 7- 8, 2008 in College Park, Maryland, USA are now [[Partnerships 2008 Videos|online]]&lt;br /&gt;
&lt;br /&gt;
=Old Projects=&lt;br /&gt;
&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;[[PAWN:Main|Ingestion (PAWN)]]&lt;br /&gt;
&amp;lt;li&amp;gt;[[Focus:Main|Format Stewardship (FOCUS)]]&lt;br /&gt;
&amp;lt;li&amp;gt;[[TPAP|TPAP]] - Transcontinental persistent archive prototype&lt;/div&gt;</summary>
		<author><name>Toaster</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/adapt/index.php?title=Main_Page&amp;diff=2879</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/adapt/index.php?title=Main_Page&amp;diff=2879"/>
		<updated>2011-07-18T13:55:00Z</updated>

		<summary type="html">&lt;p&gt;Toaster: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Overview=&lt;br /&gt;
The ADAPT project is developing technologies for building a scalable and reliable infrastructure for the long-term access and preservation of digital assets. Our approach uses a distributed object architecture that operates on different levels of abstractions built around grid technologies and web services. Major software components have been prototyped and are currently in use in a number of pilot projects such as the Transcontinental Persistent Archives Project and Chronopolis.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table width=&amp;quot;75%&amp;quot; style=&amp;quot;margin-left: 75px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;&#039;&#039;&#039;Projects and Tools&#039;&#039;&#039;&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&#039;&#039;&#039;Research&#039;&#039;&#039;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td valign=&amp;quot;top&amp;quot;&amp;gt;&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;[[Chronopolis|Chronopolis]]&amp;lt;li&amp;gt;[[Ace|Integrity Management (ACE)]]&amp;lt;li&amp;gt;[[WarcManager|Warc Management Utility]]&amp;lt;li&amp;gt;[https://scm.umiacs.umd.edu/redmine/adapt/projects/ingestion RESTful Bag server Implementation]&amp;lt;/ul&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;[[Webarc:Main|Web Archive Indexing]]&amp;lt;li&amp;gt;[[Replication:Main|Replication Monitoring]]&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/table&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;AEC V 1.6 (2/3)&#039;&#039;&#039;&lt;br /&gt;
* Token store exporting, improved db storing&lt;br /&gt;
* Frontend UI improvements, &lt;br /&gt;
* Build system (maven) changes&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ACE Development infrastructure improvements (1/26)&#039;&#039;&#039;&lt;br /&gt;
* public source repository https://subversion.umiacs.umd.edu/ace/&lt;br /&gt;
* &amp;lt;strike&amp;gt;Hudson&amp;lt;/strike&amp;gt;Jenkins testing and daily builds http://adaptvm01.umiacs.umd.edu:8080/jenkins/job/ACE%20Audit%20Manager/&lt;br /&gt;
* Projects converted from netbeans build to maven3 for easier collaboration&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Python tutorials for ACE&#039;&#039;&#039;&lt;br /&gt;
* [[Ace:IMSPython| Requesting and validating IMS tokens]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Undergrad positions available&#039;&#039;&#039;&lt;br /&gt;
* The ADAPT project is hiring undergrad programmers to work on a variety of projects&lt;br /&gt;
* Learn more on our [[Employment]] page&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Ace V 1.5 Released (6/25)&#039;&#039;&#039;&lt;br /&gt;
* Source Released under BSD License&lt;br /&gt;
* Resource migration&lt;br /&gt;
* Lots of internal refactoring, dependency restructuring&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;New Issue Tracker&#039;&#039;&#039;&lt;br /&gt;
The adapt project now has an issue tracker to manage releases of our software and track bugs/feature requests.&lt;br /&gt;
* https://scm.umiacs.umd.edu/redmine/adapt/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Conference Videos Online (4/21/09)&#039;&#039;&#039;&lt;br /&gt;
Videos for the two-day conference, &amp;quot;Partnerships in Innovation II: From Vision to Reality and Beyond&amp;quot; held on October 7- 8, 2008 in College Park, Maryland, USA are now [[Partnerships 2008 Videos|online]]&lt;br /&gt;
&lt;br /&gt;
=Old Projects=&lt;br /&gt;
&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;[[PAWN:Main|Ingestion (PAWN)]]&lt;br /&gt;
&amp;lt;li&amp;gt;[[Focus:Main|Format Stewardship (FOCUS)]]&lt;br /&gt;
&amp;lt;li&amp;gt;[[TPAP|TPAP]] - Transcontinental persistent archive prototype&lt;/div&gt;</summary>
		<author><name>Toaster</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/adapt/index.php?title=WarcManager&amp;diff=2878</id>
		<title>WarcManager</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/adapt/index.php?title=WarcManager&amp;diff=2878"/>
		<updated>2011-06-21T13:18:16Z</updated>

		<summary type="html">&lt;p&gt;Toaster: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Overview=&lt;br /&gt;
The Warc Manager is a tool to help archives quickly browse, search, and analyze archives of web crawl data. The manager is lightweight database web application which indexes and provides a nice browsing interface to a collection of warc data.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Source Code Repository: https://subversion.umiacs.umd.edu/warc-utils/&lt;br /&gt;
* Nightly builds: http://adaptvm01.umiacs.umd.edu:8080/jenkins/job/Warc%20Manager%202/&lt;br /&gt;
&lt;br /&gt;
=Searching=&lt;br /&gt;
&lt;br /&gt;
The warc manager offers two ways to search collections.&lt;br /&gt;
&lt;br /&gt;
[[Image:searchpage.png]]&lt;br /&gt;
&lt;br /&gt;
1. If you know the page you want to view, start typing the full URL into the search box starting with &#039;http&#039;. You will see a drop-down box containing URL&#039;s that match what you have typed. Clicking on any of them will load details for the URL.&lt;br /&gt;
&lt;br /&gt;
2. &amp;lt;nowiki&amp;gt;Type a search string and click &#039;Search&#039;. Optionally you can add wildcards to your search. For example, entering &#039;*.html&#039; will search for all URL&#039;s ending in .html. Some common searches are listed below&amp;lt;/nowiki&amp;gt;:&lt;br /&gt;
* &amp;lt;nowiki&amp;gt;*.html&amp;lt;/nowiki&amp;gt; - search for all files ending in &#039;.html&#039;&lt;br /&gt;
* &amp;lt;nowiki&amp;gt;http://www.somesite.com*&amp;lt;/nowiki&amp;gt; - View all URL&#039;s for www.somesite.com&lt;br /&gt;
* &amp;lt;nowiki&amp;gt;http://www.somesite.com/*.html&amp;lt;/nowiki&amp;gt; - view all &#039;.html&#039; files on somesite.com.&lt;br /&gt;
&lt;br /&gt;
==Search Results==&lt;br /&gt;
[[Image:searchresults.png|thumb|Search Results]]&lt;br /&gt;
&lt;br /&gt;
The search results show all matching URL&#039;s along with some statistics about that url. Double clicking on any row will load details for any url.&lt;br /&gt;
&lt;br /&gt;
* First Crawl - The earliest crawl date for the url.&lt;br /&gt;
* Last Crawl - The most recent crawl date for the url.&lt;br /&gt;
* Harvested - Lists the total number of times a page appears in the archive. This includes duplicates and revisits&lt;br /&gt;
* Unique - Shows how many unique copies of the page exist in the archive. &lt;br /&gt;
&lt;br /&gt;
==URL Details==&lt;br /&gt;
[[Image:urldetails.png|thumb|URL Details]]&lt;br /&gt;
The url details page shows detailed information for any URL in the collection. If there are multiple copies or different versions of a URL they will be listed in the left-hand column. Clicking on any entry will load details for that URL.&lt;br /&gt;
&lt;br /&gt;
If you are accessing a URL that contains a html page (As opposed to an image) the warc manager will attempt to extract all links contained in that page and populate the table on the lower right. links that appear in the archive are shown in black, missing links are red. You can double-click on any page in the table to view details for that url.  If the URL is not an html file (ie, image) the link table will remain empty. &lt;br /&gt;
&lt;br /&gt;
Clicking on the &#039;Download File&#039; link will allow you to download the selected page from the archive.&lt;br /&gt;
&lt;br /&gt;
=Installation=&lt;br /&gt;
&lt;br /&gt;
The installation consists of a few simple steps. &lt;br /&gt;
&lt;br /&gt;
Before you begin, you will need to download:&lt;br /&gt;
* Apache Tomcat: http://tomcat.apache.org&lt;br /&gt;
* MySQL jdbc connector: http://dev.mysql.com/downloads/connector/j/&lt;br /&gt;
* context.xml, schema.sql, and the warc webapp from: http://adaptvm01.umiacs.umd.edu:8080/jenkins/job/Warc%20Manager%202/&lt;br /&gt;
&lt;br /&gt;
1. Create database and setup permissions.&lt;br /&gt;
 mysql&amp;gt; create database webarc;&lt;br /&gt;
 mysql&amp;gt; grant all on webarc.* to webarc@localhost identified by &#039;PASSWORD&#039;;&lt;br /&gt;
 mysql&amp;gt; use webarc;&lt;br /&gt;
 mysql&amp;gt; source schema.sql;&lt;br /&gt;
2. Install tomcat and JDBC driver&lt;br /&gt;
 $ tar -xf apache-tomcat-6.0.32.tar.gz&lt;br /&gt;
 $ cp mysql-connector-java-5.0.7-bin.jar apache-tomcat-6.0.32/lib&lt;br /&gt;
3. Install and configure the Warc Manager&lt;br /&gt;
 $ cp warc-webapp-1.0-SNAPSHOT.war apache-tomcat-6.0.32/webapps/warc.war&lt;br /&gt;
 $ mkdir -p apache-tomcat-6.0.32/conf/Catalina/localhost&lt;br /&gt;
 $ cp context.xml apache-tomcat-6.0.32/conf/Catalina/localhost/warc.xml &lt;br /&gt;
* edit apache-tomcat-6.0.32/conf/Catalina/localhost/warc.xml and make sure the password under the resource line is the same as you specified above:&lt;br /&gt;
&lt;br /&gt;
  &amp;lt;Resource auth=&amp;quot;Container&amp;quot; driverClassName=&amp;quot;com.mysql.jdbc.Driver&amp;quot; maxActive=&amp;quot;20&amp;quot; &lt;br /&gt;
 maxIdle=&amp;quot;10&amp;quot; maxWait=&amp;quot;-1&amp;quot; name=&amp;quot;jdbc/warcdb&amp;quot; &#039;&#039;&#039;password=&amp;quot;PASSWORD&amp;quot;&#039;&#039;&#039; testOnBorrow=&amp;quot;true&amp;quot;&lt;br /&gt;
 type=&amp;quot;javax.sql.DataSource&amp;quot; url=&amp;quot;jdbc:mysql://localhost/webarc&amp;quot; username=&amp;quot;webarc&amp;quot;&lt;br /&gt;
 validationQuery=&amp;quot;SELECT 1&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Add the following line after the resource line.&lt;br /&gt;
 &amp;lt;Parameter name=&amp;quot;ingest.url&amp;quot; value=&amp;quot;http://localhost:8080/warc/rest/ingest&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
4. Start Tomcat&lt;br /&gt;
 $ apache-tomcat-6.0.32/bin/startup.sh&lt;br /&gt;
&lt;br /&gt;
=Indexing Web Content=&lt;br /&gt;
&lt;br /&gt;
The Warc Manager is able to index warc data stored on the same server that the manager is running on. To index warc files, you will need to know the directory on the server where they reside.&lt;br /&gt;
&lt;br /&gt;
1. From the main screen, click &#039;Ingest Files&#039;. You will see the ingest file screen.&lt;br /&gt;
&lt;br /&gt;
[[Image:ingestfiles.png]]&lt;br /&gt;
&lt;br /&gt;
2. Enter the following information:&lt;br /&gt;
* Server Directory - The directory  on the warc manager where warc files are stored. The scan will recursively search for any files ending in &#039;warc.gz&#039;&lt;br /&gt;
* Select Collection / New Collection: If you want to load these files into an existing collection, select it from the drop down box. Otherwise, type in the name of a new collection or label for these warc files.&lt;br /&gt;
&lt;br /&gt;
3. Click &#039;Scan Directory&#039; When you are ready to index warc files. You can return to the scan page any time to view the progress of your upload.&lt;/div&gt;</summary>
		<author><name>Toaster</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/adapt/index.php?title=File:Archiving11-smorul.pdf&amp;diff=2877</id>
		<title>File:Archiving11-smorul.pdf</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/adapt/index.php?title=File:Archiving11-smorul.pdf&amp;diff=2877"/>
		<updated>2011-06-03T19:12:01Z</updated>

		<summary type="html">&lt;p&gt;Toaster: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Toaster</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/adapt/index.php?title=Papers&amp;diff=2876</id>
		<title>Papers</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/adapt/index.php?title=Papers&amp;diff=2876"/>
		<updated>2011-06-03T19:11:31Z</updated>

		<summary type="html">&lt;p&gt;Toaster: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Papers==&lt;br /&gt;
===2011===&lt;br /&gt;
* M. Smorul and J. JaJa. Implementation of a high performance architecture for managing and storing web-harvested collections. in Archiving 2011. 2011:IS&amp;amp;T [[media:Archiving11-smorul.pdf|pdf]]&lt;br /&gt;
===2010===&lt;br /&gt;
* S. Song and J. JaJa. Effective Strategies for Temporally Anchored Information Retrieval, :UMIACS-TR-2010-05. 2010, University of Maryland Institute for Advanced Computer Studies. [http://www.lib.umd.edu/drum/bitstream/1903/10108/1/UMIACS-TR-2010-05.pdf pdf]&lt;br /&gt;
* S. Song and J. JaJa. Techniques to Audit and Certify the Long Term Integrity of Digital Archives,  International Journal of Digital Libraries, 2010. [http://www.umiacs.umd.edu/~joseph/IJDL_published.pdf pdf]&lt;br /&gt;
===2009===&lt;br /&gt;
* J. JaJa and S. Song, Robust Tools and Services for Long-Term Preservation of Digital Information, Special Issue: Library of Congress National Digital Information and Preservation Parntership, 57:3, 580-594, 2009. [http://www.umiacs.umd.edu/~joseph/library-trends.pdf pdf]&lt;br /&gt;
* Song, S. and JaJa, J. Search and Access Strategies for Web Archives. in Archiving 2009. 2009: IS&amp;amp;T. [[media:Archiving2009_submitted.pdf|pdf]]&lt;br /&gt;
* Smorul, M. and JaJa, J. A Case Study in Distributed Collection Monitoring and Auditing Using the Audit Control Environment (ACE). in Archiving 2009. 2009: IS&amp;amp;T.&lt;br /&gt;
* Smorul, M., Song, S., and JaJa, J. An Implementation of the Audit Control Environment(ACE) to Support the Long Term Integrity of Digital Archives. in DigCCurr 2009. 2009: University of North Carolina.[[media:DigCCurr2009_060909.pdf|pdf]]&lt;br /&gt;
* JaJa, J., Smorul, M., and Song, S. Tools and Services for Long-Term Preservation of Digital Archives. in Indo-US Workshop on International Trends in Digital Preservation. 2009. Pune, India [[media:Indo-US-Workshop-jaja.pdf|pdf]]&lt;br /&gt;
&lt;br /&gt;
===2008===&lt;br /&gt;
* Song, S. and JaJa, J. Fast Browsing of Archived Web Contents. in 8th International Web Archiving Workshop. 2008. Aarhus, Denmark. [[media:iwaw08_Song_JaJa_Final.pdf|pdf]]&lt;br /&gt;
* Song, S. and JaJa, J., Archiving Temporal Web Information: Organization of Web Contents for Fast Access and Compact Storage:UMIACS-TR-2008-08. 2008, University of Maryland Institute for Advanced Computer Studies. [[media:temporal-web-archiving-final-umiacs-tr-2008-08.pdf|pdf]]&lt;br /&gt;
&lt;br /&gt;
===2007===&lt;br /&gt;
* Smorul, M., McGann, M., and JaJa, J. PAWN: A Policy-Driven Environment for Implementing Producer-Archive Interactions in Support of Long Term Digital Preservation. in Archiving 2007. 2007: IS&amp;amp;T. [[media:Pawn-archiving07-uploaded.pdf|pdf]]&lt;br /&gt;
* Song, S. and JaJa, J. ACE: A Novel Software Platform to Ensure the Integrity of Long Term Archives. in Archiving 2007. 2007: IS&amp;amp;T. [[media:rad71E67.pdf|pdf]]&lt;br /&gt;
* Smorul, M., McGann, M., and JaJa, J. The Use of the Producer-Archive Workflow Network (PAWN) in Support of Customized Archival Practice. in DigCCurr 2007. 2007. Chapel Hill, North Carolina. [[media:Digccurr07-paper-final.pdf|pdf]]&lt;br /&gt;
* Song, S. and JaJa, J., Web Archiving: Organizing Web Objects into Web Containers to Optimize Access:UMIACS-TR-2007-42. 2007, University of Maryland Institute for Advanced Computer Studies. [[media:OrganizingWebObjects_UMIACS-TR-2007_42.pdf|pdf]]&lt;br /&gt;
&lt;br /&gt;
===2006===&lt;br /&gt;
* Geremew, M., Song, S., and JaJa, J. Using Scalable and Secure Web Technologies to Design a Global Format Registry Prototype: Architecture, Implementation, and Testing. in Proceedings of Archiving 2006. 2006. Ottawa, Canada: IS&amp;amp;T. [[media:archiving06_final.pdf|pdf]]&lt;br /&gt;
&lt;br /&gt;
===2005===&lt;br /&gt;
* JaJa, J., Smorul, M., McCall, F., and Wang, Y. Scalable, Reliable Marshalling and Organization of Distributed Large Scale Data Onto Enterprise Storage Environments. in The 22nd IEEE / 13th NASA Goddard Conference on Mass Storage Systems and Technologies. 2005. Monterey, California: IEEE Computer Society. [[media:msst-final5.pdf|pdf]]&lt;br /&gt;
&lt;br /&gt;
===2004===&lt;br /&gt;
* JaJa, J., McCall, F., Smorul, M., Moore, Y., and Chadduck, R.  Digital Archiving and Long Term Preservation: An Early Experience with Grid and Digital Library Technologies. [[media:thic-04.doc|doc]]&lt;br /&gt;
* Smorul, M., JaJa, J., Wang, Y., and McCall, F., PAWN: Producer – Archive Workflow Network in Support of Digital Preservation:UMIACS-TR-2004-49. 2004. [[media:UMIACS-TR-2004-49.pdf|pdf]]&lt;br /&gt;
&lt;br /&gt;
===2003===&lt;br /&gt;
* Smorul, M., JaJa, J., McCall, F., Brown, S.F., Moore, R., Marciano, R., Chen, S.-Y., Lopez, R., and Chadduck, R., Recovery of a Digital Image Collection Through the SDSC/UMD/NARA Prototype Persistent Archive:UMIACS-TR-2003-105. 2003. [[media:UMIACS-TR-2003-105.pdf|pdf]]&lt;br /&gt;
&lt;br /&gt;
==Presentations==&lt;br /&gt;
===2010===&lt;br /&gt;
* Smorul, M. ACE DPIF presentation at NIST, Mar 10[[media:ACE-NIST10.ppt|ppt]]&lt;br /&gt;
===2009===&lt;br /&gt;
* Smorul, M. ACE Presentation for GeoMapp yearly meeting August 09 [[media:Geomapp-ace.ppt|ppt]]&lt;br /&gt;
* Smorul, M. and JaJa, J. Tools and Services for the Long Term Preservation and Access of Digital Archives, Sun Pasig, GW University [[media:Gw-pasig-09.ppt|ppt]]&lt;br /&gt;
* Smorul, M. ACE Experiences, DigCcurr 2009 Chapel Hill NC [[media:Smorul-digccurr09.ppt|ppt]]&lt;br /&gt;
* Song, S. and JaJa, J. Search and Access Strategies for Web Archives. in Archiving 2009. 2009: IS&amp;amp;T. [[media:webarc-slides-archiving-09-v2.ppt|ppt]]&lt;br /&gt;
* JaJa, J., Smorul, M., and Song, S. Tools and Services for Long-Term Preservation of Digital Archives. in Indo-US Workshop on International Trends in Digital Preservation. 2009. Pune, India [[media:JaJa-Indo-US-Workshop-March2009.ppt|ppt]]&lt;br /&gt;
&lt;br /&gt;
===2008===&lt;br /&gt;
* Sun Pasig Baltimore, ADAPT Tools overview [[media:SUN-PASIG-Nov08.ppt|ppt]]&lt;br /&gt;
* ERA Research Project: Ingestion and Preservation Tools and Services (Partnerships in Innovation 2008) [[Media:JAJA-NARA-UMD-Conference-08.ppt|ppt]]&lt;br /&gt;
* Fast Browsing of Archived Web Contents: International Web Archiving Workshop 2008 at Aarhus, Denmark (August 18-19, 2008) [[Media:IWAW2008.pdf|pdf]]&lt;br /&gt;
* ACE: NDIIPP Partners Meeting at Arlington, VA (July 8-10, 2008) [[media:session4_chronopolis.ppt|ppt]]&lt;br /&gt;
* NARA Presenation on recent research (6/08)&lt;br /&gt;
** Overview [[media:NARA-June08-v2.ppt|ppt]]&lt;br /&gt;
** PAWN [[media:pawn-0.7-nara-jun11.ppt|ppt]]&lt;br /&gt;
** ACE [[media:ACEAuditingControlEnvironment.ppt|ppt]]&lt;br /&gt;
** Replication Monitor [[media:ReplicationMonitoring.ppt|ppt]]&lt;br /&gt;
* Technical Overview of Processes [[media: NewPawnProcess.ppt|ppt]]&lt;br /&gt;
* Midwest Archives Conference (4/08) [[media: 2008MAC-Smorul.ppt|ppt]]&lt;br /&gt;
&lt;br /&gt;
===2007===&lt;br /&gt;
* PAWN, NAGARA Kansas City Meeting  (7/07) [[media: PAWN-nagara-2-smorul.ppt|ppt]]&lt;br /&gt;
* ACE Presentation: NDIIPP and NARA review (7/07) [[media: ACE-July26.ppt|ppt]]&lt;br /&gt;
* July project review, PAWN update (7/07) [[media: PAWN-updates-07-24.ppt|ppt]]&lt;br /&gt;
* PAWN Presentation at Archiving 2007 (5/07) [[media: PAWN-Archiving07-v1.ppt|ppt]]&lt;br /&gt;
* ACE Presentation at Archiving 2007 (5/07) [[media: ACE-Archiving2007.ppt|ppt]]&lt;br /&gt;
* Long Term Sustainment of Digital Information for Science and Engineering, NIST Interoperability Week(04/07) [[media: ADAPT-NIST-04-07.ppt|ppt]]&lt;br /&gt;
* DigCCurr 2007 (4/07) [[media: digccurr07-v1.ppt|ppt]]&lt;br /&gt;
* NDIIPP Focus Breakout (1/07) [[media: focus-ndiipp-07.ppt|ppt]]&lt;br /&gt;
* NDIIPP PAWN Breakout (1/07) [[media: PAWN-ndiipp-jan07.ppt|ppt]]&lt;br /&gt;
* NDIIPP Pecha Kucha Session (1/07) [[media: ndiipp-summary-jan-07.ppt|ppt]]&lt;br /&gt;
&lt;br /&gt;
===2006===&lt;br /&gt;
* Presentation at Archives II  (2006-07-28) [[media: pawn-nara-20060728.ppt|ppt]]&lt;br /&gt;
* Library of Congress (7/06) [[media: loc-july-06.ppt|ppt]]&lt;br /&gt;
* July project review, PAWN update (7/06) [[media: PAWNprogress-Jul-06-2.ppt|ppt]]&lt;br /&gt;
* Using Scalable and Secure Web Technologies to Design Global Format Registry (Archiving 2006 - 5/06) [[media: Conference_final.ppt|ppt]]&lt;br /&gt;
* Robust Technologies for Automated Ingestion and Long-Term Preservation of Digital Information (5/06) [[media: dgo2006-jaja.ppt|ppt]]&lt;br /&gt;
&lt;br /&gt;
===2005===&lt;br /&gt;
* Grid brick overview (11/05) [[media: GRIDBrickStatus-jun2-05.ppt|ppt]]&lt;br /&gt;
* FOCUS overview (10/05) [[media: NARASlides_new.ppt|ppt]]&lt;br /&gt;
* Pawn Release III status (10/05) [[media: PAWNTestIII-c.ppt|ppt]]&lt;br /&gt;
* June project review, PAWN update (6/05) [[media: Review-Jun2-05.ppt|ppt]]&lt;br /&gt;
* March NGDA data supplier meeting, ADAPT/PAWN/GRASP/GLCF (3/05) [[media: NGDA-adapt-glcf-05Mar.ppt|ppt]]&lt;br /&gt;
* Esip Federation Spring 05&lt;br /&gt;
** Introduction (Mike Smorul / Gary Jackson) [[media: 0.Introduction.ppt|ppt]]&lt;br /&gt;
** SRB Overview (Mike Smorul) [[media: 1.srb-overview.ppt|ppt]]&lt;br /&gt;
** Globus Overview (Gary Jackson) [[media: 2.globus.ppt|ppt]]&lt;br /&gt;
** GRASP (Mike Smorul) [[media: 3.grasp.ppt|ppt]]&lt;br /&gt;
** LPE (Gary Jackson) [[media: 4.LPE.ppt|ppt]]&lt;br /&gt;
** PAWN for Scientific Collections (Mike Smorul) [[media: 5.pawn-mss.ppt|ppt]]&lt;br /&gt;
** Globus vs SRB (Mike Smorul) [[media: globusvssrb.ppt|ppt]]&lt;br /&gt;
* PAWN, LPE, GRASP overviews for JAXA/GLCF meeting (2/05) [[media: PAWN_LPE_grasp-05feb18.ppt|ppt]]&lt;br /&gt;
&lt;br /&gt;
===2004===&lt;br /&gt;
* Dec 04 Presentation to OAIS members [[media: oais-pawn.ppt|ppt]]&lt;br /&gt;
* PAWN: A Novel Ingestion Workflow Technology for Digital Preservation ([http://www.erpanet.org/events/2004/budapest/index.php ERPANET Workshop on Workflow]) [[media: erpanet.ppt|ppt]]&lt;br /&gt;
&lt;br /&gt;
==Posters==&lt;br /&gt;
&lt;br /&gt;
===2009===&lt;br /&gt;
* Archiving2009 Web Archiving poster 5/09 [[media:webarc-search-poster-archiving-09-v3.ppt|ppt]]&lt;br /&gt;
* Archiving2009 ACE poster 5/09&lt;br /&gt;
&lt;br /&gt;
===2008===&lt;br /&gt;
&lt;br /&gt;
===2007===&lt;br /&gt;
* NDIIPP PAWN poster 1/07 [[media: globusvssrb.ppt|ppt]]&lt;br /&gt;
* NDIIPP ACE poster 1/07 [[media: globusvssrb.ppt|ppt]]&lt;br /&gt;
&lt;br /&gt;
===2006===&lt;br /&gt;
* NDIIPP Focus poster [[media: FOCUS_Poster-3.ppt|ppt]]&lt;br /&gt;
* NDIIPP Adapt poster [[media: ndiipp-poster-2.ppt|ppt]]&lt;br /&gt;
&lt;br /&gt;
===2005===&lt;br /&gt;
* PAWN and ADAPT poster 9/05 [[media: adapt-pawn4-final.ppt|ppt]]&lt;br /&gt;
* Student jobs brochure 9/05 [[media: adapt-student-brochure.ppt|ppt]]&lt;br /&gt;
&lt;br /&gt;
===2004===&lt;br /&gt;
* PAWN Poster for Nov 04 NARA Conference 11/04 [[media: pawn-poster.ppt|ppt]]&lt;/div&gt;</summary>
		<author><name>Toaster</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/adapt/index.php?title=WarcManager&amp;diff=2875</id>
		<title>WarcManager</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/adapt/index.php?title=WarcManager&amp;diff=2875"/>
		<updated>2011-04-27T17:27:22Z</updated>

		<summary type="html">&lt;p&gt;Toaster: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Overview=&lt;br /&gt;
The Warc Manager is a tool to help archives quickly browse, search, and analyze archives of web crawl data. The manager is lightweight database web application which indexes and provides a nice browsing interface to a collection of warc data.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Source Code Repository: https://subversion.umiacs.umd.edu/warc-utils/&lt;br /&gt;
* Nightly builds: http://adaptvm01.umiacs.umd.edu:8080/jenkins/job/Warc%20Manager%202/&lt;br /&gt;
&lt;br /&gt;
=Searching=&lt;br /&gt;
&lt;br /&gt;
The warc manager offers two ways to search collections.&lt;br /&gt;
&lt;br /&gt;
[[Image:searchpage.png]]&lt;br /&gt;
&lt;br /&gt;
1. If you know the page you want to view, start typing the full URL into the search box starting with &#039;http&#039;. You will see a drop-down box containing URL&#039;s that match what you have typed. Clicking on any of them will load details for the URL.&lt;br /&gt;
&lt;br /&gt;
2. &amp;lt;nowiki&amp;gt;Type a search string and click &#039;Search&#039;. Optionally you can add wildcards to your search. For example, entering &#039;*.html&#039; will search for all URL&#039;s ending in .html. Some common searches are listed below&amp;lt;/nowiki&amp;gt;:&lt;br /&gt;
* &amp;lt;nowiki&amp;gt;*.html&amp;lt;/nowiki&amp;gt; - search for all files ending in &#039;.html&#039;&lt;br /&gt;
* &amp;lt;nowiki&amp;gt;http://www.somesite.com*&amp;lt;/nowiki&amp;gt; - View all URL&#039;s for www.somesite.com&lt;br /&gt;
* &amp;lt;nowiki&amp;gt;http://www.somesite.com/*.html&amp;lt;/nowiki&amp;gt; - view all &#039;.html&#039; files on somesite.com.&lt;br /&gt;
&lt;br /&gt;
==Search Results==&lt;br /&gt;
[[Image:searchresults.png|thumb|Search Results]]&lt;br /&gt;
&lt;br /&gt;
The search results show all matching URL&#039;s along with some statistics about that url. Double clicking on any row will load details for any url.&lt;br /&gt;
&lt;br /&gt;
* First Crawl - The earliest crawl date for the url.&lt;br /&gt;
* Last Crawl - The most recent crawl date for the url.&lt;br /&gt;
* Harvested - Lists the total number of times a page appears in the archive. This includes duplicates and revisits&lt;br /&gt;
* Unique - Shows how many unique copies of the page exist in the archive. &lt;br /&gt;
&lt;br /&gt;
==URL Details==&lt;br /&gt;
[[Image:urldetails.png|thumb|URL Details]]&lt;br /&gt;
The url details page shows detailed information for any URL in the collection. If there are multiple copies or different versions of a URL they will be listed in the left-hand column. Clicking on any entry will load details for that URL.&lt;br /&gt;
&lt;br /&gt;
If you are accessing a URL that contains a html page (As opposed to an image) the warc manager will attempt to extract all links contained in that page and populate the table on the lower right. links that appear in the archive are shown in black, missing links are red. You can double-click on any page in the table to view details for that url.  If the URL is not an html file (ie, image) the link table will remain empty. &lt;br /&gt;
&lt;br /&gt;
Clicking on the &#039;Download File&#039; link will allow you to download the selected page from the archive.&lt;br /&gt;
&lt;br /&gt;
=Installation=&lt;br /&gt;
&lt;br /&gt;
The installation consists of a few simple steps. &lt;br /&gt;
&lt;br /&gt;
Before you begin, you will need to download:&lt;br /&gt;
* Apache Tomcat: http://tomcat.apache.org&lt;br /&gt;
* MySQL jdbc connector: http://dev.mysql.com/downloads/connector/j/&lt;br /&gt;
* context.xml, schema.sql, and the warc webapp from: http://adaptvm01.umiacs.umd.edu:8080/jenkins/job/Warc%20Manager%202/&lt;br /&gt;
&lt;br /&gt;
1. Create database and setup permissions.&lt;br /&gt;
 mysql&amp;gt; create database webarc;&lt;br /&gt;
 mysql&amp;gt; grant all on webarc.* to webarc@localhost identified by &#039;PASSWORD&#039;;&lt;br /&gt;
 mysql&amp;gt; use webarc;&lt;br /&gt;
 mysql&amp;gt; source schema.sql;&lt;br /&gt;
2. Install tomcat and JDBC driver&lt;br /&gt;
 $ tar -xf apache-tomcat-6.0.32.tar.gz&lt;br /&gt;
 $ cp mysql-connector-java-5.0.7-bin.jar apache-tomcat-6.0.32/lib&lt;br /&gt;
3. Install and configure the Warc Manager&lt;br /&gt;
 $ cp warc-webapp-1.0-SNAPSHOT.war apache-tomcat-6.0.32/webapps/warc.war&lt;br /&gt;
 $ mkdir -p apache-tomcat-6.0.32/conf/Catalina/localhost&lt;br /&gt;
 $ cp context.xml apache-tomcat-6.0.32/conf/Catalina/localhost/warc.xml &lt;br /&gt;
* edit apache-tomcat-6.0.32/conf/Catalina/localhost/warc.xml and make sure the password under the resource line is the same as you specified above:&lt;br /&gt;
&lt;br /&gt;
  &amp;lt;Resource auth=&amp;quot;Container&amp;quot; driverClassName=&amp;quot;com.mysql.jdbc.Driver&amp;quot; maxActive=&amp;quot;20&amp;quot; &lt;br /&gt;
 maxIdle=&amp;quot;10&amp;quot; maxWait=&amp;quot;-1&amp;quot; name=&amp;quot;jdbc/warcdb&amp;quot; &#039;&#039;&#039;password=&amp;quot;PASSWORD&amp;quot;&#039;&#039;&#039; testOnBorrow=&amp;quot;true&amp;quot;&lt;br /&gt;
 type=&amp;quot;javax.sql.DataSource&amp;quot; url=&amp;quot;jdbc:mysql://localhost/webarc&amp;quot; username=&amp;quot;webarc&amp;quot;&lt;br /&gt;
 validationQuery=&amp;quot;SELECT 1&amp;quot;/&amp;gt;&lt;br /&gt;
4. Start Tomcat&lt;br /&gt;
 $ apache-tomcat-6.0.32/bin/startup.sh&lt;br /&gt;
&lt;br /&gt;
=Indexing Web Content=&lt;br /&gt;
&lt;br /&gt;
The Warc Manager is able to index warc data stored on the same server that the manager is running on. To index warc files, you will need to know the directory on the server where they reside.&lt;br /&gt;
&lt;br /&gt;
1. From the main screen, click &#039;Ingest Files&#039;. You will see the ingest file screen.&lt;br /&gt;
&lt;br /&gt;
[[Image:ingestfiles.png]]&lt;br /&gt;
&lt;br /&gt;
2. Enter the following information:&lt;br /&gt;
* Server Directory - The directory  on the warc manager where warc files are stored. The scan will recursively search for any files ending in &#039;warc.gz&#039;&lt;br /&gt;
* Select Collection / New Collection: If you want to load these files into an existing collection, select it from the drop down box. Otherwise, type in the name of a new collection or label for these warc files.&lt;br /&gt;
&lt;br /&gt;
3. Click &#039;Scan Directory&#039; When you are ready to index warc files. You can return to the scan page any time to view the progress of your upload.&lt;/div&gt;</summary>
		<author><name>Toaster</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/adapt/index.php?title=WarcManager&amp;diff=2874</id>
		<title>WarcManager</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/adapt/index.php?title=WarcManager&amp;diff=2874"/>
		<updated>2011-04-27T14:59:10Z</updated>

		<summary type="html">&lt;p&gt;Toaster: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Overview=&lt;br /&gt;
The Warc Manager is a tool to help archives quickly browse, search, and analyze archives of web crawl data. The manager is lightweight database web application which indexes and provides a nice browsing interface to a collection of warc data.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Source Code Repository: https://subversion.umiacs.umd.edu/warc-utils/&lt;br /&gt;
* Nightly builds: http://adaptvm01.umiacs.umd.edu:8080/jenkins/job/Warc%20Manager%202/&lt;br /&gt;
&lt;br /&gt;
=Searching=&lt;br /&gt;
&lt;br /&gt;
The warc manager offers two ways to search collections.&lt;br /&gt;
&lt;br /&gt;
[[Image:searchpage.png]]&lt;br /&gt;
&lt;br /&gt;
1. If you know the page you want to view, start typing the full URL into the search box starting with &#039;http&#039;. You will see a drop-down box containing URL&#039;s that match what you have typed. Clicking on any of them will load details for the URL.&lt;br /&gt;
&lt;br /&gt;
2. &amp;lt;nowiki&amp;gt;Type a search string and click &#039;Search&#039;. Optionally you can add wildcards to your search. For example, entering &#039;*.html&#039; will search for all URL&#039;s ending in .html. Some common searches are listed below&amp;lt;/nowiki&amp;gt;:&lt;br /&gt;
* &amp;lt;nowiki&amp;gt;*.html&amp;lt;/nowiki&amp;gt; - search for all files ending in &#039;.html&#039;&lt;br /&gt;
* &amp;lt;nowiki&amp;gt;http://www.somesite.com*&amp;lt;/nowiki&amp;gt; - View all URL&#039;s for www.somesite.com&lt;br /&gt;
* &amp;lt;nowiki&amp;gt;http://www.somesite.com/*.html&amp;lt;/nowiki&amp;gt; - view all &#039;.html&#039; files on somesite.com.&lt;br /&gt;
&lt;br /&gt;
==Search Results==&lt;br /&gt;
[[Image:searchresults.png|thumb|Search Results]]&lt;br /&gt;
&lt;br /&gt;
The search results show all matching URL&#039;s along with some statistics about that url. Double clicking on any row will load details for any url.&lt;br /&gt;
&lt;br /&gt;
* First Crawl - The earliest crawl date for the url.&lt;br /&gt;
* Last Crawl - The most recent crawl date for the url.&lt;br /&gt;
* Harvested - Lists the total number of times a page appears in the archive. This includes duplicates and revisits&lt;br /&gt;
* Unique - Shows how many unique copies of the page exist in the archive. &lt;br /&gt;
&lt;br /&gt;
==URL Details==&lt;br /&gt;
[[Image:urldetails.png|thumb|URL Details]]&lt;br /&gt;
The url details page shows detailed information for any URL in the collection. If there are multiple copies or different versions of a URL they will be listed in the left-hand column. Clicking on any entry will load details for that URL.&lt;br /&gt;
&lt;br /&gt;
If you are accessing a URL that contains a html page (As opposed to an image) the warc manager will attempt to extract all links contained in that page and populate the table on the lower right. links that appear in the archive are shown in black, missing links are red. You can double-click on any page in the table to view details for that url.  If the URL is not an html file (ie, image) the link table will remain empty. &lt;br /&gt;
&lt;br /&gt;
Clicking on the &#039;Download File&#039; link will allow you to download the selected page from the archive.&lt;br /&gt;
&lt;br /&gt;
=Installation=&lt;br /&gt;
&lt;br /&gt;
The installation consists of a few simple steps. &lt;br /&gt;
&lt;br /&gt;
Before you begin, you will need &lt;br /&gt;
&lt;br /&gt;
1. Create database and setup permissions.&lt;br /&gt;
 mysql&amp;gt; create database webarc;&lt;br /&gt;
 mysql&amp;gt; grant all on webarc.* to webarc@localhost identified by &#039;PASSWORD&#039;;&lt;br /&gt;
 mysql&amp;gt; use webarc;&lt;br /&gt;
 mysql&amp;gt; source schema.sql;&lt;br /&gt;
2. Install tomcat and JDBC driver&lt;br /&gt;
 $ tar -xf apache-tomcat-6.0.32.tar.gz&lt;br /&gt;
 $ cp mysql-connector-java-5.0.7-bin.jar apache-tomcat-6.0.32/lib&lt;br /&gt;
3. Install and configure the Warc Manager&lt;br /&gt;
 $ cp warc-webapp-1.0-SNAPSHOT.war apache-tomcat-6.0.32/webapps/warc.war&lt;br /&gt;
 $ mkdir -p apache-tomcat-6.0.32/conf/Catalina/localhost&lt;br /&gt;
 $ cp context.xml apache-tomcat-6.0.32/conf/Catalina/localhost/warc.xml &lt;br /&gt;
* edit apache-tomcat-6.0.32/conf/Catalina/localhost/warc.xml and make sure the password under the resource line is the same as you specified above:&lt;br /&gt;
&lt;br /&gt;
  &amp;lt;Resource auth=&amp;quot;Container&amp;quot; driverClassName=&amp;quot;com.mysql.jdbc.Driver&amp;quot; maxActive=&amp;quot;20&amp;quot; &lt;br /&gt;
 maxIdle=&amp;quot;10&amp;quot; maxWait=&amp;quot;-1&amp;quot; name=&amp;quot;jdbc/warcdb&amp;quot; &#039;&#039;&#039;password=&amp;quot;PASSWORD&amp;quot;&#039;&#039;&#039; testOnBorrow=&amp;quot;true&amp;quot;&lt;br /&gt;
 type=&amp;quot;javax.sql.DataSource&amp;quot; url=&amp;quot;jdbc:mysql://localhost/webarc&amp;quot; username=&amp;quot;webarc&amp;quot;&lt;br /&gt;
 validationQuery=&amp;quot;SELECT 1&amp;quot;/&amp;gt;&lt;br /&gt;
4. Start Tomcat&lt;br /&gt;
 $ apache-tomcat-6.0.32/bin/startup.sh&lt;br /&gt;
&lt;br /&gt;
=Indexing Web Content=&lt;br /&gt;
&lt;br /&gt;
The Warc Manager is able to index warc data stored on the same server that the manager is running on. To index warc files, you will need to know the directory on the server where they reside.&lt;br /&gt;
&lt;br /&gt;
1. From the main screen, click &#039;Ingest Files&#039;. You will see the ingest file screen.&lt;br /&gt;
&lt;br /&gt;
[[Image:ingestfiles.png]]&lt;br /&gt;
&lt;br /&gt;
2. Enter the following information:&lt;br /&gt;
* Server Directory - The directory  on the warc manager where warc files are stored. The scan will recursively search for any files ending in &#039;warc.gz&#039;&lt;br /&gt;
* Select Collection / New Collection: If you want to load these files into an existing collection, select it from the drop down box. Otherwise, type in the name of a new collection or label for these warc files.&lt;br /&gt;
&lt;br /&gt;
3. Click &#039;Scan Directory&#039; When you are ready to index warc files. You can return to the scan page any time to view the progress of your upload.&lt;/div&gt;</summary>
		<author><name>Toaster</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/adapt/index.php?title=File:Urldetails.png&amp;diff=2873</id>
		<title>File:Urldetails.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/adapt/index.php?title=File:Urldetails.png&amp;diff=2873"/>
		<updated>2011-04-27T14:57:54Z</updated>

		<summary type="html">&lt;p&gt;Toaster: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Toaster</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/adapt/index.php?title=WarcManager&amp;diff=2872</id>
		<title>WarcManager</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/adapt/index.php?title=WarcManager&amp;diff=2872"/>
		<updated>2011-04-27T14:57:40Z</updated>

		<summary type="html">&lt;p&gt;Toaster: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Overview=&lt;br /&gt;
The Warc Manager is a tool to help archives quickly browse, search, and analyze archives of web crawl data. The manager is lightweight database web application which indexes and provides a nice browsing interface to a collection of warc data.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Source Code Repository: https://subversion.umiacs.umd.edu/warc-utils/&lt;br /&gt;
* Nightly builds: http://adaptvm01.umiacs.umd.edu:8080/jenkins/job/Warc%20Manager%202/&lt;br /&gt;
&lt;br /&gt;
=Searching=&lt;br /&gt;
&lt;br /&gt;
The warc manager offers two ways to search collections.&lt;br /&gt;
&lt;br /&gt;
[[Image:searchpage.png]]&lt;br /&gt;
&lt;br /&gt;
1. If you know the page you want to view, start typing the full URL into the search box starting with &#039;http&#039;. You will see a drop-down box containing URL&#039;s that match what you have typed. Clicking on any of them will load details for the URL.&lt;br /&gt;
&lt;br /&gt;
2. &amp;lt;nowiki&amp;gt;Type a search string and click &#039;Search&#039;. Optionally you can add wildcards to your search. For example, entering &#039;*.html&#039; will search for all URL&#039;s ending in .html. Some common searches are listed below&amp;lt;/nowiki&amp;gt;:&lt;br /&gt;
* &amp;lt;nowiki&amp;gt;*.html&amp;lt;/nowiki&amp;gt; - search for all files ending in &#039;.html&#039;&lt;br /&gt;
* &amp;lt;nowiki&amp;gt;http://www.somesite.com*&amp;lt;/nowiki&amp;gt; - View all URL&#039;s for www.somesite.com&lt;br /&gt;
* &amp;lt;nowiki&amp;gt;http://www.somesite.com/*.html&amp;lt;/nowiki&amp;gt; - view all &#039;.html&#039; files on somesite.com.&lt;br /&gt;
&lt;br /&gt;
==Search Results==&lt;br /&gt;
[[Image:searchresults.png|thumb|Search Results]]&lt;br /&gt;
&lt;br /&gt;
The search results show all matching URL&#039;s along with some statistics about that url. Double clicking on any row will load details for any url.&lt;br /&gt;
&lt;br /&gt;
* First Crawl - The earliest crawl date for the url.&lt;br /&gt;
* Last Crawl - The most recent crawl date for the url.&lt;br /&gt;
* Harvested - Lists the total number of times a page appears in the archive. This includes duplicates and revisits&lt;br /&gt;
* Unique - Shows how many unique copies of the page exist in the archive. &lt;br /&gt;
&lt;br /&gt;
==URL Details==&lt;br /&gt;
[[Image:urldetails.png|thumb|URL Details]]&lt;br /&gt;
The url details page shows detailed information for any URL in the collection. If there are multiple copies or different versions of a URL they will be listed in the left-hand column. Clicking on any entry will load details for that URL.&lt;br /&gt;
&lt;br /&gt;
If you are accessing a URL that contains a html page (As opposed to an image) the warc manager will attempt to extract all links contained in that page and populate the table on the lower right. If the URL is not an html file (ie, image) the link table will remain empty. &lt;br /&gt;
&lt;br /&gt;
Clicking on the &#039;Download File&#039; link will allow you to download the selected page from the archive.&lt;br /&gt;
&lt;br /&gt;
=Installation=&lt;br /&gt;
&lt;br /&gt;
The installation consists of a few simple steps. &lt;br /&gt;
&lt;br /&gt;
Before you begin, you will need &lt;br /&gt;
&lt;br /&gt;
1. Create database and setup permissions.&lt;br /&gt;
 mysql&amp;gt; create database webarc;&lt;br /&gt;
 mysql&amp;gt; grant all on webarc.* to webarc@localhost identified by &#039;PASSWORD&#039;;&lt;br /&gt;
 mysql&amp;gt; use webarc;&lt;br /&gt;
 mysql&amp;gt; source schema.sql;&lt;br /&gt;
2. Install tomcat and JDBC driver&lt;br /&gt;
 $ tar -xf apache-tomcat-6.0.32.tar.gz&lt;br /&gt;
 $ cp mysql-connector-java-5.0.7-bin.jar apache-tomcat-6.0.32/lib&lt;br /&gt;
3. Install and configure the Warc Manager&lt;br /&gt;
 $ cp warc-webapp-1.0-SNAPSHOT.war apache-tomcat-6.0.32/webapps/warc.war&lt;br /&gt;
 $ mkdir -p apache-tomcat-6.0.32/conf/Catalina/localhost&lt;br /&gt;
 $ cp context.xml apache-tomcat-6.0.32/conf/Catalina/localhost/warc.xml &lt;br /&gt;
* edit apache-tomcat-6.0.32/conf/Catalina/localhost/warc.xml and make sure the password under the resource line is the same as you specified above:&lt;br /&gt;
&lt;br /&gt;
  &amp;lt;Resource auth=&amp;quot;Container&amp;quot; driverClassName=&amp;quot;com.mysql.jdbc.Driver&amp;quot; maxActive=&amp;quot;20&amp;quot; &lt;br /&gt;
 maxIdle=&amp;quot;10&amp;quot; maxWait=&amp;quot;-1&amp;quot; name=&amp;quot;jdbc/warcdb&amp;quot; &#039;&#039;&#039;password=&amp;quot;PASSWORD&amp;quot;&#039;&#039;&#039; testOnBorrow=&amp;quot;true&amp;quot;&lt;br /&gt;
 type=&amp;quot;javax.sql.DataSource&amp;quot; url=&amp;quot;jdbc:mysql://localhost/webarc&amp;quot; username=&amp;quot;webarc&amp;quot;&lt;br /&gt;
 validationQuery=&amp;quot;SELECT 1&amp;quot;/&amp;gt;&lt;br /&gt;
4. Start Tomcat&lt;br /&gt;
 $ apache-tomcat-6.0.32/bin/startup.sh&lt;br /&gt;
&lt;br /&gt;
=Indexing Web Content=&lt;br /&gt;
&lt;br /&gt;
The Warc Manager is able to index warc data stored on the same server that the manager is running on. To index warc files, you will need to know the directory on the server where they reside.&lt;br /&gt;
&lt;br /&gt;
1. From the main screen, click &#039;Ingest Files&#039;. You will see the ingest file screen.&lt;br /&gt;
&lt;br /&gt;
[[Image:ingestfiles.png]]&lt;br /&gt;
&lt;br /&gt;
2. Enter the following information:&lt;br /&gt;
* Server Directory - The directory  on the warc manager where warc files are stored. The scan will recursively search for any files ending in &#039;warc.gz&#039;&lt;br /&gt;
* Select Collection / New Collection: If you want to load these files into an existing collection, select it from the drop down box. Otherwise, type in the name of a new collection or label for these warc files.&lt;br /&gt;
&lt;br /&gt;
3. Click &#039;Scan Directory&#039; When you are ready to index warc files. You can return to the scan page any time to view the progress of your upload.&lt;/div&gt;</summary>
		<author><name>Toaster</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/adapt/index.php?title=File:Searchresults.png&amp;diff=2871</id>
		<title>File:Searchresults.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/adapt/index.php?title=File:Searchresults.png&amp;diff=2871"/>
		<updated>2011-04-27T14:47:29Z</updated>

		<summary type="html">&lt;p&gt;Toaster: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Toaster</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/adapt/index.php?title=WarcManager&amp;diff=2870</id>
		<title>WarcManager</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/adapt/index.php?title=WarcManager&amp;diff=2870"/>
		<updated>2011-04-27T14:46:17Z</updated>

		<summary type="html">&lt;p&gt;Toaster: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Overview=&lt;br /&gt;
The Warc Manager is a tool to help archives quickly browse, search, and analyze archives of web crawl data. The manager is lightweight database web application which indexes and provides a nice browsing interface to a collection of warc data.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Source Code Repository: https://subversion.umiacs.umd.edu/warc-utils/&lt;br /&gt;
* Nightly builds: http://adaptvm01.umiacs.umd.edu:8080/jenkins/job/Warc%20Manager%202/&lt;br /&gt;
&lt;br /&gt;
=Searching=&lt;br /&gt;
&lt;br /&gt;
The warc manager offers two ways to search collections.&lt;br /&gt;
&lt;br /&gt;
[[Image:searchpage.png]]&lt;br /&gt;
&lt;br /&gt;
1. If you know the page you want to view, start typing the full URL into the search box starting with &#039;http&#039;. You will see a drop-down box containing URL&#039;s that match what you have typed. Clicking on any of them will load details for the URL.&lt;br /&gt;
&lt;br /&gt;
2. &amp;lt;nowiki&amp;gt;Type a search string and click &#039;Search&#039;. Optionally you can add wildcards to your search. For example, entering &#039;*.html&#039; will search for all URL&#039;s ending in .html. Some common searches are listed below&amp;lt;/nowiki&amp;gt;:&lt;br /&gt;
* &amp;lt;nowiki&amp;gt;*.html&amp;lt;/nowiki&amp;gt; - search for all files ending in &#039;.html&#039;&lt;br /&gt;
* &amp;lt;nowiki&amp;gt;http://www.somesite.com*&amp;lt;/nowiki&amp;gt; - View all URL&#039;s for www.somesite.com&lt;br /&gt;
* &amp;lt;nowiki&amp;gt;http://www.somesite.com/*.html&amp;lt;/nowiki&amp;gt; - view all &#039;.html&#039; files on somesite.com.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Installation=&lt;br /&gt;
&lt;br /&gt;
The installation consists of a few simple steps. &lt;br /&gt;
&lt;br /&gt;
Before you begin, you will need &lt;br /&gt;
&lt;br /&gt;
1. Create database and setup permissions.&lt;br /&gt;
 mysql&amp;gt; create database webarc;&lt;br /&gt;
 mysql&amp;gt; grant all on webarc.* to webarc@localhost identified by &#039;PASSWORD&#039;;&lt;br /&gt;
 mysql&amp;gt; use webarc;&lt;br /&gt;
 mysql&amp;gt; source schema.sql;&lt;br /&gt;
2. Install tomcat and JDBC driver&lt;br /&gt;
 $ tar -xf apache-tomcat-6.0.32.tar.gz&lt;br /&gt;
 $ cp mysql-connector-java-5.0.7-bin.jar apache-tomcat-6.0.32/lib&lt;br /&gt;
3. Install and configure the Warc Manager&lt;br /&gt;
 $ cp warc-webapp-1.0-SNAPSHOT.war apache-tomcat-6.0.32/webapps/warc.war&lt;br /&gt;
 $ mkdir -p apache-tomcat-6.0.32/conf/Catalina/localhost&lt;br /&gt;
 $ cp context.xml apache-tomcat-6.0.32/conf/Catalina/localhost/warc.xml &lt;br /&gt;
* edit apache-tomcat-6.0.32/conf/Catalina/localhost/warc.xml and make sure the password under the resource line is the same as you specified above:&lt;br /&gt;
&lt;br /&gt;
  &amp;lt;Resource auth=&amp;quot;Container&amp;quot; driverClassName=&amp;quot;com.mysql.jdbc.Driver&amp;quot; maxActive=&amp;quot;20&amp;quot; &lt;br /&gt;
 maxIdle=&amp;quot;10&amp;quot; maxWait=&amp;quot;-1&amp;quot; name=&amp;quot;jdbc/warcdb&amp;quot; &#039;&#039;&#039;password=&amp;quot;PASSWORD&amp;quot;&#039;&#039;&#039; testOnBorrow=&amp;quot;true&amp;quot;&lt;br /&gt;
 type=&amp;quot;javax.sql.DataSource&amp;quot; url=&amp;quot;jdbc:mysql://localhost/webarc&amp;quot; username=&amp;quot;webarc&amp;quot;&lt;br /&gt;
 validationQuery=&amp;quot;SELECT 1&amp;quot;/&amp;gt;&lt;br /&gt;
4. Start Tomcat&lt;br /&gt;
 $ apache-tomcat-6.0.32/bin/startup.sh&lt;br /&gt;
&lt;br /&gt;
=Indexing Web Content=&lt;br /&gt;
&lt;br /&gt;
The Warc Manager is able to index warc data stored on the same server that the manager is running on. To index warc files, you will need to know the directory on the server where they reside.&lt;br /&gt;
&lt;br /&gt;
1. From the main screen, click &#039;Ingest Files&#039;. You will see the ingest file screen.&lt;br /&gt;
&lt;br /&gt;
[[Image:ingestfiles.png]]&lt;br /&gt;
&lt;br /&gt;
2. Enter the following information:&lt;br /&gt;
* Server Directory - The directory  on the warc manager where warc files are stored. The scan will recursively search for any files ending in &#039;warc.gz&#039;&lt;br /&gt;
* Select Collection / New Collection: If you want to load these files into an existing collection, select it from the drop down box. Otherwise, type in the name of a new collection or label for these warc files.&lt;br /&gt;
&lt;br /&gt;
3. Click &#039;Scan Directory&#039; When you are ready to index warc files. You can return to the scan page any time to view the progress of your upload.&lt;/div&gt;</summary>
		<author><name>Toaster</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/adapt/index.php?title=File:Searchpage.png&amp;diff=2869</id>
		<title>File:Searchpage.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/adapt/index.php?title=File:Searchpage.png&amp;diff=2869"/>
		<updated>2011-04-27T14:45:25Z</updated>

		<summary type="html">&lt;p&gt;Toaster: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Toaster</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/adapt/index.php?title=WarcManager&amp;diff=2868</id>
		<title>WarcManager</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/adapt/index.php?title=WarcManager&amp;diff=2868"/>
		<updated>2011-04-27T14:43:52Z</updated>

		<summary type="html">&lt;p&gt;Toaster: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Overview=&lt;br /&gt;
The Warc Manager is a tool to help archives quickly browse, search, and analyze archives of web crawl data. The manager is lightweight database web application which indexes and provides a nice browsing interface to a collection of warc data.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Source Code Repository: https://subversion.umiacs.umd.edu/warc-utils/&lt;br /&gt;
* Nightly builds: http://adaptvm01.umiacs.umd.edu:8080/jenkins/job/Warc%20Manager%202/&lt;br /&gt;
&lt;br /&gt;
=Searching=&lt;br /&gt;
&lt;br /&gt;
The warc manager offers two ways to search collections.&lt;br /&gt;
&lt;br /&gt;
1. If you know the page you want to view, start typing the full URL into the search box starting with &#039;http&#039;. You will see a drop-down box containing URL&#039;s that match what you have typed. Clicking on any of them will load details for the URL.&lt;br /&gt;
&lt;br /&gt;
2. &amp;lt;nowiki&amp;gt;Type a search string and click &#039;Search&#039;. Optionally you can add wildcards to your search. For example, entering &#039;*.html&#039; will search for all URL&#039;s ending in .html. Some common searches are listed below&amp;lt;/nowiki&amp;gt;:&lt;br /&gt;
* &amp;lt;nowiki&amp;gt;*.html&amp;lt;/nowiki&amp;gt; - search for all files ending in &#039;.html&#039;&lt;br /&gt;
* &amp;lt;nowiki&amp;gt;http://www.somesite.com*&amp;lt;/nowiki&amp;gt; - View all URL&#039;s for www.somesite.com&lt;br /&gt;
* &amp;lt;nowiki&amp;gt;http://www.somesite.com/*.html&amp;lt;/nowiki&amp;gt; - view all &#039;.html&#039; files on somesite.com.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Installation=&lt;br /&gt;
&lt;br /&gt;
The installation consists of a few simple steps. &lt;br /&gt;
&lt;br /&gt;
Before you begin, you will need &lt;br /&gt;
&lt;br /&gt;
1. Create database and setup permissions.&lt;br /&gt;
 mysql&amp;gt; create database webarc;&lt;br /&gt;
 mysql&amp;gt; grant all on webarc.* to webarc@localhost identified by &#039;PASSWORD&#039;;&lt;br /&gt;
 mysql&amp;gt; use webarc;&lt;br /&gt;
 mysql&amp;gt; source schema.sql;&lt;br /&gt;
2. Install tomcat and JDBC driver&lt;br /&gt;
 $ tar -xf apache-tomcat-6.0.32.tar.gz&lt;br /&gt;
 $ cp mysql-connector-java-5.0.7-bin.jar apache-tomcat-6.0.32/lib&lt;br /&gt;
3. Install and configure the Warc Manager&lt;br /&gt;
 $ cp warc-webapp-1.0-SNAPSHOT.war apache-tomcat-6.0.32/webapps/warc.war&lt;br /&gt;
 $ mkdir -p apache-tomcat-6.0.32/conf/Catalina/localhost&lt;br /&gt;
 $ cp context.xml apache-tomcat-6.0.32/conf/Catalina/localhost/warc.xml &lt;br /&gt;
* edit apache-tomcat-6.0.32/conf/Catalina/localhost/warc.xml and make sure the password under the resource line is the same as you specified above:&lt;br /&gt;
&lt;br /&gt;
  &amp;lt;Resource auth=&amp;quot;Container&amp;quot; driverClassName=&amp;quot;com.mysql.jdbc.Driver&amp;quot; maxActive=&amp;quot;20&amp;quot; &lt;br /&gt;
 maxIdle=&amp;quot;10&amp;quot; maxWait=&amp;quot;-1&amp;quot; name=&amp;quot;jdbc/warcdb&amp;quot; &#039;&#039;&#039;password=&amp;quot;PASSWORD&amp;quot;&#039;&#039;&#039; testOnBorrow=&amp;quot;true&amp;quot;&lt;br /&gt;
 type=&amp;quot;javax.sql.DataSource&amp;quot; url=&amp;quot;jdbc:mysql://localhost/webarc&amp;quot; username=&amp;quot;webarc&amp;quot;&lt;br /&gt;
 validationQuery=&amp;quot;SELECT 1&amp;quot;/&amp;gt;&lt;br /&gt;
4. Start Tomcat&lt;br /&gt;
 $ apache-tomcat-6.0.32/bin/startup.sh&lt;br /&gt;
&lt;br /&gt;
=Indexing Web Content=&lt;br /&gt;
&lt;br /&gt;
The Warc Manager is able to index warc data stored on the same server that the manager is running on. To index warc files, you will need to know the directory on the server where they reside.&lt;br /&gt;
&lt;br /&gt;
1. From the main screen, click &#039;Ingest Files&#039;. You will see the ingest file screen.&lt;br /&gt;
&lt;br /&gt;
[[Image:ingestfiles.png]]&lt;br /&gt;
&lt;br /&gt;
2. Enter the following information:&lt;br /&gt;
* Server Directory - The directory  on the warc manager where warc files are stored. The scan will recursively search for any files ending in &#039;warc.gz&#039;&lt;br /&gt;
* Select Collection / New Collection: If you want to load these files into an existing collection, select it from the drop down box. Otherwise, type in the name of a new collection or label for these warc files.&lt;br /&gt;
&lt;br /&gt;
3. Click &#039;Scan Directory&#039; When you are ready to index warc files. You can return to the scan page any time to view the progress of your upload.&lt;/div&gt;</summary>
		<author><name>Toaster</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/adapt/index.php?title=WarcManager&amp;diff=2867</id>
		<title>WarcManager</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/adapt/index.php?title=WarcManager&amp;diff=2867"/>
		<updated>2011-04-27T14:43:27Z</updated>

		<summary type="html">&lt;p&gt;Toaster: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Overview=&lt;br /&gt;
The Warc Manager is a tool to help archives quickly browse, search, and analyze archives of web crawl data. The manager is lightweight database web application which indexes and provides a nice browsing interface to a collection of warc data.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Source Code Repository: https://subversion.umiacs.umd.edu/warc-utils/&lt;br /&gt;
* Nightly builds: http://adaptvm01.umiacs.umd.edu:8080/jenkins/job/Warc%20Manager%202/&lt;br /&gt;
&lt;br /&gt;
=Searching=&lt;br /&gt;
&lt;br /&gt;
The main page offers two ways to search for collections.&lt;br /&gt;
&lt;br /&gt;
1. If you know the page you want to view, start typing the full URL into the search box starting with &#039;http&#039;. You will see a drop-down box containing URL&#039;s that match what you have typed. Clicking on any of them will load details for the URL.&lt;br /&gt;
&lt;br /&gt;
2. &amp;lt;nowiki&amp;gt;Type a search string and click &#039;Search&#039;. Optionally you can add wildcards to your search. For example, entering &#039;*.html&#039; will search for all URL&#039;s ending in .html. Some common searches are listed below&amp;lt;/nowiki&amp;gt;:&lt;br /&gt;
* &amp;lt;nowiki&amp;gt;*.html&amp;lt;/nowiki&amp;gt; - search for all files ending in &#039;.html&#039;&lt;br /&gt;
* &amp;lt;nowiki&amp;gt;http://www.somesite.com*&amp;lt;/nowiki&amp;gt; - View all URL&#039;s for www.somesite.com&lt;br /&gt;
* &amp;lt;nowiki&amp;gt;http://www.somesite.com/*.html&amp;lt;/nowiki&amp;gt; - view all &#039;.html&#039; files on somesite.com.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Installation=&lt;br /&gt;
&lt;br /&gt;
The installation consists of a few simple steps. &lt;br /&gt;
&lt;br /&gt;
Before you begin, you will need &lt;br /&gt;
&lt;br /&gt;
1. Create database and setup permissions.&lt;br /&gt;
 mysql&amp;gt; create database webarc;&lt;br /&gt;
 mysql&amp;gt; grant all on webarc.* to webarc@localhost identified by &#039;PASSWORD&#039;;&lt;br /&gt;
 mysql&amp;gt; use webarc;&lt;br /&gt;
 mysql&amp;gt; source schema.sql;&lt;br /&gt;
2. Install tomcat and JDBC driver&lt;br /&gt;
 $ tar -xf apache-tomcat-6.0.32.tar.gz&lt;br /&gt;
 $ cp mysql-connector-java-5.0.7-bin.jar apache-tomcat-6.0.32/lib&lt;br /&gt;
3. Install and configure the Warc Manager&lt;br /&gt;
 $ cp warc-webapp-1.0-SNAPSHOT.war apache-tomcat-6.0.32/webapps/warc.war&lt;br /&gt;
 $ mkdir -p apache-tomcat-6.0.32/conf/Catalina/localhost&lt;br /&gt;
 $ cp context.xml apache-tomcat-6.0.32/conf/Catalina/localhost/warc.xml &lt;br /&gt;
* edit apache-tomcat-6.0.32/conf/Catalina/localhost/warc.xml and make sure the password under the resource line is the same as you specified above:&lt;br /&gt;
&lt;br /&gt;
  &amp;lt;Resource auth=&amp;quot;Container&amp;quot; driverClassName=&amp;quot;com.mysql.jdbc.Driver&amp;quot; maxActive=&amp;quot;20&amp;quot; &lt;br /&gt;
 maxIdle=&amp;quot;10&amp;quot; maxWait=&amp;quot;-1&amp;quot; name=&amp;quot;jdbc/warcdb&amp;quot; &#039;&#039;&#039;password=&amp;quot;PASSWORD&amp;quot;&#039;&#039;&#039; testOnBorrow=&amp;quot;true&amp;quot;&lt;br /&gt;
 type=&amp;quot;javax.sql.DataSource&amp;quot; url=&amp;quot;jdbc:mysql://localhost/webarc&amp;quot; username=&amp;quot;webarc&amp;quot;&lt;br /&gt;
 validationQuery=&amp;quot;SELECT 1&amp;quot;/&amp;gt;&lt;br /&gt;
4. Start Tomcat&lt;br /&gt;
 $ apache-tomcat-6.0.32/bin/startup.sh&lt;br /&gt;
&lt;br /&gt;
=Indexing Web Content=&lt;br /&gt;
&lt;br /&gt;
The Warc Manager is able to index warc data stored on the same server that the manager is running on. To index warc files, you will need to know the directory on the server where they reside.&lt;br /&gt;
&lt;br /&gt;
1. From the main screen, click &#039;Ingest Files&#039;. You will see the ingest file screen.&lt;br /&gt;
&lt;br /&gt;
[[Image:ingestfiles.png]]&lt;br /&gt;
&lt;br /&gt;
2. Enter the following information:&lt;br /&gt;
* Server Directory - The directory  on the warc manager where warc files are stored. The scan will recursively search for any files ending in &#039;warc.gz&#039;&lt;br /&gt;
* Select Collection / New Collection: If you want to load these files into an existing collection, select it from the drop down box. Otherwise, type in the name of a new collection or label for these warc files.&lt;br /&gt;
&lt;br /&gt;
3. Click &#039;Scan Directory&#039; When you are ready to index warc files. You can return to the scan page any time to view the progress of your upload.&lt;/div&gt;</summary>
		<author><name>Toaster</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/adapt/index.php?title=WarcManager&amp;diff=2866</id>
		<title>WarcManager</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/adapt/index.php?title=WarcManager&amp;diff=2866"/>
		<updated>2011-04-27T14:42:45Z</updated>

		<summary type="html">&lt;p&gt;Toaster: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Overview=&lt;br /&gt;
The Warc Manager is a tool to help archives quickly browse, search, and analyze archives of web crawl data. The manager is lightweight database web application which indexes and provides a nice browsing interface to a collection of warc data.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Source Code Repository: https://subversion.umiacs.umd.edu/warc-utils/&lt;br /&gt;
* Nightly builds: http://adaptvm01.umiacs.umd.edu:8080/jenkins/job/Warc%20Manager%202/&lt;br /&gt;
&lt;br /&gt;
=Installation=&lt;br /&gt;
&lt;br /&gt;
The installation consists of a few simple steps. &lt;br /&gt;
&lt;br /&gt;
Before you begin, you will need &lt;br /&gt;
&lt;br /&gt;
1. Create database and setup permissions.&lt;br /&gt;
 mysql&amp;gt; create database webarc;&lt;br /&gt;
 mysql&amp;gt; grant all on webarc.* to webarc@localhost identified by &#039;PASSWORD&#039;;&lt;br /&gt;
 mysql&amp;gt; use webarc;&lt;br /&gt;
 mysql&amp;gt; source schema.sql;&lt;br /&gt;
2. Install tomcat and JDBC driver&lt;br /&gt;
 $ tar -xf apache-tomcat-6.0.32.tar.gz&lt;br /&gt;
 $ cp mysql-connector-java-5.0.7-bin.jar apache-tomcat-6.0.32/lib&lt;br /&gt;
3. Install and configure the Warc Manager&lt;br /&gt;
 $ cp warc-webapp-1.0-SNAPSHOT.war apache-tomcat-6.0.32/webapps/warc.war&lt;br /&gt;
 $ mkdir -p apache-tomcat-6.0.32/conf/Catalina/localhost&lt;br /&gt;
 $ cp context.xml apache-tomcat-6.0.32/conf/Catalina/localhost/warc.xml &lt;br /&gt;
* edit apache-tomcat-6.0.32/conf/Catalina/localhost/warc.xml and make sure the password under the resource line is the same as you specified above:&lt;br /&gt;
&lt;br /&gt;
  &amp;lt;Resource auth=&amp;quot;Container&amp;quot; driverClassName=&amp;quot;com.mysql.jdbc.Driver&amp;quot; maxActive=&amp;quot;20&amp;quot; &lt;br /&gt;
 maxIdle=&amp;quot;10&amp;quot; maxWait=&amp;quot;-1&amp;quot; name=&amp;quot;jdbc/warcdb&amp;quot; &#039;&#039;&#039;password=&amp;quot;PASSWORD&amp;quot;&#039;&#039;&#039; testOnBorrow=&amp;quot;true&amp;quot;&lt;br /&gt;
 type=&amp;quot;javax.sql.DataSource&amp;quot; url=&amp;quot;jdbc:mysql://localhost/webarc&amp;quot; username=&amp;quot;webarc&amp;quot;&lt;br /&gt;
 validationQuery=&amp;quot;SELECT 1&amp;quot;/&amp;gt;&lt;br /&gt;
4. Start Tomcat&lt;br /&gt;
 $ apache-tomcat-6.0.32/bin/startup.sh&lt;br /&gt;
&lt;br /&gt;
=Indexing Web Content=&lt;br /&gt;
&lt;br /&gt;
The Warc Manager is able to index warc data stored on the same server that the manager is running on. To index warc files, you will need to know the directory on the server where they reside.&lt;br /&gt;
&lt;br /&gt;
1. From the main screen, click &#039;Ingest Files&#039;. You will see the ingest file screen.&lt;br /&gt;
&lt;br /&gt;
[[Image:ingestfiles.png]]&lt;br /&gt;
&lt;br /&gt;
2. Enter the following information:&lt;br /&gt;
* Server Directory - The directory  on the warc manager where warc files are stored. The scan will recursively search for any files ending in &#039;warc.gz&#039;&lt;br /&gt;
* Select Collection / New Collection: If you want to load these files into an existing collection, select it from the drop down box. Otherwise, type in the name of a new collection or label for these warc files.&lt;br /&gt;
&lt;br /&gt;
3. Click &#039;Scan Directory&#039; When you are ready to index warc files. You can return to the scan page any time to view the progress of your upload.&lt;br /&gt;
&lt;br /&gt;
=Searching=&lt;br /&gt;
&lt;br /&gt;
The main page offers two ways to search for collections.&lt;br /&gt;
&lt;br /&gt;
1. If you know the page you want to view, start typing the full URL into the search box starting with &#039;http&#039;. You will see a drop-down box containing URL&#039;s that match what you have typed. Clicking on any of them will load details for the URL.&lt;br /&gt;
&lt;br /&gt;
2. &amp;lt;nowiki&amp;gt;Type a search string and click &#039;Search&#039;. Optionally you can add wildcards to your search. For example, entering &#039;*.html&#039; will search for all URL&#039;s ending in .html. Some common searches are listed below&amp;lt;/nowiki&amp;gt;:&lt;br /&gt;
* &amp;lt;nowiki&amp;gt;*.html&amp;lt;/nowiki&amp;gt; - search for all files ending in &#039;.html&#039;&lt;br /&gt;
* &amp;lt;nowiki&amp;gt;http://www.somesite.com*&amp;lt;/nowiki&amp;gt; - View all URL&#039;s for www.somesite.com&lt;br /&gt;
* &amp;lt;nowiki&amp;gt;http://www.somesite.com/*.html&amp;lt;/nowiki&amp;gt; - view all &#039;.html&#039; files on somesite.com.&lt;/div&gt;</summary>
		<author><name>Toaster</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/adapt/index.php?title=WarcManager&amp;diff=2865</id>
		<title>WarcManager</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/adapt/index.php?title=WarcManager&amp;diff=2865"/>
		<updated>2011-04-27T14:42:13Z</updated>

		<summary type="html">&lt;p&gt;Toaster: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Overview=&lt;br /&gt;
The Warc Manager is a tool to help archives quickly browse, search, and analyze archives of web crawl data. The manager is lightweight database web application which indexes and provides a nice browsing interface to a collection of warc data.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Source Code Repository: https://subversion.umiacs.umd.edu/warc-utils/&lt;br /&gt;
* Nightly builds: http://adaptvm01.umiacs.umd.edu:8080/jenkins/job/Warc%20Manager%202/&lt;br /&gt;
&lt;br /&gt;
=Installation=&lt;br /&gt;
&lt;br /&gt;
The installation consists of a few simple steps. &lt;br /&gt;
&lt;br /&gt;
Before you begin, you will need &lt;br /&gt;
&lt;br /&gt;
1. Create database and setup permissions.&lt;br /&gt;
 mysql&amp;gt; create database webarc;&lt;br /&gt;
 mysql&amp;gt; grant all on webarc.* to webarc@localhost identified by &#039;PASSWORD&#039;;&lt;br /&gt;
 mysql&amp;gt; use webarc;&lt;br /&gt;
 mysql&amp;gt; source schema.sql;&lt;br /&gt;
2. Install tomcat and JDBC driver&lt;br /&gt;
 $ tar -xf apache-tomcat-6.0.32.tar.gz&lt;br /&gt;
 $ cp mysql-connector-java-5.0.7-bin.jar apache-tomcat-6.0.32/lib&lt;br /&gt;
3. Install and configure the Warc Manager&lt;br /&gt;
 $ cp warc-webapp-1.0-SNAPSHOT.war apache-tomcat-6.0.32/webapps/warc.war&lt;br /&gt;
 $ mkdir -p apache-tomcat-6.0.32/conf/Catalina/localhost&lt;br /&gt;
 $ cp context.xml apache-tomcat-6.0.32/conf/Catalina/localhost/warc.xml &lt;br /&gt;
* edit apache-tomcat-6.0.32/conf/Catalina/localhost/warc.xml and make sure the password under the resource line is the same as you specified above:&lt;br /&gt;
&lt;br /&gt;
  &amp;lt;Resource auth=&amp;quot;Container&amp;quot; driverClassName=&amp;quot;com.mysql.jdbc.Driver&amp;quot; maxActive=&amp;quot;20&amp;quot; &lt;br /&gt;
 maxIdle=&amp;quot;10&amp;quot; maxWait=&amp;quot;-1&amp;quot; name=&amp;quot;jdbc/warcdb&amp;quot; &#039;&#039;&#039;password=&amp;quot;PASSWORD&amp;quot;&#039;&#039;&#039; testOnBorrow=&amp;quot;true&amp;quot;&lt;br /&gt;
 type=&amp;quot;javax.sql.DataSource&amp;quot; url=&amp;quot;jdbc:mysql://localhost/webarc&amp;quot; username=&amp;quot;webarc&amp;quot;&lt;br /&gt;
 validationQuery=&amp;quot;SELECT 1&amp;quot;/&amp;gt;&lt;br /&gt;
4. Start Tomcat&lt;br /&gt;
 $ apache-tomcat-6.0.32/bin/startup.sh&lt;br /&gt;
&lt;br /&gt;
=Indexing Web Content=&lt;br /&gt;
&lt;br /&gt;
The Warc Manager is able to index warc data stored on the same server that the manager is running on. To index warc files, you will need to know the directory on the server where they reside.&lt;br /&gt;
&lt;br /&gt;
1. From the main screen, click &#039;Ingest Files&#039;. You will see the ingest file screen.&lt;br /&gt;
&lt;br /&gt;
[[Image:ingestfiles.png]]&lt;br /&gt;
&lt;br /&gt;
2. Enter the following information:&lt;br /&gt;
* Server Directory - The directory  on the warc manager where warc files are stored. The scan will recursively search for any files ending in &#039;warc.gz&#039;&lt;br /&gt;
* Select Collection / New Collection: If you want to load these files into an existing collection, select it from the drop down box. Otherwise, type in the name of a new collection or label for these warc files.&lt;br /&gt;
&lt;br /&gt;
3. Click &#039;Scan Directory&#039; When you are ready to index warc files. You can return to the scan page any time to view the progress of your upload.&lt;br /&gt;
&lt;br /&gt;
=Searching=&lt;br /&gt;
&lt;br /&gt;
The main page offers two ways to search for collections.&lt;br /&gt;
&lt;br /&gt;
1. If you know the page you want to view, start typing the full URL into the search box starting with &#039;http&#039;. You will see a drop-down box containing URL&#039;s that match what you have typed. Clicking on any of them will load details for the URL.&lt;br /&gt;
&lt;br /&gt;
2. &amp;lt;nowiki&amp;gt;Type a search string and click &#039;Search&#039;. Optionally you can add wildcards to your search. For example, entering &#039;*.html&#039; will search for all URL&#039;s ending in .html. Some common searches are listed below:&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;nowiki&amp;gt;*.html&amp;lt;/nowiki&amp;gt; - search for all files ending in &#039;.html&#039;&lt;br /&gt;
* &amp;lt;nowiki&amp;gt;http://www.somesite.com*&amp;lt;/nowiki&amp;gt; - View all URL&#039;s for www.somesite.com&lt;br /&gt;
* &amp;lt;nowiki&amp;gt;http://www.somesite.com/*.html&amp;lt;/nowiki&amp;gt; - view all &#039;.html&#039; files on somesite.com.&lt;/div&gt;</summary>
		<author><name>Toaster</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/adapt/index.php?title=WarcManager&amp;diff=2864</id>
		<title>WarcManager</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/adapt/index.php?title=WarcManager&amp;diff=2864"/>
		<updated>2011-04-27T14:37:17Z</updated>

		<summary type="html">&lt;p&gt;Toaster: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Overview=&lt;br /&gt;
The Warc Manager is a tool to help archives quickly browse, search, and analyze archives of web crawl data. The manager is lightweight database web application which indexes and provides a nice browsing interface to a collection of warc data.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Source Code Repository: https://subversion.umiacs.umd.edu/warc-utils/&lt;br /&gt;
* Nightly builds: http://adaptvm01.umiacs.umd.edu:8080/jenkins/job/Warc%20Manager%202/&lt;br /&gt;
&lt;br /&gt;
=Installation=&lt;br /&gt;
&lt;br /&gt;
The installation consists of a few simple steps. &lt;br /&gt;
&lt;br /&gt;
Before you begin, you will need &lt;br /&gt;
&lt;br /&gt;
1. Create database and setup permissions.&lt;br /&gt;
 mysql&amp;gt; create database webarc;&lt;br /&gt;
 mysql&amp;gt; grant all on webarc.* to webarc@localhost identified by &#039;PASSWORD&#039;;&lt;br /&gt;
 mysql&amp;gt; use webarc;&lt;br /&gt;
 mysql&amp;gt; source schema.sql;&lt;br /&gt;
2. Install tomcat and JDBC driver&lt;br /&gt;
 $ tar -xf apache-tomcat-6.0.32.tar.gz&lt;br /&gt;
 $ cp mysql-connector-java-5.0.7-bin.jar apache-tomcat-6.0.32/lib&lt;br /&gt;
3. Install and configure the Warc Manager&lt;br /&gt;
 $ cp warc-webapp-1.0-SNAPSHOT.war apache-tomcat-6.0.32/webapps/warc.war&lt;br /&gt;
 $ mkdir -p apache-tomcat-6.0.32/conf/Catalina/localhost&lt;br /&gt;
 $ cp context.xml apache-tomcat-6.0.32/conf/Catalina/localhost/warc.xml &lt;br /&gt;
* edit apache-tomcat-6.0.32/conf/Catalina/localhost/warc.xml and make sure the password under the resource line is the same as you specified above:&lt;br /&gt;
&lt;br /&gt;
  &amp;lt;Resource auth=&amp;quot;Container&amp;quot; driverClassName=&amp;quot;com.mysql.jdbc.Driver&amp;quot; maxActive=&amp;quot;20&amp;quot; &lt;br /&gt;
 maxIdle=&amp;quot;10&amp;quot; maxWait=&amp;quot;-1&amp;quot; name=&amp;quot;jdbc/warcdb&amp;quot; &#039;&#039;&#039;password=&amp;quot;PASSWORD&amp;quot;&#039;&#039;&#039; testOnBorrow=&amp;quot;true&amp;quot;&lt;br /&gt;
 type=&amp;quot;javax.sql.DataSource&amp;quot; url=&amp;quot;jdbc:mysql://localhost/webarc&amp;quot; username=&amp;quot;webarc&amp;quot;&lt;br /&gt;
 validationQuery=&amp;quot;SELECT 1&amp;quot;/&amp;gt;&lt;br /&gt;
4. Start Tomcat&lt;br /&gt;
 $ apache-tomcat-6.0.32/bin/startup.sh&lt;br /&gt;
&lt;br /&gt;
=Indexing Web Content=&lt;br /&gt;
&lt;br /&gt;
The Warc Manager is able to index warc data stored on the same server that the manager is running on. To index warc files, you will need to know the directory on the server where they reside.&lt;br /&gt;
&lt;br /&gt;
1. From the main screen, click &#039;Ingest Files&#039;. You will see the ingest file screen.&lt;br /&gt;
&lt;br /&gt;
[[Image:ingestfiles.png]]&lt;br /&gt;
&lt;br /&gt;
2. Enter the following information:&lt;br /&gt;
* Server Directory - The directory  on the warc manager where warc files are stored. The scan will recursively search for any files ending in &#039;warc.gz&#039;&lt;br /&gt;
* Select Collection / New Collection: If you want to load these files into an existing collection, select it from the drop down box. Otherwise, type in the name of a new collection or label for these warc files.&lt;br /&gt;
&lt;br /&gt;
3. Click &#039;Scan Directory&#039; When you are ready to index warc files. You can return to the scan page any time to view the progress of your upload.&lt;br /&gt;
&lt;br /&gt;
=Searching=&lt;br /&gt;
&lt;br /&gt;
The main page offers two ways to search for collections.&lt;br /&gt;
&lt;br /&gt;
1. If you know the page you want to view, start typing the full url into the search box starting with &#039;http&#039;. You will see a drop-down box containing urls that match what you have typed. Clicking on any of them will load details for the URL.&lt;br /&gt;
&lt;br /&gt;
2. &amp;lt;nowiki&amp;gt;Type a search string and click &#039;Search&#039;. You can optionally add wildcards to your search. For example, entering &#039;*.html&#039; will search for all URL&#039;s ending in .html. You can search for a specific site by entering &#039;http://www.site.com*&#039; (ie, &#039;http://www.cnn.com/*&#039;)&amp;lt;/nowiki&amp;gt;&lt;/div&gt;</summary>
		<author><name>Toaster</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/adapt/index.php?title=WarcManager&amp;diff=2863</id>
		<title>WarcManager</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/adapt/index.php?title=WarcManager&amp;diff=2863"/>
		<updated>2011-04-27T14:30:27Z</updated>

		<summary type="html">&lt;p&gt;Toaster: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Overview=&lt;br /&gt;
The Warc Manager is a tool to help archives quickly browse, search, and analyze archives of web crawl data. The manager is lightweight database web application which indexes and provides a nice browsing interface to a collection of warc data.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Source Code Repository: https://subversion.umiacs.umd.edu/warc-utils/&lt;br /&gt;
* Nightly builds: http://adaptvm01.umiacs.umd.edu:8080/jenkins/job/Warc%20Manager%202/&lt;br /&gt;
&lt;br /&gt;
=Installation=&lt;br /&gt;
&lt;br /&gt;
The installation consists of a few simple steps. &lt;br /&gt;
&lt;br /&gt;
Before you begin, you will need &lt;br /&gt;
&lt;br /&gt;
1. Create database and setup permissions.&lt;br /&gt;
 mysql&amp;gt; create database webarc;&lt;br /&gt;
 mysql&amp;gt; grant all on webarc.* to webarc@localhost identified by &#039;PASSWORD&#039;;&lt;br /&gt;
 mysql&amp;gt; use webarc;&lt;br /&gt;
 mysql&amp;gt; source schema.sql;&lt;br /&gt;
2. Install tomcat and JDBC driver&lt;br /&gt;
 $ tar -xf apache-tomcat-6.0.32.tar.gz&lt;br /&gt;
 $ cp mysql-connector-java-5.0.7-bin.jar apache-tomcat-6.0.32/lib&lt;br /&gt;
3. Install and configure the Warc Manager&lt;br /&gt;
 $ cp warc-webapp-1.0-SNAPSHOT.war apache-tomcat-6.0.32/webapps/warc.war&lt;br /&gt;
 $ mkdir -p apache-tomcat-6.0.32/conf/Catalina/localhost&lt;br /&gt;
 $ cp context.xml apache-tomcat-6.0.32/conf/Catalina/localhost/warc.xml &lt;br /&gt;
* edit apache-tomcat-6.0.32/conf/Catalina/localhost/warc.xml and make sure the password under the resource line is the same as you specified above:&lt;br /&gt;
&lt;br /&gt;
  &amp;lt;Resource auth=&amp;quot;Container&amp;quot; driverClassName=&amp;quot;com.mysql.jdbc.Driver&amp;quot; maxActive=&amp;quot;20&amp;quot; &lt;br /&gt;
 maxIdle=&amp;quot;10&amp;quot; maxWait=&amp;quot;-1&amp;quot; name=&amp;quot;jdbc/warcdb&amp;quot; &#039;&#039;&#039;password=&amp;quot;PASSWORD&amp;quot;&#039;&#039;&#039; testOnBorrow=&amp;quot;true&amp;quot;&lt;br /&gt;
 type=&amp;quot;javax.sql.DataSource&amp;quot; url=&amp;quot;jdbc:mysql://localhost/webarc&amp;quot; username=&amp;quot;webarc&amp;quot;&lt;br /&gt;
 validationQuery=&amp;quot;SELECT 1&amp;quot;/&amp;gt;&lt;br /&gt;
4. Start Tomcat&lt;br /&gt;
 $ apache-tomcat-6.0.32/bin/startup.sh&lt;br /&gt;
&lt;br /&gt;
=Indexing Web Content=&lt;br /&gt;
&lt;br /&gt;
The Warc Manager is able to index warc data stored on the same server that the manager is running on. To index warc files, you will need to know the directory on the server where they reside.&lt;br /&gt;
&lt;br /&gt;
1. From the main screen, click &#039;Ingest Files&#039;. You will see the ingest file screen.&lt;br /&gt;
&lt;br /&gt;
2. Enter the following information:&lt;br /&gt;
* Server Directory - The directory  on the warc manager where warc files are stored. The scan will recursively search for any files ending in &#039;warc.gz&#039;&lt;br /&gt;
* Select Collection / New Collection: If you want to load these files into an existing collection, select it from the drop down box. Otherwise, type in the name of a new collection or label for these warc files.&lt;br /&gt;
&lt;br /&gt;
3. Click &#039;Scan Directory&#039; When you are ready to index warc files. You can return to the scan page any time to view the progress of your upload.&lt;br /&gt;
&lt;br /&gt;
=Searching=&lt;/div&gt;</summary>
		<author><name>Toaster</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/adapt/index.php?title=File:Ingestfiles.png&amp;diff=2862</id>
		<title>File:Ingestfiles.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/adapt/index.php?title=File:Ingestfiles.png&amp;diff=2862"/>
		<updated>2011-04-27T14:29:53Z</updated>

		<summary type="html">&lt;p&gt;Toaster: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Toaster</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/adapt/index.php?title=WarcManager&amp;diff=2861</id>
		<title>WarcManager</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/adapt/index.php?title=WarcManager&amp;diff=2861"/>
		<updated>2011-04-27T14:10:16Z</updated>

		<summary type="html">&lt;p&gt;Toaster: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Overview=&lt;br /&gt;
The Warc Manager is a tool to help archives quickly browse, search, and analyze archives of web crawl data. The manager is lightweight database web application which indexes and provides a nice browsing interface to a collection of warc data.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Source Code Repository: https://subversion.umiacs.umd.edu/warc-utils/&lt;br /&gt;
* Nightly builds: http://adaptvm01.umiacs.umd.edu:8080/jenkins/job/Warc%20Manager%202/&lt;br /&gt;
&lt;br /&gt;
=Installation=&lt;br /&gt;
&lt;br /&gt;
The installation consists of a few simple steps. &lt;br /&gt;
&lt;br /&gt;
1. Create database and setup permissions.&lt;br /&gt;
* mysql&amp;gt; create database webarc;&lt;br /&gt;
* mysql&amp;gt; grant all on webarc.* to webarc@localhost identified by &#039;PASSWORD&#039;;&lt;br /&gt;
* mysql&amp;gt; use webarc;&lt;br /&gt;
* mysql&amp;gt; source schema.sql;&lt;br /&gt;
2. Install tomcat and JDBC driver&lt;br /&gt;
* $ tar -xf apache-tomcat-6.0.32.tar.gz&lt;br /&gt;
* $ cp mysql-connector-java-5.0.7-bin.jar apache-tomcat-6.0.32/lib&lt;br /&gt;
3. Install and configure the Warc Manager&lt;br /&gt;
* $ cp warc-webapp-1.0-SNAPSHOT.war apache-tomcat-6.0.32/webapps/warc.war&lt;br /&gt;
* $ mkdir -p apache-tomcat-6.0.32/conf/Catalina/localhost&lt;br /&gt;
* $ cp context.xml apache-tomcat-6.0.32/conf/Catalina/localhost/warc.xml &lt;br /&gt;
* edit apache-tomcat-6.0.32/conf/Catalina/localhost/warc.xml and make sure the password under the resource line is the same as you specified above:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
  &amp;lt;Resource auth=&amp;quot;Container&amp;quot; driverClassName=&amp;quot;com.mysql.jdbc.Driver&amp;quot; maxActive=&amp;quot;20&amp;quot; &lt;br /&gt;
 maxIdle=&amp;quot;10&amp;quot; maxWait=&amp;quot;-1&amp;quot; name=&amp;quot;jdbc/warcdb&amp;quot; &#039;&#039;&#039;password=&amp;quot;PASSWORD&amp;quot;&#039;&#039;&#039; testOnBorrow=&amp;quot;true&amp;quot;&lt;br /&gt;
 type=&amp;quot;javax.sql.DataSource&amp;quot; url=&amp;quot;jdbc:mysql://localhost/webarc&amp;quot; username=&amp;quot;webarc&amp;quot;&lt;br /&gt;
 validationQuery=&amp;quot;SELECT 1&amp;quot;/&amp;gt;&lt;br /&gt;
==Detailed Installation==&lt;br /&gt;
&lt;br /&gt;
=Indexing Web Content=&lt;br /&gt;
&lt;br /&gt;
=Searching=&lt;/div&gt;</summary>
		<author><name>Toaster</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/adapt/index.php?title=WarcManager&amp;diff=2860</id>
		<title>WarcManager</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/adapt/index.php?title=WarcManager&amp;diff=2860"/>
		<updated>2011-04-27T14:06:25Z</updated>

		<summary type="html">&lt;p&gt;Toaster: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Overview=&lt;br /&gt;
The Warc Manager is a tool to help archives quickly browse, search, and analyze archives of web crawl data. The manager is lightweight database web application which indexes and provides a nice browsing interface to a collection of warc data.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Source Code Repository: https://subversion.umiacs.umd.edu/warc-utils/&lt;br /&gt;
* Nightly builds: http://adaptvm01.umiacs.umd.edu:8080/jenkins/job/Warc%20Manager%202/&lt;br /&gt;
&lt;br /&gt;
=Installation=&lt;br /&gt;
&lt;br /&gt;
The installation consists of a few simple steps. &lt;br /&gt;
&lt;br /&gt;
1. Create database and setup permissions.&lt;br /&gt;
* mysql&amp;gt; create database webarc;&lt;br /&gt;
* mysql&amp;gt; grant all on webarc.* to webarc@localhost identified by &#039;PASSWORD&#039;;&lt;br /&gt;
* mysql&amp;gt; use webarc;&lt;br /&gt;
* mysql&amp;gt; source schema.sql;&lt;br /&gt;
2. Install tomcat and JDBC driver&lt;br /&gt;
* $ tar -xf apache-tomcat-6.0.32.tar.gz&lt;br /&gt;
* $ cp mysql-connector-java-5.0.7-bin.jar apache-tomcat-6.0.32/lib&lt;br /&gt;
3. Install and configure the Warc Manager&lt;br /&gt;
* $ cp warc-webapp-1.0-SNAPSHOT.war apache-tomcat-6.0.32/webapps/warc.war&lt;br /&gt;
* $ mkdir -p apache-tomcat-6.0.32/conf/Catalina/localhost&lt;br /&gt;
* $ cp context.xml apache-tomcat-6.0.32/conf/Catalina/localhost/warc.xml &lt;br /&gt;
* edit apache-tomcat-6.0.32/conf/Catalina/localhost/warc.xml and make sure the password under the resource line is the same as you specified above:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;Resource auth=&amp;quot;Container&amp;quot; driverClassName=&amp;quot;com.mysql.jdbc.Driver&amp;quot; maxActive=&amp;quot;20&amp;quot; maxIdle=&amp;quot;10&amp;quot; maxWait=&amp;quot;-1&amp;quot; name=&amp;quot;jdbc/warcdb&amp;quot; password=&amp;quot;webarc&amp;quot; testOnBorrow=&amp;quot;true&amp;quot; type=&amp;quot;javax.sql.DataSource&amp;quot; url=&amp;quot;jdbc:mysql://localhost/webarc&amp;quot; username=&amp;quot;webarc&amp;quot; validationQuery=&amp;quot;SELECT 1&amp;quot;/&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
==Detailed Installation==&lt;br /&gt;
&lt;br /&gt;
=Indexing Web Content=&lt;br /&gt;
&lt;br /&gt;
=Searching=&lt;/div&gt;</summary>
		<author><name>Toaster</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/adapt/index.php?title=WarcManager&amp;diff=2859</id>
		<title>WarcManager</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/adapt/index.php?title=WarcManager&amp;diff=2859"/>
		<updated>2011-04-27T13:49:06Z</updated>

		<summary type="html">&lt;p&gt;Toaster: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Overview=&lt;br /&gt;
The Warc Manager is a tool to help archives quickly browse, search, and analyze archives of web crawl data. The manager is lightweight database web application which indexes and provides a nice browsing interface to a collection of warc data.&lt;br /&gt;
&lt;br /&gt;
=Installation=&lt;br /&gt;
&lt;br /&gt;
=Searching=&lt;/div&gt;</summary>
		<author><name>Toaster</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/adapt/index.php?title=Main_Page&amp;diff=2858</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/adapt/index.php?title=Main_Page&amp;diff=2858"/>
		<updated>2011-04-27T13:46:46Z</updated>

		<summary type="html">&lt;p&gt;Toaster: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Overview=&lt;br /&gt;
The ADAPT project is developing technologies for building a scalable and reliable infrastructure for the long-term access and preservation of digital assets. Our approach uses a distributed object architecture that operates on different levels of abstractions built around grid technologies and web services. Major software components have been prototyped and are currently in use in a number of pilot projects such as the Transcontinental Persistent Archives Project and Chronopolis.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table width=&amp;quot;75%&amp;quot; style=&amp;quot;margin-left: 75px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;&#039;&#039;&#039;Projects and Tools&#039;&#039;&#039;&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&#039;&#039;&#039;Research&#039;&#039;&#039;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td valign=&amp;quot;top&amp;quot;&amp;gt;&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;[[Chronopolis|Chronopolis]]&amp;lt;li&amp;gt;[[Ace|Integrity Management (ACE)]]&amp;lt;li&amp;gt;[[WarcManager|Warc Management Utility]]&amp;lt;/ul&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;[[Webarc:Main|Web Archive Indexing]]&amp;lt;li&amp;gt;[[Replication:Main|Replication Monitoring]]&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/table&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;AEC V 1.6 (2/3)&#039;&#039;&#039;&lt;br /&gt;
* Token store exporting, improved db storing&lt;br /&gt;
* Frontend UI improvements, &lt;br /&gt;
* Build system (maven) changes&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ACE Development infrastructure improvements (1/26)&#039;&#039;&#039;&lt;br /&gt;
* public source repository https://subversion.umiacs.umd.edu/ace/&lt;br /&gt;
* &amp;lt;strike&amp;gt;Hudson&amp;lt;/strike&amp;gt;Jenkins testing and daily builds http://adaptvm01.umiacs.umd.edu:8080/jenkins/job/ACE%20Audit%20Manager/&lt;br /&gt;
* Projects converted from netbeans build to maven3 for easier collaboration&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Python tutorials for ACE&#039;&#039;&#039;&lt;br /&gt;
* [[Ace:IMSPython| Requesting and validating IMS tokens]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Undergrad positions available&#039;&#039;&#039;&lt;br /&gt;
* The ADAPT project is hiring undergrad programmers to work on a variety of projects&lt;br /&gt;
* Learn more on our [[Employment]] page&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Ace V 1.5 Released (6/25)&#039;&#039;&#039;&lt;br /&gt;
* Source Released under BSD License&lt;br /&gt;
* Resource migration&lt;br /&gt;
* Lots of internal refactoring, dependency restructuring&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;New Issue Tracker&#039;&#039;&#039;&lt;br /&gt;
The adapt project now has an issue tracker to manage releases of our software and track bugs/feature requests.&lt;br /&gt;
* https://scm.umiacs.umd.edu/redmine/adapt/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Conference Videos Online (4/21/09)&#039;&#039;&#039;&lt;br /&gt;
Videos for the two-day conference, &amp;quot;Partnerships in Innovation II: From Vision to Reality and Beyond&amp;quot; held on October 7- 8, 2008 in College Park, Maryland, USA are now [[Partnerships 2008 Videos|online]]&lt;br /&gt;
&lt;br /&gt;
=Old Projects=&lt;br /&gt;
&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;[[PAWN:Main|Ingestion (PAWN)]]&lt;br /&gt;
&amp;lt;li&amp;gt;[[Focus:Main|Format Stewardship (FOCUS)]]&lt;br /&gt;
&amp;lt;li&amp;gt;[[TPAP|TPAP]] - Transcontinental persistent archive prototype&lt;/div&gt;</summary>
		<author><name>Toaster</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/adapt/index.php?title=Main_Page&amp;diff=2857</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/adapt/index.php?title=Main_Page&amp;diff=2857"/>
		<updated>2011-04-19T04:43:46Z</updated>

		<summary type="html">&lt;p&gt;Toaster: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Overview=&lt;br /&gt;
The ADAPT project is developing technologies for building a scalable and reliable infrastructure for the long-term access and preservation of digital assets. Our approach uses a distributed object architecture that operates on different levels of abstractions built around grid technologies and web services. Major software components have been prototyped and are currently in use in a number of pilot projects such as the Transcontinental Persistent Archives Project and Chronopolis.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table width=&amp;quot;75%&amp;quot; style=&amp;quot;margin-left: 75px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;&#039;&#039;&#039;Projects&#039;&#039;&#039;&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&#039;&#039;&#039;Research&#039;&#039;&#039;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td valign=&amp;quot;top&amp;quot;&amp;gt;&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;[[Chronopolis|Chronopolis]]&amp;lt;/ul&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;[[Ace|Integrity Management (ACE)]]&amp;lt;li&amp;gt;[[Webarc:Main|Web Archiving]]&amp;lt;li&amp;gt;[[Replication:Main|Replication Monitoring]]&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/table&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;AEC V 1.6 (2/3)&#039;&#039;&#039;&lt;br /&gt;
* Token store exporting, improved db storing&lt;br /&gt;
* Frontend UI improvements, &lt;br /&gt;
* Build system (maven) changes&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ACE Development infrastructure improvements (1/26)&#039;&#039;&#039;&lt;br /&gt;
* public source repository https://subversion.umiacs.umd.edu/ace/&lt;br /&gt;
* &amp;lt;strike&amp;gt;Hudson&amp;lt;/strike&amp;gt;Jenkins testing and daily builds http://adaptvm01.umiacs.umd.edu:8080/jenkins/job/ACE%20Audit%20Manager/&lt;br /&gt;
* Projects converted from netbeans build to maven3 for easier collaboration&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Python tutorials for ACE&#039;&#039;&#039;&lt;br /&gt;
* [[Ace:IMSPython| Requesting and validating IMS tokens]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Undergrad positions available&#039;&#039;&#039;&lt;br /&gt;
* The ADAPT project is hiring undergrad programmers to work on a variety of projects&lt;br /&gt;
* Learn more on our [[Employment]] page&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Ace V 1.5 Released (6/25)&#039;&#039;&#039;&lt;br /&gt;
* Source Released under BSD License&lt;br /&gt;
* Resource migration&lt;br /&gt;
* Lots of internal refactoring, dependency restructuring&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;New Issue Tracker&#039;&#039;&#039;&lt;br /&gt;
The adapt project now has an issue tracker to manage releases of our software and track bugs/feature requests.&lt;br /&gt;
* https://scm.umiacs.umd.edu/redmine/adapt/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Conference Videos Online (4/21/09)&#039;&#039;&#039;&lt;br /&gt;
Videos for the two-day conference, &amp;quot;Partnerships in Innovation II: From Vision to Reality and Beyond&amp;quot; held on October 7- 8, 2008 in College Park, Maryland, USA are now [[Partnerships 2008 Videos|online]]&lt;br /&gt;
&lt;br /&gt;
=Old Projects=&lt;br /&gt;
&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;[[PAWN:Main|Ingestion (PAWN)]]&lt;br /&gt;
&amp;lt;li&amp;gt;[[Focus:Main|Format Stewardship (FOCUS)]]&lt;br /&gt;
&amp;lt;li&amp;gt;[[TPAP|TPAP]] - Transcontinental persistent archive prototype&lt;/div&gt;</summary>
		<author><name>Toaster</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/adapt/index.php?title=Main_Page&amp;diff=2856</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/adapt/index.php?title=Main_Page&amp;diff=2856"/>
		<updated>2011-02-23T15:48:13Z</updated>

		<summary type="html">&lt;p&gt;Toaster: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Overview=&lt;br /&gt;
The ADAPT project is developing technologies for building a scalable and reliable infrastructure for the long-term access and preservation of digital assets. Our approach uses a distributed object architecture that operates on different levels of abstractions built around grid technologies and web services. Major software components have been prototyped and are currently in use in a number of pilot projects such as the Transcontinental Persistent Archives Project and Chronopolis.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table width=&amp;quot;75%&amp;quot; style=&amp;quot;margin-left: 75px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;&#039;&#039;&#039;Projects&#039;&#039;&#039;&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&#039;&#039;&#039;Research&#039;&#039;&#039;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td valign=&amp;quot;top&amp;quot;&amp;gt;&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;[[Chronopolis|Chronopolis]]&amp;lt;/ul&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;[[Ace|Integrity Management (ACE)]]&amp;lt;li&amp;gt;[[Webarc:Main|Web Archiving]]&amp;lt;li&amp;gt;[[Replication:Main|Replication Monitoring]]&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/table&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;AEC V 1.6 (2/3)&#039;&#039;&#039;&lt;br /&gt;
* Token store exporting, improved db storing&lt;br /&gt;
* Frontend UI improvements, &lt;br /&gt;
* Build system (maven) changes&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ACE Development infrastructure improvements (1/26)&#039;&#039;&#039;&lt;br /&gt;
* public source repository https://subversion.umiacs.umd.edu/ace/&lt;br /&gt;
* Hudson testing and daily builds http://adaptvm01.umiacs.umd.edu:8080/hudson/job/ACE%20Audit%20Manager/&lt;br /&gt;
* Projects converted from netbeans build to maven3 for easier collaboration&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Python tutorials for ACE&#039;&#039;&#039;&lt;br /&gt;
* [[Ace:IMSPython| Requesting and validating IMS tokens]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Undergrad positions available&#039;&#039;&#039;&lt;br /&gt;
* The ADAPT project is hiring undergrad programmers to work on a variety of projects&lt;br /&gt;
* Learn more on our [[Employment]] page&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Ace V 1.5 Released (6/25)&#039;&#039;&#039;&lt;br /&gt;
* Source Released under BSD License&lt;br /&gt;
* Resource migration&lt;br /&gt;
* Lots of internal refactoring, dependency restructuring&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;New Issue Tracker&#039;&#039;&#039;&lt;br /&gt;
The adapt project now has an issue tracker to manage releases of our software and track bugs/feature requests.&lt;br /&gt;
* https://scm.umiacs.umd.edu/redmine/adapt/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Conference Videos Online (4/21/09)&#039;&#039;&#039;&lt;br /&gt;
Videos for the two-day conference, &amp;quot;Partnerships in Innovation II: From Vision to Reality and Beyond&amp;quot; held on October 7- 8, 2008 in College Park, Maryland, USA are now [[Partnerships 2008 Videos|online]]&lt;br /&gt;
&lt;br /&gt;
=Old Projects=&lt;br /&gt;
&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;[[PAWN:Main|Ingestion (PAWN)]]&lt;br /&gt;
&amp;lt;li&amp;gt;[[Focus:Main|Format Stewardship (FOCUS)]]&lt;br /&gt;
&amp;lt;li&amp;gt;[[TPAP|TPAP]] - Transcontinental persistent archive prototype&lt;/div&gt;</summary>
		<author><name>Toaster</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/adapt/index.php?title=Main_Page&amp;diff=2855</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/adapt/index.php?title=Main_Page&amp;diff=2855"/>
		<updated>2011-02-16T04:27:25Z</updated>

		<summary type="html">&lt;p&gt;Toaster: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Overview=&lt;br /&gt;
The ADAPT project is developing technologies for building a scalable and reliable infrastructure for the long-term access and preservation of digital assets. Our approach uses a distributed object architecture that operates on different levels of abstractions built around grid technologies and web services. Major software components have been prototyped and are currently in use in a number of pilot projects such as the Transcontinental Persistent Archives Project and Chronopolis.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table width=&amp;quot;75%&amp;quot; style=&amp;quot;margin-left: 75px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;&#039;&#039;&#039;Projects&#039;&#039;&#039;&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&#039;&#039;&#039;Research&#039;&#039;&#039;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td valign=&amp;quot;top&amp;quot;&amp;gt;&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;[[TPAP|TPAP]]&amp;lt;li&amp;gt;[[Chronopolis|Chronopolis]]&amp;lt;/ul&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;[[PAWN:Main|Ingestion (PAWN)]]&amp;lt;li&amp;gt;[[Ace|Integrity Management (ACE)]]&amp;lt;li&amp;gt;[[Webarc:Main|Web Archiving]]&amp;lt;li&amp;gt;[[Replication:Main|Replication Monitoring]]&amp;lt;li&amp;gt;[[Focus:Main|Format Stewardship (FOCUS)]]&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/table&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;AEC V 1.6 (2/3)&#039;&#039;&#039;&lt;br /&gt;
* Token store exporting, improved db storing&lt;br /&gt;
* Frontend UI improvements, &lt;br /&gt;
* Build system (maven) changes&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ACE Development infrastructure improvements (1/26)&#039;&#039;&#039;&lt;br /&gt;
* public source repository https://subversion.umiacs.umd.edu/ace/&lt;br /&gt;
* Hudson testing and daily builds http://adaptvm01.umiacs.umd.edu:8080/hudson/job/ACE%20Audit%20Manager/&lt;br /&gt;
* Projects converted from netbeans build to maven3 for easier collaboration&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Python tutorials for ACE&#039;&#039;&#039;&lt;br /&gt;
* [[Ace:IMSPython| Requesting and validating IMS tokens]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Undergrad positions available&#039;&#039;&#039;&lt;br /&gt;
* The ADAPT project is hiring undergrad programmers to work on a variety of projects&lt;br /&gt;
* Learn more on our [[Employment]] page&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Ace V 1.5 Released (6/25)&#039;&#039;&#039;&lt;br /&gt;
* Source Released under BSD License&lt;br /&gt;
* Resource migration&lt;br /&gt;
* Lots of internal refactoring, dependency restructuring&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;New Issue Tracker&#039;&#039;&#039;&lt;br /&gt;
The adapt project now has an issue tracker to manage releases of our software and track bugs/feature requests.&lt;br /&gt;
* https://scm.umiacs.umd.edu/redmine/adapt/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Conference Videos Online (4/21/09)&#039;&#039;&#039;&lt;br /&gt;
Videos for the two-day conference, &amp;quot;Partnerships in Innovation II: From Vision to Reality and Beyond&amp;quot; held on October 7- 8, 2008 in College Park, Maryland, USA are now [[Partnerships 2008 Videos|online]]&lt;/div&gt;</summary>
		<author><name>Toaster</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/adapt/index.php?title=Ace:Release_Guidlines&amp;diff=2854</id>
		<title>Ace:Release Guidlines</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/adapt/index.php?title=Ace:Release_Guidlines&amp;diff=2854"/>
		<updated>2011-02-01T20:40:24Z</updated>

		<summary type="html">&lt;p&gt;Toaster: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The tests should be performed prior to an ACE release. As many of these as possible should be included in the maven/hudson configs for automated testing. &lt;br /&gt;
&lt;br /&gt;
Prior to release testing, please make sure all bugs/features for that version have been completed on Redmine. https://scm.umiacs.umd.edu/redmine/adapt/projects/ace/roadmap. Update maven version and footer version prior to creating a release package.&lt;br /&gt;
&lt;br /&gt;
=Source Testing=&lt;br /&gt;
&lt;br /&gt;
# export a clean copy of the &#039;svn export https://subversion.umiacs.umd.edu/ace/trunk ace-test&#039;&lt;br /&gt;
# &#039;mvn package&#039; in root, and make sure the build succeeds.&lt;br /&gt;
&lt;br /&gt;
=Clean deploy testing=&lt;br /&gt;
# Create a new database using the current ace ace-am.sql file.&lt;br /&gt;
# From your build, deploy the war file in ace-am/target/ace-am-XXX.war &lt;br /&gt;
&lt;br /&gt;
=Upgrade testing=&lt;br /&gt;
# Grab the previous ace release, install the schema and war file&lt;br /&gt;
# register the test collection.&lt;br /&gt;
# shutdown instance, run update sql file, drop in new war file&lt;br /&gt;
# Check error log for errors, check display for major feature changes, run test audit on existing colleciton, register new collection.&lt;br /&gt;
&lt;br /&gt;
=Releasing=&lt;br /&gt;
When you have fully tested everything, use maven to generate the current release and update the current project with the next snapshot.&lt;br /&gt;
# Run mvn release:prepare in the root project&lt;br /&gt;
# upload the two new binary versions in ace-dist/target to redmine.&lt;br /&gt;
# export the source in the tags/ace-xxx version, tar/gz it and upload to redmine&lt;/div&gt;</summary>
		<author><name>Toaster</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/adapt/index.php?title=Ace:Release_Guidlines&amp;diff=2853</id>
		<title>Ace:Release Guidlines</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/adapt/index.php?title=Ace:Release_Guidlines&amp;diff=2853"/>
		<updated>2011-02-01T20:29:20Z</updated>

		<summary type="html">&lt;p&gt;Toaster: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The tests should be performed prior to an ACE release. As many of these as possible should be included in the maven/hudson configs for automated testing. &lt;br /&gt;
&lt;br /&gt;
Prior to release testing, please make sure all bugs/features for that version have been completed on Redmine. https://scm.umiacs.umd.edu/redmine/adapt/projects/ace/roadmap. Update maven version and footer version prior to creating a release package.&lt;br /&gt;
&lt;br /&gt;
=Source Testing=&lt;br /&gt;
&lt;br /&gt;
# export a clean copy of the &#039;svn export https://subversion.umiacs.umd.edu/ace/trunk ace-test&#039;&lt;br /&gt;
# &#039;mvn package&#039; in root, and make sure the build succeeds.&lt;br /&gt;
&lt;br /&gt;
=Clean deploy testing=&lt;br /&gt;
# Create a new database using the current ace ace-am.sql file.&lt;br /&gt;
# From your build, deploy the war file in ace-am/target/ace-am-XXX.war &lt;br /&gt;
&lt;br /&gt;
=Upgrade testing=&lt;br /&gt;
# Grab the previous ace release, install the schema and war file&lt;br /&gt;
# register the test collection.&lt;br /&gt;
# shutdown instance, run update sql file, drop in new war file&lt;br /&gt;
# Check error log for errors, check display for major feature changes, run test audit on existing colleciton, register new collection.&lt;br /&gt;
&lt;br /&gt;
=Packaging=&lt;br /&gt;
A binary distribution can be created by running &#039;mvn package&#039; in the root project. This will create a binary tgz and zip file in ace-dist/target that has all necessary war, db, and documenation.&lt;/div&gt;</summary>
		<author><name>Toaster</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/adapt/index.php?title=Ace:Release_Guidlines&amp;diff=2852</id>
		<title>Ace:Release Guidlines</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/adapt/index.php?title=Ace:Release_Guidlines&amp;diff=2852"/>
		<updated>2011-02-01T20:27:19Z</updated>

		<summary type="html">&lt;p&gt;Toaster: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The tests should be performed prior to an ACE release. As many of these as possible should be included in the maven/hudson configs for automated testing. &lt;br /&gt;
&lt;br /&gt;
Prior to release testing, please make sure all bugs/features for that version have been completed on Redmine. https://scm.umiacs.umd.edu/redmine/adapt/projects/ace/roadmap. Update maven version and footer version prior to creating a release package.&lt;br /&gt;
&lt;br /&gt;
=Source Testing=&lt;br /&gt;
&lt;br /&gt;
# export a clean copy of the &#039;svn export https://subversion.umiacs.umd.edu/ace/trunk ace-test&#039;&lt;br /&gt;
# &#039;mvn package&#039; in root, and make sure the build succeeds.&lt;br /&gt;
&lt;br /&gt;
=Clean deploy testing=&lt;br /&gt;
# From your build, deploy the war file in ace-am/target/ace-am-XXX.war &lt;br /&gt;
&lt;br /&gt;
=Upgrade testing=&lt;br /&gt;
&lt;br /&gt;
=Packaging=&lt;br /&gt;
A binary distribution can be created by running &#039;mvn package&#039; in the root project. This will create a binary tgz and zip file in ace-dist/target that has all necessary war, db, and documenation.&lt;/div&gt;</summary>
		<author><name>Toaster</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/adapt/index.php?title=Main_Page&amp;diff=2851</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/adapt/index.php?title=Main_Page&amp;diff=2851"/>
		<updated>2011-01-26T17:39:26Z</updated>

		<summary type="html">&lt;p&gt;Toaster: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Overview=&lt;br /&gt;
The ADAPT project is developing technologies for building a scalable and reliable infrastructure for the long-term access and preservation of digital assets. Our approach uses a distributed object architecture that operates on different levels of abstractions built around grid technologies and web services. Major software components have been prototyped and are currently in use in a number of pilot projects such as the Transcontinental Persistent Archives Project and Chronopolis.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table width=&amp;quot;75%&amp;quot; style=&amp;quot;margin-left: 75px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;&#039;&#039;&#039;Projects&#039;&#039;&#039;&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&#039;&#039;&#039;Research&#039;&#039;&#039;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td valign=&amp;quot;top&amp;quot;&amp;gt;&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;[[TPAP|TPAP]]&amp;lt;li&amp;gt;[[Chronopolis|Chronopolis]]&amp;lt;/ul&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;[[PAWN:Main|Ingestion (PAWN)]]&amp;lt;li&amp;gt;[[Ace|Integrity Management (ACE)]]&amp;lt;li&amp;gt;[[Webarc:Main|Web Archiving]]&amp;lt;li&amp;gt;[[Replication:Main|Replication Monitoring]]&amp;lt;li&amp;gt;[[Focus:Main|Format Stewardship (FOCUS)]]&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/table&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;ACE Development infrastructure improvements (1/26)&#039;&#039;&#039;&lt;br /&gt;
* public source repository https://subversion.umiacs.umd.edu/ace/&lt;br /&gt;
* Hudson testing and daily builds http://adaptvm01.umiacs.umd.edu:8080/hudson/job/ACE%20Audit%20Manager/&lt;br /&gt;
* Projects converted from netbeans build to maven3 for easier collaboration&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Python tutorials for ACE&#039;&#039;&#039;&lt;br /&gt;
* [[Ace:IMSPython| Requesting and validating IMS tokens]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Undergrad positions available&#039;&#039;&#039;&lt;br /&gt;
* The ADAPT project is hiring undergrad programmers to work on a variety of projects&lt;br /&gt;
* Learn more on our [[Employment]] page&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Ace V 1.5 Released (6/25)&#039;&#039;&#039;&lt;br /&gt;
* Source Released under BSD License&lt;br /&gt;
* Resource migration&lt;br /&gt;
* Lots of internal refactoring, dependency restructuring&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;New Issue Tracker&#039;&#039;&#039;&lt;br /&gt;
The adapt project now has an issue tracker to manage releases of our software and track bugs/feature requests.&lt;br /&gt;
* https://scm.umiacs.umd.edu/redmine/adapt/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Conference Videos Online (4/21/09)&#039;&#039;&#039;&lt;br /&gt;
Videos for the two-day conference, &amp;quot;Partnerships in Innovation II: From Vision to Reality and Beyond&amp;quot; held on October 7- 8, 2008 in College Park, Maryland, USA are now [[Partnerships 2008 Videos|online]]&lt;/div&gt;</summary>
		<author><name>Toaster</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/adapt/index.php?title=Ace:Devel_Pages&amp;diff=2850</id>
		<title>Ace:Devel Pages</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/adapt/index.php?title=Ace:Devel_Pages&amp;diff=2850"/>
		<updated>2011-01-26T16:15:42Z</updated>

		<summary type="html">&lt;p&gt;Toaster: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=General=&lt;br /&gt;
&lt;br /&gt;
* [https://scm.umiacs.umd.edu/redmine/adapt/projects/ace Bug Tracker, Source code..]&lt;br /&gt;
* [http://groups.google.com/group/ace-devel Discussion List]&lt;br /&gt;
* [http://adaptvm01.umiacs.umd.edu:8080/hudson/job/ACE%20Audit%20Manager Hudson build tests]&lt;br /&gt;
&lt;br /&gt;
=Token Store Format=&lt;br /&gt;
&lt;br /&gt;
Information for creating, parsing and validating Token stores&lt;br /&gt;
&lt;br /&gt;
* [[Ace:TokenStore|Token Store Format]]&lt;br /&gt;
* [[Ace:StorePython|Processing Token Stores in Python]]&lt;br /&gt;
&lt;br /&gt;
=Audit Manager=&lt;br /&gt;
&lt;br /&gt;
Developer pages and documentation for the ACE Audit Manager web application&lt;br /&gt;
&lt;br /&gt;
* [[Ace:JSON Interface|JSON Interface to Audit Manager]]&lt;br /&gt;
* [[Ace:Roles|Security Roles]]&lt;br /&gt;
* [[Ace:Summary Details|Summary generation]]&lt;br /&gt;
* [[Ace:Expanding the Audit Manager|Adding Storage Types]] &lt;br /&gt;
* [[Ace:Release Guidlines|Release Guidelines]]&lt;br /&gt;
&lt;br /&gt;
=Integrity Management Service=&lt;br /&gt;
&lt;br /&gt;
* [[Ace:IMSPython|Accessing the IMS using python]]&lt;br /&gt;
&lt;br /&gt;
=Other=&lt;br /&gt;
&lt;br /&gt;
* [[Ace:Deprecated|Deprecated Pages]]&lt;/div&gt;</summary>
		<author><name>Toaster</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/adapt/index.php?title=Ace:Release_Guidlines&amp;diff=2849</id>
		<title>Ace:Release Guidlines</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/adapt/index.php?title=Ace:Release_Guidlines&amp;diff=2849"/>
		<updated>2011-01-24T21:34:26Z</updated>

		<summary type="html">&lt;p&gt;Toaster: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The tests should be performed prior to an ACE release. As many of these as possible should be included in the maven/hudson configs for automated testing. &lt;br /&gt;
&lt;br /&gt;
Prior to release testing, please make sure all bugs/features for that version have been completed on Redmine. https://scm.umiacs.umd.edu/redmine/adapt/projects/ace/roadmap. Update maven version and footer version prior to creating a release package.&lt;br /&gt;
&lt;br /&gt;
=Source Testing=&lt;br /&gt;
&lt;br /&gt;
# export a clean copy of the &#039;svn export https://subversion.umiacs.umd.edu/ace/trunk ace-test&#039;&lt;br /&gt;
# &#039;mvn package&#039; in root, and make sure the build succeeds.&lt;br /&gt;
&lt;br /&gt;
=Clean deploy testing=&lt;br /&gt;
# From your build, deploy the war file in ace-am/target/ace-am-XXX.war &lt;br /&gt;
&lt;br /&gt;
=Upgrade testing=&lt;br /&gt;
&lt;br /&gt;
=Packaging=&lt;br /&gt;
The binary distribution should include a&lt;/div&gt;</summary>
		<author><name>Toaster</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/adapt/index.php?title=Ace:Release_Guidlines&amp;diff=2848</id>
		<title>Ace:Release Guidlines</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/adapt/index.php?title=Ace:Release_Guidlines&amp;diff=2848"/>
		<updated>2011-01-24T21:26:19Z</updated>

		<summary type="html">&lt;p&gt;Toaster: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The tests should be performed prior to an ACE release. As many of these as possible should be included in the maven/hudson configs for automated testing.&lt;br /&gt;
&lt;br /&gt;
&#039;Source Testing&#039;&lt;/div&gt;</summary>
		<author><name>Toaster</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/adapt/index.php?title=Ace:Devel_Pages&amp;diff=2847</id>
		<title>Ace:Devel Pages</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/adapt/index.php?title=Ace:Devel_Pages&amp;diff=2847"/>
		<updated>2011-01-24T21:24:57Z</updated>

		<summary type="html">&lt;p&gt;Toaster: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=General=&lt;br /&gt;
&lt;br /&gt;
* [https://scm.umiacs.umd.edu/redmine/adapt/projects/ace Bug Tracker, Source code..]&lt;br /&gt;
* [http://groups.google.com/group/ace-devel Discussion List]&lt;br /&gt;
* [http://adaptvm01.umiacs.umd.edu:8080/hudson/job/ACE Audit Manager Hudson build tests]&lt;br /&gt;
&lt;br /&gt;
=Token Store Format=&lt;br /&gt;
&lt;br /&gt;
Information for creating, parsing and validating Token stores&lt;br /&gt;
&lt;br /&gt;
* [[Ace:TokenStore|Token Store Format]]&lt;br /&gt;
* [[Ace:StorePython|Processing Token Stores in Python]]&lt;br /&gt;
&lt;br /&gt;
=Audit Manager=&lt;br /&gt;
&lt;br /&gt;
Developer pages and documentation for the ACE Audit Manager web application&lt;br /&gt;
&lt;br /&gt;
* [[Ace:JSON Interface|JSON Interface to Audit Manager]]&lt;br /&gt;
* [[Ace:Roles|Security Roles]]&lt;br /&gt;
* [[Ace:Summary Details|Summary generation]]&lt;br /&gt;
* [[Ace:Expanding the Audit Manager|Adding Storage Types]] &lt;br /&gt;
* [[Ace:Release Guidlines|Release Guidelines]]&lt;br /&gt;
&lt;br /&gt;
=Integrity Management Service=&lt;br /&gt;
&lt;br /&gt;
* [[Ace:IMSPython|Accessing the IMS using python]]&lt;br /&gt;
&lt;br /&gt;
=Other=&lt;br /&gt;
&lt;br /&gt;
* [[Ace:Deprecated|Deprecated Pages]]&lt;/div&gt;</summary>
		<author><name>Toaster</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/adapt/index.php?title=Ace:Main&amp;diff=2846</id>
		<title>Ace:Main</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/adapt/index.php?title=Ace:Main&amp;diff=2846"/>
		<updated>2011-01-24T21:22:21Z</updated>

		<summary type="html">&lt;p&gt;Toaster: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;ACE (Auditing Control Environment) is a system that incorporates a new methodology to address the integrity of long term archives using rigorous cryptographic techniques. ACE continuously audits the contents of the various objects according to the policy set by the archive, and provides mechanisms for an independent third-party auditor to certify the integrity of any object.&lt;br /&gt;
&lt;br /&gt;
ACE consists of two components, the first an Audit Manager(AM) that checks files locally to ensure they have not been compromised. The second part, the Integrity Management Service (IMS), issues tokens that the AM can use to verify that its local store of file digests has not been tampered with. &lt;br /&gt;
&lt;br /&gt;
Anyone wishing to audit their files with ACE only needs to install an Audit Manager locally to manage their files. The ADAPT project runs a publically available IMS at ims.umiacs.umd.edu that any group may freely use.&lt;br /&gt;
&lt;br /&gt;
{| width=&amp;quot;75%&amp;quot; style=&amp;quot;margin-left: 75px;&amp;quot;&lt;br /&gt;
| &#039;&#039;&#039;Audit Manager&#039;&#039;&#039; || &#039;&#039;&#039;Integrity Management Service&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| [[Ace:Audit Manager Installation Guide|Download Audit Manager]] || [[Ace:Ace IMS System|System Documentation]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Ace:Audit Manager User Guide|User Guide]] || [http://ims.umiacs.umd.edu:8080/ace-ims/IMSWebService IMS Webservice]&lt;br /&gt;
|-&lt;br /&gt;
| [http://groups.google.com/group/ace-devel Discussion List] || [[Ace:Validating Witness and Tokens|Validating Tokens and Witnesses]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Ace:Audit Manager Upgrading|Upgrade Audit Manager]] || [http://groups.google.com/group/ace-ims-witness?hl=en IMS Witness Google Goup]&lt;br /&gt;
|- &lt;br /&gt;
| [[Ace:AM Config Reference|AM Configuration Options]] || [http://mailman.umiacs.umd.edu/mailman/listinfo/ims-witness IMS Witness UMIACS listserv]&lt;br /&gt;
|-&lt;br /&gt;
|  || [[Ace:IMS Installation| IMS Installation Guide]]&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;Resources&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| [https://scm.umiacs.umd.edu/redmine/adapt/projects/show/ace Files and Issue Tracker]&lt;br /&gt;
|-&lt;br /&gt;
| [[Ace:Devel Pages|Development Documentation]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Ace:Webstart Client|Auditor Application]] || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Papers and Presentations&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Smorul, M., Song, S., and JaJa, J. An Implementation of the Audit Control Environment(ACE) to Support the Long Term Integrity of Digital Archives. in DigCCurr 2009. 2009: University of North Carolina.[[media:DigCCurr2009_060909.pdf|pdf]] presentation [[media:Smorul-digccurr09.ppt|ppt]]&lt;br /&gt;
* ACE Presentation at Archiving 2007 (5/07) [[media: ACE-Archiving2007.ppt|ppt]]&lt;br /&gt;
* Song, S. and JaJa, J. ACE: A Novel Software Platform to Ensure the Integrity of Long Term Archives. in Archiving 2007. 2007: IS&amp;amp;T. [[media:rad71E67.pdf|pdf]]&lt;br /&gt;
&lt;br /&gt;
Development of the ACE Version1.0 release was partially sponsored by the US National Archives and Records Administration. The basic research on ACE was partially sponsored under a DIGARCH grant from NSF/Library of Congress.&lt;/div&gt;</summary>
		<author><name>Toaster</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/adapt/index.php?title=Ace:Main&amp;diff=2845</id>
		<title>Ace:Main</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/adapt/index.php?title=Ace:Main&amp;diff=2845"/>
		<updated>2011-01-24T21:22:06Z</updated>

		<summary type="html">&lt;p&gt;Toaster: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;ACE (Auditing Control Environment) is a system that incorporates a new methodology to address the integrity of long term archives using rigorous cryptographic techniques. ACE continuously audits the contents of the various objects according to the policy set by the archive, and provides mechanisms for an independent third-party auditor to certify the integrity of any object.&lt;br /&gt;
&lt;br /&gt;
ACE consists of two components, the first an Audit Manager(AM) that checks files locally to ensure they have not been compromised. The second part, the Integrity Management Service (IMS), issues tokens that the AM can use to verify that its local store of file digests has not been tampered with. &lt;br /&gt;
&lt;br /&gt;
Anyone wishing to audit their files with ACE only needs to install an Audit Manager locally to manage their files. The ADAPT project runs a publically available IMS at ims.umiacs.umd.edu that any group may freely use.&lt;br /&gt;
&lt;br /&gt;
{| width=&amp;quot;75%&amp;quot; style=&amp;quot;margin-left: 75px;&amp;quot;&lt;br /&gt;
| &#039;&#039;&#039;Audit Manager&#039;&#039;&#039; || &#039;&#039;&#039;Integrity Management Service&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| [[Ace:Audit Manager Installation Guide|Download Audit Manager]] || [[Ace:Ace IMS System|System Documentation]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Ace:Audit Manager User Guide|User Guide]] || [http://ims.umiacs.umd.edu:8080/ace-ims/IMSWebService IMS Webservice]&lt;br /&gt;
|-&lt;br /&gt;
| [http://groups.google.com/group/ace-devel Discussion List] || [[Ace:Validating Witness and Tokens|Validating Tokens and Witnesses]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Ace:Audit Manager Upgrading|Upgrade Audit Manager]] || [http://groups.google.com/group/ace-ims-witness?hl=en IMS Witness Google Goup]&lt;br /&gt;
|- &lt;br /&gt;
| || [http://mailman.umiacs.umd.edu/mailman/listinfo/ims-witness IMS Witness UMIACS listserv]&lt;br /&gt;
|-&lt;br /&gt;
| [[Ace:AM Config Reference|AM Configuration Options]] || [[Ace:IMS Installation| IMS Installation Guide]]&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;Resources&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| [https://scm.umiacs.umd.edu/redmine/adapt/projects/show/ace Files and Issue Tracker]&lt;br /&gt;
|-&lt;br /&gt;
| [[Ace:Devel Pages|Development Documentation]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Ace:Webstart Client|Auditor Application]] || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Papers and Presentations&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Smorul, M., Song, S., and JaJa, J. An Implementation of the Audit Control Environment(ACE) to Support the Long Term Integrity of Digital Archives. in DigCCurr 2009. 2009: University of North Carolina.[[media:DigCCurr2009_060909.pdf|pdf]] presentation [[media:Smorul-digccurr09.ppt|ppt]]&lt;br /&gt;
* ACE Presentation at Archiving 2007 (5/07) [[media: ACE-Archiving2007.ppt|ppt]]&lt;br /&gt;
* Song, S. and JaJa, J. ACE: A Novel Software Platform to Ensure the Integrity of Long Term Archives. in Archiving 2007. 2007: IS&amp;amp;T. [[media:rad71E67.pdf|pdf]]&lt;br /&gt;
&lt;br /&gt;
Development of the ACE Version1.0 release was partially sponsored by the US National Archives and Records Administration. The basic research on ACE was partially sponsored under a DIGARCH grant from NSF/Library of Congress.&lt;/div&gt;</summary>
		<author><name>Toaster</name></author>
	</entry>
</feed>