From s.moaddeli at gmail.com Sun Jan 3 04:41:30 2010 From: s.moaddeli at gmail.com (Saeed Moaddeli) Date: Sun, 3 Jan 2010 13:11:30 +0330 Subject: [Dspace-general] non-unique handle keys Message-ID: <9e5a100f1001030141h349caa7fx6e214ffe4a0abc7d@mail.gmail.com> Hi, I have faced the following error after installing a fresh DSpace and importing 2-3 thousands items into the repository. I wanted to preserve the handles for the imported items so I removed the URI element from dublin_core.xml file and just kept the handle file for each exported package. The Import process completed successfully with no problem. I put some wok-flows on my collections and started to submit items manually. The submission completes and the item gets in to the related work-flow. The internal system error shows up when the collection admin presses the button for sending the item in to the repository. The weird thing is after this error; the user's workspace is empty without any messages or anything, empty at all. I tried to find the cause of this error but found nothing. I need to resolve this ASAP because this is a production repository. I looked in to the database and noticed that unlike my other DSpace installation, the handle_id (item internal ID) and and the second part of the handle in the "handle" table are not the same. I am not sure whether this may be the problem or not. I am looking forward for all comments and solutions, Bests, Saeed *here is the Error:* 2010-01-01 16:10:26,958 WARN org.dspace.app.webui.servlet.DSpaceServlet @ saeed at repo-ei.org:session_id=8472C2F50C508757D5E2DB93E432DB7A:ip_addr= 192.168.123.156:*database_error:org.postgresql.util.PSQLException: ERROR: duplicate key violates unique constraint "handle_handle_key"* org.postgresql.util.PSQLException: ERROR: duplicate key violates unique constraint "handle_handle_key" at org.postgresql.core.v3.QueryExecutorImpl.receiveErrorResponse(QueryExecutorImpl.java:1512) at org.postgresql.core.v3.QueryExecutorImpl.processResults(QueryExecutorImpl.java:1297) at org.postgresql.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:188) at org.postgresql.jdbc2.AbstractJdbc2Statement.execute(AbstractJdbc2Statement.java:430) at org.postgresql.jdbc2.AbstractJdbc2Statement.executeWithFlags(AbstractJdbc2Statement.java:346) at org.postgresql.jdbc2.AbstractJdbc2Statement.executeUpdate(AbstractJdbc2Statement.java:300) at org.apache.commons.dbcp.DelegatingPreparedStatement.executeUpdate(DelegatingPreparedStatement.java:101) at org.apache.commons.dbcp.DelegatingPreparedStatement.executeUpdate(DelegatingPreparedStatement.java:101) at org.dspace.storage.rdbms.DatabaseManager.execute(DatabaseManager.java:1301) at org.dspace.storage.rdbms.DatabaseManager.update(DatabaseManager.java:657) at org.dspace.handle.HandleManager.createHandle(HandleManager.java:174) at org.dspace.content.InstallItem.installItem(InstallItem.java:110) at org.dspace.content.InstallItem.installItem(InstallItem.java:72) at org.dspace.workflow.WorkflowManager.archive(WorkflowManager.java:650) at org.dspace.workflow.WorkflowManager.doState(WorkflowManager.java:604) at org.dspace.workflow.WorkflowManager.advance(WorkflowManager.java:369) at org.dspace.app.webui.servlet.MyDSpaceServlet.processPerformTask(MyDSpaceServlet.java:442) at org.dspace.app.webui.servlet.MyDSpaceServlet.doDSPost(MyDSpaceServlet.java:131) at org.dspace.app.webui.servlet.DSpaceServlet.processRequest(DSpaceServlet.java:147) at org.dspace.app.webui.servlet.DSpaceServlet.doPost(DSpaceServlet.java:105) at javax.servlet.http.HttpServlet.service(HttpServlet.java:710) at javax.servlet.http.HttpServlet.service(HttpServlet.java:803) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:269) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:188) at org.dspace.app.webui.filter.RegisteredOnlyFilter.doFilter(RegisteredOnlyFilter.java:98) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:215) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:188) at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213) at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:174) at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:117) at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:108) at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:174) at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:874) at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:665) at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:528) at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:81) at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:689) at java.lang.Thread.run(Thread.java:595) Saeed Moaddeli IT Department Encyclopaedia of Iranian Architectural History No.2175 Valiasr Ave. Tehran 1511913511, Iran Tel: +98 (21) 88728125-7 W3: http://eiah.org -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mailman.mit.edu/pipermail/dspace-general/attachments/20100103/dda0f3a6/attachment.htm From s.moaddeli at gmail.com Sun Jan 3 09:48:05 2010 From: s.moaddeli at gmail.com (Saeed Moaddeli) Date: Sun, 3 Jan 2010 18:18:05 +0330 Subject: [Dspace-general] {Disarmed} non-unique handle keys In-Reply-To: <4B40721F.5050007@destin.be> References: <9e5a100f1001030141h349caa7fx6e214ffe4a0abc7d@mail.gmail.com> <4B40721F.5050007@destin.be> Message-ID: <9e5a100f1001030648k16eee0b7t4cf70303a4b190e3@mail.gmail.com> Dear Christophe; Thank you so much. You spotted the problem. I fixed the problem using a short command to set the current value of the sequence to a number bigger than the current maximum handle. *SELECT setval('public.handle_seq', 5100, true);* but this is a bug, isn't it? I didn't do anything strange and this happened! It may happen to many other who want to migrate their items from one repository to another for any reason ( say backup or mirror) and preserve the handles. I think this must be resolved in future releases. what do you think? Thanks again and happy new year! SM Saeed Moaddeli IT Department Encyclopaedia of Iranian Architectural History No.2175 Valiasr Ave. Tehran 1511913511, Iran Tel: +98 (21) 88728125-7 W3: http://eiah.org On Sun, Jan 3, 2010 at 2:01 PM, Christophe Dupriez < christophe.dupriez at destin.be> wrote: > Hi Saeed, > > I think this may be caused by the "sequence" in PostgreSQL out of sync. > If you carefuly examine it using the PgAdmin III software, you will find in > your database, Schema public, Sequences, handle_seq, Properties:Current > Value > This CurrentValue must be equal to the latest handle created in the handle > table. > This can be checked by the SQL script: > SELECT max(handle_id) FROM handle; > > Good luck! > > Christophe > > Saeed Moaddeli a ?crit : > >> Hi, >> I have faced the following error after installing a fresh DSpace and >> importing 2-3 thousands items into the repository. I wanted to preserve the >> handles for the imported items so I removed the URI element from >> dublin_core.xml file and just kept the handle file for each exported >> package. The Import process completed successfully with no problem. >> I put some wok-flows on my collections and started to submit items >> manually. The submission completes and the item gets in to the related >> work-flow. The internal system error shows up when the collection admin >> presses the button for sending the item in to the repository. >> The weird thing is after this error; the user's workspace is empty without >> any messages or anything, empty at all. >> I tried to find the cause of this error but found nothing. I need to >> resolve this ASAP because this is a production repository. I looked in to >> the database and noticed that unlike my other DSpace installation, the >> handle_id (item internal ID) and and the second part of the handle in the >> "handle" table are not the same. I am not sure whether this may be the >> problem or not. >> I am looking forward for all comments and solutions, >> Bests, >> Saeed >> >> *here is the Error:* >> >> 2010-01-01 16:10:26,958 WARN org.dspace.app.webui.servlet.DSpaceServlet @ >> saeed at repo-ei.org:session_id=8472C2F50C508757D5E2DB93E432DB7A:ip_addr=*MailScanner >> warning: numerical links are often malicious:* 192.168.123.156 < >> http://192.168.123.156>:*database_error:org.postgresql.util.PSQLException: >> ERROR: duplicate key violates unique constraint "handle_handle_key"* >> org.postgresql.util.PSQLException: ERROR: duplicate key violates unique >> constraint "handle_handle_key" >> at >> org.postgresql.core.v3.QueryExecutorImpl.receiveErrorResponse(QueryExecutorImpl.java:1512) >> at >> org.postgresql.core.v3.QueryExecutorImpl.processResults(QueryExecutorImpl.java:1297) >> at >> org.postgresql.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:188) >> at >> org.postgresql.jdbc2.AbstractJdbc2Statement.execute(AbstractJdbc2Statement.java:430) >> at >> org.postgresql.jdbc2.AbstractJdbc2Statement.executeWithFlags(AbstractJdbc2Statement.java:346) >> at >> org.postgresql.jdbc2.AbstractJdbc2Statement.executeUpdate(AbstractJdbc2Statement.java:300) >> at >> org.apache.commons.dbcp.DelegatingPreparedStatement.executeUpdate(DelegatingPreparedStatement.java:101) >> at >> org.apache.commons.dbcp.DelegatingPreparedStatement.executeUpdate(DelegatingPreparedStatement.java:101) >> at >> org.dspace.storage.rdbms.DatabaseManager.execute(DatabaseManager.java:1301) >> at >> org.dspace.storage.rdbms.DatabaseManager.update(DatabaseManager.java:657) >> at >> org.dspace.handle.HandleManager.createHandle(HandleManager.java:174) >> at org.dspace.content.InstallItem.installItem(InstallItem.java:110) >> at org.dspace.content.InstallItem.installItem(InstallItem.java:72) >> at >> org.dspace.workflow.WorkflowManager.archive(WorkflowManager.java:650) >> at >> org.dspace.workflow.WorkflowManager.doState(WorkflowManager.java:604) >> at >> org.dspace.workflow.WorkflowManager.advance(WorkflowManager.java:369) >> at >> org.dspace.app.webui.servlet.MyDSpaceServlet.processPerformTask(MyDSpaceServlet.java:442) >> at >> org.dspace.app.webui.servlet.MyDSpaceServlet.doDSPost(MyDSpaceServlet.java:131) >> at >> org.dspace.app.webui.servlet.DSpaceServlet.processRequest(DSpaceServlet.java:147) >> at >> org.dspace.app.webui.servlet.DSpaceServlet.doPost(DSpaceServlet.java:105) >> at javax.servlet.http.HttpServlet.service(HttpServlet.java:710) >> at javax.servlet.http.HttpServlet.service(HttpServlet.java:803) >> at >> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:269) >> at >> org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:188) >> at >> org.dspace.app.webui.filter.RegisteredOnlyFilter.doFilter(RegisteredOnlyFilter.java:98) >> at >> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:215) >> at >> org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:188) >> at >> org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213) >> at >> org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:174) >> at >> org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) >> at >> org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:117) >> at >> org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:108) >> at >> org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:174) >> at >> org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:874) >> at >> org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:665) >> at >> org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:528) >> at >> org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:81) >> at >> org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:689) >> at java.lang.Thread.run(Thread.java:595) >> >> Saeed Moaddeli >> IT Department >> Encyclopaedia of Iranian Architectural History >> No.2175 Valiasr Ave. Tehran 1511913511, Iran >> Tel: +98 (21) 88728125-7 W3: http://eiah.org >> ------------------------------------------------------------------------ >> >> _______________________________________________ >> Dspace-general mailing list >> Dspace-general at mit.edu >> http://mailman.mit.edu/mailman/listinfo/dspace-general >> >> > > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mailman.mit.edu/pipermail/dspace-general/attachments/20100103/64a0f160/attachment.htm From matthewjbills at hotmail.com Sun Jan 3 09:48:34 2010 From: matthewjbills at hotmail.com (matthewjbills@hotmail.com) Date: Sun, 3 Jan 2010 06:48:34 -0800 Subject: [Dspace-general] Vacation reply In-Reply-To: Message-ID: An HTML attachment was scrubbed... URL: http://mailman.mit.edu/pipermail/dspace-general/attachments/20100103/0d0e1fb9/attachment.htm From srajakumar28 at gmail.com Sun Jan 3 10:48:11 2010 From: srajakumar28 at gmail.com (Raja Kumar) Date: Sun, 3 Jan 2010 21:18:11 +0530 Subject: [Dspace-general] National Workshop on IR Message-ID: <1abe58f21001030748k74f3fd2fs7c94dae4b944be61@mail.gmail.com> Dear LIS Professionals, National Workshop on Institutional Repositories Using DSpace 1.5.2 to be held on 9th Jan 2010. Place : BNMIT , Banashankari, Bangalore Registration fees : 150 (One hundred only) ( includes Resource kit, CD, Breakfast, Lunch , Coffee , tea) Resource Person : Dr. M.Krishnamurthy, Faculty, DRTC, Indian Statistical Institute, Bangalore Broucher Avaialable at : http://www.bnmit.org/images/library-workshop-brochure.pdf Thanks, S.Rajakumar -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mailman.mit.edu/pipermail/dspace-general/attachments/20100103/121bbdfc/attachment.htm From Claudia.Juergen at ub.tu-dortmund.de Tue Jan 5 06:40:26 2010 From: Claudia.Juergen at ub.tu-dortmund.de (=?ISO-8859-1?Q?Claudia_J=FCrgen?=) Date: Tue, 05 Jan 2010 12:40:26 +0100 Subject: [Dspace-general] Statistics for entries in DSpace installation In-Reply-To: <003501ca7fd7$1316adb0$39440910$@Nieminen@bradford.ac.uk> References: <003501ca7fd7$1316adb0$39440910$@Nieminen@bradford.ac.uk> Message-ID: <4B43252A.6090703@ub.tu-dortmund.de> Hello Satu, the basic DSpace stats counts the number of items in archive, regardless whether bitstreams are attached to the items or not. Hope that helps Claudia J?rgen S Nieminen schrieb: > Hello All, > > > > Our basic DSpace stats tell me the number of items archived. I take this to > mean items where there is a digital object attached. However, we have a > number of items that are purely bibliographic records without a digital > objects. The DSpace stats module does not tell me this, does it? How can I > get this information out? > > > > Thanks > > > > Satu > > > > Ms Satu Nieminen > eResources Librarian > > University of Bradford > JB Priestley Library > Richmond Road > Bradford > BD7 1DP > Tel 01274 233400 > Fax 01274 233398 > Email s.nieminen at bradford.ac.uk > > > > > > > ------------------------------------------------------------------------ > > _______________________________________________ > 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: Claudia_Juergen.vcf Type: text/x-vcard Size: 372 bytes Desc: not available Url : http://mailman.mit.edu/pipermail/dspace-general/attachments/20100105/16b8c957/attachment.vcf From manjax4u at gmail.com Tue Jan 5 09:54:05 2010 From: manjax4u at gmail.com (P. S. MANJUNATHA) Date: Tue, 5 Jan 2010 02:54:05 -1200 Subject: [Dspace-general] BNMIT Library Workshop Programme Schedule - Update Message-ID: <1c4823791001050654h4122cecfxe034e20e776bf116@mail.gmail.com> Dear Professionals, This has in continuation of announcement made earlier through this forum in connection with *One day National Workshop on Design & Organisation of Institutional Repositories Using DSpace (1.5.2)* Organised by *BNMIT Library & Information Centre on 9th January 2010. * In this context, all the delegates are hereby requested to please note the porgramme schedule of the workshop as mentioned below. PROGRAMME SCHEDULE 8-00 a.m. - 9-30 a.m. - Registration & Breakfast 9-30 a.m. - 10-50 a.m. - Inaguaral Function 10-50 a.m.- 11.00 a.m - Tea Break 11.00 a.m.- 12-15 p.m. - Technical Session - 1 12.15 p.m.- 1-15 p.m. - Technical Session - 2 1.15 p.m. - 2-00 p.m. - Lunch Break 2-00 p.m. - 4-00 p.m. - Hands on Training Session 4-00 p.m. - 4-15 p.m. - High Tea 4-15 p.m. - 4-50 p.m. - Valedictory With best regards, R.M. Putta Swamy Organising Secretary & Chief Librarian BNM Institute of Technology 12th Main Road, 27th Cross, Banashankari II Stage, Bangalore - 560 070 Karnataka Phone: 080 - 26711 780/81/82 Extn.45 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mailman.mit.edu/pipermail/dspace-general/attachments/20100105/19ec03bb/attachment.htm From vhollister at fedora-commons.org Wed Jan 6 08:14:33 2010 From: vhollister at fedora-commons.org (Valorie Hollister) Date: Wed, 06 Jan 2010 08:14:33 -0500 Subject: [Dspace-general] NISO's January Webinar: From ILS to Repository and Back: Data Interoperability Message-ID: <4B448CB9.4030808@fedora-commons.org> Please see the upcoming NISO webinar below featuring the IDEALS repository at the University of Illinois, which is based on DSpace. Valorie Hollister Director of Community Development, DSpace Project DuraSpace vhollister at duraspace.org Skype: vhollister > *From: *"Cynthia Hodgson" > > *Date: *January 4, 2010 10:18:19 AM EST > *To: *SPARC-IR > *Subject: **[SPARC-IR] NISO's January Webinar: From ILS to Repository > and Back: Data Interoperability* > *Reply-To: *"SPARC Institutional Repositories Discussion List" > > > > NISO's monthly webinar for January 2010 will discuss "From ILS to > Repository > and Back: Data Interoperability." The webinar will take place on > Wednesday, > January 13, 2010 from 1:00 to 2:30 p.m. (Eastern time). Can't make it on > January 13th? Register and you get access to the recorded archive for one > year to watch at your convenience. > > > About the Webinar > > While institutional repository (IR) systems are meant to focus on the > storage of digital objects, most repositories contain not only > objects, but > also metadata about those items. One of the main functions of library > systems is to help facilitate the discovery of items and content using > metadata. Where is the line between IR systems and the discovery and > management tools the libraries use to manage their collections? What are > some strategies that libraries can employ to integrate these systems? Is > anyone having success? > > As libraries increasingly become the home to special digital > collections and > scanned materials, > finding simple ways to exchange information and ensure discoverability > of IR > content will be critical to efficient management of both systems. This > webinar will provide attendees with an overview of recent research in this > topic as well as real-world examples from organizations who are working > toward interoperability. > > Speakers > > -- Kathleen Menzies, OCRIS: Online Catalogue and Repository > Interoperability > Study - Funded by the JISC Scholarly Communications Group, OCRIS examined > the interoperability of LMSs, IRs and other administrative systems in > operation within UK universities. The project team produced extensive > recommendations for improving the visibility and usefulness of > intellectual > assets and associated data by allowing central, and rapidly developing, > information systems to interoperate. The findings of the OCRIS project > will > be presented to members of the NISO followed by a discussion of their > implications and how they relate to the wider context. > > -- Sarah Shreeves, IDEALS repository at the University of Illinois at > Urbana-Champaign - IDEALS is the digital repository for research and > scholarship - including published and unpublished papers, datasets, video > and audio - produced at the University of Illinois. > > > Registration > > For more information and to register, visit the event webpage > http://www.niso.org/news/events/2010/datainterop/). Registration is > per site > (access for one computer) and includes access to the online recorded > archive > of the webinar for one year. NISO and NASIG members receive a discounted > member rate. A student discount is also available. > > NISO is also offering package discounts for multiple webinars. Buy four > webinars, get two free. Buy > six webinars, get seven free. Visit the SAVE! webpage > (http://www.niso.org/news/events/2010#packages) for more information. > > > January Open Teleconference > > And join us for the free teleconference on January 11 from 3:00 - 4:00 > p.m. > (Eastern). Karen Coyle, Digital Library Consultant and member of NISO's > Architecture Committee, will discuss the work of the Architecture > Committee > and The NISO Framework, which will be used to strategically direct the > work > of NISO. No registration necessary; To join, simply dial 877-375-2160 and > enter the code: 17800743. > > > > > Cynthia Hodgson > NISO Technical Editor Consultant > National Information Standards Organization > Email: hodgsonca at verizon.net > Phone: 301-654-2512 > > > > ############################################# > This message is sent to you because you are subscribed to > the > email list, a forum > for discussion of practical questions and issues relating to the > development and operation of institutional repositories. > To unsubscribe, E-mail to: > > To switch to the DIGEST mode, E-mail to > > To switch to the INDEX mode, E-mail to > > Visit the Web archive at > From vhollister at fedora-commons.org Wed Jan 6 10:24:22 2010 From: vhollister at fedora-commons.org (Valorie Hollister) Date: Wed, 06 Jan 2010 10:24:22 -0500 Subject: [Dspace-general] DSpace wiki migration project Message-ID: <4B44AB26.9070306@fedora-commons.org> Dear DSpace Community, After many community discussions and some limited testing, the DuraSpace organization would like to propose migrating the DSpace wiki, currently based on MediaWiki to a Confluence wiki. The migration would provide more wiki functionality to the DSpace community, including: * Ability to edit using a basic Word-like interface (WYSIWYG interface) * Ability to export pages to Word/PDF * Capable of supporting the DSpace manual natively to ease editing and contributing * Support for simple diagrams * Better integration into existing DuraSpace.org infrastructure In addition, moving the DSpace wiki to Confluence would also mean that both the DSpace and the Fedora communities would use the same wiki platform, allowing for more easily shared information infrastructure. We are currently looking for repository administrators/managers or other interested volunteers to help us clean up, reorganize and test migrated wiki content. Other tasks may include helping us redesign and restructure the new wiki space. Your help will ensure the DSpace Wiki receives a much needed facelift! The project is likely to begin in the next few weeks (exact date forthcoming) and last a month. We estimate the project to take a few hours a week. Please contact me if you are interested in helping out with the wiki migration project. Valorie Hollister Director of Community Development, DSpace Project DuraSpace vhollister at duraspace.org Skype: vhollister From tdonohue at duraspace.org Thu Jan 7 16:28:01 2010 From: tdonohue at duraspace.org (Tim Donohue) Date: Thu, 07 Jan 2010 15:28:01 -0600 Subject: [Dspace-general] DSpace 1.6 Release Updates Message-ID: <4B4651E1.5080408@duraspace.org> Hi all, First off, we'd like to again thank everyone for their participation and help during the DSpace Testathon in December. During the Testathon we came across a total of 34 different bugs, found by over 10 different testers. Although this may sound like a lot of bugs, our team of volunteer developers have already fixed many of them and are actively working to fix the rest in the coming weeks. We'd also like to specifically recognize and thank those institutions and developers who hosted DSpace 1.6 test instances during the Testathon: * University of Auckland (Stuart Lewis) * University of Dortmund (Claudia J?rgen) * University of Toronto (Gabriela Mircea) As for the status of the 1.6 release, the DSpace Developers have agreed upon a tentative roadmap as follows: (1) Release a 1.6 RC2 (Release Candidate 2) before end of January (2) Short testing period of 1.6RC2 at end of January and early February. (3) Release DSpace 1.6.0 in mid-February Again, these dates are still tentative. But, our goal is to have 1.6.0 available for download in February! Thanks again for helping us make DSpace 1.6 better! Community involvement and feedback definitely helps make our new releases more fully featured and bug-free. We hope your new year is joyful! Tim and the DSpace Developers -- Tim Donohue Technical Lead for DSpace Project DuraSpace.org From cwbailey at digital-scholarship.com Sun Jan 10 17:42:34 2010 From: cwbailey at digital-scholarship.com (Charles W. Bailey, Jr.) Date: Sun, 10 Jan 2010 16:42:34 -0600 Subject: [Dspace-general] Institutional Repository Bibliography, Version 2 Message-ID: <4B4A57DA.8090507@digital-scholarship.com> Version two of the Institutional Repository Bibliography is now available from Digital Scholarship: http://digital-scholarship.org/irb/irb.html The Institutional Repository Bibliography presents over 700 selected English-language articles, books, technical reports, and other scholarly textual sources that are useful in understanding institutional repositories. This version significantly expands coverage of technical reports and adds a search function (Google index update for version two may take a few days). Most sources have been published between 2000 and the present; however, a limited number of key sources published prior to 2000 are also included. Where possible, links are provided to e-prints in disciplinary archives and institutional repositories for published articles. The bibliography has the following sections (revised sections marked with an asterisk): 1 General* 2 Country and Regional Institutional Repository Surveys* 3 Multiple-Institution Repositories* 4 Specific Institutional Repositories* 5 Institutional Repository Digital Preservation Issues* 6 Institutional Repository Library Issues* 7 Institutional Repository Metadata Issues* 8 Institutional Repository Open Access Policies* 9 Institutional Repository R&D Projects* 10 Institutional Repository Research Studies* 11 Institutional Repository Software* Appendix A. About the Author* The following recent Digital Scholarship publications may also be of interest: (1) Scholarly Electronic Publishing Bibliography, Version 77: http://bit.ly/GdDqp (2) Google Book Search Bibliography, Version 5: http://bit.ly/4zllz8 (3) Electronic Theses and Dissertations Bibliography, Version 4: http://bit.ly/1eyLv5 (4) Scholarly Electronic Publishing Bibliography: 2008 Annual Edition (print/Kindle): http://bit.ly/2X8zKF Translate (oversatta, oversette, prelozit, traducir, traduire, tradurre, traduzir, or ubersetzen) this message: http://bit.ly/5n4T8T -- Best Regards, Charles Charles W. Bailey, Jr. Publisher, Digital Scholarship http://bit.ly/Z6HFx From losalo at unavarra.es Mon Jan 11 05:57:17 2010 From: losalo at unavarra.es (Carlos Alonso Vega) Date: Mon, 11 Jan 2010 11:57:17 +0100 Subject: [Dspace-general] Restrict Pdf view to page by page Message-ID: <4B4B040D.10305@unavarra.es> Hi all, We would like to restrict the access of some collection of complete documents. For that collection items, we would like to give access to only one page at a time instead of browsing or downloading the full pdfs. We would appreciate any info, advices or similar experiences that could bring some help or background on the design (DSpace 1.5.2) Thanks in advance Carlos From amjad_gu at hotmail.com Thu Jan 14 06:12:11 2010 From: amjad_gu at hotmail.com (AMJAD USMAN) Date: Thu, 14 Jan 2010 16:12:11 +0500 Subject: [Dspace-general] Dspace build error Message-ID: Hi every body, hope you all will be enjoying your life. Please anyone guide me through dspace installation. After properly installing all the pre-requiste softwares, when i run mvn package from command prompt, then it gives failure error. The description of error is: BUILD ERROR: Failed to resolve artifact Reason: Unable to download the artifact from any repository org.apache.maven.plugins : maven-site-plugin:pom:2.0-beta-7 from the specified remote repositories central < http://repo1.maven.org/maven2 >, maven.dsapce.org-snapshot < http://maven.dspace.org/snapshot > Note: the attached file also contains the snapshot of the dspace build error that i take at command prompt. From: Amjad Usman Marwat MS Information Technology, Batch 9, NUST School of Electrical Engineering & Computer Science, H-12 Campus Islamabad, Pakistan. _________________________________________________________________ Windows Live: Keep your friends up to date with what you do online. http://www.microsoft.com/middleeast/windows/windowslive/see-it-in-action/social-network-basics.aspx?ocid=PID23461::T:WLMTAGL:ON:WL:en-xm:SI_SB_1:092010 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mailman.mit.edu/pipermail/dspace-general/attachments/20100114/d8dbb88c/attachment.htm -------------- next part -------------- A non-text attachment was scrubbed... Name: dspace buid error.JPG Type: image/pjpeg Size: 119536 bytes Desc: not available Url : http://mailman.mit.edu/pipermail/dspace-general/attachments/20100114/d8dbb88c/attachment.bin From dietz.72 at osu.edu Thu Jan 14 12:23:23 2010 From: dietz.72 at osu.edu (Peter Dietz) Date: Thu, 14 Jan 2010 12:23:23 -0500 Subject: [Dspace-general] Dspace build error In-Reply-To: References: Message-ID: <240a31831001140923h78794debi3a43a7646c17ccd2@mail.gmail.com> You could be behind a firewall or have a proxy issue. Can you ping the server? > ping repo1.maven.org 2010/1/14 AMJAD USMAN > Hi every body, > > hope you all will be enjoying your life. > Please anyone guide me through dspace installation. > After properly installing all the pre-requiste softwares, when i run *mvn > package* from command prompt, then it gives failure error. > > The description of error is: > > BUILD ERROR: > Failed to resolve artifact > > Reason: Unable to download the artifact from any repository > > org.apache.maven.plugins : maven-site-plugin:pom:2.0-beta-7 > > from the specified remote repositories > central < http://repo1.maven.org/maven2 >, > > maven.dsapce.org-snapshot < http://maven.dspace.org/snapshot > > > > Note: the attached file also contains the snapshot of the dspace build > error that i take at command prompt. > > From: > Amjad Usman Marwat > MS Information Technology, Batch 9, > NUST School of Electrical Engineering & Computer Science, > H-12 Campus Islamabad, Pakistan. > > > > > ------------------------------ > Windows Live: Keep your friends up to date with what you do online. > > _______________________________________________ > Dspace-general mailing list > Dspace-general at mit.edu > http://mailman.mit.edu/mailman/listinfo/dspace-general > > -- Peter Dietz Systems Developer/Engineer Ohio State University Libraries -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mailman.mit.edu/pipermail/dspace-general/attachments/20100114/c18e8864/attachment.htm From bharat.chaudhari at ipmg.ac.in Fri Jan 15 01:56:25 2010 From: bharat.chaudhari at ipmg.ac.in (bharat chaudhari) Date: Fri, 15 Jan 2010 12:26:25 +0530 Subject: [Dspace-general] Dspace-general Digest, Vol 78, Issue 7 References: Message-ID: <87A9052A197EC648A73836CB24B0CF350189EE22@exchange.ipmg.ac.in> Dear Mr. Amjad, Your application may under proxy server pl. check it first. Hope this help. Bharat M. Chaudhari SPM Gandhinagar -----Original Message----- From: dspace-general-bounces at mit.edu [mailto:dspace-general-bounces at mit.edu] On Behalf Of dspace-general-request at mit.edu Sent: Thursday, January 14, 2010 7:58 PM To: dspace-general at mit.edu Subject: Dspace-general Digest, Vol 78, Issue 7 Send Dspace-general mailing list submissions to dspace-general at mit.edu To subscribe or unsubscribe via the World Wide Web, visit http://mailman.mit.edu/mailman/listinfo/dspace-general or, via email, send a message with subject or body 'help' to dspace-general-request at mit.edu You can reach the person managing the list at dspace-general-owner at mit.edu When replying, please edit your Subject line so it is more specific than "Re: Contents of Dspace-general digest..." Today's Topics: 1. Dspace build error (AMJAD USMAN) ---------------------------------------------------------------------- Message: 1 Date: Thu, 14 Jan 2010 16:12:11 +0500 From: AMJAD USMAN Subject: [Dspace-general] Dspace build error To: Message-ID: Content-Type: text/plain; charset="iso-8859-1" Hi every body, hope you all will be enjoying your life. Please anyone guide me through dspace installation. After properly installing all the pre-requiste softwares, when i run mvn package from command prompt, then it gives failure error. The description of error is: BUILD ERROR: Failed to resolve artifact Reason: Unable to download the artifact from any repository org.apache.maven.plugins : maven-site-plugin:pom:2.0-beta-7 from the specified remote repositories central < http://repo1.maven.org/maven2 >, maven.dsapce.org-snapshot < http://maven.dspace.org/snapshot > Note: the attached file also contains the snapshot of the dspace build error that i take at command prompt. From: Amjad Usman Marwat MS Information Technology, Batch 9, NUST School of Electrical Engineering & Computer Science, H-12 Campus Islamabad, Pakistan. _________________________________________________________________ Windows Live: Keep your friends up to date with what you do online. http://www.microsoft.com/middleeast/windows/windowslive/see-it-in-action /social-network-basics.aspx?ocid=PID23461::T:WLMTAGL:ON:WL:en-xm:SI_SB_1 :092010 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mailman.mit.edu/pipermail/dspace-general/attachments/20100114/d8d bb88c/attachment.htm -------------- next part -------------- A non-text attachment was scrubbed... Name: dspace buid error.JPG Type: image/pjpeg Size: 119536 bytes Desc: not available Url : http://mailman.mit.edu/pipermail/dspace-general/attachments/20100114/d8d bb88c/dspacebuiderror.bin ------------------------------ _______________________________________________ Dspace-general mailing list Dspace-general at mit.edu http://mailman.mit.edu/mailman/listinfo/dspace-general End of Dspace-general Digest, Vol 78, Issue 7 ********************************************* From srajakumar28 at gmail.com Fri Jan 15 08:11:58 2010 From: srajakumar28 at gmail.com (Raja Kumar) Date: Fri, 15 Jan 2010 18:41:58 +0530 Subject: [Dspace-general] Report on Workshop at BNMIT Message-ID: <1abe58f21001150511i6639f37ev45e100aa53596f3@mail.gmail.com> Dear Professional Friends, Excerpts of National Workshop on Design and Organisation of Institutional Repositories (IR) Using DSpace (1.5.2) organised by Library and Information Centre, B. N. M. Institution of Technology, Bangalore on 9th January 2010. The workshop witnessed astounding response from 180 plus delegates across the country out of which 110 participants were from the VTU affiliated engineering colleges. The Inaugural function commenced with the welcome address by Dr. K. Udayakumar, Principal, BNMIT. The program formally inaugurated by lighting the lamp by Prof. Balaji, Registrar, VTU, Dr. I. K. Ravichandra Rao, Professor, DRTC, ISI, Prof. B. C. Rajanna, Chairman, BNMIE, Sri. Narayana Rao Maanay, Secretary of BNMIE. R. M. Puttaswamy, Librarian, BNMIT and Organising Secretary, presented a brief note on the workshop. Dr. I. K. R. was felicitated by the management of BNMIE. After the felicitation Dr. I. K. R. delivered keynote address on the importance of IR, Issues, Challenges and he emphasized on the OAI and Metadata Harvesting. He has thrown light on digital revolution, advantages and objectives of IR. He pointed out, how students can make use of IR in their learning. He discussed about the content and management in terms of written policy on development of IR and indexing the content in IR. Another guest Dr. K. V. A. Balaji, Registrar, VTU, spoke on the strengths of Visvesvaraya Technological University in terms of no. of colleges, no. of UG, PG and Research Programs. He has appreciated the development of libraries in knowledge creation and dissemination. He also assured that university will provide any kind of support to interlink IRs developed by colleges with VTU research portal. Elaborating further, he mentioned that libraries should attract youngsters and make optimum utilization of available resources. Sri. Narayana Rao Maanay has released the DVD of the workshop. Prof. B. C. Rajanna delivered Presidential Remarks and he pointed out that how libraries are transformed from the traditional to virtual form. Prof. T. J. Rama Murthy, Director, BNMIE proposed vote of thanks. Dr. M. Krishna Murthy, Faculty, DRTC was the resource person for the technical session; he delivered presentation on An overview of Institutional Repositories A present scenario & IR Open Access, Archives, OAI-PMH working principles?. After the first technical session, Sri. R.M. Putta Swamy, briefed about the Institutional Repositories maintained at BNMIT Library by Using DSpace. This session was well interacted by the delegates by getting the tips and ideas on design and organization of institutional Repositories. Afterwards participants were moved to computer lab for hands on session on installation of Fedora 9 operating system. After the delicious, lunch brainstorming hands-on-training session on DSpace 1.5.2 was started. The current version of DSpace 1.5.2 software was successfully installed and all the delegates were happy and expressed their satisfaction. Sri. Choudappa N., President, AKELPA felicitated the engineering college librarians who achieved their Ph.D. degree recently. They are, Dr. Dinesh K. S., who completed his Ph.D. degree under the supervision of Dr. Khaiser Nikam, UOM, Dr. K. R. Mulla under the supervision of Dr. Chandrashekar M., UOM and Dr. H. M. Chidananda Swamy under the guidance of Dr. B.U. Kannappanavar, Kuvempu University. Soon after the high-tea, concluding session commenced with a welcome speech by Dr. K. Ranga, Dean, BNMIT. Sri. R.M. Putta Swamy, presented the detailed report about the workshop. Few of the participants gave the feedback about the workshop. Sri. P.S. Manjunatha, Librarian, MBA library introduced the Chief Guest Dr. M. Krishna Murthy. Dr. Krishna Murthy spoke on the advantages of DSpace to colleges and said that in India this is the first workshop on DSpace 1.5.2 latest version of DSpace. Sri. Maanay delivered presidential remarks and expressed his happiness over the turn out as he was not expected and analysed it as created benchmark in the institution. He also opined that it is necessary to equip oneself to serve better in library to meet the challenge of the future with advent of future ICTs. Dr. Shana D. Gowda, Professor, concluded the session with vote of thanks. At the end there was a huge appreciation from the delegates about the arrangements, hospitality of the BNMIT. Thanks, S.Rajakumar, M.L.I.Sc.. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mailman.mit.edu/pipermail/dspace-general/attachments/20100115/c4bfce1e/attachment.htm From vdusan at matf.bg.ac.rs Mon Jan 18 07:44:53 2010 From: vdusan at matf.bg.ac.rs (=?UTF-8?B?RHXFoWFuIFZhc2lsamV2acSH?=) Date: Mon, 18 Jan 2010 13:44:53 +0100 Subject: [Dspace-general] changing language of displayed metadata Message-ID: <7c6baf2a1001180444t72b62604p23741cf1c77a6aed@mail.gmail.com> hi all, I'm using xmlui-ml-aspect for language switching which changes the interface language. But I also need to change the language of displayed metadata. For instance, I have a title in english and in french, and when I switch to french it should display french version of a title, and vice versa. Is there any way to do that? thanks, Dusan Vasiljevic -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mailman.mit.edu/pipermail/dspace-general/attachments/20100118/8b07d396/attachment.htm From vdusan at matf.bg.ac.rs Tue Jan 19 07:13:04 2010 From: vdusan at matf.bg.ac.rs (=?UTF-8?B?RHXFoWFuIFZhc2lsamV2acSH?=) Date: Tue, 19 Jan 2010 13:13:04 +0100 Subject: [Dspace-general] changing language of displayed metadata In-Reply-To: References: <7c6baf2a1001180444t72b62604p23741cf1c77a6aed@mail.gmail.com> Message-ID: <7c6baf2a1001190413k2293326ara904519ac91abc7@mail.gmail.com> Thanks Mark, I'll give it a try. 2010/1/18 Mark Diggory > Du?an, > > You will need to override and adjust the XSLT themes found in > > > http://scm.dspace.org/svn/repo/dspace/tags/dspace-1.5.2/dspace-xmlui/dspace-xmlui-webapp/src/main/webapp/themes/dri2xhtml/DIM-Handler.xsl > > to filter the dim:field values on the @language attribute as well. > > This will work for Items, but not currently for Communities or > Collections as they do not yet support additional metadata fields in a > default DSpace instance. > > If you do this work, it would be a good contribution back to the > community if you could add a patch in the JIRA with the changes. > > Cheers, > Mark > > > 2010/1/18 Du?an Vasiljevi? : > > hi all, > > > > I'm using xmlui-ml-aspect for language switching which changes the > interface > > language. But I also need to change the language of displayed metadata. > For > > instance, I have a title in english and in french, and when I switch to > > french it > > should display french version of a title, and vice versa. > > Is there any way to do that? > > > > thanks, > > Dusan Vasiljevic > > > > _______________________________________________ > > Dspace-general mailing list > > Dspace-general at mit.edu > > http://mailman.mit.edu/mailman/listinfo/dspace-general > > > > > > > > -- > Mark R. Diggory > Head of U.S. Operations - @mire > > http://www.atmire.com - Institutional Repository Solutions > http://www.togather.eu - Before getting together, get Tog at ther > -- Du?an Vasiljevi? -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mailman.mit.edu/pipermail/dspace-general/attachments/20100119/1dc89871/attachment.htm From amjad_gu at hotmail.com Tue Jan 19 09:38:29 2010 From: amjad_gu at hotmail.com (AMJAD USMAN) Date: Tue, 19 Jan 2010 19:38:29 +0500 Subject: [Dspace-general] Dspace general installation problems Message-ID: R/S Sir / Madam, I am a new user to Dspace and facing the following problems. Problem 1. (In JSPUI case) It properly creates Communities, collections, E-users, Groups, etc. but when i try to submit any document like article to the collection, then it gives system internal error after "document uploading" step. Problem 2. (In XMLUI case) It gives error when i press "complete submission" button during item submission in xml user interface. Problem 3. after properly installing dspace, when i make any changes in the config.xml file of the dspace, then they donot apply to dspace instance; means those changes donot appear in the dspace user interface. Problem 4. tell me something about SRB File Storage in config.xml file, means how to set these parameters. because all the code in this section is commented. Thanking you in anticipation.... Regards: Amjad Usman Marwat MS Information Technology, Batch 09, DELSA Lab, NUST SEECS, H-12 Campus Islamabad, Pakistan. _________________________________________________________________ Windows Live: Friends get your Flickr, Yelp, and Digg updates when they e-mail you. http://www.microsoft.com/middleeast/windows/windowslive/see-it-in-action/social-network-basics.aspx?ocid=PID23461::T:WLMTAGL:ON:WL:en-xm:SI_SB_3:092010 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mailman.mit.edu/pipermail/dspace-general/attachments/20100119/8db146d8/attachment.htm From tdonohue at duraspace.org Tue Jan 19 10:49:10 2010 From: tdonohue at duraspace.org (Tim Donohue) Date: Tue, 19 Jan 2010 09:49:10 -0600 Subject: [Dspace-general] Dspace general installation problems In-Reply-To: References: Message-ID: <4B55D476.3050609@duraspace.org> Amjad, First off, I'm copying this answer over to the 'dspace-tech' mailing list. The 'dspace-tech' list is the place where we recommend that you post problems with installations or just general questions about configurations, settings, etc. More information about the 'dspace-tech' list is available here: http://wiki.dspace.org/index.php/DSpaceResources#English_Lists On 1/19/2010 8:38 AM, AMJAD USMAN wrote: > I am a new user to Dspace and facing the following problems. > > Problem 1. > (In JSPUI case) > It properly creates Communities, collections, E-users, Groups, etc. > but when i try to submit any document like article to the collection, > then it gives system internal error after "document uploading" step. > > Problem 2. > (In XMLUI case) > It gives error when i press "complete submission" button during item > submission in xml user interface. In your first two problems, it'd be useful for us if you could see the error messages from your log files, when you encounter these problems in the JSPUI and XMLUI. In particular, you'd want to look for errors in these logs: [dspace]/log/dspace.log [tomcat]/logs/* More information is available on our Wiki page on How to Troubleshoot an Error with DSpace: http://wiki.dspace.org/index.php/Troubleshoot_an_error > > Problem 3. > after properly installing dspace, when i make any changes in the > config.xml file of the dspace, then they donot apply to dspace instance; > means those changes donot appear in the dspace user interface. I'm assuming by 'config.xml' you probably mean the main 'dspace.cfg' file. You should make sure you are editing the dspace.cfg file within the Installation directory [dspace]/config/, instead of the Source code directory [dspace-src]/dspace/config/ You also will need to restart Tomcat for your dspace.cfg changes to be seen within the XMLUI or JSPUI. There's more information around modifying your dspace.cfg settings in the latest DSpace Documentation: http://scm.dspace.org/svn/repo/dspace/trunk/dspace/docs/html/index.html You'll also want to specifically look more closely at the "Configuration" chapter: http://scm.dspace.org/svn/repo/dspace/trunk/dspace/docs/html/ch05.html > > > Problem 4. > tell me something about SRB File Storage in config.xml file, means how > to set these parameters. > because all the code in this section is commented. More information about the SRB File Storage is also in the "Configuration" chapter of the Documentation. It also links off to the main SRB (Storage Resource Brokerage) website for more information about SRB in general. Hopefully that will give you some more information on this functionality: http://scm.dspace.org/svn/repo/dspace/trunk/dspace/docs/html/ch05.html I hope this information is helpful. Again, send us (on the dspace-tech mailing list) some more details on the errors you are seeing in your log files. We'll try to help you figure out what could be going wrong in your DSpace installation. Good luck, - Tim From Acnez at u.washington.edu Tue Jan 19 12:15:48 2010 From: Acnez at u.washington.edu (Ann C. Nez) Date: Tue, 19 Jan 2010 09:15:48 -0800 Subject: [Dspace-general] How can I move an item from one collection to another? Message-ID: We have items in several collections in a sub-community that we want to move to a different collection under a main community. I tried mapping a test item from one collection to another, and then deleting the test collection. Before I deleted the test collection (containing the one test item), the system displayed the warning: Are you sure collection test 2 collection should be deleted? This will delete: * Any items and incomplete submissions in this collection that aren't contained in other collections * The contents of those items * All associated authorization policies I took this to mean that as long as the test item had been mapped to another collection it would continue to exist in that collection. However, after I deleted the test2 collection (and it's one item), the test item was no longer available in the collection to which it had been mapped. Is there a way to move an item to another collection without re-entering it as a new item? Ann Nez University of Washington Gallagher Law Library acnez at u.washington.edu -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mailman.mit.edu/pipermail/dspace-general/attachments/20100119/dc9fe286/attachment.htm From Claudia.Juergen at ub.tu-dortmund.de Tue Jan 19 12:51:49 2010 From: Claudia.Juergen at ub.tu-dortmund.de (Claudia Juergen) Date: Tue, 19 Jan 2010 18:51:49 +0100 Subject: [Dspace-general] How can I move an item from one collection to another? In-Reply-To: References: Message-ID: <070017d2223b9a20fba4ccfc3ddf7d72.squirrel@mail.ub.uni-dortmund.de> Hello Ann, which version of DSpace with which UI are you using? Since 1.5 there is a feature (jspui, 1.6 for xmlui) to move items from the DSpace UI. Log in as the DSpace instance administrator, navigate to the item you want to move, click on "Edit" in the admin tools. Then choose "Move Item" and select the collection you want the item to move to. If you are using a lower DSpace version you got to do it on db level. Hope that helps Claudia J?rgen > We have items in several collections in a sub-community that we want to > move to a different collection under a main community. > > I tried mapping a test item from one collection to another, and then > deleting the test collection. > Before I deleted the test collection (containing the one test item), the > system displayed the warning: > > Are you sure collection test 2 collection should be deleted? This will > delete: > > * Any items and incomplete submissions in this collection that aren't > contained in other collections > * The contents of those items > * All associated authorization policies > I took this to mean that as long as the test item had been mapped to > another collection it would continue to exist in that collection. > However, after I deleted the test2 collection (and it's one item), the > test item was no longer available in the collection to which it had been > mapped. > > Is there a way to move an item to another collection without re-entering > it as a new item? > > Ann Nez > University of Washington Gallagher Law Library > acnez at u.washington.edu > _______________________________________________ > Dspace-general mailing list > Dspace-general at mit.edu > http://mailman.mit.edu/mailman/listinfo/dspace-general > -- Claudia J?rgen Eldorado - Repositorium der TU Dortmund Universit?tsbibliothek Dortmund Vogeplothsweg 76 D-44227 Dortmund Tel.: 0049-231-755-4043 From Acnez at u.washington.edu Tue Jan 19 12:59:38 2010 From: Acnez at u.washington.edu (Ann C. Nez) Date: Tue, 19 Jan 2010 09:59:38 -0800 Subject: [Dspace-general] How can I move an item from one collection to another? In-Reply-To: <070017d2223b9a20fba4ccfc3ddf7d72.squirrel@mail.ub.uni-dortmund.de> References: <070017d2223b9a20fba4ccfc3ddf7d72.squirrel@mail.ub.uni-dortmund.de> Message-ID: Hello Claudia, We're using 1.5 xmlui - so I guess we'll need to wait for the next version if we want to avoid using the db method. Thanks! Ann Nez -----Original Message----- From: Claudia Juergen [mailto:Claudia.Juergen at ub.tu-dortmund.de] Sent: Tuesday, January 19, 2010 9:52 AM To: Ann C. Nez Cc: 'dspace-general at mit.edu' Subject: Re: [Dspace-general] How can I move an item from one collection to another? Hello Ann, which version of DSpace with which UI are you using? Since 1.5 there is a feature (jspui, 1.6 for xmlui) to move items from the DSpace UI. Log in as the DSpace instance administrator, navigate to the item you want to move, click on "Edit" in the admin tools. Then choose "Move Item" and select the collection you want the item to move to. If you are using a lower DSpace version you got to do it on db level. Hope that helps Claudia J?rgen > We have items in several collections in a sub-community that we want to > move to a different collection under a main community. > > I tried mapping a test item from one collection to another, and then > deleting the test collection. > Before I deleted the test collection (containing the one test item), the > system displayed the warning: > > Are you sure collection test 2 collection should be deleted? This will > delete: > > * Any items and incomplete submissions in this collection that aren't > contained in other collections > * The contents of those items > * All associated authorization policies > I took this to mean that as long as the test item had been mapped to > another collection it would continue to exist in that collection. > However, after I deleted the test2 collection (and it's one item), the > test item was no longer available in the collection to which it had been > mapped. > > Is there a way to move an item to another collection without re-entering > it as a new item? > > Ann Nez > University of Washington Gallagher Law Library > acnez at u.washington.edu > _______________________________________________ > Dspace-general mailing list > Dspace-general at mit.edu > http://mailman.mit.edu/mailman/listinfo/dspace-general > -- Claudia J?rgen Eldorado - Repositorium der TU Dortmund Universit?tsbibliothek Dortmund Vogeplothsweg 76 D-44227 Dortmund Tel.: 0049-231-755-4043 From Claudia.Juergen at ub.tu-dortmund.de Tue Jan 19 13:23:37 2010 From: Claudia.Juergen at ub.tu-dortmund.de (Claudia Juergen) Date: Tue, 19 Jan 2010 19:23:37 +0100 Subject: [Dspace-general] How can I move an item from one collection to another? In-Reply-To: References: <070017d2223b9a20fba4ccfc3ddf7d72.squirrel@mail.ub.uni-dortmund.de> Message-ID: <757b7d50279dd74ee8015754d4e56409.squirrel@mail.ub.uni-dortmund.de> Hello Ann, you can try the patch for the move item feature for xmlui: http://jira.dspace.org/jira/browse/DS-238 The move on db level is not that difficult. Make sure you got the proper backups. The sql commands for moving a single item are: update item set owning_collection=NewCollectionID where item_id=ItemID; update collection2item set collection_id=NewCollectionID where collection_id=OldCollectionID; Then run index-update. Hope that helps Claudia J?rgen > Hello Claudia, > We're using 1.5 xmlui - so I guess we'll need to wait for the next > version if we want to avoid using the db method. Thanks! > > Ann Nez > > > > -----Original Message----- > From: Claudia Juergen [mailto:Claudia.Juergen at ub.tu-dortmund.de] > Sent: Tuesday, January 19, 2010 9:52 AM > To: Ann C. Nez > Cc: 'dspace-general at mit.edu' > Subject: Re: [Dspace-general] How can I move an item from one collection > to another? > > Hello Ann, > > which version of DSpace with which UI are you using? > > Since 1.5 there is a feature (jspui, 1.6 for xmlui) to move items from > the DSpace UI. Log in as the DSpace instance administrator, navigate to > the item you want to move, click on "Edit" in the admin tools. Then choose > "Move Item" and select the collection you want the item to move to. > > If you are using a lower DSpace version you got to do it on db level. > > Hope that helps > > Claudia J?rgen > >> We have items in several collections in a sub-community that we want to >> move to a different collection under a main community. >> >> I tried mapping a test item from one collection to another, and then >> deleting the test collection. >> Before I deleted the test collection (containing the one test item), >> the >> system displayed the warning: >> >> Are you sure collection test 2 collection should be deleted? This will >> delete: >> >> * Any items and incomplete submissions in this collection that aren't >> contained in other collections >> * The contents of those items >> * All associated authorization policies >> I took this to mean that as long as the test item had been mapped to >> another collection it would continue to exist in that collection. >> However, after I deleted the test2 collection (and it's one item), the >> test item was no longer available in the collection to which it had been >> mapped. >> >> Is there a way to move an item to another collection without re-entering >> it as a new item? >> >> Ann Nez >> University of Washington Gallagher Law Library >> acnez at u.washington.edu >> _______________________________________________ >> Dspace-general mailing list >> Dspace-general at mit.edu >> http://mailman.mit.edu/mailman/listinfo/dspace-general >> > > > -- > Claudia J?rgen > Eldorado - Repositorium der TU Dortmund > > Universit?tsbibliothek Dortmund > Vogeplothsweg 76 > D-44227 Dortmund > Tel.: 0049-231-755-4043 > > > > -- Claudia J?rgen Eldorado - Repositorium der TU Dortmund Universit?tsbibliothek Dortmund Vogeplothsweg 76 D-44227 Dortmund Tel.: 0049-231-755-4043 From bram at mire.be Wed Jan 20 04:49:02 2010 From: bram at mire.be (Bram Luyten) Date: Wed, 20 Jan 2010 10:49:02 +0100 Subject: [Dspace-general] CALL: Open Repositories 2010 in Madrid - Submissions now open Message-ID: Submissions for Open Repositories 2010 are now open. Please access http://or2010.fecyt.es/Publico/Call/index.aspx to start your submission. The deadline for submission is the 1st of March 2010. As a sponsor of Open Repositories 2010, I'm proud to say that submissions are entered and reviewed in @mire's DSpace-based conference management system, Tog at ther . with kindest regards, Bram Luyten @mire - http://www.atmire.com Technologielaan 9 - 3001 Heverlee - Belgium 533 2nd Street - Encinitas, CA 92024 - USA http://www.togather.eu - Before getting together, get Tog at ther 2009/12/22 Carol Minton Morris > ==Apologies for cross-posting== > > ================================================================== > Open Repositories 2010 -- "The Grand Integration Challenge" > ================================================================== > > Repositories have been successfully established -- within and across > institutions -- as a major source of digital information in a variety of > environments such as research, education and cultural heritage. In a world > of increasingly dispersed and modularized digital services and content, it > remains a grand challenge for the future to cross the borders between > diverse poles: > > - the web and the repository, > - knowledge and technology, > - wild and curated content, > - linked and isolated data, > - disciplinary and institutional systems, > - scholars and service providers, > - ad-hoc and long-term access, > - ubiquitous and personalized environments, > - the cloud and the desktop. > > The Open Repositories Conference (6 to 9-JUL-2010 in Madrid, Spain) brings > together individuals and organizations responsible for the conception, > development, implementation, and management of digital repositories, as well > as stakeholders who interact with them for achieving the widest possible > integration in theoretical, practical, and strategic matters. > > The program of papers, panel discussions, poster presentations, user > groups, workshops, and tutorials will reflect the whole community of Open > Repositories. Dedicated open source software community meetings for the > major platforms (EPrints, DSpace and Fedora) will provide opportunities to > advance and coordinate the development of repository installations across > the world. > > > ==================== > Submission Process > ==================== > > * Conference papers * > We welcome two- to four-page proposals for presentations or panels that > deal with theoretical, practical, or administrative issues of digital > repositories. Abstracts of accepted papers will be made available through > the conference?s web site; all presentations and related materials used in > the program sessions will be deposited in the upcoming virtual conference > proceeding of Open Repositories 2010. > > * User Group Presentations * > Two- to four-page proposals for presentations or panels that focus on use > of one of the major repository platforms (EPrints, DSpace and Fedora) are > invited from developers, researchers, repository managers, administrators > and practitioners describing novel experiences or developments in the > construction and use of repositories. > > * Posters * > We invite developers, researchers, repository managers, administrators and > practitioners to submit one-page proposals for posters. > > * Workshops and Tutorials * > Proposals for workshops require a submission as well and can be > accommodated before or after the main conference. For preparatory inquiries > about workshop facilities, please contact the local team at < > alopezm at pas.uned.es>. > > PLEASE submit your paper through the conference system . The conference > system will be linked from the conference web site < > http://or2010.fecyt.es/> and will be available for submissions as of > January 15th, 2010. > > The best-rated papers from the conference will be subsequently published in > the Journal of Digital Information ). > > > ==================================== > Important Dates and Contact Info > ==================================== > > - 01-MAR-2010: Submission deadline (papers, user groups, posters, > workshops, tutorials) > - 15-APR-2010: Notification of acceptance for conference presentations, > workshops/tutorials > - 01-MAY-2010: Notification of acceptance for user group presentations and > posters > - 06-JUL-2010: Conference start > > DSpace User Group Meeting Contact: Valorie Hollister > Fedora User Group Meeting Contact: Thorny Staples > > EPrints User Group Meeting Chair: Les Carr > Program Committee Chair: Wolfram Horstmann > Host Organizing Committee: Alicia L?pez Medina > > > =================== > Conference Topics > =================== > > The committee will consider any submission of sufficient quality and > originality that relates to the field of Open Repositories. In the general > track, preference will be given to submissions that relate to the theme of > "The Grand Integration Challenge" as described in the introduction. > > Please regard the following list as a selection of topics that indicates > relevant fields. > > - Data Curation / Data Archives > - Interoperability with Scholarly and Scientific Applications > - Interactions with Learning Environments > - Generic Workflows and Services > - Integrating Open Repositories with the Grid / Cloud > - Applications in Libraries/Archives > - Disciplinary Requirements > > Do you have ideas that relate to different topics? Then please go ahead and > address them in your submission! > > ================================================================== > Enjoy! > > The Program Committee of Open Repositories 2010 > ================================================================== > > _______________________________________________ > Dspace-general mailing list > Dspace-general at mit.edu > http://mailman.mit.edu/mailman/listinfo/dspace-general > > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mailman.mit.edu/pipermail/dspace-general/attachments/20100120/de5d6c82/attachment.htm From tdonohue at duraspace.org Wed Jan 20 10:04:28 2010 From: tdonohue at duraspace.org (Tim Donohue) Date: Wed, 20 Jan 2010 09:04:28 -0600 Subject: [Dspace-general] NOTICE: dspace-general listserv will move on Jan 27 Message-ID: <4B571B7C.3010309@duraspace.org> All, On Weds, Jan 27 2010, we will be migrating the 'dspace-general' mailing list from its current location at MIT to a new location at SourceForge. We'd like to thank MIT for kindly hosting this mailing list for us over the years! (1) Why are we doing this? The primary reason for this migration is to make sure the 'dspace-general' mailing list uses the same infrastructure as our other mailing lists. Moving 'dspace-general' allows us to manage it similar to the other lists, and makes us less reliant on MIT staff for general maintenance tasks. It also allows us to use similar spam filters across all of our lists, to hopefully minimize the spam in your inbox. (2) How will this affect you as a subscriber to the list? During this migration, we will automatically add all subscribers of the old listserv as subscribers to the new listserv. You will not need to re-subscribe. If you have set your subscription to receive daily digests, these digest settings will also be added for you automatically on the new list. If you've customized any other subscription settings, you may need to re-customize them for the new list (only your digest settings will be automatically migrated). (3) What will be the new list address? The new list address (as of Weds, Jan 27) will be: dspace-general at lists.sourceforge.net Any emails sent to the old list address (dspace-general at mit.edu) will be automatically forwarded to the new list for a period of six months. Please remember to change your email address books during this period. (4) Will all the email archives also be migrated to SourceForge? Yes. The entire email archives (which go back to 2003) will be migrated over to SourceForge, where they can be accessed alongside the archives of all our other mailing lists. If you have any other questions, don't hesitate to contact myself (tdonohue at duraspace.org) or Valorie Hollister (vhollister at duraspace.org). We'll be happy to work with you around any concerns you may have. Thanks! Tim -- Tim Donohue Technical Lead for DSpace Project DuraSpace.org From vhollister at fedora-commons.org Thu Jan 21 08:16:14 2010 From: vhollister at fedora-commons.org (Valorie Hollister) Date: Thu, 21 Jan 2010 08:16:14 -0500 Subject: [Dspace-general] Final day for DuraCloud Jan 2010 Survey Message-ID: <4B58539E.9000200@fedora-commons.org> * The DuraCloud survey will be open for your participation until tomorrow, Friday January 22. We've had excellent participation so far -- but want to make sure we gather as much useful feedback as possible. If you haven't completed the survey, please do so by the end of Friday. Here is the link to the survey: http://www.surveymonkey.com/s/DJ7H3V7 ** For anyone interested in a preview of the full survey, a PDF version is available: http://duraspace.org/documents/DuraCloudSurveyJan10.pdf The purpose of this survey is to help the DuraSpace organization define what features and functionality are most important to the community as we develop DuraCloud. We also would like to identify the variety of use cases interested in the service. The survey should take no longer than 10 minutes to complete. If you are interested in participating in the beta test program for DuraCloud that launches late spring 2010 you can sign up at http://duraspace.org/duracloudpilotform.php. ** For more information on the DuraCloud project please visit http://duraspace.org/duracloud.php. Thanks for your participation and support. Valorie Hollister Director of Community Development, DSpace Project DuraSpace vhollister at duraspace.org * From mweaver at sju.edu Thu Jan 21 11:13:25 2010 From: mweaver at sju.edu (Marvin Weaver) Date: Thu, 21 Jan 2010 11:13:25 -0500 Subject: [Dspace-general] submission, searching, and displaying non-dublin core metadata Message-ID: <4B587D25.7080503@sju.edu> I just got dspace 1.5.2 up and running. I found where in the metadata admin I could create a metadata schema for data not included in Dublin core. Now I cannot figure out how to use the schema in the xmlui. I would like to add it to the submission page, make it searchable, and display it in a number of places. An entry in the FAQ seems to indicate that only Dublin core can be used. If this is the case, why is the option to create other metadata schemas included? I've noticed some discussion regarding using dublin core fields for other than their intended purposes (and that it is not a good idea). Is this the only way to use data fields that are not in dublin core? The last option seems to be adding new elements to dublin core that are not defined in dc. Is this an OK thing to do? What I am trying to do is add an author type of "SJUfaculty" to be able to select only our own faculty when there are non-SJU collaborators involved in a work. Also, we need to do a large import so whatever solution I use needs to be compatible with the batch input program. Thank you, Marvin Weaver From fcombernous at kezia.com Mon Jan 25 11:05:51 2010 From: fcombernous at kezia.com (Fabien COMBERNOUS) Date: Mon, 25 Jan 2010 17:05:51 +0100 Subject: [Dspace-general] options about postgresql. Message-ID: <4B5DC15F.6050700@kezia.com> Hi there, I'm trying to install dspace 1.6.0-rc1. In the dspace-manual.pdf provided, the chapter 3 about install said that postgresql 8.x have to be compiled with options --enable-multibyte, --enable-unicode and --with-java. But with sources of postgresql 8.3 the command "./configure --help" does not provide the options asked by dspace manual. How to compile options that does not exist ? Am i with wrong version of postgresql (provided by Debian Lenny) ? Regards, -- *Fabien COMBERNOUS* /unix system engineer/ www.kezia.com *Tel: +33 (0) 467 992 986* Kezia Group From fcombernous at kezia.com Mon Jan 25 11:17:03 2010 From: fcombernous at kezia.com (Fabien COMBERNOUS) Date: Mon, 25 Jan 2010 17:17:03 +0100 Subject: [Dspace-general] options about postgresql. In-Reply-To: <4B5DC15F.6050700@kezia.com> References: <4B5DC15F.6050700@kezia.com> Message-ID: <4B5DC3FF.6040202@kezia.com> Fabien COMBERNOUS wrote: > Hi there, > > I'm trying to install dspace 1.6.0-rc1. In the dspace-manual.pdf > provided, the chapter 3 about install said that postgresql 8.x have to > be compiled with options --enable-multibyte, --enable-unicode and > --with-java. But with sources of postgresql 8.3 the command "./configure > --help" does not provide the options asked by dspace manual. > > How to compile options that does not exist ? Am i with wrong version of > postgresql (provided by Debian Lenny) ? > > Regards, > Oups probably my post is not on the good mailing list. I apologize and post to technical list. -- *Fabien COMBERNOUS* /unix system engineer/ www.kezia.com *Tel: +33 (0) 467 992 986* Kezia Group From bram at mire.be Wed Jan 27 05:05:28 2010 From: bram at mire.be (Bram Luyten) Date: Wed, 27 Jan 2010 11:05:28 +0100 Subject: [Dspace-general] What DSpace could learn from IR+ Message-ID: Disclaimer: this post was originally formatted as a Facebook Note, so the version below might not contain all the images, layout, ... See the original version here: http://bit.ly/aJWlQw IR+ is the newly launched Open Source Repository platform, originally developed by the University of Rochester. As the university was a long time user of DSpace, highlighting a struggle to recruit content as early as 2005, I was very surprised to read in Wired Campus that launching a new, in-house developed platform, was one of the key points in the strategy to cope with the issues from the past . In the short article on Wired, the claim is made that DSpace lacks the key functionality for having a workspace, and easily customizable Researcher Pages. If you think of these arguments in the context of the Sticks vs Carrots arguments in promoting access, this approach clearly works on the "carrot" side, trying to convince people to adopt open access with new features. (while the most common "stick" approach is a deposit mandate, or using the repository as sole academic bibliography source for staff promotions etc). Now, examples of both stick and carrot approaches have been proven successful and unsuccessful in the past. It will be very interesting to see whether Rochester really hit the "sweet spot" of functionality that researchers are longing for. Although I didn't actually install and run the IR+ platform, I took the time to run through its manuals, to see what DSpace could really learn from IR+, feature wise. Here's my list, please comment, or illustrate which of these you think would really substantially improve DSpace: Elaborated user account settings - Multiple Email Addresses - Publication Name Management (especially useful when you get married during the course of your academic career) - An overview of accepted licences Researcher Pages - File & Link association - Pictures The researcher pages offer nice "profile" functionality, which is way better than currently offered in DSpace, but way lagging behind the current state of the art in this field (Facebook, Linkedin, ResearchGate, ...). Social features on the Researcher pages are lacking (colleague list, comments, ...), as well as integration of external services (blogs, twitter feed, ...) User Workspace - File and Folder Management - Share files with other users - Version management: upload new versions for files - File locks & Permission mechanism The implementation of User Workspaces gave me a very Google-Docs like feeling, but without the in-browser editors. Uploading & downloading files, and managing them locally on a PC could possibly be a show stopper here. But the version management, permission & locks and sharing system seem well implemented. Submission - Multiple collection selection for one submission - File(s) selection first - Collection(s) selection last As opposed to the DSpace submission process, IR+ starts from the file upload, and adds metadata provision afterwards. This would be useful in any approach where some metadata could be automatically generated from the uploaded file. Also interesting is the approach where the collection of choice, to which the item should be submitted, happens all the way at the end of the submission proces. It's also possible to submit to multiple collections. The software could be used to implement both a repository, as well as a referratory: it's possible to add a new "publication" without adding a file, but adding a hyperlink to an external resource instead. An embargo system is present, but has an impact on a whole item, instead of the individual files. I could upload a summarized presentation about an item as well as the full text, which is effectively under embargo, but the embargo settings would have an impact on both of them. Authors or co-authors are defined by text details (name, first name), ... but don't seem to have an (institution) identifier. It's not clear whether it's possible to differentiate between co-authors from the institution, and external ones. (Co-)Author entry screen The way *versioning is handled*, both in the area of workspaces, as well as published content, is really interesting. At this point, it isn't really clear if the platform really avoids that 2 researchers submit the same publication, or how duplicates are dealt with in general. In my personal opinion, 2 main difficulties in DSpace have not been addressed, and persist in IR+. It looks like the data model for published items is more or less as rigid as the one from DSpace: a hierarchy of collections can contain items, and these items can contain bitstreams. At the same time, there are no possibilities to relate items to eachother. So let's say some publications are part of the same virtual research project collaboration: apart from a keyword association, or being contained in the same collection, there seems to be no way to relate these items to eachother. There is also no reference to which statistics or reports can be generated or visualized. *Final verdict* Researcher pages, versioning, the idea of a collaborative workspace could really be useful additions to DSpace, as well as a few general tweaks that were implemented in IR+. In the context of DSpace 2 development, I think quite a lot can be learned. However, the most important limitations of DSpace (from a data model point of view) persist in this platform. Judging by the 2009 work on the DSpace 2 data model, those will be effectively tackled in DSpace 2. On a very personal level, I think it's unfortunate that the obviously talented developers didn't implement their ideas as a contribution or patch on DSpace. More about IR+: http://code.google.com/p/irplus/ Hope a nice discussion & some useful JIRA Feature requests could arise from this. regards, Bram @mire - http://www.atmire.com Technologielaan 9 - 3001 Heverlee - Belgium 533 2nd Street - Encinitas, CA 92024 - USA http://www.togather.eu - Before getting together, get Tog at ther -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mailman.mit.edu/pipermail/dspace-general/attachments/20100127/490b0cd1/attachment.htm From tdonohue at duraspace.org Wed Jan 27 09:39:07 2010 From: tdonohue at duraspace.org (Tim Donohue) Date: Wed, 27 Jan 2010 08:39:07 -0600 Subject: [Dspace-general] NOTICE: dspace-general listserv will move on Jan 27 In-Reply-To: <4B571B7C.3010309@duraspace.org> References: <4B571B7C.3010309@duraspace.org> Message-ID: <4B60500B.3050503@duraspace.org> All, Just a reminder that we'll be migrating the 'dspace-general' listserv today (likely over the next 2-3 hours). I'll send a notice once it has been fully migrated. See my email from last week (included below) for more information. Thanks, Tim On 1/20/2010 9:04 AM, Tim Donohue wrote: > All, > > On Weds, Jan 27 2010, we will be migrating the 'dspace-general' mailing > list from its current location at MIT to a new location at SourceForge. > We'd like to thank MIT for kindly hosting this mailing list for us over > the years! > > (1) Why are we doing this? > > The primary reason for this migration is to make sure the > 'dspace-general' mailing list uses the same infrastructure as our other > mailing lists. Moving 'dspace-general' allows us to manage it similar to > the other lists, and makes us less reliant on MIT staff for general > maintenance tasks. It also allows us to use similar spam filters across > all of our lists, to hopefully minimize the spam in your inbox. > > (2) How will this affect you as a subscriber to the list? > > During this migration, we will automatically add all subscribers of the > old listserv as subscribers to the new listserv. You will not need to > re-subscribe. > > If you have set your subscription to receive daily digests, these digest > settings will also be added for you automatically on the new list. If > you've customized any other subscription settings, you may need to > re-customize them for the new list (only your digest settings will be > automatically migrated). > > (3) What will be the new list address? > > The new list address (as of Weds, Jan 27) will be: > dspace-general at lists.sourceforge.net > > Any emails sent to the old list address (dspace-general at mit.edu) will be > automatically forwarded to the new list for a period of six months. > Please remember to change your email address books during this period. > > (4) Will all the email archives also be migrated to SourceForge? > > Yes. The entire email archives (which go back to 2003) will be migrated > over to SourceForge, where they can be accessed alongside the archives > of all our other mailing lists. > > > If you have any other questions, don't hesitate to contact myself > (tdonohue at duraspace.org) or Valorie Hollister > (vhollister at duraspace.org). We'll be happy to work with you around any > concerns you may have. > > Thanks! > > Tim >