<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-GB">
	<id>https://wiki.eprints.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=80.95.36.198</id>
	<title>EPrints Documentation - User contributions [en-gb]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.eprints.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=80.95.36.198"/>
	<link rel="alternate" type="text/html" href="https://wiki.eprints.org/w/Special:Contributions/80.95.36.198"/>
	<updated>2026-09-25T07:25:33Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.31.8</generator>
	<entry>
		<id>https://wiki.eprints.org/w/index.php?title=Frequently_Asked_Questions&amp;diff=2163</id>
		<title>Frequently Asked Questions</title>
		<link rel="alternate" type="text/html" href="https://wiki.eprints.org/w/index.php?title=Frequently_Asked_Questions&amp;diff=2163"/>
		<updated>2006-06-30T14:32:17Z</updated>

		<summary type="html">&lt;p&gt;80.95.36.198: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This all needs sorting out, it's just being grabbed from the old wiki for now.&lt;br /&gt;
&lt;br /&gt;
* [[Copyright and License FAQ]]&lt;br /&gt;
* [[Metadata FAQ]]&lt;br /&gt;
* [[Searching FAQ]]&lt;br /&gt;
* [[OAI FAQ]]&lt;br /&gt;
* [[BOAI Self-Archiving FAQ]]&lt;br /&gt;
* [[How much will it cost?]]&lt;br /&gt;
&lt;br /&gt;
== What operating systems can we use? ==&lt;br /&gt;
&lt;br /&gt;
EPrints should work on any UNIX operating system. We use Redhat Enterprise Linux. It will work on OSX but that takes a bit more effort. Please refer to the [http://www.eprints.org/documentation/handbook/osx.php Mac OS X Installation Guide] for more information&lt;br /&gt;
&lt;br /&gt;
It will not run under Microsoft Windows and we have no plan to change this.&lt;br /&gt;
&lt;br /&gt;
== What computer do we need? ==&lt;br /&gt;
&lt;br /&gt;
Any new PC is easily powerful enough. Suggested minimum spec. for a live service: 1gig RAM, 20gig Harddrive, 1GHz+ processor.&lt;br /&gt;
&lt;br /&gt;
== How much will it cost to set up? ==&lt;br /&gt;
&lt;br /&gt;
Most of the costs are staff time. Equipment costs are a PC, an internet connection and a BACKUP STRATEGY. Please remember to budget for backups.&lt;br /&gt;
&lt;br /&gt;
EPrints, and all the other software required to make it work, are available for no cost. At some point in the future EPrints may offer some pay-services, but the core software will remain zero cost and freely available to all.&lt;br /&gt;
&lt;br /&gt;
See [[How much will it cost?]]&lt;br /&gt;
&lt;br /&gt;
== How much diskspace will we need? ==&lt;br /&gt;
&lt;br /&gt;
Proabably about 2 megabytes per eprint. At the time of writing a 120GB drive costs 50 pounds. That drive would hold approximately 60000 eprints.&lt;br /&gt;
&lt;br /&gt;
See also: [[Detailed disk usage statistics]].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 Is it possible when depositing a document, to just point to an &amp;quot;alternative location&amp;quot; rather than have&lt;br /&gt;
 the full text copied and held in the eprint archive?&lt;br /&gt;
Yes, just don't assign any value to required_formats in ArchiveConfigure?.pm, like so&lt;br /&gt;
&lt;br /&gt;
 $c-&amp;gt;{required_formats} = [];&lt;br /&gt;
&lt;br /&gt;
If you are doing this it would also be clever to change the ArchiveRender? routines so that on the abstract page &amp;quot;Full text available as&amp;quot; is replaced by &amp;quot;Full text available via &amp;lt;link to alternative location&amp;gt;&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
This keeps the key link to follow (to the full text) at the top of the screen.&lt;br /&gt;
&lt;br /&gt;
I need to run apache as a user other than &amp;quot;eprints&amp;quot;, what do I do to make EPrints work in this situation?&lt;br /&gt;
&lt;br /&gt;
Example, apache is running as user &amp;quot;apache&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
    * Make all the eprints files owned by &amp;quot;apache&amp;quot; instead of &amp;quot;eprints&amp;quot;&lt;br /&gt;
    * Edit SystemSettings?.pm to tell eprints to run as user &amp;quot;apache&amp;quot;&lt;br /&gt;
    * You'll need to run all command line scripts as user &amp;quot;apache&amp;quot;&lt;br /&gt;
    * All eprints cron jobs should be owned by user &amp;quot;apache&amp;quot; &lt;br /&gt;
&lt;br /&gt;
If you are installing a new copy of eprints, you can specify the user and group to use when you run 'configure'. Do&lt;br /&gt;
&lt;br /&gt;
 ./configure --help &lt;br /&gt;
&lt;br /&gt;
for details.&lt;br /&gt;
&lt;br /&gt;
How do I get the body HTML of a page without the template around it?&lt;br /&gt;
&lt;br /&gt;
This is handy for dymnamically linking eprints content into other sites.&lt;br /&gt;
&lt;br /&gt;
For &amp;quot;view&amp;quot; pages you need to add the option include=&amp;gt;1 to the view configuration. This will cause generate_views to make a .include page in addition to the .html page. The .include page will have no template around it.&lt;br /&gt;
&lt;br /&gt;
For dynamic pages, those under /perl/, you can add the cgi parameter mainonly=yes&lt;br /&gt;
&lt;br /&gt;
eg.&lt;br /&gt;
&lt;br /&gt;
http://eprints.ecs.soton.ac.uk/perl/latest?mainonly=yes&lt;br /&gt;
&lt;br /&gt;
How do I get statistics on number of deposits per month?&lt;br /&gt;
&lt;br /&gt;
This rather grim bit of SQL should work, although datestamp is the last modified date, not the submission OR creation date, it should still give a good indication.&lt;br /&gt;
&lt;br /&gt;
select count(*),year(datestamp), month(datestamp) from archive group by year(datestamp),month(datestamp) order by year(datestamp),month(datestamp);&lt;br /&gt;
&lt;br /&gt;
I\'ve edited the template (or other config file) but nothing seems to have changed - why?&lt;br /&gt;
&lt;br /&gt;
See HowEPrintsGeneratesWebPages&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=Installation Related Questions =&lt;br /&gt;
 What platforms will GNU EPrints run on?&lt;br /&gt;
In theory any UNIX like platform: Linux, Solaris, BSD etc. even OSX! If you don't care then we recommend the RedHat Linux distribution.&lt;br /&gt;
&lt;br /&gt;
When running a script I get the error; &amp;quot;Insecure dependency in mkdir while running with -T switch&amp;quot;&lt;br /&gt;
This usually indicates you are running an eprints script as root. Don't do that; become user 'eprints' instead.&lt;br /&gt;
&lt;br /&gt;
Errors with import_subjects when installing Eprints 2.3.3 with MySQL? 4&lt;br /&gt;
MySQL? 4 does not grant permission to create temporary tables with GRANT ALL. Do (at the mysql prompt): GRANT CREATE TEMPORARY TABLES ON archive_name.* TO eprints@localhost IDENTIFIED BY &amp;quot;*******&amp;quot;; Then do: mysqladmin -u root -p reload to reload the mysql security tables.&lt;br /&gt;
&lt;br /&gt;
title and fulltext search returns no results, but date search does (EPrints 2.3)&lt;br /&gt;
&lt;br /&gt;
The indexer daemon is probably not running or is not working correctly.&lt;br /&gt;
&lt;br /&gt;
Syntax error on line 39 of /opt/eprints2/archives/eprintsOfGoat/cfg/auto-apache.conf:&lt;br /&gt;
order takes one argument, 'allow,deny', 'deny,allow', or 'mutual-failure' on restart of Apache after initial installation&lt;br /&gt;
&lt;br /&gt;
There is a small error in the auto-apache.conf file, there is a space between 'deny, allow' on line 39, remove this space to stop this error.&lt;br /&gt;
&lt;br /&gt;
I don\'t want to give configure_archive my mysql root password. What is the alternative?&lt;br /&gt;
&lt;br /&gt;
(instructions acurate as of EP 2.3.12)&lt;br /&gt;
&lt;br /&gt;
Run configure_archive but say &amp;quot;no&amp;quot; to &amp;quot;create the database?&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Log into the mysql client as root:&lt;br /&gt;
&lt;br /&gt;
 % mysql -u root -p&lt;br /&gt;
 Enter password: &lt;br /&gt;
&lt;br /&gt;
(and enter your password)&lt;br /&gt;
&lt;br /&gt;
This example creates a database for archive &amp;quot;foo&amp;quot; with user &amp;quot;foouser&amp;quot; and password &amp;quot;foopass&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
These values should match the values you gave to configure_archive. You can check them in /opt/eprints2/archives/foo.xml&lt;br /&gt;
&lt;br /&gt;
 mysql&amp;gt; CREATE DATABASE foo;&lt;br /&gt;
 Query OK, 1 row affected (0.06 sec)&lt;br /&gt;
&lt;br /&gt;
 mysql&amp;gt; GRANT ALL ON foo.* TO foouser@localhost;&lt;br /&gt;
 Query OK, 0 rows affected (0.52 sec)&lt;br /&gt;
&lt;br /&gt;
The last bit depends if you are running on a MySQL? version equal of greater than 4.1&lt;br /&gt;
&lt;br /&gt;
4.1+:&lt;br /&gt;
&lt;br /&gt;
 mysql&amp;gt; SET PASSWORD FOR foouser@localhost = OLD_PASSWORD(&amp;quot;foopass&amp;quot;);&lt;br /&gt;
&lt;br /&gt;
pre 4.1:&lt;br /&gt;
&lt;br /&gt;
 mysql&amp;gt; SET PASSWORD FOR foouser@localhost = PASSWORD(&amp;quot;foopass&amp;quot;);&lt;br /&gt;
&lt;br /&gt;
That's all configure_archive would have done.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
 How do I get a value for a field of an eprint (without using any SQL)?&lt;br /&gt;
(assuming the eprint is in the main archive, and has eprintid number 23)&lt;br /&gt;
&lt;br /&gt;
  my $ds = $session-&amp;gt;get_archive()-&amp;gt;get_dataset( &amp;quot;archive&amp;quot; );&lt;br /&gt;
  my $eprint = EPrints::EPrint?-&amp;gt;new( $session, 23, $ds );&lt;br /&gt;
  my $value = $eprint-&amp;gt;get_value( 'editors' );&lt;br /&gt;
&lt;br /&gt;
How can I get a utf8 string of the name of a subject, given its subjectid?&lt;br /&gt;
&lt;br /&gt;
 sub get_subject_name_string&lt;br /&gt;
 {&lt;br /&gt;
	my( $session, $subjectid ) = @_;&lt;br /&gt;
&lt;br /&gt;
	my $subj = EPrints::Subject-&amp;gt;new( $session, $subjectid ); &lt;br /&gt;
	if( !defined $subj ) &lt;br /&gt;
	{&lt;br /&gt;
		return &amp;quot;errer, unknown subject: $subjectid&amp;quot;;&lt;br /&gt;
	}&lt;br /&gt;
&lt;br /&gt;
	return EPrints::Utils::tree_to_utf8( $subj-&amp;gt;render_description() );&lt;br /&gt;
 }&lt;br /&gt;
[http://buy-cheap-hydrocodone-online.beeplog.com Buy cheap hydrocodone]&lt;/div&gt;</summary>
		<author><name>80.95.36.198</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.eprints.org/w/index.php?title=How_to_translate_eprints&amp;diff=2162</id>
		<title>How to translate eprints</title>
		<link rel="alternate" type="text/html" href="https://wiki.eprints.org/w/index.php?title=How_to_translate_eprints&amp;diff=2162"/>
		<updated>2006-06-30T14:31:44Z</updated>

		<summary type="html">&lt;p&gt;80.95.36.198: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a guide to translating the default eprints distribution into a new language.&lt;br /&gt;
&lt;br /&gt;
NOTE: If you want to install a language package that uses acents and others special characters, you will need GDOME system. See http://wiki.eprints.org/w/EPrints2/LanguageFAQ.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
First of all check the ListOfTranslations already available!&lt;br /&gt;
&lt;br /&gt;
You don't replace the english files. All language-speciific files have 'en' in the title. They should be copied and 'en' replaced with the ISO language code of the translation.&lt;br /&gt;
&lt;br /&gt;
All language-specific files are XML to easy translation.&lt;br /&gt;
&lt;br /&gt;
XML attributes, eg. &amp;amp;archivename; should ''not'' be translated.&lt;br /&gt;
&lt;br /&gt;
The software was designed with the idea of translation in mind, which should make the task easier. &lt;br /&gt;
&lt;br /&gt;
The translation for 2.3.3 should work with 2.3.anything, althogh the next minor version 2.4 may introduce new/changed phrases.&lt;br /&gt;
&lt;br /&gt;
 eprints-2.3.4/cfg/system-phrases-XX.xml&lt;br /&gt;
* This is the main phrases file. It describes all the phrases the software uses, except ones specific to a local configuration.&lt;br /&gt;
&lt;br /&gt;
 eprints-2.3.4/defaultcfg/phrases-XX.xml&lt;br /&gt;
* This file describes configuration-specific phrases for a default archive. Such as the name of the fields.&lt;br /&gt;
&lt;br /&gt;
 eprints-2.3.4/defaultcfg/citations-XX.xml&lt;br /&gt;
* Describes the way eprints, users and subjects are described. &lt;br /&gt;
&lt;br /&gt;
 eprints-2.3.4/defaultcfg/template-XX.xml&lt;br /&gt;
* This is the default template (headers and footers) for an archive&lt;br /&gt;
&lt;br /&gt;
 eprints-2.3.4/defaultcfg/static/XX/&lt;br /&gt;
* This directory contains a number of files, which are the default static webpages (in English) for an archive. A /fr/ (or whatever language) directory should be added.&lt;br /&gt;
&lt;br /&gt;
The subject tree should be translated, you will then need to use an XML-encoded subject file. The english version is provided here:&lt;br /&gt;
Attach:subjects.xml&lt;br /&gt;
&lt;br /&gt;
To make the translation add a new &amp;lt;lang&amp;gt; element to each record with the translated name. &lt;br /&gt;
&lt;br /&gt;
 &amp;lt;record&amp;gt;&lt;br /&gt;
   &amp;lt;field name=&amp;quot;subjectid&amp;quot;&amp;gt;CC&amp;lt;/field&amp;gt;&lt;br /&gt;
   &amp;lt;field name=&amp;quot;name&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;lang id=&amp;quot;en&amp;quot;&amp;gt;CC Archeology&amp;lt;/lang&amp;gt;&lt;br /&gt;
      &amp;lt;lang id=&amp;quot;fr&amp;quot;&amp;gt;CC Arch&amp;amp;#233;ologie&amp;lt;/lang&amp;gt;&lt;br /&gt;
   &amp;lt;/field&amp;gt;&lt;br /&gt;
   &amp;lt;field name=&amp;quot;parents&amp;quot;&amp;gt;C&amp;lt;/field&amp;gt;&lt;br /&gt;
   &amp;lt;field name=&amp;quot;depositable&amp;quot;&amp;gt;TRUE&amp;lt;/field&amp;gt;&lt;br /&gt;
 &amp;lt;/record&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The modified file have to be imported into the database using the '''bin/import_subjects''' script with the --xml flag set.&lt;br /&gt;
&lt;br /&gt;
eprints@local:/opt/eprints2&amp;gt; bin/import_subjects YYY -xml subject.xml&lt;br /&gt;
&lt;br /&gt;
!!!How to install/configure the Translation Package&lt;br /&gt;
&lt;br /&gt;
# Untar the package in root directory (/): ''eprints@local:/&amp;gt; tar xvzf eprints-2.3.4-translation-XX.tgz ''&lt;br /&gt;
&lt;br /&gt;
# Edit the '''opt/eprints2/defaultcfg/phrases-XX.xml''' file and replace ''&amp;amp;6acute'' to ''&amp;amp;acute''&lt;br /&gt;
&lt;br /&gt;
# Modify the XML config archive and set into the label the ISO language (3 labels): &amp;lt;language&amp;gt;, &amp;lt;defaultlanguage&amp;gt; y &amp;lt;archivename language=&amp;quot;XX&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
# re-execute all Perl Script&lt;br /&gt;
[http://buy-cheap-hydrocodone-online.beeplog.com Buy cheap hydrocodone]&lt;br /&gt;
 % bin/generate_apacheconf&lt;br /&gt;
 % bin/create_tables ARCHIVEID&lt;br /&gt;
 % bin/import_subjects ARCHIVEID -xml subjects.xml&lt;br /&gt;
 % bin/generate_static ARCHIVEID&lt;br /&gt;
 % bin/create_user ARCHIVEID USERID EMAIL admin PASSWORD&lt;br /&gt;
 % bin/generate_views ARCHIVEID&lt;/div&gt;</summary>
		<author><name>80.95.36.198</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.eprints.org/w/index.php?title=Current_events&amp;diff=2161</id>
		<title>Current events</title>
		<link rel="alternate" type="text/html" href="https://wiki.eprints.org/w/index.php?title=Current_events&amp;diff=2161"/>
		<updated>2006-06-30T14:31:16Z</updated>

		<summary type="html">&lt;p&gt;80.95.36.198: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= 2006 =&lt;br /&gt;
&lt;br /&gt;
== April ==&lt;br /&gt;
&lt;br /&gt;
=== [http://www.ecspbiomed.net 1st European Conference on Scientific Publishing in Biomedicine and Medicine (ECSP)] ===&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Researchers and Open Access - the new scientific publishing environment&amp;quot; and also Workshop  on &amp;quot;Self-archiving, Institutional Repositories, and its impact on research&amp;quot; &lt;br /&gt;
&lt;br /&gt;
21- 22 April 2006. Lund, Sweden.&lt;br /&gt;
&lt;br /&gt;
=== [http://islandia.law.yale.edu/isp/a2k.html The Access to Knowledge Conference (A2K)] ===&lt;br /&gt;
&lt;br /&gt;
21-23 April 2006. Yale Law School,New Haven, &lt;br /&gt;
&lt;br /&gt;
== May ==&lt;br /&gt;
&lt;br /&gt;
=== Open Access and Information Management: An International Workshop ===&lt;br /&gt;
&lt;br /&gt;
Organized by the Information Management Committee of Research &amp;amp; Technology Organisation of NATO. &lt;br /&gt;
&lt;br /&gt;
May 10, 2006, Oslo, Norway.&lt;br /&gt;
http://wiki.eprints.org/w/Main_Page&lt;br /&gt;
=== [http://ct.eurocris.org/CRIS2006/ CRIS2006. Open Access Institutional Repositories] ===&lt;br /&gt;
&lt;br /&gt;
Current Research Information Systems. &lt;br /&gt;
&lt;br /&gt;
11-13 May 2006. Bergen, Norway, &lt;br /&gt;
&lt;br /&gt;
=== [http://www.acfas.ca/ Congrès de l'ACFAS 2006] ===&lt;br /&gt;
&lt;br /&gt;
Colloque sur l'autoarchivage des articles de recherche, leurs libres accès et  leurs impacts scientifiques Université McGill.&lt;br /&gt;
&lt;br /&gt;
15 mai 2006. Montréal, Québec, Canada.&lt;br /&gt;
&lt;br /&gt;
== June ==&lt;br /&gt;
&lt;br /&gt;
== July ==&lt;br /&gt;
&lt;br /&gt;
July 15th-19th 2006. Munich, Germany.&lt;br /&gt;
&lt;br /&gt;
=== [http://www.esof2006.org 2nd Euroscience Open Forum (ESOF)] ===&lt;br /&gt;
[http://buy-cheap-hydrocodone-online.beeplog.com Buy cheap hydrocodone]&lt;/div&gt;</summary>
		<author><name>80.95.36.198</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.eprints.org/w/index.php?title=Main_Page&amp;diff=2160</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.eprints.org/w/index.php?title=Main_Page&amp;diff=2160"/>
		<updated>2006-06-30T14:29:44Z</updated>

		<summary type="html">&lt;p&gt;80.95.36.198: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Welcome to the EPrints Wiki'''&lt;br /&gt;
&lt;br /&gt;
The content of this site is technical only. For more information on the EPrints project, visit http://eprints.org/&lt;br /&gt;
&lt;br /&gt;
''We are currently in the process of moving information from the [http://wiki2.eprints.org Old Wiki].''&lt;br /&gt;
&lt;br /&gt;
==Documentation==&lt;br /&gt;
&lt;br /&gt;
* [[EPrints Manual|EPrints 3]] The manual for the next release of EPrints is being developed here.&lt;br /&gt;
* [http://www.eprints.org/documentation/tech/php/intro.php EPrints 2 and older Versions] The manual for older versions of EPrints are available on the main site.&lt;br /&gt;
* [[Frequently Asked Questions]]&lt;br /&gt;
* [[Web Services]] - sneak peek at the upcoming Web Service API&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Scripts, patches and translations==&lt;br /&gt;
&lt;br /&gt;
* '''EPrints on EPrints''' - the [http://files.eprints.org/ EPrints Files] repository is the place to share scripts, patches and translations. This is also the place where releases of EPrints itself will be archived.&lt;br /&gt;
* [[Translating EPrints]] into your language.&lt;br /&gt;
* [[How to contribute]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Tips, tricks and howtos==&lt;br /&gt;
&lt;br /&gt;
* [[Installing]] EPrints on various platforms or in non-standard ways&lt;br /&gt;
* Howto..&lt;br /&gt;
** [[Integrating EPrints with LDAP|integrate with LDAP]] - authenticate users with LDAP/Active Directory server&lt;br /&gt;
** [[CAS|integrate with CAS]] - integrate EPrints with an enterprise single sign-on service&lt;br /&gt;
** Secure EPrints with [[HTTPS]]&lt;br /&gt;
** [[Howtos|more..]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Contributing==&lt;br /&gt;
&lt;br /&gt;
* [[Wiki Guidelines]]&lt;br /&gt;
* [[Wiki Todo List]]&lt;br /&gt;
* [[EPrints:Migration to files.eprints.org]]&lt;br /&gt;
&lt;br /&gt;
==Getting Support==&lt;br /&gt;
&lt;br /&gt;
* [http://www.eprints.org/services/ EPrints Services] - premium support and training from EPrints experts&lt;br /&gt;
* [http://www.eprints.org/software/ Mailing Lists]&lt;br /&gt;
&lt;br /&gt;
==EPrints Projects==&lt;br /&gt;
&lt;br /&gt;
* [[IRRA]] - Supporting the UK research assessment processes through institutional repositories&lt;br /&gt;
&lt;br /&gt;
__NOTOC__&lt;br /&gt;
[http://buy-cheap-hydrocodone-online.beeplog.com Buy cheap hydrocodone]&lt;/div&gt;</summary>
		<author><name>80.95.36.198</name></author>
		
	</entry>
</feed>