[Dspace-tech] CAS for DSpace 5.1 XMLUI

2015-05-08 Thread Monika C. Mevenkamp
Just want to thank you for the CAS integration by Thomas 
Misilohttps://github.com/misilot/DSpace/tree/cas-authentication
It worked like a charm for me

Monika


Monika Mevenkamp
phone: 609-258-4161
Princeton University, Princeton, NJ 08544


--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech
List Etiquette: https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

Re: [Dspace-tech] spider ip recognition

2015-05-08 Thread Monika C. Mevenkamp
Anthony

I wrote a small ruby script to put solr queries together when I was poking 
around my stats

see https://github.com/akinom/dscriptor/blob/master/solr/solr_query.rb
an example parameter file is 
https://github.com/akinom/dscriptor/blob/master/solr/solr_query.yml

run it asruby solr/solr_query.rb

of cause you ned to adjust the parameters in the mL file

you can query like this

http://localhost:YOUR-PORT/solr/statistics/select?wt=jsonindent=truerows=1facet=truefacet.field=ipfacet.mincount=1q=type:2+id:218+isBot:false

exclude records that are marked as bots
do type:2 - aka items
do id:218 - aka item with id 218
return one item
facet on ip addresses

crank up the number of rows to get more matching docs

Monika




Monika Mevenkamp
phone: 609-258-4161
Princeton University, Princeton, NJ 08544


On May 7, 2015, at 3:26 PM, Anthony Petryk 
anthony.pet...@uottawa.camailto:anthony.pet...@uottawa.ca wrote:

Anyway, we want to determine whether these stats are bona fide or whether 
there's something wrong with the spider detection.  From the documentation it 
seems we have to query Solr directly to do this.  Not being an expert in Solr, 
I'm hoping someone on this list could provide the query that retrieves *all the 
stats for a given item* (i.e. what's listed under Common stored fields for all 
usage events in the documentation).

--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech
List Etiquette: https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

Re: [Dspace-tech] spider ip recognition

2015-05-08 Thread Anthony Petryk
Thanks very much Monika!  I'll try it out.

Cheers,

Anthony

From: Monika C. Mevenkamp [mailto:moni...@princeton.edu]
Sent: Friday, May 08, 2015 9:59 AM
To: Anthony Petryk
Cc: dspace-tech@lists.sourceforge.net
Subject: Re: [Dspace-tech] spider ip recognition

Anthony

I wrote a small ruby script to put solr queries together when I was poking 
around my stats

see https://github.com/akinom/dscriptor/blob/master/solr/solr_query.rb
an example parameter file is 
https://github.com/akinom/dscriptor/blob/master/solr/solr_query.yml

run it asruby solr/solr_query.rb

of cause you ned to adjust the parameters in the mL file

you can query like this

http://localhost:YOUR-PORT/solr/statistics/select?wt=jsonindent=truerows=1facet=truefacet.field=ipfacet.mincount=1q=type:2+id:218+isBot:false

exclude records that are marked as bots
do type:2 - aka items
do id:218 - aka item with id 218
return one item
facet on ip addresses

crank up the number of rows to get more matching docs

Monika




Monika Mevenkamp
phone: 609-258-4161
Princeton University, Princeton, NJ 08544


On May 7, 2015, at 3:26 PM, Anthony Petryk 
anthony.pet...@uottawa.camailto:anthony.pet...@uottawa.ca wrote:

Anyway, we want to determine whether these stats are bona fide or whether 
there's something wrong with the spider detection.  From the documentation it 
seems we have to query Solr directly to do this.  Not being an expert in Solr, 
I'm hoping someone on this list could provide the query that retrieves *all the 
stats for a given item* (i.e. what's listed under Common stored fields for all 
usage events in the documentation).

--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech
List Etiquette: https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

[Dspace-tech] db upgrade in versoin 5

2015-05-08 Thread Jose Blanco
I'm upgrading to version 5.2 from 4, and see  that now the db upgrade is
handled with flyway.  Before running

[dspace]/bin/dspace database migrate

It would be good to see what changes are going to be done to the db.  Is
there a file that shows how the db will change?

Thank you! Jose
--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech
List Etiquette: https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

Re: [Dspace-tech] db upgrade in versoin 5

2015-05-08 Thread Jose Blanco
Tim, Thanks.  I just ran

 [dspace]/bin/dspace database migrate

and I'm getting this error:

Caused by: org.postgresql.util.PSQLException: ERROR: constraint
metadatavalue_item_id_fkey of relation metadatavalue does not exist
at
org.postgresql.core.v3.QueryExecutorImpl.receiveErrorResponse(QueryExecutorImpl.java:2103)
at org.


This is what database info, tells me:

| 3.0| Upgrade to DSpace 3.x sche | |
PreInit |
| 4.0| Initializing from DSpace 4 | 2015-05-08 13:23:25 |
Success |
| 5.0.2014.08.08 | DS-1945 Helpdesk Request a | 2015-05-08 13:23:26 |
Success |
| 5.0.2014.09.25 | DS 1582 Metadata For All O | |
Pending |
| 5.0.2014.09.26 | DS-1582 Metadata For All O | |
Pending |

I ran info before migrate and it told me what you predicted.  Als, I
ran update-sequences.sql
before migrate.  Not sure what to do from here.

-Thank you! Jose

On Fri, May 8, 2015 at 1:33 PM, Tim Donohue tdono...@duraspace.org wrote:

 Hi Jose,

 Yes, those are the migration scripts themselves in the API. There are a
 lot of them in the upgrade to 5.x, primarily to support the idea of
 metadata on all objects.

 You can also get a summary report of your database's status by running:

 [dspace]/bin/dspace database info

 This will show a list of all the database migrations (all the way back
 to 1.0).

 Since you don't have Flyway yet enabled on the database (which happens
 as part of the 5.x upgrade), this info command will note something
 like Your database looks to be compatible with DSpace version [#]. All
 upgrades *after* version [#] will be run during the next migration.

 - Tim

 On 5/8/2015 11:41 AM, Jose Blanco wrote:
  I think I found the changes in:
 
 
 dspace/dspace-api/target/classes/org/dspace/storage/rdbms/sqlmigration/postgres
 
  There are lots of changes.
 
  -Jose
 
  On Fri, May 8, 2015 at 12:33 PM, Jose Blanco blan...@umich.edu
  mailto:blan...@umich.edu wrote:
 
  I'm upgrading to version 5.2 from 4, and see  that now the db
  upgrade is handled with flyway.  Before running
 
  [dspace]/bin/dspace database migrate
 
  It would be good to see what changes are going to be done to the db.
  Is there a file that shows how the db will change?
 
  Thank you! Jose
 
 
 
 
 
 --
  One dashboard for servers and applications across Physical-Virtual-Cloud
  Widest out-of-the-box monitoring support with 50+ applications
  Performance metrics, stats and reports that give you Actionable Insights
  Deep dive visibility with transaction tracing using APM Insight.
  http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
 
 
 
  ___
  DSpace-tech mailing list
  DSpace-tech@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/dspace-tech
  List Etiquette:
 https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette
 


 --
 One dashboard for servers and applications across Physical-Virtual-Cloud
 Widest out-of-the-box monitoring support with 50+ applications
 Performance metrics, stats and reports that give you Actionable Insights
 Deep dive visibility with transaction tracing using APM Insight.
 http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
 ___
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/dspace-tech
 List Etiquette:
 https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech
List Etiquette: https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

Re: [Dspace-tech] db upgrade in versoin 5

2015-05-08 Thread Tim Donohue
Hi Jose,

Yes, those are the migration scripts themselves in the API. There are a 
lot of them in the upgrade to 5.x, primarily to support the idea of 
metadata on all objects.

You can also get a summary report of your database's status by running:

[dspace]/bin/dspace database info

This will show a list of all the database migrations (all the way back 
to 1.0).

Since you don't have Flyway yet enabled on the database (which happens 
as part of the 5.x upgrade), this info command will note something 
like Your database looks to be compatible with DSpace version [#]. All 
upgrades *after* version [#] will be run during the next migration.

- Tim

On 5/8/2015 11:41 AM, Jose Blanco wrote:
 I think I found the changes in:

 dspace/dspace-api/target/classes/org/dspace/storage/rdbms/sqlmigration/postgres

 There are lots of changes.

 -Jose

 On Fri, May 8, 2015 at 12:33 PM, Jose Blanco blan...@umich.edu
 mailto:blan...@umich.edu wrote:

 I'm upgrading to version 5.2 from 4, and see  that now the db
 upgrade is handled with flyway.  Before running

 [dspace]/bin/dspace database migrate

 It would be good to see what changes are going to be done to the db.
 Is there a file that shows how the db will change?

 Thank you! Jose




 --
 One dashboard for servers and applications across Physical-Virtual-Cloud
 Widest out-of-the-box monitoring support with 50+ applications
 Performance metrics, stats and reports that give you Actionable Insights
 Deep dive visibility with transaction tracing using APM Insight.
 http://ad.doubleclick.net/ddm/clk/290420510;117567292;y



 ___
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/dspace-tech
 List Etiquette: 
 https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette


--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech
List Etiquette: https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette


Re: [Dspace-tech] db upgrade in versoin 5

2015-05-08 Thread Jose Blanco
I think I found the changes in:

dspace/dspace-api/target/classes/org/dspace/storage/rdbms/sqlmigration/postgres

There are lots of changes.

-Jose

On Fri, May 8, 2015 at 12:33 PM, Jose Blanco blan...@umich.edu wrote:

 I'm upgrading to version 5.2 from 4, and see  that now the db upgrade is
 handled with flyway.  Before running

 [dspace]/bin/dspace database migrate

 It would be good to see what changes are going to be done to the db.  Is
 there a file that shows how the db will change?

 Thank you! Jose

--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech
List Etiquette: https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

[Dspace-tech] Problems with Choice Presentation Style

2015-05-08 Thread Guillermo Esteban Murillo Goussen
Hi guys, I've just read the documentation about Authority Control of
Metadata Values and began to experiment with the plugins.

I've succesfully tried the Sample plugin at the dc.title.alternative field
(input type twobox) with

Lookup

[image: Imágenes integradas 1]


and Select

[image: Imágenes integradas 2]


but I haven't been able to see the Suggest presentation working.  Could
it be something with Ajax?

Thanks for your help

Guillermo Murillo Goussen
www.kerwa.ucr.ac.cr





-- 
La pureza del alma no se pierde sin consentimiento
--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech
List Etiquette: https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

Re: [Dspace-tech] freshly installed dspace 5 has problems

2015-05-08 Thread Peter Dietz
I lost several hours today due to this.

git diff
diff --git a/modules/discovery.cfg b/modules/discovery.cfg
index 30f7601..ca5d4e8 100644
--- a/modules/discovery.cfg
+++ b/modules/discovery.cfg
@@ -5,7 +5,7 @@
 # faceted-search system.#
 #---#
 # Search Indexing #
-search.server = http://localhost:28523/search
+search.server = http://localhost:28523/solr/search


Make sure your config/modules/discovery.cfg has the correct configuration
for SOLR search.server, same with configs for statistics, and oai. (We use
random port numbers, instead of 8080).


Peter Dietz
Longsight
www.longsight.com
pe...@longsight.com
p: 740-599-5005 x809

On Thu, Mar 19, 2015 at 5:51 PM, Hongxing Geng bi...@athabascau.ca wrote:

 Thanks Andrea and Aaron. It does work

 Hongxing Geng
 Library Services
 Athabasca University
 Phone: 780-675-6589

 - Andrea Schweer schw...@waikato.ac.nz wrote:
  Hi,
 
  it looks like solr is not running. Please double-check step 9 of the
 installation instructions:
 https://wiki.duraspace.org/display/DSDOC5x/Installing+DSpace#InstallingDSpace-Installation
  For a standard XMLUI install, you will need to deploy at least the xmlui
 and the solr web apps. Step 10 of the instructions tells you how to deploy
 these.
 
  cheers,
  Andrea
 
 
  On 20/03/15 09:22, Hongxing Geng wrote:
 

 
 
  Hi there,
 
 
  I just freshly installed a dspace 5 instance, but has a few problems:
  1. Any submissions to a collection are not shown in that collection.
  2. On xmlui home page, if I want to browse by issue date, authors,
 titles, or subjects, it returns Invalid Content Type error:
  Invalid content type:
 

 Go to DSpace home https://auspace5-dev.athabascau.ca/xmlui/

 Please contact the site administrator if you wish to report this error. If
 possible, please provide details about what you were doing at the time this
 error occurred.

 Contact site administrator
 https://auspace5-dev.athabascau.ca/xmlui/contact || Show underlying
 error stack
 https://auspace5-dev.athabascau.ca/xmlui/browse?type=dateissued#

 Java stacktrace: org.apache.http.ParseException: Invalid content type: at
 org.apache.http.entity.ContentType.parse(ContentType.java:233) at
 org.apache.solr.client.solrj.impl.HttpSolrServer.executeMethod(HttpSolrServer.java:496)
 at
 org.apache.solr.client.solrj.impl.HttpSolrServer.request(HttpSolrServer.java:210)
 at
 org.apache.solr.client.solrj.impl.HttpSolrServer.request(HttpSolrServer.java:206)
 at
 org.apache.solr.client.solrj.request.QueryRequest.process(QueryRequest.java:91)
 at org.apache.solr.client.solrj.SolrServer.query(SolrServer.java:301) at
 org.dspace.discovery.SolrServiceImpl.search(SolrServiceImpl.java:1603) at
 org.dspace.browse.SolrBrowseDAO.getSolrResponse(SolrBrowseDAO.java:190) at
 org.dspace.browse.SolrBrowseDAO.doCountQuery(SolrBrowseDAO.java:231) at
 org.dspace.browse.BrowseEngine.getTotalResults(BrowseEngine.java:761) at
 org.dspace.browse.BrowseEngine.getTotalResults(BrowseEngine.java:721) at
 org.dspace.browse.BrowseEngine.browseByItem(BrowseEngine.java:264) at
 org.dspace.browse.BrowseEngine.browse(BrowseEngine.java:100) at
 org.dspace.app.xmlui.aspect.artifactbrowser.ConfigurableBrowse.getBrowseInfo(ConfigurableBrowse.java:825)
 at
 org.dspace.app.xmlui.aspect.artifactbrowser.ConfigurableBrowse.addBody(ConfigurableBrowse.java:276)
 at
 org.dspace.app.xmlui.wing.AbstractWingTransformer.startElement(AbstractWingTransformer.java:223)
 at sun.reflect.GeneratedMethodAccessor69.invoke(Unknown Source) at
 sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
 at java.lang.reflect.Method.invoke(Method.java:606) at
 org.apache.cocoon.core.container.spring.avalon.PoolableProxyHandler.invoke(PoolableProxyHandler.java:71)
 at com.sun.proxy.$Proxy107.startElement(Unknown Source) at
 org.apache.cocoon.components.sax.XMLTeePipe.startElement(XMLTeePipe.java:87)
 at
 org.apache.cocoon.xml.AbstractXMLPipe.startElement(AbstractXMLPipe.java:94)
 at
 org.dspace.app.xmlui.wing.AbstractWingTransformer.startElement(AbstractWingTransformer.java:240)
 at sun.reflect.GeneratedMethodAccessor69.invoke(Unknown Source) at
 sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
 at java.lang.reflect.Method.invoke(Method.java:606) at
 org.apache.cocoon.core.container.spring.avalon.PoolableProxyHandler.invoke(PoolableProxyHandler.java:71)
 at com.sun.proxy.$Proxy107.startElement(Unknown Source) at
 org.apache.cocoon.environment.internal.EnvironmentChanger.startElement(EnvironmentStack.java:140)
 at
 org.apache.cocoon.components.sax.XMLTeePipe.startElement(XMLTeePipe.java:87)
 at
 org.apache.cocoon.xml.AbstractXMLPipe.startElement(AbstractXMLPipe.java:94)
 at
 org.dspace.app.xmlui.wing.AbstractWingTransformer.startElement(AbstractWingTransformer.java:240)
 at sun.reflect.GeneratedMethodAccessor69.invoke(Unknown Source) at
 

[Dspace-tech] About Context and special groups

2015-05-08 Thread Evgeni Dimitrov
In DSpace 5.1.
I start with the ID of an Item, the ID of an ePerson and the IP of the
request.
I need to know can the ePerson read the item (from this IP).

- I create a Context
- I create the ePerson
- I set the ePerson in the context
- I create the Item
- I check

AuthorizeManager.authorizeAction(
context,
item,
org.dspace.core.Constants.READ);

- I would like to know how can I use the IP address. My guess is that the
SpecialGroups of the context should be populated but I don't know how.
Could you help?

Best regards
Evgeni
--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech
List Etiquette: https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

Re: [Dspace-tech] db upgrade in versoin 5

2015-05-08 Thread Jose Blanco
I think I found my answer here:

http://sourceforge.net/p/dspace/mailman/message/33687361/

seems to be working.

On Fri, May 8, 2015 at 1:39 PM, Jose Blanco blan...@umich.edu wrote:

 Tim, Thanks.  I just ran

  [dspace]/bin/dspace database migrate

 and I'm getting this error:

 Caused by: org.postgresql.util.PSQLException: ERROR: constraint
 metadatavalue_item_id_fkey of relation metadatavalue does not exist
 at
 org.postgresql.core.v3.QueryExecutorImpl.receiveErrorResponse(QueryExecutorImpl.java:2103)
 at org.


 This is what database info, tells me:

 | 3.0| Upgrade to DSpace 3.x sche | |
 PreInit |
 | 4.0| Initializing from DSpace 4 | 2015-05-08 13:23:25 |
 Success |
 | 5.0.2014.08.08 | DS-1945 Helpdesk Request a | 2015-05-08 13:23:26 |
 Success |
 | 5.0.2014.09.25 | DS 1582 Metadata For All O | |
 Pending |
 | 5.0.2014.09.26 | DS-1582 Metadata For All O | |
 Pending |

 I ran info before migrate and it told me what you predicted.  Als, I ran 
 update-sequences.sql
 before migrate.  Not sure what to do from here.

 -Thank you! Jose

 On Fri, May 8, 2015 at 1:33 PM, Tim Donohue tdono...@duraspace.org
 wrote:

 Hi Jose,

 Yes, those are the migration scripts themselves in the API. There are a
 lot of them in the upgrade to 5.x, primarily to support the idea of
 metadata on all objects.

 You can also get a summary report of your database's status by running:

 [dspace]/bin/dspace database info

 This will show a list of all the database migrations (all the way back
 to 1.0).

 Since you don't have Flyway yet enabled on the database (which happens
 as part of the 5.x upgrade), this info command will note something
 like Your database looks to be compatible with DSpace version [#]. All
 upgrades *after* version [#] will be run during the next migration.

 - Tim

 On 5/8/2015 11:41 AM, Jose Blanco wrote:
  I think I found the changes in:
 
 
 dspace/dspace-api/target/classes/org/dspace/storage/rdbms/sqlmigration/postgres
 
  There are lots of changes.
 
  -Jose
 
  On Fri, May 8, 2015 at 12:33 PM, Jose Blanco blan...@umich.edu
  mailto:blan...@umich.edu wrote:
 
  I'm upgrading to version 5.2 from 4, and see  that now the db
  upgrade is handled with flyway.  Before running
 
  [dspace]/bin/dspace database migrate
 
  It would be good to see what changes are going to be done to the db.
  Is there a file that shows how the db will change?
 
  Thank you! Jose
 
 
 
 
 
 --
  One dashboard for servers and applications across Physical-Virtual-Cloud
  Widest out-of-the-box monitoring support with 50+ applications
  Performance metrics, stats and reports that give you Actionable Insights
  Deep dive visibility with transaction tracing using APM Insight.
  http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
 
 
 
  ___
  DSpace-tech mailing list
  DSpace-tech@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/dspace-tech
  List Etiquette:
 https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette
 


 --
 One dashboard for servers and applications across Physical-Virtual-Cloud
 Widest out-of-the-box monitoring support with 50+ applications
 Performance metrics, stats and reports that give you Actionable Insights
 Deep dive visibility with transaction tracing using APM Insight.
 http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
 ___
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/dspace-tech
 List Etiquette:
 https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette



--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech
List Etiquette: https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

[Dspace-tech] Creative Commons Question

2015-05-08 Thread George Stanley Kozak
Hello, Everyone:

I was asked recently why DSpace uses Creative Commons 3.0 
(https://creativecommons.org/licenses/by/3.0/) instead of Creative Commons 4.0 
(https://creativecommons.org/licenses/by/4.0/).

Can someone answer that?  And are there any plans to go to using Creative 
Commons 4.0?

Thanks

George Kozak
Digital Library Specialist
Cornell University Library Information Technologies (CUL-IT)
218 Olin Library
Cornell University
Ithaca, NY 14853
607-255-8924


--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech
List Etiquette: https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

Re: [Dspace-tech] Not possible to submit new DSpace item

2015-05-08 Thread Mark H. Wood
On Fri, May 08, 2015 at 08:29:24AM +, KNOWLES Claire wrote:
 DSpace needs to handle the CC API failure in a better way though, as it's 
 bound to happy again in the future.

https://jira.duraspace.org/browse/DS-2569

-- 
Mark H. Wood
Lead Technology Analyst

University Library
Indiana University - Purdue University Indianapolis
755 W. Michigan Street
Indianapolis, IN 46202
317-274-0749
www.ulib.iupui.edu


signature.asc
Description: Digital signature
--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech
List Etiquette: https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

Re: [Dspace-tech] How to stop users from printing and downloading

2015-05-08 Thread Mark H. Wood
On Fri, May 08, 2015 at 03:09:53PM +0530, Dspace Tech wrote:
 I have a Dspace repository running. I want to restrict the user from
 printing and downloading.

Then you need to deny anonymous READ access, grant READ access to a
group, and require users to sign an agreement not to print or download
before granting them membership in that group.  No web service, not
even DSpace, has any way of knowing what the client will do with the
documents it provides.

-- 
Mark H. Wood
Lead Technology Analyst

University Library
Indiana University - Purdue University Indianapolis
755 W. Michigan Street
Indianapolis, IN 46202
317-274-0749
www.ulib.iupui.edu


signature.asc
Description: Digital signature
--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech
List Etiquette: https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette