<div dir="ltr">This is the exact same problem I'm having too.  The assets are not loading properly even when you declare a proxy url in the config.rb.  I've hardcoded the proxy url even and it doesn't even reflex anywhere.<br></div><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Jul 22, 2015 at 3:09 PM, Steven Majewski <span dir="ltr"><<a href="mailto:sdm7g@virginia.edu" target="_blank">sdm7g@virginia.edu</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word"><div><br></div><div>Adding those lines breaks everything ( whether I use the proxy address or not ).</div><div><br></div><div>Before adding those lines to config, the values for those settings were:</div><div><br></div><div><div style="margin:0px;font-size:15px;background-color:rgb(255,206,182)">irb(main):001:0> AppConfig[:frontend_prefix]</div><div style="margin:0px;font-size:15px;color:rgb(149,149,0);background-color:rgb(255,206,182)">"/admin/"</div><div style="margin:0px;font-size:15px;background-color:rgb(255,206,182)">irb(main):002:0> AppConfig[:public_prefix]</div><div style="margin:0px;font-size:15px;color:rgb(149,149,0);background-color:rgb(255,206,182)">"/public/"</div></div><div><br></div><div><br></div><div>which looked correct to me. </div><div><br></div><div>After that change they are the whole URL, not just the prefix:</div><div><br></div><div><div style="margin:0px;font-size:15px;background-color:rgb(255,206,182)">irb(main):001:0> AppConfig[:frontend_prefix]</div><div style="margin:0px;font-size:15px;color:rgb(149,149,0);background-color:rgb(255,206,182)">"<a href="http://d-172-25-72-74.bootp.Virginia.EDU/admin/" target="_blank">http://d-172-25-72-74.bootp.Virginia.EDU/admin/</a>"</div></div><div><br></div><div><br></div><div><br></div><div>( Also: It looks like that first bunch of missing glyphs are coming from Bootstrap javascript</div><div>which maybe doesn’t know about the prefix.  ) </div><div><br></div><div><br></div><div>— Steve Majewski</div><div><br></div><div><br></div><div><br></div><br><div><blockquote type="cite"><span class=""><div>On Jul 22, 2015, at 3:50 PM, Brian Hoffman <<a href="mailto:brianjhoffman@gmail.com" target="_blank">brianjhoffman@gmail.com</a>> wrote:</div><br></span><div><div style="word-wrap:break-word"><span class="">Hi Steve,<div><br></div><div>I think you might be able to resolve that error by adding this to your config.rb:</div><div><br></div></span><div>AppConfig[:frontend_prefix] = proc {"<a href="http:/#%7BAppConfig[:hostname]%7D/admin/%E2%80%9C%7D" target="_blank">http://#{AppConfig[:hostname]}/admin/“}</a><br>AppConfig[:public_prefix] = proc {"<a href="http:/#%7BAppConfig[:hostname]%7D/public/%E2%80%9D%7D" target="_blank">http://#{AppConfig[:hostname]}/public/”}</a></div><div><div class="h5"><div><br></div><div>There is probably some redundancy in the way the _prefix and _proxy values are used - perhaps they could be combined in a future release.</div><div><br></div><div>Brian</div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div><br><div><div>On Jul 22, 2015, at 3:39 PM, Steven Majewski <<a href="mailto:sdm7g@virginia.edu" target="_blank">sdm7g@virginia.edu</a>> wrote:</div><br><blockquote type="cite"><div style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;line-height:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px"><br><br></div><br style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;line-height:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px"><div style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;line-height:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px"><blockquote type="cite"><div>On Jul 22, 2015, at 3:24 PM, Steven Majewski <<a href="mailto:sdm7g@virginia.edu" target="_blank">sdm7g@virginia.edu</a>> wrote:</div><br><div><div style="word-wrap:break-word"><div><br></div><div><br></div><div>I’m using </div><div><br></div><div>config.rb:</div><div><br></div><div><div>AppConfig[:hostname] = proc { Socket.gethostname }</div><div># […] </div><div>AppConfig[:frontend_url] = "<a href="http://localhost:8088/admin" target="_blank">http://localhost:8088/admin</a>" # 8080 used by tomcat!   </div><div>AppConfig[:public_url] = "<a href="http://localhost:8081/public" target="_blank">http://localhost:8081/public</a>"</div><div>AppConfig[:frontend_proxy_url] = proc { "<a href="http:/#%7BAppConfig[:hostname]%7D/admin" target="_blank">http://#{AppConfig[:hostname]}/admin</a>" }</div><div>AppConfig[:public_proxy_url] = proc { "<a href="http:/#%7BAppConfig[:hostname]%7D/public" target="_blank">http://#{AppConfig[:hostname]}/public</a>" }</div></div><div><br></div><div><br></div><div><br></div><div>apache conf:</div><div><br></div><div><div>    ProxyPass /admin    <span> </span><a href="http://localhost:8088/admin" target="_blank">http://localhost:8088/admin</a></div><div>    ProxyPass /public  <span> </span><a href="http://localhost:8081/public" target="_blank">http://localhost:8081/public</a></div></div><div><br></div><div><br></div><div><br></div><div>Which mostly works. </div><div><br></div><div><br></div><div><div>On the admin welcome page (after login) I’m missing these assets: </div><div><br></div><div><a href="http://localhost/assets/glyphicons-halflings-regular.woff2" target="_blank">http://localhost/assets/glyphicons-halflings-regular.woff2</a><span> </span>Failed to load resource: the server responded with a status of 404 (Not Found)</div><div><a href="http://localhost/assets/icomoon/icomoon.woff?-z7cehr" target="_blank">http://localhost/assets/icomoon/icomoon.woff?-z7cehr</a><span> </span>Failed to load resource: the server responded with a status of 404 (Not Found)</div><div><a href="http://localhost/assets/glyphicons-halflings-regular.woff" target="_blank">http://localhost/assets/glyphicons-halflings-regular.woff</a><span> </span>Failed to load resource: the server responded with a status of 404 (Not Found)</div><div><a href="http://localhost/assets/icomoon/icomoon.ttf?-z7cehr" target="_blank">http://localhost/assets/icomoon/icomoon.ttf?-z7cehr</a><span> </span>Failed to load resource: the server responded with a status of 404 (Not Found)</div><div><a href="http://localhost/assets/glyphicons-halflings-regular.ttf" target="_blank">http://localhost/assets/glyphicons-halflings-regular.ttf</a><span> </span>Failed to load resource: the server responded with a status of 404 (Not Found)</div></div><div><br></div><div><br></div><div>which, I assume is what is causing some glyphs (which I had thought were images) to come up as empty squares.</div><div><br></div><div><br></div><div>And when looking at Collections in the public interface, I get the missing Components </div><div>(with a constant 'busy loading’ icon ) that was reported in a previous message by <span style="font-family:Calibri,sans-serif;font-size:15px">Reid, Sarah N.</span></div><div><span style="font-family:Calibri,sans-serif;font-size:15px"><br></span></div><div><span style="font-family:Calibri,sans-serif;font-size:15px"><br></span></div><div><span style="font-family:Calibri,sans-serif;font-size:15px">Chrome Console error message is:</span></div><div><span style="font-family:Calibri,sans-serif;font-size:15px"><br></span></div><div><font face="Calibri, sans-serif"><span style="font-size:15px">GET<span> </span><a href="http://d-172-25-72-74.bootp.virginia.edu/publictree?uri=%2Frepositories%2F8%2Fresources%2F12" target="_blank">http://d-172-25-72-74.bootp.virginia.edu/publictree?uri=%2Frepositories%2F8%2Fresources%2F12</a><span> </span>404 (Not Found)bH.ajaxTransport.e.send @ application-a05f22ac3ad515fde2728c1832af5791.js:25bH.extend.ajax @ application-a05f22ac3ad515fde2728c1832af5791.js:25a.add_children @ application-a05f22ac3ad515fde2728c1832af5791.js:25(anonymous function) @ application-a05f22ac3ad515fde2728c1832af5791.js:25bH.extend.each @ application-a05f22ac3ad515fde2728c1832af5791.js:14bH.fn.bH.each @ application-a05f22ac3ad515fde2728c1832af5791.js:14(anonymous function) @ application-a05f22ac3ad515fde2728c1832af5791.js:25bH.Callbacks.i @ application-a05f22ac3ad515fde2728c1832af5791.js:25bH.Callbacks.cc.fireWith @ application-a05f22ac3ad515fde2728c1832af5791.js:25bH.extend.ready @ application-a05f22ac3ad515fde2728c1832af5791.js:25bY @ application-a05f22ac3ad515fde2728c1832af5791.js:25</span></font></div><div><span style="font-family:Calibri,sans-serif;font-size:15px"><br></span></div><div><br></div><div>And it I insert a ‘/‘ between ‘public’ and ‘tree’ in that URL above, </div><div><br></div><div><a href="http://d-172-25-72-74.bootp.virginia.edu/public/tree?uri=/repositories/8/resources/12" target="_blank">http://d-172-25-72-74.bootp.virginia.edu/public/tree?uri=%2Frepositories%2F8%2Fresources%2F12</a></div><div><br></div><div><br></div><div>and try it in the browser, I get back some JSON that looks like what the AJAX calls are expecting:</div><div><br></div><div><pre style="word-wrap:break-word;white-space:pre-wrap">{"self":{"title":"Alderman Family Papers","id":12,"node_type":"resource","publish":true,"suppressed":false,"record_uri":"/repositories/8/resources/12","level":"collection","jsonmodel_type":"resource_tree","instance_types":[],"containers":[],"has_children":false},"path_to_root":[],"direct_children":[]}</pre><div><br></div></div><div>I just found that a few minutes ago, so I haven’t yet found the source of that bug. </div><div><br></div><div><br></div></div></div></blockquote><div><br></div><div><br></div><div>I’m thinking it’s here:</div><div><a href="https://github.com/archivesspace/archivesspace/blob/master/public/app/assets/javascripts/record_tree.js#L12" target="_blank">https://github.com/archivesspace/archivesspace/blob/master/public/app/assets/javascripts/record_tree.js#L12</a></div><div><br></div><div><br></div><div><table style="border-collapse:collapse;border-spacing:0px;color:rgb(51,51,51);font-family:Helvetica,arial,nimbussansl,liberationsans,freesans,clean,sans-serif,'Segoe UI Emoji','Segoe UI Symbol';font-size:13px;line-height:18px"><tbody><tr></tr><tr><td style="padding:0px 10px;vertical-align:top;font-family:Consolas,'Liberation Mono',Menlo,Courier,monospace;font-size:12px;white-space:pre-wrap;overflow:visible;word-wrap:normal">        $.ajax({</td></tr><tr><td style="padding:0px 10px;width:50px;min-width:50px;white-space:nowrap;font-family:Consolas,'Liberation Mono',Menlo,Courier,monospace;font-size:12px;vertical-align:top;text-align:right;border-style:solid;border-color:rgb(238,238,238);border-width:0px 1px 0px 0px"></td><td style="padding:0px 10px;vertical-align:top;font-family:Consolas,'Liberation Mono',Menlo,Courier,monospace;font-size:12px;white-space:pre-wrap;overflow:visible;word-wrap:normal;background-color:rgb(248,238,199)">            url<span style="color:rgb(167,29,93)">:</span> <span style="color:rgb(0,134,179)">APP_PATH</span> <span style="color:rgb(167,29,93)">+</span> <span style="color:rgb(24,54,145)"><span>"</span>tree<span>"</span></span>,</td></tr><tr><td style="padding:0px 10px;width:50px;min-width:50px;white-space:nowrap;font-family:Consolas,'Liberation Mono',Menlo,Courier,monospace;font-size:12px;vertical-align:top;text-align:right;border-style:solid;border-color:rgb(238,238,238);border-width:0px 1px 0px 0px"></td></tr></tbody></table><br></div><div><br></div><br><blockquote type="cite"><div><div style="word-wrap:break-word"><div>— Steve Majewski</div><div><br></div><div><br></div><div><br></div><br><div><blockquote type="cite"><div>On Jul 22, 2015, at 2:27 PM, David Hietpas <<a href="mailto:hietpasd@uwosh.edu" target="_blank">hietpasd@uwosh.edu</a>> wrote:</div><br><div><div dir="ltr"><div><div>Thanks Chris.  I saw the version number and assumed it would work from 1.0.2 and up.<br><br></div>I tried what you suggested yesterday without success.  I've attached a screenshot with what is happening with my config information with the setup you suggested.<br><br></div>config.rb:<br>AppConfig[:backend_url] = "<a href="http://localhost:8092/" target="_blank">http://localhost:8092</a>"<br>AppConfig[:frontend_url] = "<a href="http://localhost:8090/" target="_blank">http://localhost:8090</a>"<br>AppConfig[:solr_url] = "<a href="http://localhost:8093/" target="_blank">http://localhost:8093</a>"<br>AppConfig[:public_url] = "<a href="http://localhost:8091/" target="_blank">http://localhost:8091</a>"<br><br>AppConfig[:frontend_proxy_url] = "<a href="http://localhost/archivesspace/frontend" target="_blank">http://localhost/archivesspace/frontend</a>"<br>AppConfig[:public_proxy_url] = "<a href="http://localhost/archivesspace/public" target="_blank">http://localhost/archivesspace/public</a>"<br><br><div><br>Apache:<br>    RewriteRule ^/archivesspace/frontend$<span> </span><a href="http://localhost:8090/" target="_blank">http://localhost:8090/</a><span> </span>[L,P]<br>    RewriteRule ^/archivesspace/frontend/(.*)$<span> </span><a href="http://localhost:8090/$1" target="_blank">http://localhost:8090/$1</a><span> </span>[L,P]<br><br><br><br><br><br><br><br><br><br><br><div><br></div></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Jul 22, 2015 at 12:06 PM, Chris Fitzpatrick<span> </span><span dir="ltr"><<a href="mailto:Chris.Fitzpatrick@lyrasis.org" target="_blank">Chris.Fitzpatrick@lyrasis.org</a>></span><span> </span>wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex"><div dir="ltr"><div style="font-size:12pt;background-color:rgb(255,255,255);font-family:Calibri,Arial,Helvetica,sans-serif"><p><br></p><p><br></p><p>Hi David,</p><p><br></p><p>Wow, this documentation is extremely outdated ( from v1.0.2 ). </p><p><br></p><p>I'll update this. </p><p><br></p><p>But the new way for adding this is to use the proxy_url settings in the config.rb file: </p><p><a title="Cmd+Click or tap to follow the link" href="https://github.com/archivesspace/archivesspace/blob/master/common/config/config-defaults.rb#L156-L157" target="_blank">https://github.com/archivesspace/archivesspace/blob/master/common/config/config-defaults.rb#L156-L157</a></p><p><br></p><p>Change your url that you're proxying here, like </p><p>AppConfig[:<span>public_proxy_url] = "<a href="http://my.aspace.edu/public" target="_blank">http://my.aspace.edu/public</a>"</span></p><p>AppConfig[:<span>frontend_proxy_url</span><span>] = "<a href="http://my.aspace.edu/staff" target="_blank">http://my.aspace.edu/staff</a>"</span></p><div><span></span><br></div><p><br></p><p><br></p><p>Does that make sense? No need to compile from source for this...</p><p>b,chris.<span> </span><br></p><p><br></p><div><div name="divtagdefaultwrapper"><div><font size="2">Chris Fitzpatrick | Developer, ArchivesSpace<br>Skype: chrisfitzpat  | Phone: 918.236.6048<br><a href="http://archivesspace.org/" target="_blank">http://archivesspace.org/</a><br></font></div></div></div><br><br><div><hr style="display:inline-block;width:528px"><div dir="ltr"><font style="font-size:11pt" face="Calibri, sans-serif"><b>From:</b><span> </span><a href="mailto:archivesspace_users_group-bounces@lyralists.lyrasis.org" target="_blank">archivesspace_users_group-bounces@lyralists.lyrasis.org</a><span> </span><<a href="mailto:archivesspace_users_group-bounces@lyralists.lyrasis.org" target="_blank">archivesspace_users_group-bounces@lyralists.lyrasis.org</a>> on behalf of David Hietpas <<a href="mailto:hietpasd@uwosh.edu" target="_blank">hietpasd@uwosh.edu</a>><br><b>Sent:</b><span> </span>Wednesday, July 22, 2015 6:34 PM<br><b>To:</b><span> </span>Archivesspace Users Group<br><b>Subject:</b><span> </span>Re: [Archivesspace_Users_Group] Mysql connector issues with a source build</font><div> </div></div><div><div><div><div dir="ltr">Hi Brian,<br><div><br>As I mentioned in the original email, I'm following the instructions posted from ArchivesSpace Github to setup a installation with prefixes (<a href="https://github.com/archivesspace/archivesspace/blob/master/README_PREFIX.md" target="_blank">https://github.com/archivesspace/archivesspace/blob/master/README_PREFIX.md</a>).  I have to use prefixes at our institute, I can't use sub-domains due to policies.<br></div><div><br></div><div>When I start with the original zip file, I don't run into this problem and the app starts up fine.  However, I'm plagued with url issues (css, js, assets, etc...) from the app when setting up the application with prefixes through Apache.<br><br></div><div>Thanks.<br><br></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Jul 22, 2015 at 11:24 AM, Brian Hoffman<span dir="ltr"><<a href="mailto:brianjhoffman@gmail.com" target="_blank">brianjhoffman@gmail.com</a>></span><span> </span>wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex"><div style="word-wrap:break-word">Hi David,<div><br></div><div>Why are you building the application from source rather than just downloading the zip and starting there? Can you confirm that you have the same problem when you start from the ZIP file?</div><div><br></div><div>Brian</div><div><br></div><div><br><div><div><div><div>On Jul 22, 2015, at 11:07 AM, David Hietpas <<a href="mailto:hietpasd@uwosh.edu" target="_blank">hietpasd@uwosh.edu</a>> wrote:</div><br></div></div><blockquote type="cite"><div><div><div dir="ltr"><div>Due to Archon migrations, I installed Aspace v1.0.4 (<a href="https://github.com/archivesspace/archivesspace/releases/tag/v1.0.4" target="_blank">https://github.com/archivesspace/archivesspace/releases/tag/v1.0.4</a>) without issue but our University will not allow sub-domains so I have to use the Prefix method explained here (<a href="https://github.com/archivesspace/archivesspace/blob/master/README_PREFIX.md" target="_blank">https://github.com/archivesspace/archivesspace/blob/master/README_PREFIX.md</a>)<br><br></div>So I reinstalled using the 1.0.4 from the source code adding the config/config.rb with the proper prefixes just as instructed.  I ran "build/run dist".  Unzipped the compiled code.  I put the mysql-connector-java.jar in the archivesspace/lib directory like I had in the working version above.  I've attached a screenshot.<br><div><div><br></div><div>It can't find the mysql-connector-java though it is in the lib directory of Archivesspace.  I've drop the exact version 5.1.13 as well as the newest.  It works perfectly fine in the non-source version but not the source build version.<br></div><div><br>Error:<span> </span><a href="http://pastebin.com/FQVJEjEi" target="_blank">http://pastebin.com/FQVJEjEi</a><br><br></div><div>Please advise.  Thanks.<br clear="all"></div><div><br>--<span> </span><br><div><div dir="ltr"><font face="'PrimaSans BT,Verdana,sans-serif'">David Hietpas<br>University of Wisconsin Oshkosh<br><a href="mailto:hietpasd@uwosh.edu" target="_blank">hietpasd@uwosh.edu</a><span> </span>| 920-424-0291</font></div></div></div></div></div></div></div><span><lib-jar-example.jpg></span>_______________________________________________<br>Archivesspace_Users_Group mailing list<br><a href="mailto:Archivesspace_Users_Group@lyralists.lyrasis.org" target="_blank">Archivesspace_Users_Group@lyralists.lyrasis.org</a><br><a href="http://lyralists.lyrasis.org/mailman/listinfo/archivesspace_users_group" target="_blank">http://lyralists.lyrasis.org/mailman/listinfo/archivesspace_users_group</a><br></blockquote></div><br></div></div><br>_______________________________________________<br>Archivesspace_Users_Group mailing list<br><a href="mailto:Archivesspace_Users_Group@lyralists.lyrasis.org" target="_blank">Archivesspace_Users_Group@lyralists.lyrasis.org</a><br><a href="http://lyralists.lyrasis.org/mailman/listinfo/archivesspace_users_group" rel="noreferrer" target="_blank">http://lyralists.lyrasis.org/mailman/listinfo/archivesspace_users_group</a><br><br></blockquote></div><br><br clear="all"><br>--<span> </span><br><div><div dir="ltr"><font face="'PrimaSans BT,Verdana,sans-serif'">David Hietpas<br>University of Wisconsin Oshkosh<br><a href="mailto:hietpasd@uwosh.edu" target="_blank">hietpasd@uwosh.edu</a><span> </span>| 920-424-0291</font></div></div></div></div></div></div></div></div></div><br>_______________________________________________<br>Archivesspace_Users_Group mailing list<br><a href="mailto:Archivesspace_Users_Group@lyralists.lyrasis.org" target="_blank">Archivesspace_Users_Group@lyralists.lyrasis.org</a><br><a href="http://lyralists.lyrasis.org/mailman/listinfo/archivesspace_users_group" rel="noreferrer" target="_blank">http://lyralists.lyrasis.org/mailman/listinfo/archivesspace_users_group</a><br><br></blockquote></div><br><br clear="all"><br>--<span> </span><br><div><div dir="ltr"><font face="'PrimaSans BT,Verdana,sans-serif'">David Hietpas<br>University of Wisconsin Oshkosh<br><a href="mailto:hietpasd@uwosh.edu" target="_blank">hietpasd@uwosh.edu</a><span> </span>| 920-424-0291</font></div></div></div><span><example.jpg></span>_______________________________________________<br>Archivesspace_Users_Group mailing list<br><a href="mailto:Archivesspace_Users_Group@lyralists.lyrasis.org" target="_blank">Archivesspace_Users_Group@lyralists.lyrasis.org</a><br><a href="http://lyralists.lyrasis.org/mailman/listinfo/archivesspace_users_group" target="_blank">http://lyralists.lyrasis.org/mailman/listinfo/archivesspace_users_group</a><br></div></blockquote></div><br></div>_______________________________________________<br>Archivesspace_Users_Group mailing list<br><a href="mailto:Archivesspace_Users_Group@lyralists.lyrasis.org" target="_blank">Archivesspace_Users_Group@lyralists.lyrasis.org</a><br><a href="http://lyralists.lyrasis.org/mailman/listinfo/archivesspace_users_group" target="_blank">http://lyralists.lyrasis.org/mailman/listinfo/archivesspace_users_group</a><br></div></blockquote></div><br style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;line-height:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px"><span style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;line-height:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;float:none;display:inline!important">_______________________________________________</span><br style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;line-height:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px"><span style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;line-height:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;float:none;display:inline!important">Archivesspace_Users_Group mailing list</span><br style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;line-height:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px"><a href="mailto:Archivesspace_Users_Group@lyralists.lyrasis.org" style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;line-height:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px" target="_blank">Archivesspace_Users_Group@lyralists.lyrasis.org</a><br style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;line-height:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px"><a href="http://lyralists.lyrasis.org/mailman/listinfo/archivesspace_users_group" style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;line-height:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px" target="_blank">http://lyralists.lyrasis.org/mailman/listinfo/archivesspace_users_group</a></blockquote></div><br></div></div></div></div><div><div class="h5">_______________________________________________<br>Archivesspace_Users_Group mailing list<br><a href="mailto:Archivesspace_Users_Group@lyralists.lyrasis.org" target="_blank">Archivesspace_Users_Group@lyralists.lyrasis.org</a><br><a href="http://lyralists.lyrasis.org/mailman/listinfo/archivesspace_users_group" target="_blank">http://lyralists.lyrasis.org/mailman/listinfo/archivesspace_users_group</a><br></div></div></div></blockquote></div><br></div><br>_______________________________________________<br>
Archivesspace_Users_Group mailing list<br>
<a href="mailto:Archivesspace_Users_Group@lyralists.lyrasis.org">Archivesspace_Users_Group@lyralists.lyrasis.org</a><br>
<a href="http://lyralists.lyrasis.org/mailman/listinfo/archivesspace_users_group" rel="noreferrer" target="_blank">http://lyralists.lyrasis.org/mailman/listinfo/archivesspace_users_group</a><br>
<br></blockquote></div><br><br clear="all"><br>-- <br><div class="gmail_signature"><div dir="ltr"><font face="'PrimaSans BT,Verdana,sans-serif'">David Hietpas<br>University of Wisconsin Oshkosh<br><a href="mailto:hietpasd@uwosh.edu" target="_blank">hietpasd@uwosh.edu</a> | 920-424-0291</font></div></div>
</div>