[Dspace-devel] [DuraSpace JIRA] (DS-966) Make the testing framework available to all projects, not just dspace-api

2012-03-14 Thread Mark H. Wood (Assigned) (DuraSpace JIRA)

 [ 
https://jira.duraspace.org/browse/DS-966?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Mark H. Wood reassigned DS-966:
---

Assignee: Mark H. Wood

> Make the testing framework available to all projects, not just dspace-api
> -
>
> Key: DS-966
> URL: https://jira.duraspace.org/browse/DS-966
> Project: DSpace
>  Issue Type: Code Task
>  Components: Unit Testing Framework
>Reporter: Mark H. Wood
>Assignee: Mark H. Wood
>
> Unit-testing of DSpace requires a good deal of set-up.  dspace-api has a nice 
> testing framework, but it can't be used by other projects because they can't 
> access the DSpace-specific test scaffolding that is contained in dspace-api 
> as test-scoped classes.
> Also, the framework depends on copying a suitably-populated DSpace target 
> directory tree.  There is a separate test version of this tree which might 
> not be maintained in timely fashion when the installation version is updated. 
>  We should always be testing with the latest configuration and external 
> document files.
> I think this suggests two additional artifacts which can then be test-scoped 
> dependencies of any project wishing to use the framework.
> We need an archive (probably Zip) of the config and etc portions of the 
> DSpace target tree, suitably filtered for testing.  These files reside in the 
> dspace subproject and would need to be packaged there or in dspace-parent.
> We need a JAR of the common test scaffolding classes and their configuration 
> data.  These reside in dspace-api and would be packaged there.  (I think that 
> eventually we might want to pull the framework out into its own project, 
> which would simplify the build process and our thinking.)

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://jira.duraspace.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira



--
Virtualization & Cloud Management Using Capacity Planning
Cloud computing makes use of virtualization - but cloud computing 
also focuses on allowing computing to be delivered as a service.
http://www.accelacomm.com/jaw/sfnl/114/51521223/
___
Dspace-devel mailing list
Dspace-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-devel


[Dspace-devel] [DuraSpace JIRA] (DS-954) Browse Pagination

2012-02-22 Thread Mark H. Wood (Assigned) (DuraSpace JIRA)

 [ 
https://jira.duraspace.org/browse/DS-954?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Mark H. Wood reassigned DS-954:
---

Assignee: Mark H. Wood

> Browse Pagination
> -
>
> Key: DS-954
> URL: https://jira.duraspace.org/browse/DS-954
> Project: DSpace
>  Issue Type: Bug
>  Components: DSpace API
>Affects Versions: 1.7.2
>Reporter: Dan Ishimitsu
>Assignee: Mark H. Wood
>
> The problem occurs when using Author or Subject browsing. Clicking on a 
> linked "Starts With" letter at the top acts as expected. But then clicking on 
> Next Page (or Previous Page) afterwards will sometimes return a different 
> result than expect (ie the offset is wrong). You'll notice that the "total" # 
> of authors/subjects changes if the problem exists.
> I think this is caused because the "Starts With" locates its position in the 
> list based on distinct sort_values. But clicking on the Next/Prev passes that 
> position +/- offset, but uses a non-distinct list of sort_values. Ex. 
> MacDonald, John and Macdonald, John will both result in sort_value = 
> macdonald, john. So the distinct list counts it as 1, the non-distinct list 
> counts it as 2, and the offset is off by 1 when going to the next/prev page.
> At the time of this writing, the problem exists on 
> http://demo.dspace.org/xmlui if browsing by Author using starts with "C".
> Changing BrowseEngine.java as follows fixes this issue, but may cause others.
> 412c412
> < dao.setDistinct(true);
> ---
> > dao.setDistinct(false); //Removed distinct
> 441c441
> < int total = getTotalResults(true);
> ---
> > int total = getTotalResults(false); //Removed distinct

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://jira.duraspace.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira



--
Virtualization & Cloud Management Using Capacity Planning
Cloud computing makes use of virtualization - but cloud computing 
also focuses on allowing computing to be delivered as a service.
http://www.accelacomm.com/jaw/sfnl/114/51521223/
___
Dspace-devel mailing list
Dspace-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-devel


[Dspace-devel] [DuraSpace JIRA] (DS-888) file description at UploadStep

2011-11-09 Thread Mark H. Wood (Assigned) (DuraSpace JIRA)

 [ 
https://jira.duraspace.org/browse/DS-888?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Mark H. Wood reassigned DS-888:
---

Assignee: Mark H. Wood

> file description at UploadStep
> --
>
> Key: DS-888
> URL: https://jira.duraspace.org/browse/DS-888
> Project: DSpace
>  Issue Type: Bug
>  Components: DSpace API
>Affects Versions: 1.7.1
>Reporter: Kostas Maistrelis
>Assignee: Mark H. Wood
>Priority: Trivial
>
> dspace-api/src/main/java/org/dspace/submit/step/UploadStep.java
> LINE: 466
> -
> String fileDescription =  (String) request.getAttribute(param 
> + "-description");
> if(fileDescription==null ||fileDescription.length()==0)
> {
> request.getParameter("description");
> }
> -
>  fileDescription will never fill with the request parameter description

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://jira.duraspace.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira



--
RSA(R) Conference 2012
Save $700 by Nov 18
Register now
http://p.sf.net/sfu/rsa-sfdev2dev1
___
Dspace-devel mailing list
Dspace-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-devel


[Dspace-devel] [DuraSpace JIRA] (DS-1034) Incorrectly active breakcrumb links (XMLUI)

2011-09-28 Thread Mark H. Wood (Assigned) (DuraSpace JIRA)

 [ 
https://jira.duraspace.org/browse/DS-1034?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Mark H. Wood reassigned DS-1034:


Assignee: Mark H. Wood

> Incorrectly active breakcrumb links (XMLUI)
> ---
>
> Key: DS-1034
> URL: https://jira.duraspace.org/browse/DS-1034
> Project: DSpace
>  Issue Type: Bug
>  Components: XMLUI
>Affects Versions: 1.8.0
>Reporter: Tim Donohue
>Assignee: Mark H. Wood
> Fix For: 1.8.0
>
> Attachments: breadcrumb-control-panel.png
>
>
> This was initially reported in UserVoice during Testathon: 
> http://duraspace.uservoice.com/forums/84583-dspace-1-8-feedback/suggestions/2261545-incorrectly-active-breakcrumb-links?ref=title
> On the following pages, the final name in the breadcrumb trail is active but 
> should not be (because the user is already there): 
> Home 
> Community 
> Collection 
> Submissions 
> People (Manage E-people) 
> Groups (Manage Groups) 
> Authorizations 
> Metadata Registry 
> Format Registry 
> Control Panel
> This seems like something that could be fixed easily in our XMLUI Themes, so 
> I went ahead and scheduled it for 1.8.0.  Needs a volunteer!

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://jira.duraspace.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira



--
All the data continuously generated in your IT infrastructure contains a
definitive record of customers, application performance, security
threats, fraudulent activity and more. Splunk takes this data and makes
sense of it. Business sense. IT sense. Common sense.
http://p.sf.net/sfu/splunk-d2dcopy1
___
Dspace-devel mailing list
Dspace-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-devel


[Dspace-devel] [DuraSpace JIRA] (DS-1035) Breadcrumb trail for "Home" is incorrect (XMLUI, Mirage Theme)

2011-09-28 Thread Mark H. Wood (Assigned) (DuraSpace JIRA)

 [ 
https://jira.duraspace.org/browse/DS-1035?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Mark H. Wood reassigned DS-1035:


Assignee: Mark H. Wood

> Breadcrumb trail for "Home" is incorrect (XMLUI, Mirage Theme)
> --
>
> Key: DS-1035
> URL: https://jira.duraspace.org/browse/DS-1035
> Project: DSpace
>  Issue Type: Bug
>  Components: XMLUI
>Affects Versions: 1.7.0, 1.7.1, 1.7.2, 1.8.0
>Reporter: Tim Donohue
>Assignee: Mark H. Wood
> Fix For: 1.8.0
>
> Attachments: ds-1035.patch
>
>
> This was reported in UserVoice during the 1.8 Testathon: 
> http://duraspace.uservoice.com/forums/84583-dspace-1-8-feedback/suggestions/2261589-breadcrumb-label-for-home-is-incorrect?ref=title
> The breadcrumb trail that appears after going "Home" is "DSpace Home --> 
> Community List". That is identical to the breadcrumb trail that appears when 
> on the "Communities in DSpace" page. Even though the home page includes a 
> community list, the breadcrumb should just be "DSpace Home" and the node 
> should not be active.
> This needs a volunteer to investigate & fix.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://jira.duraspace.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira



--
All the data continuously generated in your IT infrastructure contains a
definitive record of customers, application performance, security
threats, fraudulent activity and more. Splunk takes this data and makes
sense of it. Business sense. IT sense. Common sense.
http://p.sf.net/sfu/splunk-d2dcopy1
___
Dspace-devel mailing list
Dspace-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-devel