From Renata.Arovelius at adm.slu.se Mon Oct 3 03:57:12 2005 From: Renata.Arovelius at adm.slu.se (Renata Arovelius) Date: Mon, 3 Oct 2005 09:57:12 +0200 Subject: [Dspace-general] data sets Message-ID: <200510030757.j937vCHa005663@mail1.slu.se> Hi, Does anyone have collections of scientific datasets in a DSpace repository? What problems have you met when you transferred databases into DSpace? We have tested 4 different scientific dataset and I would like to exchange some ideas about how to handle it. Thanks! /Renata ______________________________________ Renata Arovelius SLU (Sveriges lantbruksuniversitet)/ Swedish University of Agricultural Sciences Universitetsledningens kansli Rector Office Arrheniusplan 2 C Tel: +46 18 671283 P.O. Box 7070 Fax: +46 18 672000 S-750 07 Uppsala e-post/E-mail: Renata.Arovelius at adm.slu.se http://www-jurdok.adm.slu.se/ -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mailman.mit.edu/pipermail/dspace-general/attachments/20051003/f8e3be04/attachment.htm From hennie at sabinet.co.za Mon Oct 3 09:15:35 2005 From: hennie at sabinet.co.za (Hennie Rautenbach) Date: Mon, 03 Oct 2005 15:15:35 +0200 Subject: [Dspace-general] redirecting port 8080 to 80 Message-ID: <43412EF7.1000408@sabinet.co.za> Hi there, I have installed dspace on a Sun machine (Solaris 10), which already has apache running on it. Folk here would prefer to have dspace running on port 80. I read the releveant in fo in the docs but I am not keen to redo the entire installation. Is it possible to have a URL rewritten to another on a different port (apache) ? Not sure if I am expressing myself correctly. I want all traffic to be relayed on the same machine from apache to tomcat. Can this be done ? Do any of you have any pointers ? Looking forward to any advice. Best regards, Hennie -------------------------------------------------------------------------------- This transmission is for the intended addressee only and is confidential information. If you have received this transmission in error, please delete it and notify the sender. The contents of this e-mail are the opinion of the writer only and are not endorsed by Sabinet Online Limited unless expressly stated otherwise. -------------------------------------------------------------------------------- From tdonohue at uiuc.edu Mon Oct 3 10:55:41 2005 From: tdonohue at uiuc.edu (Tim Donohue) Date: Mon, 03 Oct 2005 09:55:41 -0500 Subject: [Dspace-general] redirecting port 8080 to 80 In-Reply-To: <43412EF7.1000408@sabinet.co.za> References: <43412EF7.1000408@sabinet.co.za> Message-ID: <4341466D.9060300@uiuc.edu> Hennie, Here at UIUC, we have DSpace 1.3.1 running on Tomcat with Apache, on a RedHat box (RHEL 3.2). We have Apache 2.0.46 redirecting to Tomcat 5.5.9 for all DSpace requests using the "mod_jk" Connector (available at http://jakarta.apache.org/site/downloads/downloads_tomcat.html). Here's the basic steps: 1) Get DSpace up and running on Tomcat. Make sure you can access it through port 8080 (e.g. http://my-host:8080/dspace). It sounds like you already have this in place, from your email. 2) Follow the installation & configuration instructions for Apache HTTPD that I've attached in a PDF. These instructions are occasionally a little specific to RedHat, but hopefully they will give you at least a general idea of how to get the "mod_jk" Connector setup to connect Apache & Tomcat. I've copied these instructions from a larger installation document that I've created....but I didn't want to send out the larger document across this mailing list, so I just cut out the sections pertaining to configuring Apache with mod_jk. 3) After you have "mod_jk" installed, make sure your "jk.conf" (or "httpd.conf") has a line like: JkMount /* ajp13 (if your DSpace has a path like "http://my-hostname:8080/") OR JkMount /dspace/* ajp13 (if your DSpace has a path like "http://my-hostname:8080/dspace/") This line will forward all connections to that particular "context" in Apache to the AJP13 connector (which, if you've configured it right, will forward on to port 8080, Tomcat!) Let me know if you have any questions...again, we don't have Solaris here, so I most likely cannot answer any Solaris specific questions. But, I may be able to clear up any configuration questions you may have. Tim -- ======================================== Timothy G. Donohue Research Programmer, Illinois Digital Environment for Access to Learning and Scholarship (IDEALS) 52 Grainger Engineering Library University of Illinois at Urbana-Champaign email: tdonohue at uiuc.edu phone: (217) 244-7809 fax: (217) 244-7764 ======================================== Hennie Rautenbach wrote: > Hi there, > > I have installed dspace on a Sun machine (Solaris 10), which already > has apache running on it. Folk here would prefer to have dspace > running on port 80. I read the releveant in fo in the docs but I am > not keen to redo the entire installation. Is it possible to have a URL > rewritten to another on a different port (apache) ? Not sure if I am > expressing myself correctly. I want all traffic to be relayed on the > same machine from apache to tomcat. Can this be done ? Do any of you > have any pointers ? > > Looking forward to any advice. > > Best regards, > > Hennie > > > > -------------------------------------------------------------------------------- > > > This transmission is for the intended addressee only and is confidential > information. If you have received this transmission in error, please > delete it and notify the sender. The contents of this e-mail are the > opinion of the writer only and are not endorsed by Sabinet Online > Limited unless expressly stated otherwise. > -------------------------------------------------------------------------------- > > _______________________________________________ > Dspace-general mailing list > Dspace-general at mit.edu > http://mailman.mit.edu/mailman/listinfo/dspace-general > -------------- next part -------------- A non-text attachment was scrubbed... Name: Apache_mod_jk.pdf Type: application/pdf Size: 17616 bytes Desc: not available Url : http://mailman.mit.edu/pipermail/dspace-general/attachments/20051003/811f5289/attachment.pdf From hennie at sabinet.co.za Mon Oct 3 10:59:10 2005 From: hennie at sabinet.co.za (Hennie Rautenbach) Date: Mon, 03 Oct 2005 16:59:10 +0200 Subject: [Dspace-general] redirecting port 8080 to 80 In-Reply-To: <4341466D.9060300@uiuc.edu> References: <43412EF7.1000408@sabinet.co.za> <4341466D.9060300@uiuc.edu> Message-ID: <4341473E.4050008@sabinet.co.za> Tim Donohue wrote: > Here at UIUC, we have DSpace 1.3.1 running on Tomcat with Apache, on a > RedHat box (RHEL 3.2). > We have Apache 2.0.46 redirecting to Tomcat 5.5.9 for all DSpace > requests using the "mod_jk" Connector (available at > http://jakarta.apache.org/site/downloads/downloads_tomcat.html). Thanks very much. I will give it a try. Feedback to follow ! Regards, Hennie -------------------------------------------------------------------------------- This transmission is for the intended addressee only and is confidential information. If you have received this transmission in error, please delete it and notify the sender. The contents of this e-mail are the opinion of the writer only and are not endorsed by Sabinet Online Limited unless expressly stated otherwise. -------------------------------------------------------------------------------- From wenhsi_chang at yahoo.com Mon Oct 3 12:44:24 2005 From: wenhsi_chang at yahoo.com (wenhsi chang) Date: Tue, 4 Oct 2005 00:44:24 +0800 (CST) Subject: [Dspace-general] Does anyone know which archives use Dspace to preserve their electronic documents? Message-ID: <20051003164425.11156.qmail@web33805.mail.mud.yahoo.com> Hello everyone, Does anyone know which archives use Dspace to preserve their electronic documents? Are most users of Dspace those academic libraries or university libraries? I work for an Archives, so I would like to know if any example I can learn. Thanks. Wen-Hsi Chang _________________________________________________________ 雅虎免费G邮箱-中国第一绝无垃圾邮件骚超大邮箱 http://cn.mail.yahoo.com/?id=77071 From kenzie at MIT.EDU Mon Oct 3 15:18:32 2005 From: kenzie at MIT.EDU (MacKenzie Smith) Date: Mon, 03 Oct 2005 15:18:32 -0400 Subject: [Dspace-general] data sets In-Reply-To: <200510030757.j937vCHa005663@mail1.slu.se> Message-ID: <5.2.1.1.2.20051003150713.028c9e70@hesiod> An HTML attachment was scrubbed... URL: http://mailman.mit.edu/pipermail/dspace-general/attachments/20051003/4ac561d1/attachment.htm From kenzie at MIT.EDU Mon Oct 3 15:24:29 2005 From: kenzie at MIT.EDU (MacKenzie Smith) Date: Mon, 03 Oct 2005 15:24:29 -0400 Subject: [Dspace-general] Does anyone know which archives use Dspace to preserve their electronic documents? In-Reply-To: <20051003164425.11156.qmail@web33805.mail.mud.yahoo.com> Message-ID: <5.2.1.1.2.20051003151843.0296b008@hesiod> Hi, I think that most institutions running DSpace are planning to preserve the contents as much as possible, and that is certainly what the system was designed to help with. To see who is using it look here http://wiki.dspace.org/DspaceInstances. They are mainly research libraries, but there are some archives, museums, research institutes, and other types of organizations using it too. Registration is not mandatory so there may be other archives out there who are experimenting with it or developing a digital archive service but who haven't 'gone public'. At MIT, the archives are part of the libraries and they are heavily involved in our DSpace at MIT service and in local policy development. I think that's probably true at other universities too, so the distinction you make between libraries and archives around digital archiving systems like DSpace may not be very meaningful in the long run... MacKenzie At 12:44 AM 10/4/2005 +0800, wenhsi chang wrote: >Hello everyone, > >Does anyone know which archives use Dspace to preserve >their electronic documents? Are most users of Dspace >those academic libraries or university libraries? I >work for an Archives, so I would like to know if any >example I can learn. > >Thanks. > >Wen-Hsi Chang MacKenzie Smith Associate Director for Technology MIT Libraries Building E25-131d 77 Massachusetts Avenue Cambridge, MA 02139 (617)253-8184 kenzie at mit.edu From tdm27 at cam.ac.uk Tue Oct 4 08:03:07 2005 From: tdm27 at cam.ac.uk (Tom De Mulder) Date: Tue, 4 Oct 2005 13:03:07 +0100 (BST) Subject: [Dspace-general] data sets In-Reply-To: <5.2.1.1.2.20051003150713.028c9e70@hesiod> References: <5.2.1.1.2.20051003150713.028c9e70@hesiod> Message-ID: On Mon, 3 Oct 2005, MacKenzie Smith wrote: >I also recommend looking at what Cambridge University is doing with small >molecule data in DSpace at Cambridge... >https://www.dspace.cam.ac.uk/handle/1810/724. If the data is encoded in >xml and can be divided into individual small items of data than you can >do a bit more, and the information is included in search engines like >Google. We've actually also got a small set of archaeological data (on-site measurements of an excavation). The decision there (made by the researcher himself) was to store these as a simple tab-separated value (text) file which would lose the functionality of the original but be widely readable and indexable. In a similar vein, we have a large selection of horse paleopathology images, which are in fact part of a larger dataset describing the original archaeological finds of the horse bones (measurements, location, etc). In that case, the original data was in a database, and we extracted it (again) as TSV and asked the researcher for a description of all the fields. This description was stored alongside the data, and while the total doesn't have the immediate functionality of the original database, it is possible to reconstruct it completely, with the added advantage that it can be done by anyone who can open plain text files, rather than requiring specialist database software. Our approach now is to store data in as many formats as we possibly can, migrating it just before ingest. In effect, this tends to mean that we make a tsv copy of the data and store that alongside the original where possible. We also apply this to more common data formats where we can, storing different formats alongside one another in the hope that at least one version will be readable/usable by the eventual consumer. Kind regards, -- Tom De Mulder - Cambridge University Computing Service New Museums Site, Pembroke Street, Cambridge CB2 3QH -> 04/10/2005 : The Moon is Waxing Crescent (3% of Full) From dlcooper at umd.edu Tue Oct 4 15:06:56 2005 From: dlcooper at umd.edu (David Cooper) Date: Tue, 04 Oct 2005 15:06:56 -0400 Subject: [Dspace-general] Position vacancy at the University of Maryland Message-ID: <4342D2D0.2050106@umd.edu> Title: Librarian for Digital Repository at University of Maryland Category: Non-Tenured Faculty, Full-Time (12 Month Appointment) Salary: Commensurate with qualifications and experience The University of Maryland Libraries is seeking qualified applicants for the position of Librarian (Coordinator) for Digital Repository at the University of Maryland (DRUM). This position reports to the Collection Management Team Leader and is responsible for the leadership of the DRUM Team. The DRUM Coordinator may be responsible for the supervision of one .5 FTE graduate assistant. The University Libraries use DSpace for the management and accessibility of its digital repository. The collection currently consists of more than 2,500 items and averages 900 searches per month. DRUM is accessible at http://drum.umd.edu Responsibilities: The DRUM Coordinator is responsible for advancing the development of the campus digital repository and in promoting repository services to the University of Maryland campus. The coordinator provides direct user support, education, and documentation, develops new collections within the repository, and develops and implements public relations and marketing of programs in coordination with the Public Relations team. The Coordinator serves as liaison to Information Technology Division and Technical Services Division staff contributing to the service and provides training for Library staff. The DRUM Coordinator serves as an expert on institutional repositories and other open access repositories as well as copyright issues surrounding institutional repositories. Qualifications: Required: An appropriate graduate degree, which may include an ALA-accredited Master's degree in Library or Information Science or a Master's degree in Information Management, but other related degrees may be equally relevant. At least one year's experience with digital libraries, electronic archives, institutional repositories, or an equivalent open access vehicle. Strong written and oral communication skills. Demonstrated initiative and creativity. Ability to work collaboratively in a team environment and to work effectively within a complex academic environment. Commitment to ongoing professional growth and development. Commitment to principles of diversity. Preferred: Knowledge of basic metadata schemas, especially Dublin core, knowledge of HTML. Teaching experience. Strong public service focus. Position is appointed to Librarian Faculty ranks. Appointment rank is based on the successful applicant's experience and relevant credentials. For additional information, consult the following website: http://www.lib.umd.edu/PUB/APPSC.doc. Applications: For full consideration, submit cover letter, resume, and names/addresses of three references by October 31, 2005. Applications accepted until position is filled. Send to Ray Foster, Personnel, McKeldin Library, University of Maryland, College Park, MD 20742-7011. E-mail to gfernan1 at umd.edu . Fax:301-314-9960. UM Libraries' website: http://www.lib.umd.edu The University of Maryland is an EEO/AA employer. -- ------ David Cooper Information Technology Division University of Maryland Libraries McKeldin Library College Park, MD 20742 Phone: 301-405-9192 dlcooper at umd.edu -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mailman.mit.edu/pipermail/dspace-general/attachments/20051004/94087d4b/attachment.htm From scott.yeadon at anu.edu.au Wed Oct 5 01:03:07 2005 From: scott.yeadon at anu.edu.au (Scott Yeadon) Date: Wed, 05 Oct 2005 15:03:07 +1000 Subject: [Dspace-general] DSpace 1.3.2 released Message-ID: <43435E8B.4070907@anu.edu.au> Dear All, The DSpace community is pleased to announce the release of DSpace 1.3.2. This stable release introduces several new features developed by members of the DSpace community: - DSpace UI XHTML/WAI compliant - Configure metadata fields shown on simple item display - Oracle compatibility fixes - Documentation updates - Numerous bug fixes The documentation for this release is bundled within the package. DSpace 1.3.2 can be downloaded from the files area at http://sourceforge.net/projects/dspace/ or from CVS using the tag dspace-1_3_2. Please use the mailing lists available at http://sourceforge.net/mail/?group_id=19984 to provide feedback on this release. Those wishing to do development work with DSpace are strongly encouraged to obtain the source code using CVS. This is very straightforward and a guide to doing this is available here: http://wiki.dspace.org/ContributionGuidelines We would also like to take this opportunity to invite you all to participate in the DSpace development process. Extra developer hands are always welcome, but there are other ways you can help: - Test the system and report bugs - Provide documentation (for end users and institutions, as well as technical) - Share your deployment experiences - Donate content and metadata for testing and research - Share your technical experience and ideas Please visit the DSpace Wiki to see the various resources and collaboration tools available to the DSpace community: http://wiki.dspace.org/DspaceResources Regards, The DSpace Committers From hgxu at hotmail.com Tue Oct 11 21:42:58 2005 From: hgxu at hotmail.com (hong xu) Date: Wed, 12 Oct 2005 09:42:58 +0800 Subject: [Dspace-general] faculty's attitude to IRs and factors affecting it Message-ID: Dear all: The faculty's attutude to IRs is very important. What are the factors affecting faculty to contribute their production to IRs and use it? I need some inspiration. Hong From kenzie at MIT.EDU Wed Oct 12 10:38:49 2005 From: kenzie at MIT.EDU (MacKenzie Smith) Date: Wed, 12 Oct 2005 10:38:49 -0400 Subject: [Dspace-general] Editorial in The Scientist, October 10, 2005 issue Message-ID: <5.2.1.1.2.20051012102641.025f8918@hesiod> An HTML attachment was scrubbed... URL: http://mailman.mit.edu/pipermail/dspace-general/attachments/20051012/eea76f33/attachment.htm From hennie at sabinet.co.za Thu Oct 13 09:21:56 2005 From: hennie at sabinet.co.za (Hennie Rautenbach) Date: Thu, 13 Oct 2005 15:21:56 +0200 Subject: [Dspace-general] redirecting port 8080 to 80 In-Reply-To: <4341466D.9060300@uiuc.edu> References: <43412EF7.1000408@sabinet.co.za> <4341466D.9060300@uiuc.edu> Message-ID: <434E5F74.3030305@sabinet.co.za> Tim Donohue wrote: > Here at UIUC, we have DSpace 1.3.1 running on Tomcat with Apache, on a > RedHat box (RHEL 3.2). > We have Apache 2.0.46 redirecting to Tomcat 5.5.9 for all DSpace > requests using the "mod_jk" Connector (available at > http://jakarta.apache.org/site/downloads/downloads_tomcat.html). > > Here's the basic steps: Thanks very much for these instructions. I managed to get most of it right. I have one problem which I hope is small :-) When restarting apache & dspace all the existing virtual hosts (part o the existing apache config) get the jacarta tomcat page and no longer their own configured html pages... Any idea what I have done wrong ? Regards, Hennie -------------------------------------------------------------------------------- This transmission is for the intended addressee only and is confidential information. If you have received this transmission in error, please delete it and notify the sender. The contents of this e-mail are the opinion of the writer only and are not endorsed by Sabinet Online Limited unless expressly stated otherwise. -------------------------------------------------------------------------------- From tdonohue at uiuc.edu Thu Oct 13 10:39:55 2005 From: tdonohue at uiuc.edu (Tim Donohue) Date: Thu, 13 Oct 2005 09:39:55 -0500 Subject: [Dspace-general] redirecting port 8080 to 80 In-Reply-To: <434E5F74.3030305@sabinet.co.za> References: <43412EF7.1000408@sabinet.co.za> <4341466D.9060300@uiuc.edu> <434E5F74.3030305@sabinet.co.za> Message-ID: <434E71BB.4050907@uiuc.edu> Hennie, It sounds like it has to do with whatever you specified as your "JkMount" in either your "jk.conf" (if you have a separate config file for mod_jk) or your "httpd.conf" (if you just put the mod_jk configurations in the HTTPD config file). If you specified the "JkMount" to be as follows: JkMount /* ajp13 Then, *all* of your virtual hosts on that machine will be forwarded from Apache to your "ajp13" connector, which forwards them on to Tomcat. So, if you have the following virtual hosts in Apache: http://my-server-name/dspace/ http://my-server-name/host2/ http://my-server-name/host3/ Then, they will *all* be forwarded to Tomcat! If you only want the Apache "dspace" virtual host to be forwarded through to Tomcat, then you need a JkMount similar to the following: JkMount /dspace/* ajp13 (this means that only URLs matching http://my-server-name/dspace/* will be forwarded to Tomcat). Does this make sense? Tim Hennie Rautenbach wrote: > Tim Donohue wrote: > >> Here at UIUC, we have DSpace 1.3.1 running on Tomcat with Apache, on >> a RedHat box (RHEL 3.2). >> We have Apache 2.0.46 redirecting to Tomcat 5.5.9 for all DSpace >> requests using the "mod_jk" Connector (available at >> http://jakarta.apache.org/site/downloads/downloads_tomcat.html). >> >> Here's the basic steps: > > > > > Thanks very much for these instructions. I managed to get most of it > right. I have one problem which I hope is small :-) > > When restarting apache & dspace all the existing virtual hosts (part o > the existing apache config) get the jacarta tomcat page and no longer > their own configured html pages... > > Any idea what I have done wrong ? > > Regards, > > Hennie > > > -------------------------------------------------------------------------------- > > > This transmission is for the intended addressee only and is confidential > information. If you have received this transmission in error, please > delete it and notify the sender. The contents of this e-mail are the > opinion of the writer only and are not endorsed by Sabinet Online > Limited unless expressly stated otherwise. > -------------------------------------------------------------------------------- > > -- ======================================== Timothy G. Donohue Research Programmer, Illinois Digital Environment for Access to Learning and Scholarship (IDEALS) 52 Grainger Engineering Library University of Illinois at Urbana-Champaign email: tdonohue at uiuc.edu phone: (217) 244-7809 fax: (217) 244-7764 ======================================== From hennie at sabinet.co.za Thu Oct 13 12:20:01 2005 From: hennie at sabinet.co.za (Hennie Rautenbach) Date: Thu, 13 Oct 2005 18:20:01 +0200 Subject: [Dspace-general] redirecting port 8080 to 80 In-Reply-To: <434E71BB.4050907@uiuc.edu> References: <43412EF7.1000408@sabinet.co.za> <4341466D.9060300@uiuc.edu> <434E5F74.3030305@sabinet.co.za> <434E71BB.4050907@uiuc.edu> Message-ID: <434E8931.4000003@sabinet.co.za> Tim Donohue wrote: > > Does this make sense? Thanks Tim - yes it does. I will try in an hour or so. Machine is in production and getting downtime (fiddling) on it is a rare luxury :-) I will confirm if (when) it works. Kind regards and thanks very much for the assistance, Hennie (www.sabinet.co.za - South Africa) From hennie at sabinet.co.za Thu Oct 13 12:36:25 2005 From: hennie at sabinet.co.za (Hennie Rautenbach) Date: Thu, 13 Oct 2005 18:36:25 +0200 Subject: [Dspace-general] redirecting port 8080 to 80 In-Reply-To: <434E71BB.4050907@uiuc.edu> References: <43412EF7.1000408@sabinet.co.za> <4341466D.9060300@uiuc.edu> <434E5F74.3030305@sabinet.co.za> <434E71BB.4050907@uiuc.edu> Message-ID: <434E8D09.7040703@sabinet.co.za> Tim Donohue wrote: > > If you specified the "JkMount" to be as follows: > JkMount /* ajp13 Fixed as per your instructions above. Thanks very much. Best regards, Hennie From courtois at ksu.edu Thu Oct 13 16:00:02 2005 From: courtois at ksu.edu (courtois@ksu.edu) Date: Thu, 13 Oct 2005 15:00:02 -0500 Subject: [Dspace-general] faculty's attitude to IRs and factors affecting it In-Reply-To: References: Message-ID: <1129233602.434ebcc2ae9c6@webmail.ksu.edu> I've found it helpful to mention that articles available in open access archives are cited more often than articles published in journals alone. The increase in citation rates is dramatic, ranging from 40% to 250% depending upon the discipline. I refer to these studies: Open Citation Project ? Reference Linking and Citation Analysis for Open Archives (http://opcit.eprints.org/oacitation-biblio.html) Antelman, Kristin. ?Do Open Access Articles Have a Greater Research Impact?? College and Research Libraries 65(5):372-382, September 2004 (http://eprints.rclis.org/archive/00002309/01/do_open_access_CRL.pdf). Marty Martin Courtois Information Technology Assistance Center 509 Hale Library Kansas State University Manhattan KS 66502 Phone: 785 532-4428 Fax: 785 532-3199 E-mail: courtois at ksu.edu Quoting hong xu : > Dear all: > > The faculty's attutude to IRs is very important. What are the factors > affecting faculty to contribute their production to IRs and use it? I > need > some inspiration. > > Hong > > > _______________________________________________ > Dspace-general mailing list > Dspace-general at mit.edu > http://mailman.mit.edu/mailman/listinfo/dspace-general > > From cmcphee at ucalgary.ca Thu Oct 13 16:11:55 2005 From: cmcphee at ucalgary.ca (Colleen McPhee) Date: Thu, 13 Oct 2005 14:11:55 -0600 Subject: [Dspace-general] Editing Collections Message-ID: <200510132013.j9DKDG107464@smtp2.ucalgary.ca> Hi I have recently loaded up a test collection and am wondering if it's feasible to edit the metadata and/or delete items once these items are loaded up into the live collection. Thanks, Colleen Colleen McPhee, BA, MLIS -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mailman.mit.edu/pipermail/dspace-general/attachments/20051013/a93a45b6/attachment.htm From hennie at sabinet.co.za Fri Oct 14 02:34:10 2005 From: hennie at sabinet.co.za (Hennie Rautenbach) Date: Fri, 14 Oct 2005 08:34:10 +0200 Subject: [Dspace-general] virtual host question - apache In-Reply-To: <434E8D09.7040703@sabinet.co.za> References: <43412EF7.1000408@sabinet.co.za> <4341466D.9060300@uiuc.edu> <434E5F74.3030305@sabinet.co.za> <434E71BB.4050907@uiuc.edu> <434E8D09.7040703@sabinet.co.za> Message-ID: <434F5162.3060300@sabinet.co.za> Hi there, Our dspace server is now accesable on port 80. Thanks for the assistance. The next obstacle is to get rid of the trailing "/dspace/" in the URL. I'd like to create a virtual host entry for our dspace server in the apache httpd.conf file. Do any of you perhaps have an example of such a virtual host entry where, when I open "dspace.mydomain.com" it will automatically refer to "dspace.mydomain.com/dspace/" ? Regards, Hennie -------------------------------------------------------------------------------- This transmission is for the intended addressee only and is confidential information. If you have received this transmission in error, please delete it and notify the sender. The contents of this e-mail are the opinion of the writer only and are not endorsed by Sabinet Online Limited unless expressly stated otherwise. -------------------------------------------------------------------------------- From vinopal at nyu.edu Fri Oct 14 14:00:57 2005 From: vinopal at nyu.edu (Jennifer Vinopal) Date: Fri, 14 Oct 2005 14:00:57 -0400 Subject: [Dspace-general] faculty's attitude to IRs and factors affecting it Message-ID: <3049C8C0-09AB-46CD-887D-AFC77ED1747B@nyu.edu> Hi Hong et. al., There was an interesting article about this topic in dlib-magazine in January "Understanding Faculty to Improve Content Recruitment for Institutional Repositories" by Nancy Fried Foster and Susan Gibbons http://www.dlib.org/dlib/january05/foster/01foster.html Best, Jennifer ================================================= Jennifer Vinopal / vinopal at nyu.edu ~ Librarian for French & Italian Language and Literature ~ Head, Studio for Digital Projects and Research ~ Interim Program Manager, Digital Library Team Bobst Library, New York University 70 Washington Square South, New York, NY 10012 -> v: 212.998.2522 ================================================= From harnad at ecs.soton.ac.uk Thu Oct 13 21:20:54 2005 From: harnad at ecs.soton.ac.uk (Stevan Harnad) Date: Fri, 14 Oct 2005 02:20:54 +0100 (BST) Subject: [Dspace-general] Please Register your Institutional Repositories and Policies Message-ID: ** Apologies for Cross-Posting ** Dear All: If you have an institutional repository, please register it at: http://archives.eprints.org/eprints.php?action=add Then the growth of your archive will be automatically monitored and available for comparative statistics. (See the various displays avaliable in the Registry.) And everyone will have a clear idea of how the number of IRs as well as the number of items in them is growing. And if your institution has an official self-archiving policy, please register it at: http://www.eprints.org/openaccess/policysignup/sign.php Then other institutions can follow your example. Many thanks, Stevan Harnad From scott.yeadon at anu.edu.au Sun Oct 16 19:14:35 2005 From: scott.yeadon at anu.edu.au (Scott Yeadon) Date: Mon, 17 Oct 2005 09:14:35 +1000 Subject: [Dspace-general] CALL FOR PRESENTATIONS - DSpace User Group Meeting, Sydney 2006 (Reminder) Message-ID: <4352DEDB.407@anu.edu.au> Reminder: Submissions deadline is *31 October 2005 *CALL FOR PRESENTATIONS ======================== DSpace User Group Meeting, Sydney 2006 - Building Communities with DSpace ========================================================== Submissions for presentations are being sought for the DSpace User Group Meeting, Sydney 2006. Please refer to http://www.apsr.edu.au/Open_Repositories_2006/call.htm for more details. Registration details for the DSpace User Group Meeting and Open Repositories event will be available early October. Background ========= The University of Sydney in collaboration with the University of Technology, Sydney will host a two day DSpace Users Group meeting over 31 January - 1 February 2006 as part of the APSR-sponsored Open Repositories 2006 conference next year. The theme of the meeting is "Building Communities with DSpace". It will address issues with implementing an institutional repository based around DSpace and will focus on recent DSpace technical developments from institutions around the world. Further information on the User Group Meeting and the Open Repositories 2006 conference can be found at http://www.apsr.edu.au/Open_Repositories_2006/index.htm From hennie at sabinet.co.za Mon Oct 17 04:05:01 2005 From: hennie at sabinet.co.za (Hennie Rautenbach) Date: Mon, 17 Oct 2005 10:05:01 +0200 Subject: [Dspace-general] virtual host question - apache In-Reply-To: <434E8D09.7040703@sabinet.co.za> References: <43412EF7.1000408@sabinet.co.za> <4341466D.9060300@uiuc.edu> <434E5F74.3030305@sabinet.co.za> <434E71BB.4050907@uiuc.edu> <434E8D09.7040703@sabinet.co.za> Message-ID: <43535B2D.6030908@sabinet.co.za> I wrote: > The next obstacle is to get rid of the trailing "/dspace/" in the URL. > > I'd like to create a virtual host entry for our dspace server in the > apache httpd.conf file. Do any of you perhaps have an example of such a > virtual host entry where, when I open "dspace.mydomain.com" it will > automatically refer to "dspace.mydomain.com/dspace/" ? I had no response but found a workaround to get rid of the trailing /dspace/ in the dspace URL . (quick & dirty) In [dspace:/opt/jakarta-tomcat-5.5.9/webapps] I renamed the "ROOT" directory to "ROOT.ORIG" and then created a symlink from ~/webapps/dspace/ to ~/webapps/ROOT/ Voila. If this is a clear violation of 'whatever' I'd appreciate it if you can point it out to me. Server is up and running. Solaris 10 running of a Siemens Fujitsu box, and using mod_jk to redirect queries from apache to jakarata-tomcat. In my experience it wasn't so "clear cut" to get the entire installation working on a server running Solaris. Most of the dependencies had to be built from source, which had their own problems. Now to start harvesting. Thanks again for all assistance. Much appreciated. Take care, I am unsubscribing. Hennie sabinet.co.za - South Africa -------------------------------------------------------------------------------- This transmission is for the intended addressee only and is confidential information. If you have received this transmission in error, please delete it and notify the sender. The contents of this e-mail are the opinion of the writer only and are not endorsed by Sabinet Online Limited unless expressly stated otherwise. -------------------------------------------------------------------------------- From courtois at ksu.edu Wed Oct 19 11:08:57 2005 From: courtois at ksu.edu (courtois@ksu.edu) Date: Wed, 19 Oct 2005 10:08:57 -0500 Subject: [Dspace-general] Retain "DSpace" Name? Message-ID: <1129734537.43566189aca3b@webmail.ksu.edu> How have you reconciled the DSpace label with the name of your institutional repository? Many institutions give a unique name to their DSpace installation, and we're considering calling our repository the "K-State Research Exchange" (K-REx). It seems there would be some benefit to users if we go through all DSpace files and change every occurence of "DSpace" to "K-REx?" For example, "My DSpace" would become "My K-REx." On the other hand, the term "DSpace" is used in so many files and shows up on so many different pages, I wonder if it would be better to retain the use of "DSpace" and help the user to understand that K-REx is "powered by" DSpace. Also, if we decide to replace every occurence of "DSpace" with "K-REx," we're sort of sentenced to redoing all these changes each time we install a new DSpace version. There seem to be a variety of practices on this issue, so I'm interested to hear from folks at uniquely named DSpace installations: DRUM, IDeA, KU ScholarWorks, T-Space, SMARTech, MSpace, UR Research, Edinburgh Research Archive, to name just a few. Thanks for your thoughts, Marty Martin Courtois Information Technology Assistance Center 509 Hale Library Kansas State University Manhattan KS 66502 Phone: 785 532-4428 Fax: 785 532-3199 E-mail: courtois at ksu.edu From catherine.jannik at library.gatech.edu Wed Oct 19 11:31:11 2005 From: catherine.jannik at library.gatech.edu (Catherine Jannik) Date: Wed, 19 Oct 2005 11:31:11 -0400 Subject: [Dspace-general] Retain "DSpace" Name? In-Reply-To: <1129734537.43566189aca3b@webmail.ksu.edu> References: <1129734537.43566189aca3b@webmail.ksu.edu> Message-ID: <435666BF.6000400@library.gatech.edu> Marty, Here at Georgia Tech we decided to change all instances of "DSpace" to "SMARTech" with the exception of the one in the footer (DSpace Software Copyright ? 2002-2004 MIT and Hewlett-Packard - Feedback). There were two main reasons for this decision; we wanted to brand our IR and eliminate confusion that might be caused by using "DSpace" and "SMARTech," and the possibility that sometime in the future we might want to change the platform on which SMARTech runs (also why we didn't use "space" in the name of our IR). In "About SMARTech" one of our FAQs reads as follows: Where can I learn more about DSpace, the software behind SMARTech? The DSpace home page at http://dspace.org/. Hope this helps, Catherine courtois at ksu.edu wrote: > How have you reconciled the DSpace label with the name of your > institutional repository? > > Many institutions give a unique name to their DSpace installation, and > we're considering calling our repository the "K-State Research > Exchange" (K-REx). It seems there would be some benefit to users if we > go through all DSpace files and change every occurence of "DSpace" to > "K-REx?" For example, "My DSpace" would become "My K-REx." > > On the other hand, the term "DSpace" is used in so many files and shows > up on so many different pages, I wonder if it would be better to retain > the use of "DSpace" and help the user to understand that K-REx is > "powered by" DSpace. Also, if we decide to replace every occurence of > "DSpace" with "K-REx," we're sort of sentenced to redoing all these > changes each time we install a new DSpace version. > > There seem to be a variety of practices on this issue, so I'm interested > to hear from folks at uniquely named DSpace installations: DRUM, IDeA, > KU ScholarWorks, T-Space, SMARTech, MSpace, UR Research, Edinburgh > Research Archive, to name just a few. > > Thanks for your thoughts, > > Marty > > Martin Courtois > Information Technology Assistance Center > 509 Hale Library > Kansas State University > Manhattan KS 66502 > Phone: 785 532-4428 > Fax: 785 532-3199 > E-mail: courtois at ksu.edu > > > > _______________________________________________ > Dspace-general mailing list > Dspace-general at mit.edu > http://mailman.mit.edu/mailman/listinfo/dspace-general > From rfyffe at ku.edu Wed Oct 19 11:34:37 2005 From: rfyffe at ku.edu (Fyffe, Richard) Date: Wed, 19 Oct 2005 10:34:37 -0500 Subject: [Dspace-general] Retain "DSpace" Name? Message-ID: Marty, At the University of Kansas we consider the repository program ("program" meaning "concept") to transcend any particular platform. We use DSpace now, but someday that will change. And although the DSpace brand is somewhat useful for marketing to faculty, we don't want the repository to be thought of as identical to DSpace. So we have, yes, made the effort to replace all the occurrences of "DSpace" in the screens with "KU ScholarWorks." ----------------------------------------------------------------- Richard Fyffe Assistant Dean for Scholarly Communication University of Kansas Libraries 351 Watson Library 1425 Jayhawk Blvd. Lawrence KS 66045-7544 Voice: 785.864.4611 Fax: 785.864.5311 Email: rfyffe at ku.edu http://www.lib.ku.edu/scholcomm/ https://kuscholarworks.ku.edu/ http://kudiglib.ku.edu/ -----Original Message----- From: dspace-general-bounces at mit.edu [mailto:dspace-general-bounces at mit.edu]On Behalf Of courtois at ksu.edu Sent: Wednesday, October 19, 2005 10:09 AM To: dspace-general at mit.edu Subject: [Dspace-general] Retain "DSpace" Name? How have you reconciled the DSpace label with the name of your institutional repository? Many institutions give a unique name to their DSpace installation, and we're considering calling our repository the "K-State Research Exchange" (K-REx). It seems there would be some benefit to users if we go through all DSpace files and change every occurence of "DSpace" to "K-REx?" For example, "My DSpace" would become "My K-REx." On the other hand, the term "DSpace" is used in so many files and shows up on so many different pages, I wonder if it would be better to retain the use of "DSpace" and help the user to understand that K-REx is "powered by" DSpace. Also, if we decide to replace every occurence of "DSpace" with "K-REx," we're sort of sentenced to redoing all these changes each time we install a new DSpace version. There seem to be a variety of practices on this issue, so I'm interested to hear from folks at uniquely named DSpace installations: DRUM, IDeA, KU ScholarWorks, T-Space, SMARTech, MSpace, UR Research, Edinburgh Research Archive, to name just a few. Thanks for your thoughts, Marty Martin Courtois Information Technology Assistance Center 509 Hale Library Kansas State University Manhattan KS 66502 Phone: 785 532-4428 Fax: 785 532-3199 E-mail: courtois at ksu.edu _______________________________________________ Dspace-general mailing list Dspace-general at mit.edu http://mailman.mit.edu/mailman/listinfo/dspace-general From jhwalker at MIT.EDU Wed Oct 19 13:44:58 2005 From: jhwalker at MIT.EDU (Julie Harford Walker) Date: Wed, 19 Oct 2005 13:44:58 -0400 Subject: [Dspace-general] Advisory Board Nominations Message-ID: <5.2.1.1.2.20051018204403.01177088@po10.mit.edu> ************************************************************************************************************************ Request for Nominations to the DSpace Federation Governance and Business Planning Advisory Board ************************************************************************************************************************ Based on input from the community at the July 2005 DSpace User Group meeting at Cambridge University, HP and MIT are convening an advisory board to start thinking about more formal governance for the DSpace Federation. We are in the process of assembling a short-list of members and welcome suggestions from the community in the form of nominations, either of yourself or on behalf of someone else. The advisory board will be charged with drafting a recommendation for an inclusive, representative governance structure and funding mechanisms (as appropriate) to advance the DSpace community. The board will not be addressing issues that relate to the software code itself, as presently managed by the committers. Issues that the board will address include: - What is the DSpace community? - Who should own the intellectual property? - What kind of central governance structure would be useful? - What funding is required, if any, to sustain any centralized activity and how will that be obtained and managed? We intend that the board will be around 12 members, comprised of leaders from higher education and industry that are stakeholders in the DSpace community as well as experts on open source software. The time commitment will include attendance at one meeting at MIT in late 2005 or early 2006 and participation on two follow-up conference calls. Funding for travel and accommodations to the meeting will be provided. To nominate someone, please email the person's name, contact information, a brief biography and a few sentences about why you think this person would be a strong contributor on this board to Julie Walker at jhwalker at mit.edu. Nominations should be submitted no later than Monday October 24 for consideration. Thank you! From robert.tansley at hp.com Wed Oct 19 14:12:37 2005 From: robert.tansley at hp.com (Tansley, Robert) Date: Wed, 19 Oct 2005 14:12:37 -0400 Subject: [Dspace-general] Retain "DSpace" Name? Message-ID: <19ADCC0B9D4CAD4582BB9900BBCE357401AA0CDE@tayexc13.americas.cpqcorp.net> I take it as a great complement that our software platform has become synonymous with the service it is used to provide (you don't see many "Apache HTTPD @ MIT"s); but yes, using "DSpace" can cause confusion, as it's now used to refer so many things - the software itself, the community around the software, the group of universities using the platform, a service provided by an institution, and potentially in the future a non-profit entity set up to govern DSpace etc. etc. So it's perfectly consistent and reasonable to call your service something other than the name of the software platform behind it. I think it would be useful to mention that it's the DSpace software behind the scenes, so users familiar with the system know what to expect. At a practical level, fortunately, as of DSpace version 1.3, it has become much, much easier to call your repository something different. All of the language used in the user interface has been put in one file, to make it easier to modify and translate. You just need to change DSpace to K-Rex in that file, and you should be done. You may have to perform this again when you upgrade, since that 'language pack' will change between versions, but you won't have to touch any code and hopefully another search/replace will do the trick. (Managing an evolving user interface in multiple languages, and multiplying that by the different customisations that people make is quite tricky). Robert TANSLEY / Digital Media Systems Programme / HP Labs http://www.hpl.hp.com/personal/Robert_Tansley/ > -----Original Message----- > From: dspace-general-bounces at mit.edu > [mailto:dspace-general-bounces at mit.edu] On Behalf Of courtois at ksu.edu > Sent: 19 October 2005 11:09 > To: dspace-general at mit.edu > Subject: [Dspace-general] Retain "DSpace" Name? > > How have you reconciled the DSpace label with the name of your > institutional repository? > > Many institutions give a unique name to their DSpace installation, and > we're considering calling our repository the "K-State Research > Exchange" (K-REx). It seems there would be some benefit to > users if we > go through all DSpace files and change every occurence of "DSpace" to > "K-REx?" For example, "My DSpace" would become "My K-REx." > > On the other hand, the term "DSpace" is used in so many files > and shows > up on so many different pages, I wonder if it would be better > to retain > the use of "DSpace" and help the user to understand that K-REx is > "powered by" DSpace. Also, if we decide to replace every occurence of > "DSpace" with "K-REx," we're sort of sentenced to redoing all these > changes each time we install a new DSpace version. > > There seem to be a variety of practices on this issue, so I'm > interested > to hear from folks at uniquely named DSpace installations: > DRUM, IDeA, > KU ScholarWorks, T-Space, SMARTech, MSpace, UR Research, Edinburgh > Research Archive, to name just a few. > > Thanks for your thoughts, > > Marty > > Martin Courtois > Information Technology Assistance Center > 509 Hale Library > Kansas State University > Manhattan KS 66502 > Phone: 785 532-4428 > Fax: 785 532-3199 > E-mail: courtois at ksu.edu > > > > _______________________________________________ > Dspace-general mailing list > Dspace-general at mit.edu > http://mailman.mit.edu/mailman/listinfo/dspace-general > From rwenger at MIT.EDU Wed Oct 19 16:03:28 2005 From: rwenger at MIT.EDU (Rich Wenger) Date: Wed, 19 Oct 2005 16:03:28 -0400 Subject: [Dspace-general] Retain "DSpace" Name? In-Reply-To: <19ADCC0B9D4CAD4582BB9900BBCE357401AA0CDE@tayexc13.americas .cpqcorp.net> Message-ID: <5.2.1.1.2.20051019160302.01a68078@hesiod> And what file would that be? Thanks, Rich At 02:12 PM 10/19/2005 -0400, Tansley, Robert wrote: >At a practical level, fortunately, as of DSpace version 1.3, it has >become much, much easier to call your repository something different. >All of the language used in the user interface has been put in one file, >to make it easier to modify and translate. You just need to change >DSpace to K-Rex in that file, and you should be done. Rich Wenger Systems Programmer, MIT Libraries rwenger at mit.edu 617-253-0035 From robert.tansley at hp.com Wed Oct 19 16:41:27 2005 From: robert.tansley at hp.com (Tansley, Robert) Date: Wed, 19 Oct 2005 16:41:27 -0400 Subject: [Dspace-general] Retain "DSpace" Name? Message-ID: <19ADCC0B9D4CAD4582BB9900BBCE357401AA0CE1@tayexc13.americas.cpqcorp.net> > >At a practical level, fortunately, as of DSpace version 1.3, it has > >become much, much easier to call your repository something different. > >All of the language used in the user interface has been put > in one file, > >to make it easier to modify and translate. You just need to change > >DSpace to K-Rex in that file, and you should be done. > And what file would that be? config/language-packs/Messages.properties (you need 1.3+) Robert TANSLEY / Digital Media Systems Programme / HP Labs http://www.hpl.hp.com/personal/Robert_Tansley/ From mr41 at cornell.edu Thu Oct 20 11:02:47 2005 From: mr41 at cornell.edu (Marcy Rosenkrantz) Date: Thu, 20 Oct 2005 11:02:47 -0400 Subject: [Dspace-general] policies Message-ID: <6.2.1.2.2.20051020105853.0a837500@postoffice8.mail.cornell.edu> I know early on we had discussed policies that DSpace users had implemented. I'm looking for an update. Do you have policies on use of DSpace--who can use it for what purpose. Do you have specific policies for Faculty, for students, for research associates, for submissions from outside your institution? Any feedback will be appreciated. Thanks, Marcy Know Your Publisher, http://www.sherpa.ac.uk/romeo.php Keep Your Copyright, http://www.library.cornell.edu/scholarlycomm/copyright Save Your Stuff ... in the OAR, http://dspace.library.cornell.edu -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mailman.mit.edu/pipermail/dspace-general/attachments/20051020/8acb3db4/attachment.htm From robert.tansley at hp.com Mon Oct 24 16:33:11 2005 From: robert.tansley at hp.com (Tansley, Robert) Date: Mon, 24 Oct 2005 16:33:11 -0400 Subject: [Dspace-general] Wiki security Message-ID: <19ADCC0B9D4CAD4582BB9900BBCE357401AA0D3F@tayexc13.americas.cpqcorp.net> Hi all, As some of you may have notice, our Wiki has been heavily spammed over the last couple of days. In order that we can spend our time on DSpace-related things instead of removing links to online casinos, we've tightened security on the Wiki a little. It's still open for anyone to sign up and edit, but between signing up and actually editing pages, you need to email one of the DSpace lists (-general, -tech or -devel) to get one of the Wiki admins to add you to the list of authorised users. This shouldn't take long. All existing Wiki users have already been authorised, so you don't need to sign up etc. again. We hope to have a better process for this soon (perhaps a dedicated wiki-admin list). Robert TANSLEY / Digital Media Systems Programme / HP Labs http://www.hpl.hp.com/personal/Robert_Tansley/ From scott.yeadon at anu.edu.au Mon Oct 24 18:59:45 2005 From: scott.yeadon at anu.edu.au (Scott Yeadon) Date: Tue, 25 Oct 2005 08:59:45 +1000 Subject: [Dspace-general] CALL FOR PRESENTATIONS - DSpace User Group Meeting, Sydney 2006 (Reminder) Message-ID: <435D6761.5030000@anu.edu.au> Reminder: Submissions deadline is 31 October 2005 CALL FOR PRESENTATIONS ====================== DSpace User Group Meeting, Sydney 2006 - Building Communities with DSpace ========================================================================= Submissions for presentations are being sought for the DSpace User Group Meeting, Sydney 2006. Please refer to http://www.apsr.edu.au/Open_Repositories_2006/call.htm for more details. Registration details for the DSpace User Group Meeting and Open Repositories event will be available early October. Background ========== The University of Sydney in collaboration with the University of Technology, Sydney will host a two day DSpace Users Group meeting over 31 January - 1 February 2006 as part of the APSR-sponsored Open Repositories 2006 conference next year. The theme of the meeting is "Building Communities with DSpace". It will address issues with implementing an institutional repository based around DSpace and will focus on recent DSpace technical developments from institutions around the world. Further information on the User Group Meeting and the Open Repositories 2006 conference can be found at http://www.apsr.edu.au/Open_Repositories_2006/index.htm From swadeshsharma13 at gmail.com Tue Oct 25 10:08:04 2005 From: swadeshsharma13 at gmail.com (swadesh sharma) Date: Tue, 25 Oct 2005 19:38:04 +0530 Subject: [Dspace-general] Message-ID: swadeshsharma13 at gmail.com -- Swadesh sharma Dy.Librarian GLAITM ,MATHURA From Rainer.Hochreiter at topcall.com Thu Oct 27 10:56:59 2005 From: Rainer.Hochreiter at topcall.com (Rainer Hochreiter) Date: Thu, 27 Oct 2005 16:56:59 +0200 Subject: [Dspace-general] Community Create -> "Internal System Error" Message-ID: hi, installed dspace-1.3.2 and every time when i try to create a community this results in an "Internal System Error"! No logs found in /dspace/logs (how to enable logging?) any hints welcome - thanx! From richard.jones at ub.uib.no Mon Oct 31 04:48:27 2005 From: richard.jones at ub.uib.no (Richard Jones) Date: Mon, 31 Oct 2005 10:48:27 +0100 Subject: [Dspace-general] DSpace in a medical library Message-ID: <1130752107.3178.132.camel@ubbtilv067115> Hi, Is anyone using DSpace as a repository in a medical library? Cheers, -- Richard ------- Richard Jones | Overingeni?r | Senior Engineer Universitetsbiblioteket i Bergen | University of Bergen Library e: richard.jones at ub.uib.no t: +47 55 58 25 37 BORA: http://bora.uib.no/ From dirk.debeukelaer at agfa.com Mon Oct 31 19:02:23 2005 From: dirk.debeukelaer at agfa.com (dirk.debeukelaer@agfa.com) Date: Tue, 1 Nov 2005 01:02:23 +0100 Subject: [Dspace-general] Dirk De_Beukelaer/AMAFA/MOR/Agfa-NV/BE/BAYER is out of the office. Message-ID: I will be out of the office starting 10/29/2005 and will not return until 11/07/2005. Please send your information requests and library orders to Bibliotheek at agfa.com For urgent matters, please contact Ann Louis +32 3 444 3099 ann.louis at agfa.com