<html><head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<p>Hi Yuri,</p>
<p><br>
</p>
<p>Assuming your repository is already HTTPS only, so you only need
worry about editing ssl/securevhost.conf which has the
PerlTransHandler line you could put in side a LocationMatch around
the outside. You can technically do this for HTTP configuration
but it will get overwritten if you ever run generate_apacheconf
again.</p>
<p><br>
</p>
<p>I have not ever tried putting a LocationMatch around a
PerlTransHandler line but I am not aware of anything in Apache
that would stop that working. Presumably you can separately write
your mod rewrite rules in Apache configuration to deal with the
redirects you need. However, it sounds like if you knew some of
the redirects that would not help you guess the rest so I assume
you would need to programmatically generate the mod rewrite rules.</p>
<p><br>
</p>
<p>I assume by rename the archive you mean put on another hostname.
You can pretty much do what you said but I would make sure you set
aside plenty of time and a backout strategy in case you have
problems. For changing the base URL you will need to edit the
archive's cfg/cfg.d/10_core.pl. Usually it is only the host
and/or securehost configuration settings that need to be changed.
I would then run all of the following scripts:</p>
<p><br>
</p>
<p>(0. epadmin test)<br>
</p>
<p>1. generate_apacheconf</p>
<p>2. generate_static</p>
<p>3. apachectl restart (reload is probably sufficient but just to
be safe I tend to use restart when I change the Apache config)<br>
</p>
<p>4. epadmin refresh_abstracts</p>
<p>5. epadmin refresh_views</p>
<p><br>
</p>
<p>I would also make sure you restart the indexer via the web admin
menu. I cannot think of a specific reason why indexer tasks would
care about a hostname change but probably best to be sure.</p>
<p><br>
</p>
<p>Having a look at Jon Salter's suggestion, that looks like a good
solution. Although still hits EPrints, so would contribute to
more server load than being able to redirect before hitting
EPrints. Although, I think it is fairly negligible unless your
server is always running hot.</p>
<p><br>
</p>
<p>Regards</p>
<p><br>
</p>
<p>David Newman<br>
</p>
<p><br>
</p>
<p><br>
</p>
<p><br>
</p>
<div class="moz-cite-prefix">On 15/03/2022 10:28, Yuri wrote:<br>
</div>
<blockquote type="cite" cite="mid:91a009be-08f9-1f84-be9a-b672f2de5648@alfa.it">
<div style="padding-bottom: 10px; padding-top: 5px;">
<div style="padding:12px; border:1px solid #8D3970;
background-color:#F7F9FA; color:#8D3970; font-size:14px;
line-height:22px; font-family: Calibri, Arial, Helvetica,
sans-serif;">
<strong>CAUTION:</strong> This e-mail originated outside the
University of Southampton.
</div>
</div>
<div>
<p>Hi David!</p>
<p><br>
</p>
<p> being it almost 99% of the archive and some thousands of
items, it is quite difficult to have thousands lines
$c->{rewrite_exceptions} but seems the only possible path,
being the perl handler running before rewriterule. In other
cases, it is possible to use LocationMatch to set the default
handler thus running rewrite rules.</p>
<p><br>
</p>
<p>Another option could be rename the old archive? Thus we could
use the virtualhost to do just redirects, and access old items
(we need them internally anyway).</p>
<p><br>
</p>
<p>Other than changing the base url, change apache configs,
running generate_static / generate_abstracts, what would I
need to rename the old archive?<br>
</p>
<p><br>
</p>
<div class="moz-cite-prefix">Il 14/03/22 18:00, David R Newman
ha scritto:<br>
</div>
<blockquote type="cite" cite="mid:e19572b4-75f3-903f-6b71-0530d8a3ee22@ecs.soton.ac.uk">
<p><font size="4">Hi both,</font></p>
<p><font size="4"><br>
</font></p>
<p><font size="4">I have been doing something similar
recently, albeit for abstract pages. I prefer the brute
force approach of adding to $c->{rewrite_exceptions}
and them manually adding the Apache Mod Rewrite rules to
an archive level file called cfg/apache_redirects.conf and
then including that in cfg/apachevhost.conf and/or
ssl/securevhost.conf. You could write a script to
programmatically generate this and the cfg.d file for
rewrite_exceptions from a mapping file.</font></p>
<p><font size="4"><br>
</font></p>
<p><font size="4">I had considered doing something that would
allow you to add a metadata field called redirect_url or
similar that you could just edit as a user (probably an
admin or editor only if the item is live), which could
then be used to automatically redirect off site. However,
that would require some changes at a core level, which
feels a bit excessive for tackling this problem.
<br>
</font></p>
<p><font size="4"><br>
</font></p>
<p><font size="4">One option, if you want to redirect just
from abstract pages, is you could test for this new
redirect_url field being set and if it is embedding some
JavaScript in the abstract page that redirects to the new
URL. That is a bit hacky but makes it easier to add new
items to be redirected in future rather than having to
maintain a mappings list independent of the database.
However, this is no use if you want to redirect document
URLs. I am not sure whether that is what you want to do?</font></p>
<p><font size="4"><br>
</font></p>
<p><font size="4">Regards</font></p>
<p><font size="4"><br>
</font></p>
<p><font size="4">David Newman<br>
</font></p>
<p><font size="4"><br>
</font></p>
<p><font size="4"><br>
</font></p>
<div class="moz-cite-prefix">On 14/03/2022 4:07 pm, Yuri via
Eprints-tech wrote:<br>
</div>
<blockquote type="cite" cite="mid:6f2ecd09-c345-4a1c-cdd2-22b043d61251@alfa.it">
<div style="padding-bottom: 10px; padding-top: 5px;">
<div style="padding:12px; border:1px solid #8D3970;
background-color:#F7F9FA; color:#8D3970; font-size:14px;
line-height:22px; font-family: Calibri, Arial,
Helvetica, sans-serif;">
<strong>CAUTION:</strong> This e-mail originated outside
the University of Southampton.
</div>
</div>
<div>
<p>Hi John!</p>
<p><br>
</p>
<p> thanks for sharing the gist. The objects are about
10.000, so I should load the map from a file.
Unfortunately, It is an old Eprints without the
EP_TRIGGER_URL_REWRITE but I think I just can copy the
code at the begin of Rewrite.pm.</p>
<p><br>
</p>
<p>Thanks!<br>
</p>
<p><br>
</p>
<div class="moz-cite-prefix">Il 14/03/22 16:35, John
Salter ha scritto:<br>
</div>
<blockquote type="cite" cite="mid:DU2PR03MB7895D7192AF8DEF34B574272C40F9@DU2PR03MB7895.eurprd03.prod.outlook.com">
<style type="text/css" style="display:none;">P {margin-top:0;margin-bottom:0;}</style>
<div style="font-family: Calibri, Arial, Helvetica,
sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
Hi Yuri,</div>
<div style="font-family: Calibri, Arial, Helvetica,
sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
I would use the EPrints URL Rewrite trigger.</div>
<div style="font-family: Calibri, Arial, Helvetica,
sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
<br>
</div>
<div style="font-family: Calibri, Arial, Helvetica,
sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
How many items are mapped to the other system?</div>
<div style="font-family: Calibri, Arial, Helvetica,
sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
Do you want to map landing page requests to one URL,
and document requests to another URL (e.g. directly to
the document in the other system)?</div>
<div style="font-family: Calibri, Arial, Helvetica,
sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
<br>
</div>
<div style="font-family: Calibri, Arial, Helvetica,
sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
This gist: <a href="https://eur03.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgist.github.com%2Fjesusbagpuss%2Fa5c574e1839612ef7e332d1d25edac42&data=04%7C01%7Ceprints-tech%40ecs.soton.ac.uk%7Cbd0313ef6cd448629d8408da0675912b%7C4a5378f929f44d3ebe89669d03ada9d8%7C0%7C0%7C637829399251566783%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=n%2FTX6OGtubVDUh9C1qq7jRzA4CFOAelvcBnfsTfZ0vk%3D&reserved=0" originalSrc="https://gist.github.com/jesusbagpuss/a5c574e1839612ef7e332d1d25edac42" shash="KuB54Gf9lt3eytsf+ikcgkt/IP6g2yOVQ0+T9ki23wSgf7WUaLtUTQDIrC7rsw2AOrsVht23u9H+Zb19WSsnckh5Y4sgYIya/odmbrM1kUSQidf3RGHbxp+RspbP4puCipXzsZ6Vb70HMBhQ/ywGF2MrjZCZTgjMpVIdqCkYP6A=" originalsrc="https://gist.github.com/jesusbagpuss/a5c574e1839612ef7e332d1d25edac42" shash="Ia8LJjB+R7roqDXxawcxRz/OW5oMCwdELQCl1wg/i1Pxiz9hWCUqbYOwmIKgzXM5NHHFZ9a0tPA+SpgzcOk+Lh2yR2vdy0plsAQFAACHdqx+ECq6wFZ4Y6zQvln29Qni95ubi6o9Djl7tJCBVn9ecVEst0SZc/d29eO5JS/v2Ro=" id="LPNoLPOWALinkPreview" moz-do-not-send="true" class="moz-txt-link-freetext">https://gist.github.com/jesusbagpuss/a5c574e1839612ef7e332d1d25edac42</a> allows
you to specify the eprintid / new locations in a hash.</div>
<div style="font-family: Calibri, Arial, Helvetica,
sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
If all the new locations are on the same site, you
could update line 19 to include the new base http URL,
and just have the eprintid => otherid in the hash.</div>
<div style="font-family: Calibri, Arial, Helvetica,
sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
<br>
</div>
<div style="font-family: Calibri, Arial, Helvetica,
sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
As written, it will capture requests for anything
starting with the EPrintID (requests for the landing
page; downloads; thumbnail requests).</div>
<div style="font-family: Calibri, Arial, Helvetica,
sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
You could map these URLs individually, and change the
regex match on line 13 to redirect document requests
to the new document URL; landing page requests to the
new landing page etc.</div>
<div style="font-family: Calibri, Arial, Helvetica,
sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
<br>
</div>
<div style="font-family: Calibri, Arial, Helvetica,
sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
Hope that helps - let me know if you need more info.</div>
<div style="font-family: Calibri, Arial, Helvetica,
sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
<br>
</div>
<div style="font-family: Calibri, Arial, Helvetica,
sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
Cheers,</div>
<div style="font-family: Calibri, Arial, Helvetica,
sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
John</div>
<div style="font-family: Calibri, Arial, Helvetica,
sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
<br>
</div>
<div style="font-family: Calibri, Arial, Helvetica,
sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
<br>
</div>
<div style="font-family: Calibri, Arial, Helvetica,
sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
<br>
</div>
<hr style="display:inline-block;width:98%" tabindex="-1">
<div id="divRplyFwdMsg" dir="ltr"><font style="font-size:11pt" face="Calibri, sans-serif" color="#000000"><b>From:</b>
<a class="moz-txt-link-abbreviated
moz-txt-link-freetext" href="mailto:eprints-tech-bounces@ecs.soton.ac.uk" moz-do-not-send="true">
eprints-tech-bounces@ecs.soton.ac.uk</a> <a class="moz-txt-link-rfc2396E" href="mailto:eprints-tech-bounces@ecs.soton.ac.uk" moz-do-not-send="true">
<eprints-tech-bounces@ecs.soton.ac.uk></a>
on behalf of Yuri via Eprints-tech <a class="moz-txt-link-rfc2396E" href="mailto:eprints-tech@ecs.soton.ac.uk" moz-do-not-send="true">
<eprints-tech@ecs.soton.ac.uk></a><br>
<b>Sent:</b> 14 March 2022 13:45<br>
<b>To:</b> EPrints.org Technical List <a class="moz-txt-link-rfc2396E" href="mailto:eprints-tech@ecs.soton.ac.uk" moz-do-not-send="true">
<eprints-tech@ecs.soton.ac.uk></a><br>
<b>Subject:</b> [EP-tech] redirect some eprintid url
to another site</font>
<div> </div>
</div>
<div class="BodyFragment"><font size="2"><span style="font-size:11pt;">
<div class="PlainText">CAUTION: This e-mail
originated outside the University of
Southampton.<br>
<br>
Hi!<br>
<br>
we're migrating many objects from eprints to
various other platform. I<br>
would like to make redirects for the URLs of
this documents. For example<br>
from myeprint.com/eprintid to
another.site.com/otherid (I have a map<br>
with eprintid otherurl)<br>
<br>
I'm trying to do it with RewriteMap and
RewriteRule but Eprints define<br>
the perl handler to manage urls
(PerlTransHandler<br>
EPrints::Apache::Rewrite) to handle rewrites. I
would like not to use<br>
cfg.d/url.pl because there are a lot of objects.<br>
<br>
Any idea? Should I patch Rewrite.pm to do it
internally from a mapfile?<br>
Return DECLINED? I don't know if it is worth the
time, I would prefer a<br>
simpler solution.<br>
<br>
<br>
*** Options: <a href="https://eur03.safelinks.protection.outlook.com/?url=http%3A%2F%2Fmailman.ecs.soton.ac.uk%2Fmailman%2Flistinfo%2Feprints-tech&data=04%7C01%7Ceprints-tech%40ecs.soton.ac.uk%7Cbd0313ef6cd448629d8408da0675912b%7C4a5378f929f44d3ebe89669d03ada9d8%7C0%7C0%7C637829399251566783%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=nooHBM9Mb3mOJmMGdzk7ci3%2BnNJwwcCT%2BoxsMEo9wvk%3D&reserved=0" originalSrc="http://mailman.ecs.soton.ac.uk/mailman/listinfo/eprints-tech" shash="v2sJD0rlnLAstjfhTDSuhoFkkb5KUWEIFIcsqX3zi+NRP1VqupoC9Qo/x8VNpn7uf27EL7DCA0VRmZBXc1Jkkp7NXEAtOHkMxSx0VbGCmTBW2y+tqACBg3eIFVOXd5Xln/ABFP0U7KvUXNqe1QgOv6OmBjo2VTSEQjfvSP5Mtrk=" originalsrc="http://mailman.ecs.soton.ac.uk/mailman/listinfo/eprints-tech" shash="p0DnePxEivdYr3DQGMN0IINccswLVRegvUvhHewLjnkqE3BL5IzJtgckhlNO+wPR9q/cT9nEY9lVx2YhrFfpwv8/pHGWAo1cmqNq734vrVqoX/eVgGQy49lQkmP/rKBtNY6JsidYbBmBTV+OjOlv3I8qFy01NJ3wvGNreMzbTVU=" moz-do-not-send="true">
https://eur03.safelinks.protection.outlook.com/?url=http%3A%2F%2Fmailman.ecs.soton.ac.uk%2Fmailman%2Flistinfo%2Feprints-tech&amp;data=04%7C01%7CJ.Salter%40leeds.ac.uk%7C8bb7948ea1094eb8d25b08da05c18c2d%7Cbdeaeda8c81d45ce863e5232a535b7cb%7C1%7C0%7C637828626342660990%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&amp;sdata=CWsbLXKKlI%2FlywSS10%2F5e79FaeDpl8hbEyUcguQ%2FJDc%3D&amp;reserved=0</a><br>
*** Archive: <a href="https://eur03.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.eprints.org%2Ftech.php%2F&data=04%7C01%7Ceprints-tech%40ecs.soton.ac.uk%7Cbd0313ef6cd448629d8408da0675912b%7C4a5378f929f44d3ebe89669d03ada9d8%7C0%7C0%7C637829399251566783%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=zcvcLL9vv%2BdzDmzLqnti7AjT%2Bk0nax%2B5RYDq%2BTXaeYg%3D&reserved=0" originalSrc="http://www.eprints.org/tech.php/" shash="E0afnjGFqnGcyR2ScPw3ZDaompF/MelT9paugbOq7+6lrUhzUIrX4dz3Ofcni0jcSnL5fdPz2Qh8iAZNJ3gQ6R+ByD4UStn6Tg5gq86JImIiHYvDCBmCCGfbzlTtD5IJJGaOM0vTHAvHhJC7erVe0HO5OD5Q2LRP7pZcFCHeiY0=" originalsrc="http://www.eprints.org/tech.php/" shash="u7eZdzYP7wdqkPZ9O3AVzqKiBGkYhmV/FcCvEn2EKZClFxxIKDol+O4aPNq3D2LANlT/TRf8rX/dP2sjDSnU/lcepj724sUd1eYNARdwfJk/oKj1/1KjhRuoWre8H2SF/9QRw/Xw1RrR1R9zHd+IPAnWRuFM8RPOsmefQbgT1nk=" moz-do-not-send="true">
https://eur03.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.eprints.org%2Ftech.php%2F&amp;data=04%7C01%7CJ.Salter%40leeds.ac.uk%7C8bb7948ea1094eb8d25b08da05c18c2d%7Cbdeaeda8c81d45ce863e5232a535b7cb%7C1%7C0%7C637828626342660990%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&amp;sdata=0XS6HmJAybExIQbUk8p%2FB1asLntaSGKGwoZ%2Fj96MfgQ%3D&amp;reserved=0</a><br>
*** EPrints community wiki: <a href="https://eur03.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwiki.eprints.org%2F&data=04%7C01%7Ceprints-tech%40ecs.soton.ac.uk%7Cbd0313ef6cd448629d8408da0675912b%7C4a5378f929f44d3ebe89669d03ada9d8%7C0%7C0%7C637829399251566783%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=wuwWcFsQgqVNjFIakddSvCiE6Lyzc%2BC5snTtL3JJbXo%3D&reserved=0" originalSrc="http://wiki.eprints.org/" shash="TvBoLK0FUcOmChe810zqpYVejczMzdDMNkQL6PKHIyhd87EipTaA8jiPDhmalAHbZAd3kzU2zTNirOdoQQzcThnXvI0gQgMX9mZpUa/h24IUAQCQVRQRxY8RD9tj9xl5p4Ikl9UGUvRN4QDhcN75QNBZorIYnDFFdQvenD4AD/Q=" originalsrc="http://wiki.eprints.org/" shash="ASsrrBf9Kj6aS6asmtvqjxRqYauFAiJAFAqw1KK+zVnl0D0UClJgOas9950jbOwTf2xYLGsVTSuv3SRoIqJQTmwQDSPZZPujVYnjageGGKbF9xZKW7UqO47bqrL17l/yy+vlYRASw32s3YRHeGyAJXXHVUKCaTs03WeVoRHjDNM=" moz-do-not-send="true">
https://eur03.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwiki.eprints.org%2F&amp;data=04%7C01%7CJ.Salter%40leeds.ac.uk%7C8bb7948ea1094eb8d25b08da05c18c2d%7Cbdeaeda8c81d45ce863e5232a535b7cb%7C1%7C0%7C637828626342660990%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&amp;sdata=iViKROkkJ3nKNy0MbLq2S%2BA8O4pQUOck9JnBKCBDyes%3D&amp;reserved=0</a><br>
</div>
</span></font></div>
</blockquote>
</div>
<br>
<fieldset class="moz-mime-attachment-header"></fieldset>
<pre class="moz-quote-pre" wrap="">*** Options: <a class="moz-txt-link-freetext" href="http://mailman.ecs.soton.ac.uk/mailman/listinfo/eprints-tech" moz-do-not-send="true">http://mailman.ecs.soton.ac.uk/mailman/listinfo/eprints-tech</a>
*** Archive: <a class="moz-txt-link-freetext" href="https://eur03.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.eprints.org%2Ftech.php%2F&data=04%7C01%7Ceprints-tech%40ecs.soton.ac.uk%7Cbd0313ef6cd448629d8408da0675912b%7C4a5378f929f44d3ebe89669d03ada9d8%7C0%7C0%7C637829399251566783%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=zcvcLL9vv%2BdzDmzLqnti7AjT%2Bk0nax%2B5RYDq%2BTXaeYg%3D&reserved=0" originalSrc="http://www.eprints.org/tech.php/" shash="E0afnjGFqnGcyR2ScPw3ZDaompF/MelT9paugbOq7+6lrUhzUIrX4dz3Ofcni0jcSnL5fdPz2Qh8iAZNJ3gQ6R+ByD4UStn6Tg5gq86JImIiHYvDCBmCCGfbzlTtD5IJJGaOM0vTHAvHhJC7erVe0HO5OD5Q2LRP7pZcFCHeiY0=" originalsrc="http://www.eprints.org/tech.php/" shash="u7eZdzYP7wdqkPZ9O3AVzqKiBGkYhmV/FcCvEn2EKZClFxxIKDol+O4aPNq3D2LANlT/TRf8rX/dP2sjDSnU/lcepj724sUd1eYNARdwfJk/oKj1/1KjhRuoWre8H2SF/9QRw/Xw1RrR1R9zHd+IPAnWRuFM8RPOsmefQbgT1nk=" moz-do-not-send="true">http://www.eprints.org/tech.php/</a>
*** EPrints community wiki: <a class="moz-txt-link-freetext" href="https://eur03.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwiki.eprints.org%2F&data=04%7C01%7Ceprints-tech%40ecs.soton.ac.uk%7Cbd0313ef6cd448629d8408da0675912b%7C4a5378f929f44d3ebe89669d03ada9d8%7C0%7C0%7C637829399251566783%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=wuwWcFsQgqVNjFIakddSvCiE6Lyzc%2BC5snTtL3JJbXo%3D&reserved=0" originalSrc="http://wiki.eprints.org/" shash="TvBoLK0FUcOmChe810zqpYVejczMzdDMNkQL6PKHIyhd87EipTaA8jiPDhmalAHbZAd3kzU2zTNirOdoQQzcThnXvI0gQgMX9mZpUa/h24IUAQCQVRQRxY8RD9tj9xl5p4Ikl9UGUvRN4QDhcN75QNBZorIYnDFFdQvenD4AD/Q=" originalsrc="http://wiki.eprints.org/" shash="ASsrrBf9Kj6aS6asmtvqjxRqYauFAiJAFAqw1KK+zVnl0D0UClJgOas9950jbOwTf2xYLGsVTSuv3SRoIqJQTmwQDSPZZPujVYnjageGGKbF9xZKW7UqO47bqrL17l/yy+vlYRASw32s3YRHeGyAJXXHVUKCaTs03WeVoRHjDNM=" moz-do-not-send="true">http://wiki.eprints.org/</a></pre>
</blockquote>
</blockquote>
</div>
</blockquote>
</body>
</html>