[Dspace-devel] DSpace Developers Meeting Today Agenda

2010-03-24 Thread Tim Donohue
All,

As usual, we have a DSpace Developers Meeting today (Weds, March 24) in 
the #duraspace IRC channel at 20:00 UTC.  To determine your local time, 
check the world clock:
http://www.timeanddate.com/worldclock/fixedtime.html?hour=20min=0sec=0p1=0

Agenda items include:

(1) We have two more new Committers!  Welcome to both Robin Taylor 
(Edinburgh University Library) and Keith Gilbertson (Georgia Institute 
of Technology).

(2) DSpace Wiki Migration is coming soon.  We'll be moving to the 
DuraSpace Confluence system likely in middle of next week (likely March 
30 or 31).  Final announcements will be going out later this week.  We'd 
appreciate any help you can provide next week in cleaning up migration 
issues, etc.

(3) What should our Special Topics meeting for April discuss?  I'd like 
to hold this next Special Topics Meeting on Weds, April 7 (in two 
weeks).  Add topic suggestions to wiki: 
http://wiki.dspace.org/index.php/Special_Topics

(4) It's been a while since we've done a JIRA Review.  We last left off 
with DS-494.  We'll spend some time reviewing recent JIRA issues.

(5) Other topics?

Transcripts and more information about our Developer meetings are 
available at:

http://wiki.dspace.org/index.php/Developer_Meetings

As always, all our meetings are public.  We welcome any developers or 
non-developers to attend or just read along with the chat discussions.


Tim Donohue
Technical Lead for DSpace Project
DuraSpace.org

--
Download Intel#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
Dspace-devel mailing list
Dspace-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-devel


[Dspace-devel] [DSJ] Created: (DS-522) Script to convert Apache accesslog data into solr stats records

2010-03-24 Thread Peter Dietz (JIRA)
Script to convert Apache accesslog data into solr stats records
---

 Key: DS-522
 URL: http://jira.dspace.org/jira/browse/DS-522
 Project: DSpace 1.x
  Issue Type: New Feature
  Components: Solr
Affects Versions: 1.6.1
Reporter: Peter Dietz
Assignee: Peter Dietz
Priority: Minor
 Attachments: DS-ApacheLogConverter-1.patch

Patch added that allows Apache's access log data to be used to possible 
supplant dspace.log data.

Before running clean up your access log with an awk command.
awk '{print $4,$5,,,$7,,,DB,,,anonymous,,,$1}' /path/to/access_log 
 /path/out/access_log_intermediate

Then this command can be invoked with dspace.
[dspace/bin/] ./dspace stats-apachelog-converter -i 
/path/out/access_log_intermediate -o /path/solr/solrready


Currently, it skips /dspace/retrieve/40199/1990-RA-01.jpg.jpg entries.

Check it out, and helpful find some bugs in it for me to fix. The rationale for 
wanting to add this is because our dspace.log files got rolled over into 
dspace.log.0 -- dspace.log.500, thus we have some missing data that this 
converter could fill the void for.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.dspace.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira



--
Download Intel#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
Dspace-devel mailing list
Dspace-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-devel


[Dspace-devel] [DSJ] Updated: (DS-522) Script to convert Apache accesslog data into solr stats records

2010-03-24 Thread Peter Dietz (JIRA)

 [ 
http://jira.dspace.org/jira/browse/DS-522?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Peter Dietz updated DS-522:
---

Attachment: DS-ApacheLogConverter-1b.patch

 Script to convert Apache accesslog data into solr stats records
 ---

 Key: DS-522
 URL: http://jira.dspace.org/jira/browse/DS-522
 Project: DSpace 1.x
  Issue Type: New Feature
  Components: Solr
Affects Versions: 1.6.1
Reporter: Peter Dietz
Assignee: Peter Dietz
Priority: Minor
 Attachments: DS-ApacheLogConverter-1.patch, 
 DS-ApacheLogConverter-1b.patch


 Patch added that allows Apache's access log data to be used to possible 
 supplant dspace.log data.
 Before running clean up your access log with an awk command.
 awk '{print $4,$5,,,$7,,,DB,,,anonymous,,,$1}' 
 /path/to/access_log  /path/out/access_log_intermediate
 Then this command can be invoked with dspace.
 [dspace/bin/] ./dspace stats-apachelog-converter -i 
 /path/out/access_log_intermediate -o /path/solr/solrready
 Currently, it skips /dspace/retrieve/40199/1990-RA-01.jpg.jpg entries.
 Check it out, and helpful find some bugs in it for me to fix. The rationale 
 for wanting to add this is because our dspace.log files got rolled over into 
 dspace.log.0 -- dspace.log.500, thus we have some missing data that this 
 converter could fill the void for.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.dspace.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira



--
Download Intel#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
Dspace-devel mailing list
Dspace-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-devel


[Dspace-devel] [DSJ] Commented: (DS-522) Script to convert Apache accesslog data into solr stats records

2010-03-24 Thread Peter Dietz (JIRA)

[ 
http://jira.dspace.org/jira/browse/DS-522?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=11261#action_11261
 ] 

Peter Dietz commented on DS-522:


Use the 1b patch. The first one had some junk from development that I forgot to 
yank out.  (local file path to in / out)

 Script to convert Apache accesslog data into solr stats records
 ---

 Key: DS-522
 URL: http://jira.dspace.org/jira/browse/DS-522
 Project: DSpace 1.x
  Issue Type: New Feature
  Components: Solr
Affects Versions: 1.6.1
Reporter: Peter Dietz
Assignee: Peter Dietz
Priority: Minor
 Attachments: DS-ApacheLogConverter-1.patch, 
 DS-ApacheLogConverter-1b.patch


 Patch added that allows Apache's access log data to be used to possible 
 supplant dspace.log data.
 Before running clean up your access log with an awk command.
 awk '{print $4,$5,,,$7,,,DB,,,anonymous,,,$1}' 
 /path/to/access_log  /path/out/access_log_intermediate
 Then this command can be invoked with dspace.
 [dspace/bin/] ./dspace stats-apachelog-converter -i 
 /path/out/access_log_intermediate -o /path/solr/solrready
 Currently, it skips /dspace/retrieve/40199/1990-RA-01.jpg.jpg entries.
 Check it out, and helpful find some bugs in it for me to fix. The rationale 
 for wanting to add this is because our dspace.log files got rolled over into 
 dspace.log.0 -- dspace.log.500, thus we have some missing data that this 
 converter could fill the void for.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.dspace.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira



--
Download Intel#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
Dspace-devel mailing list
Dspace-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-devel


[Dspace-devel] [DSJ] Commented: (DS-495) Broken link in the documentation section 8.2.3.

2010-03-24 Thread Caryn N. (JIRA)

[ 
http://jira.dspace.org/jira/browse/DS-495?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=11262#action_11262
 ] 

Caryn N. commented on DS-495:
-

Is this the appropriate destination file? 
http://cwspace.mit.edu/files/metssipv0p9p1.pdf


 Broken link in the documentation section 8.2.3.
 ---

 Key: DS-495
 URL: http://jira.dspace.org/jira/browse/DS-495
 Project: DSpace 1.x
  Issue Type: Bug
  Components: Documentation
Affects Versions: 1.6.0
Reporter: Robin Taylor
Priority: Trivial

 In section '8.2.3. METS packages' there is a broken link to  
 http://www.dspace.org/standards/METS/SIP/profilev1p0/metsipv1p0.pdf.  Dont 
 know where it should be going, sorry.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.dspace.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira



--
Download Intel#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
Dspace-devel mailing list
Dspace-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-devel


[Dspace-devel] [DSJ] Assigned: (DS-496) Title Browse index has initial/definite articles showing up.

2010-03-24 Thread Andrea Bollini (JIRA)

 [ 
http://jira.dspace.org/jira/browse/DS-496?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Andrea Bollini reassigned DS-496:
-

Assignee: Andrea Bollini

 Title Browse index has initial/definite articles showing up.
 

 Key: DS-496
 URL: http://jira.dspace.org/jira/browse/DS-496
 Project: DSpace 1.x
  Issue Type: Bug
  Components: DSpace API
Affects Versions: 1.5.0, 1.5.1, 1.5.2, 1.6.0
 Environment: UNIX/LINUX/AIX
Reporter: Jeffrey Trimble
Assignee: Andrea Bollini

 The default property key for the TITLE BROWSE indexing is:
 webui.browse.index.3 = title:item:title
 If you decide to include other DC elements (or for that matter, other schema) 
 in this index, such as:
 webui.browse.index.3 = 
 title:metadata:dc.title,dc.relation.ispartofseries:title:full
 The indexes seemed to generate correctly, but the browse screens include any 
 title that begins with a definite
 article (the, an, a, der, die, das, etc.) in the index and as included in the 
 link.
 Thus, the title: The Art of Fugue, BWV 1080, Contrapunctus 4 has the 
 following URL to link to the specific item:
 http://rspace.maag.ysu.edu:8080/jspui/browse?type=titleorder=ASCrpp=20value=The+Art+of+Fugue%2C+BWV+1080%2C+Contrapunctus+4
 If you REMOVE 'The+' from the URL, the link works correctly.
 Our documentation instructs the administrator how to customize the browse 
 title correctly, otherwise, title.other, ispartofseries, and other title 
 entries
 would not interfile, which is absolutely necessary for the user to find all 
 things collocated together.  (titles, uniform titles, series, other titles 
 should
 be in one index.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.dspace.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira



--
Download Intel#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
Dspace-devel mailing list
Dspace-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-devel


[Dspace-devel] [DSJ] Closed: (DS-487) Create the ability to cutomise the look and feel of the Manakin XMLUI using the web interface.

2010-03-24 Thread Kim Shepherd (JIRA)

 [ 
http://jira.dspace.org/jira/browse/DS-487?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Kim Shepherd closed DS-487.
---

Documentation Status:   (was: Needed)
  Resolution: Won't Fix

Not a bug or issue, no response from owner. Will link http://ir.sun.ac.za/wiki/ 
from the DSpace wiki somewhere since it has some nice guides for beginners

 Create the ability to cutomise the look and feel of the Manakin XMLUI using 
 the web interface.
 --

 Key: DS-487
 URL: http://jira.dspace.org/jira/browse/DS-487
 Project: DSpace 1.x
  Issue Type: New Feature
  Components: XMLUI
Affects Versions: 1.5.2, 1.6.0
Reporter: Hilton Gibson
Assignee: Kim Shepherd
   Original Estimate: 3 weeks
  Remaining Estimate: 3 weeks

 See: http://ir.sun.ac.za/wiki/index.php/Asset_Presentation

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.dspace.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira



--
Download Intel#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
Dspace-devel mailing list
Dspace-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-devel


[Dspace-devel] [DSJ] Closed: (DS-485) Creation of custom input forms pages per collection using the web interfaces.

2010-03-24 Thread Kim Shepherd (JIRA)

 [ 
http://jira.dspace.org/jira/browse/DS-485?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Kim Shepherd closed DS-485.
---

Documentation Status:   (was: Needed)
  Resolution: Won't Fix

Not a bug or issue, no response from owner. Will link http://ir.sun.ac.za/wiki/ 
from the DSpace wiki somewhere since it has some nice guides for beginners

 Creation of custom input forms pages per collection using the web interfaces.
 -

 Key: DS-485
 URL: http://jira.dspace.org/jira/browse/DS-485
 Project: DSpace 1.x
  Issue Type: New Feature
  Components: JSPUI, XMLUI
Affects Versions: 1.5.2, 1.6.0
 Environment: Ubuntu 8.04 and then 10.04 in April
Reporter: Hilton Gibson
Assignee: Kim Shepherd
   Original Estimate: 2 minutes
  Remaining Estimate: 2 minutes

 See: http://ir.sun.ac.za/wiki/index.php/Asset_Submissions

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.dspace.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira



--
Download Intel#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
Dspace-devel mailing list
Dspace-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-devel


[Dspace-devel] [DSJ] Closed: (DS-486) Creation of custom controlled vocabularies to be used for submission and metadata editing using the web interfaces.

2010-03-24 Thread Kim Shepherd (JIRA)

 [ 
http://jira.dspace.org/jira/browse/DS-486?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Kim Shepherd closed DS-486.
---

Documentation Status:   (was: Needed)
  Resolution: Won't Fix

Not a bug or issue, no response from owner. Will link http://ir.sun.ac.za/wiki/ 
from the DSpace wiki somewhere since it has some nice guides for beginners

 Creation of custom controlled vocabularies to be used for submission and 
 metadata editing using the web interfaces.
 ---

 Key: DS-486
 URL: http://jira.dspace.org/jira/browse/DS-486
 Project: DSpace 1.x
  Issue Type: New Feature
  Components: JSPUI, XMLUI
Affects Versions: 1.5.2, 1.6.0
 Environment: Ubuntu 8.04 and then 10.04 in April
Reporter: Hilton Gibson
Assignee: Kim Shepherd
   Original Estimate: 2 weeks
  Remaining Estimate: 2 weeks

 See: http://ir.sun.ac.za/wiki/index.php/Asset_Submissions

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.dspace.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira



--
Download Intel#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
Dspace-devel mailing list
Dspace-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-devel


[Dspace-devel] [DSJ] Closed: (DS-484) Import of collection/s and item/s using the web interfaces.

2010-03-24 Thread Kim Shepherd (JIRA)

 [ 
http://jira.dspace.org/jira/browse/DS-484?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Kim Shepherd closed DS-484.
---

Documentation Status:   (was: Needed)
  Resolution: Won't Fix

Not a bug or issue, no response from owner. Will link http://ir.sun.ac.za/wiki/ 
from the DSpace wiki somewhere since it has some nice guides for beginners

 Import of collection/s and item/s using the web interfaces.
 ---

 Key: DS-484
 URL: http://jira.dspace.org/jira/browse/DS-484
 Project: DSpace 1.x
  Issue Type: New Feature
  Components: JSPUI, XMLUI
Affects Versions: 1.5.2, 1.6.0
 Environment: Ubuntu 8.04 and then 10.04 in April
Reporter: Hilton Gibson
Assignee: Kim Shepherd
   Original Estimate: 2 weeks
  Remaining Estimate: 2 weeks

 See: http://ir.sun.ac.za/wiki/index.php/Asset_Import_and_Export

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.dspace.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira



--
Download Intel#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
Dspace-devel mailing list
Dspace-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-devel