[Dspace-tech] Permanently Deleting Items

2013-02-04 Thread Lighton Phiri
With regards to permanently deleting items from DSpace,

1. Are there alternative options other than using import utility with
mapfile [1]. I currently have to query PostgreSQL to get (ITEM_ID
HANDLE_ID) and then create a map-file to feed to import utility.

[dspace]/bin dspace import --delete --mapfile dspace-item-delete-mapfile.txt

2. When an item id deleted from repository, is there a way to reset
the counter for item_id?

[1] 
https://wiki.duraspace.org/display/DSDOC3x/Importing+and+Exporting+Items+via+Simple+Archive+Format#ImportingandExportingItemsviaSimpleArchiveFormat-DeletingorUnimportingItemsinaCollection

Lighton Phiri
http://lightonphiri.org

--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_jan
___
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] dsapce 3.0 installation

2013-02-04 Thread Webshet, Sisay (ILRI)
Hi ,

Last week I tried to install dsapce 3.0 on windows 7. Installed all the 
perquisite soft wares (postgresql 8.2,tomcat6,ant 1.8.4,maven 2.2.1,java 
1.5.0.18)
I checked all the soft wares to ensure their proper installation. all are 
working fine. However the following error occurs when I run mvn package.

Can anybody helps on this.

C:\dspace-3.0-src-release\dspacemvn package
[INFO] Scanning for projects...
[INFO] Reactor build order:
[INFO]   DSpace Addon Modules
[INFO]   DSpace Kernel :: Additions and Local Customizations
[INFO]   DSpace XML-UI (Manakin) :: Local Customizations
[INFO]   DSpace LNI :: Local Customizations
[INFO]   DSpace JSP-UI :: Local Customizations
[INFO]   DSpace SWORD :: Local Customizations
[INFO]   DSpace SWORD v2 :: Local Customizations
[INFO]   DSpace SOLR :: Local Customizations
[INFO]   DSpace OAI 2.0 :: Local Customizations
[INFO]   DSpace Assembly and Configuration
[INFO] 
[INFO] Building DSpace Addon Modules
[INFO]task-segment: [package]
[INFO] 
[INFO] [enforcer:enforce {execution: enforce-maven}]
[INFO] [site:attach-descriptor {execution: default-attach-descriptor}]
[INFO] 
[INFO] Building DSpace Kernel :: Additions and Local Customizations
[INFO]task-segment: [package]
[INFO] 
[INFO] [enforcer:enforce {execution: enforce-maven}]
[INFO] [resources:resources {execution: default-resources}]
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 1 resource
[INFO] [compiler:compile {execution: default-compile}]
[INFO] Compiling 2 source files to C:\dspace-3.0-src-release\dspace\modules\addi
tions\target\classes
[INFO] -
[ERROR] COMPILATION ERROR :
[INFO] -
[ERROR] Failure executing javac, but could not parse the error:
javac: invalid flag: -s
Usage: javac options source files
where possible options include:
  -g Generate all debugging info
  -g:noneGenerate no debugging info
  -g:{lines,vars,source} Generate only some debugging info
  -nowarnGenerate no warnings
  -verbose   Output messages about what the compiler is doing
  -deprecation   Output source locations where deprecated APIs are u
sed
  -classpath path  Specify where to find user class files
  -cp path Specify where to find user class files
  -sourcepath path Specify where to find input source files
  -bootclasspath path  Override location of bootstrap class files
  -extdirs dirsOverride location of installed extensions
  -endorseddirs dirs   Override location of endorsed standards path
  -d directory Specify where to place generated class files
  -encoding encoding   Specify character encoding used by source files
  -source release  Provide source compatibility with specified release

  -target release  Generate class files for specific VM version
  -version   Version information
  -help  Print a synopsis of standard options
  -X Print a synopsis of nonstandard options
  -Jflag   Pass flag directly to the runtime system


--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_jan___
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] Dspace Mobile Theme

2013-02-04 Thread Lewatle Phaladi
Hi All,

I have installed DSpace 3.1 on test instance with purpose of testing mobile 
theme, I am not sure which file do I have to edit in order to enable the mobile 
theme.

Regards,
Lewatle


htmlpfont face = verdana size = 0.8 color = navyThis communication 
is intended for the addressee only. It is confidential. If you have received 
this communication in error, please notify us immediately and destroy the 
original message. You may not copy or disseminate this communication without 
the permission of the University. Only authorized signatories are competent to 
enter into agreements on behalf of the University and recipients are thus 
advised that the content of this message may not be legally binding on the 
University and may contain the personal views and opinions of the author, which 
are not necessarily the views and opinions of The University of the 
Witwatersrand, Johannesburg. All agreements between the University and 
outsiders are subject to South African Law unless the University agrees in 
writing to the contrary./font/p/html
--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_jan___
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] Permanently Deleting Items

2013-02-04 Thread helix84
On Mon, Feb 4, 2013 at 12:18 PM, Lighton Phiri lighton.ph...@gmail.com wrote:
 1. Are there alternative options other than using import utility with
 mapfile [1]. I currently have to query PostgreSQL to get (ITEM_ID
 HANDLE_ID) and then create a map-file to feed to import utility.

So you have item_ids and you just want to skip the lookup part?

One thing you can try is writing a curation task [1]. I've recently
started experimenting with writing them in Jython [2], but you can use
Java or one of several scripting languages.

Another alternative I wanted to suggest is using [dspace]/bin/dspace
dsrun to run a class, but I didn't find any class that would just
accept an item_id and delete it for you. processDeleteItem(Context
context, int itemID) seems to be the closest - but there's no way for
you to specify context from command line. So you could write such
class, but that's actually very similar to just writing a curation
task in Java.

 2. When an item id deleted from repository, is there a way to reset
 the counter for item_id?

Yes, the following script will do it for you. But there shouldn't
really be any need for you to care what the ids are. If you still
decide to run that script, make sure to run it while DSpace is not
running!
[dspace]/etc/postgres/update-sequences.sql

[1] https://wiki.duraspace.org/display/DSDOC3x/Curation+System
[2] https://wiki.duraspace.org/display/DSDOC3x/Curation+tasks+in+Jython


Regards,
~~helix84

Compulsory reading: DSpace Mailing List Etiquette
https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_jan
___
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] Dspace Mobile Theme

2013-02-04 Thread Hilton Gibson
Hi

Which UI is default?

Cheers

hg


On 4 February 2013 14:00, Lewatle Phaladi lewatle.phal...@wits.ac.zawrote:

  Hi All,

 ** **

 I have installed DSpace 3.1 on test instance with purpose of testing
 mobile theme, I am not sure which file do I have to edit in order to enable
 the mobile theme. 

 ** **

 *Regards,*

 *Lewatle *

 ** **

 This communication is intended for the addressee only. It is confidential. If 
 you have received this communication in error, please notify us immediately 
 and destroy the original message. You may not copy or disseminate this 
 communication without the permission of the University. Only authorized 
 signatories are competent to enter into agreements on behalf of the 
 University and recipients are thus advised that the content of this message 
 may not be legally binding on the University and may contain the personal 
 views and opinions of the author, which are not necessarily the views and 
 opinions of The University of the Witwatersrand, Johannesburg. All agreements 
 between the University and outsiders are subject to South African Law unless 
 the University agrees in writing to the contrary.



 --
 Everyone hates slow websites. So do we.
 Make your web apps faster with AppDynamics
 Download AppDynamics Lite for free today:
 http://p.sf.net/sfu/appdyn_d2d_jan
 ___
 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




-- 
*Hilton Gibson*
Systems Administrator
JS Gericke Library
Room 1025D
Stellenbosch University
Private Bag X5036
Stellenbosch
7599
South Africa

Tel: +27 21 808 4100 | Cell: +27 84 646 4758
http://library.sun.ac.za
http://scholar.sun.ac.za
http://ar1.sun.ac.za
http://aj1.sun.ac.za
--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_jan___
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] Permanently Deleting Items

2013-02-04 Thread Lighton Phiri
 So you have item_ids and you just want to skip the lookup part?
Yes, the curation task route sounds like the way to go. Thank you. I
had actually hoped there was already something available to do that :)

 [dspace]/etc/postgres/update-sequences.sql
Exactly what I was looking for. Thank you.
Lighton Phiri
http://lightonphiri.org


On 4 February 2013 14:01, helix84 heli...@centrum.sk wrote:
 On Mon, Feb 4, 2013 at 12:18 PM, Lighton Phiri lighton.ph...@gmail.com 
 wrote:
 1. Are there alternative options other than using import utility with
 mapfile [1]. I currently have to query PostgreSQL to get (ITEM_ID
 HANDLE_ID) and then create a map-file to feed to import utility.

 So you have item_ids and you just want to skip the lookup part?

 One thing you can try is writing a curation task [1]. I've recently
 started experimenting with writing them in Jython [2], but you can use
 Java or one of several scripting languages.

 Another alternative I wanted to suggest is using [dspace]/bin/dspace
 dsrun to run a class, but I didn't find any class that would just
 accept an item_id and delete it for you. processDeleteItem(Context
 context, int itemID) seems to be the closest - but there's no way for
 you to specify context from command line. So you could write such
 class, but that's actually very similar to just writing a curation
 task in Java.

 2. When an item id deleted from repository, is there a way to reset
 the counter for item_id?

 Yes, the following script will do it for you. But there shouldn't
 really be any need for you to care what the ids are. If you still
 decide to run that script, make sure to run it while DSpace is not
 running!
 [dspace]/etc/postgres/update-sequences.sql

 [1] https://wiki.duraspace.org/display/DSDOC3x/Curation+System
 [2] https://wiki.duraspace.org/display/DSDOC3x/Curation+tasks+in+Jython


 Regards,
 ~~helix84

 Compulsory reading: DSpace Mailing List Etiquette
 https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_jan
___
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] Dspace Mobile Theme

2013-02-04 Thread Lewatle Phaladi
Hi Hilton and Colleagues,

It is  XMLUI.

Regards,
Lewatle

From: Hilton Gibson [mailto:hilton.gib...@gmail.com]
Sent: 04 February 2013 02:24 PM
To: Lewatle Phaladi
Cc: DSpace-tech@lists.sourceforge.net
Subject: Re: [Dspace-tech] Dspace Mobile Theme

Hi

Which UI is default?

Cheers

hg

On 4 February 2013 14:00, Lewatle Phaladi 
lewatle.phal...@wits.ac.zamailto:lewatle.phal...@wits.ac.za wrote:
Hi All,

I have installed DSpace 3.1 on test instance with purpose of testing mobile 
theme, I am not sure which file do I have to edit in order to enable the mobile 
theme.

Regards,
Lewatle


This communication is intended for the addressee only. It is confidential. If 
you have received this communication in error, please notify us immediately and 
destroy the original message. You may not copy or disseminate this 
communication without the permission of the University. Only authorized 
signatories are competent to enter into agreements on behalf of the University 
and recipients are thus advised that the content of this message may not be 
legally binding on the University and may contain the personal views and 
opinions of the author, which are not necessarily the views and opinions of The 
University of the Witwatersrand, Johannesburg. All agreements between the 
University and outsiders are subject to South African Law unless the University 
agrees in writing to the contrary.


--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_jan
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.netmailto:DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech
List Etiquette: https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette



--
Hilton Gibson
Systems Administrator
JS Gericke Library
Room 1025D
Stellenbosch University
Private Bag X5036
Stellenbosch
7599
South Africa

Tel: +27 21 808 4100 | Cell: +27 84 646 4758
http://library.sun.ac.za
http://scholar.sun.ac.za
http://ar1.sun.ac.za
http://aj1.sun.ac.za

htmlpfont face = verdana size = 0.8 color = navyThis communication 
is intended for the addressee only. It is confidential. If you have received 
this communication in error, please notify us immediately and destroy the 
original message. You may not copy or disseminate this communication without 
the permission of the University. Only authorized signatories are competent to 
enter into agreements on behalf of the University and recipients are thus 
advised that the content of this message may not be legally binding on the 
University and may contain the personal views and opinions of the author, which 
are not necessarily the views and opinions of The University of the 
Witwatersrand, Johannesburg. All agreements between the University and 
outsiders are subject to South African Law unless the University agrees in 
writing to the contrary./font/p/html--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_jan___
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] Dspace Mobile Theme

2013-02-04 Thread Lewatle Phaladi


htmlpfont face = verdana size = 0.8 color = navyThis communication 
is intended for the addressee only. It is confidential. If you have received 
this communication in error, please notify us immediately and destroy the 
original message. You may not copy or disseminate this communication without 
the permission of the University. Only authorized signatories are competent to 
enter into agreements on behalf of the University and recipients are thus 
advised that the content of this message may not be legally binding on the 
University and may contain the personal views and opinions of the author, which 
are not necessarily the views and opinions of The University of the 
Witwatersrand, Johannesburg. All agreements between the University and 
outsiders are subject to South African Law unless the University agrees in 
writing to the contrary./font/p/html--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_jan___
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] Dspace Mobile Theme

2013-02-04 Thread Hilton Gibson
Look inside this folder:
{dspace-3.0-src-release}/dspace-xmlui/src/main/webapp/themes/mobile

There is a readme.txt file with instructions.

Cheers

hg


On 4 February 2013 14:29, Lewatle Phaladi lewatle.phal...@wits.ac.zawrote:

  Hi Hilton and Colleagues,

 ** **

 It is  XMLUI.

 ** **

 Regards,

 Lewatle 

 ** **

 *From:* Hilton Gibson [mailto:hilton.gib...@gmail.com]
 *Sent:* 04 February 2013 02:24 PM
 *To:* Lewatle Phaladi
 *Cc:* DSpace-tech@lists.sourceforge.net
 *Subject:* Re: [Dspace-tech] Dspace Mobile Theme

 ** **

 Hi

 ** **

 Which UI is default?

 ** **

 Cheers

 ** **

 hg

 ** **

 On 4 February 2013 14:00, Lewatle Phaladi lewatle.phal...@wits.ac.za
 wrote:

 Hi All,

  

 I have installed DSpace 3.1 on test instance with purpose of testing
 mobile theme, I am not sure which file do I have to edit in order to enable
 the mobile theme. 

  

 *Regards,*

 *Lewatle *

  

 This communication is intended for the addressee only. It is confidential.
 If you have received this communication in error, please notify us
 immediately and destroy the original message. You may not copy or
 disseminate this communication without the permission of the University.
 Only authorized signatories are competent to enter into agreements on
 behalf of the University and recipients are thus advised that the content
 of this message may not be legally binding on the University and may
 contain the personal views and opinions of the author, which are not
 necessarily the views and opinions of The University of the Witwatersrand,
 Johannesburg. All agreements between the University and outsiders are
 subject to South African Law unless the University agrees in writing to the
 contrary.



 --
 Everyone hates slow websites. So do we.
 Make your web apps faster with AppDynamics
 Download AppDynamics Lite for free today:
 http://p.sf.net/sfu/appdyn_d2d_jan
 ___
 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



 

 ** **

 -- 

 *Hilton Gibson*

 Systems Administrator

 JS Gericke Library

 Room 1025D

 Stellenbosch University

 Private Bag X5036

 Stellenbosch

 7599

 South Africa

 ** **

 Tel: +27 21 808 4100 | Cell: +27 84 646 4758

 http://library.sun.ac.za

 http://scholar.sun.ac.za

 http://ar1.sun.ac.za

 http://aj1.sun.ac.za

 This communication is intended for the addressee only. It is confidential. If 
 you have received this communication in error, please notify us immediately 
 and destroy the original message. You may not copy or disseminate this 
 communication without the permission of the University. Only authorized 
 signatories are competent to enter into agreements on behalf of the 
 University and recipients are thus advised that the content of this message 
 may not be legally binding on the University and may contain the personal 
 views and opinions of the author, which are not necessarily the views and 
 opinions of The University of the Witwatersrand, Johannesburg. All agreements 
 between the University and outsiders are subject to South African Law unless 
 the University agrees in writing to the contrary.




-- 
*Hilton Gibson*
Systems Administrator
JS Gericke Library
Room 1025D
Stellenbosch University
Private Bag X5036
Stellenbosch
7599
South Africa

Tel: +27 21 808 4100 | Cell: +27 84 646 4758
http://library.sun.ac.za
http://scholar.sun.ac.za
http://ar1.sun.ac.za
http://aj1.sun.ac.za
--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_jan___
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] Dspace Item Approval

2013-02-04 Thread Amira Shoukry
Dear All

I have a question with regards to the approval of submitted items to dspace
3.0.

can we have a dual approval from items submitted to dspace 3.0. for example
I have a collection for thesis submitted to our system. What I want is that
first the department approves the submitted item for completion; second for
these firstly approved items the system admin approves them for complying
by the formats of submission.

-- 
Thanks

Amira Shoukry
Software Developer
University Academic Computing Technologies (UACT)
The American University in Cairo (AUC)
--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_jan___
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] DSpace-tech Digest, Vol 82, Issue 13

2013-02-04 Thread Webshet, Sisay (ILRI)
Hi All,

I just changed the Java in to jdk-6u39-windows-x64.it works fine


-Original Message-
From: dspace-tech-requ...@lists.sourceforge.net 
[mailto:dspace-tech-requ...@lists.sourceforge.net] 
Sent: Monday, February 04, 2013 2:19 PM
To: dspace-tech@lists.sourceforge.net
Subject: DSpace-tech Digest, Vol 82, Issue 13

Send DSpace-tech mailing list submissions to
dspace-tech@lists.sourceforge.net

To subscribe or unsubscribe via the World Wide Web, visit
https://lists.sourceforge.net/lists/listinfo/dspace-tech
or, via email, send a message with subject or body 'help' to
dspace-tech-requ...@lists.sourceforge.net

You can reach the person managing the list at
dspace-tech-ow...@lists.sourceforge.net

When replying, please edit your Subject line so it is more specific than Re: 
Contents of DSpace-tech digest...


Today's Topics:

   1. Re: dsapce 3.0  installation (Webshet, Sisay (ILRI))
   2. Permanently Deleting Items (Lighton Phiri)
   3. dsapce 3.0  installation (Webshet, Sisay (ILRI))


--

Message: 1
Date: Mon, 4 Feb 2013 06:23:15 +
From: Webshet, Sisay (ILRI) s.webs...@cgiar.org
Subject: Re: [Dspace-tech] dsapce 3.0  installation
To: dspace-tech@lists.sourceforge.net
dspace-tech@lists.sourceforge.net
Message-ID:
e85032c6eb6d454884774965c255140117b...@ilrietmbx.ilri.cgiarad.org
Content-Type: text/plain; charset=us-ascii



From: Webshet, Sisay (ILRI)
Sent: Monday, February 04, 2013 9:16 AM
To: 'dspace-tech@lists.sourceforge.net'
Subject: dsapce 3.0 installation

Hi ,

Last week I tried to install dsapce 3.0 on windows 7. Installed all the 
perquisite soft wares (postgresql 8.2,tomcat6,ant 1.8.4,maven 2.2.1,java 
1.5.0.18) I checked all the soft wares to ensure their proper installation. all 
are working fine. However the following error occurs when I run mvn package.

Can anybody helps on this.

C:\dspace-3.0-src-release\dspacemvn package [INFO] Scanning for projects...
[INFO] Reactor build order:
[INFO]   DSpace Addon Modules
[INFO]   DSpace Kernel :: Additions and Local Customizations
[INFO]   DSpace XML-UI (Manakin) :: Local Customizations
[INFO]   DSpace LNI :: Local Customizations
[INFO]   DSpace JSP-UI :: Local Customizations
[INFO]   DSpace SWORD :: Local Customizations
[INFO]   DSpace SWORD v2 :: Local Customizations
[INFO]   DSpace SOLR :: Local Customizations
[INFO]   DSpace OAI 2.0 :: Local Customizations
[INFO]   DSpace Assembly and Configuration
[INFO] 
[INFO] Building DSpace Addon Modules
[INFO]task-segment: [package]
[INFO] 
[INFO] [enforcer:enforce {execution: enforce-maven}] [INFO] 
[site:attach-descriptor {execution: default-attach-descriptor}] [INFO] 

[INFO] Building DSpace Kernel :: Additions and Local Customizations
[INFO]task-segment: [package]
[INFO] 
[INFO] [enforcer:enforce {execution: enforce-maven}] [INFO] 
[resources:resources {execution: default-resources}] [INFO] Using 'UTF-8' 
encoding to copy filtered resources.
[INFO] Copying 1 resource
[INFO] [compiler:compile {execution: default-compile}] [INFO] Compiling 2 
source files to C:\dspace-3.0-src-release\dspace\modules\addi
tions\target\classes
[INFO] -
[ERROR] COMPILATION ERROR :
[INFO] -
[ERROR] Failure executing javac, but could not parse the error:
javac: invalid flag: -s
Usage: javac options source files
where possible options include:
  -g Generate all debugging info
  -g:noneGenerate no debugging info
  -g:{lines,vars,source} Generate only some debugging info
  -nowarnGenerate no warnings
  -verbose   Output messages about what the compiler is doing
  -deprecation   Output source locations where deprecated APIs are u
sed
  -classpath path  Specify where to find user class files
  -cp path Specify where to find user class files
  -sourcepath path Specify where to find input source files
  -bootclasspath path  Override location of bootstrap class files
  -extdirs dirsOverride location of installed extensions
  -endorseddirs dirs   Override location of endorsed standards path
  -d directory Specify where to place generated class files
  -encoding encoding   Specify character encoding used by source files
  -source release  Provide source compatibility with specified release

  -target release  Generate class files for specific VM version
  -version   Version information
  -help 

Re: [Dspace-tech] Dspace Mobile Theme

2013-02-04 Thread helix84
On Mon, Feb 4, 2013 at 1:00 PM, Lewatle Phaladi
lewatle.phal...@wits.ac.za wrote:
 I have installed DSpace 3.1 on test instance with purpose of testing mobile 
 theme, I am not sure which file do I have to edit in order to enable the 
 mobile theme.

The instructions are here:
https://github.com/DSpace/DSpace/blob/dspace-3_x/dspace-xmlui/src/main/webapp/themes/mobile/readme.txt

Please, keep in mind that it's still beta and there are some minor
bugs. Further enhancements are also expected.


Regards,
~~helix84

Compulsory reading: DSpace Mailing List Etiquette
https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_jan
___
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] Dspace Mobile Theme

2013-02-04 Thread Lewatle Phaladi
Much appreciated!

-Original Message-
From: helix84 [mailto:heli...@centrum.sk] 
Sent: 04 February 2013 03:23 PM
To: Lewatle Phaladi
Cc: DSpace-tech@lists.sourceforge.net
Subject: Re: [Dspace-tech] Dspace Mobile Theme

On Mon, Feb 4, 2013 at 1:00 PM, Lewatle Phaladi lewatle.phal...@wits.ac.za 
wrote:
 I have installed DSpace 3.1 on test instance with purpose of testing mobile 
 theme, I am not sure which file do I have to edit in order to enable the 
 mobile theme.

The instructions are here:
https://github.com/DSpace/DSpace/blob/dspace-3_x/dspace-xmlui/src/main/webapp/themes/mobile/readme.txt

Please, keep in mind that it's still beta and there are some minor bugs. 
Further enhancements are also expected.


Regards,
~~helix84

Compulsory reading: DSpace Mailing List Etiquette 
https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

htmlpfont face = verdana size = 0.8 color = navyThis communication 
is intended for the addressee only. It is confidential. If you have received 
this communication in error, please notify us immediately and destroy the 
original message. You may not copy or disseminate this communication without 
the permission of the University. Only authorized signatories are competent to 
enter into agreements on behalf of the University and recipients are thus 
advised that the content of this message may not be legally binding on the 
University and may contain the personal views and opinions of the author, which 
are not necessarily the views and opinions of The University of the 
Witwatersrand, Johannesburg. All agreements between the University and 
outsiders are subject to South African Law unless the University agrees in 
writing to the contrary./font/p/html
--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_jan
___
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] dspace instance copy/mirror

2013-02-04 Thread helix84
On Sun, Feb 3, 2013 at 3:32 PM, Lighton Phiri lighton.ph...@gmail.com wrote:
I'll describe only the way I recommend for whole server migration (db 
dump+copy assetstore), after all, you asked only for best practice.
 why do you recommend (db dump+copy assetstore) for 'best practice' as
 opposed to AIP Backup Restore tool [1] --especially for case #1?

Simply put - because there's less that can go wrong. This way you are
transferring the whole instance, so you're less likely to omit/forget
any dependencies. I'm not even aware of any other way you can migrate
users/groups and workflow items than this (or doing it manually, in
which case it's easier to just transfer the whole DB, i.e. what I
recommended).

 But there's here's just the tool for the job: 
 https://wiki.duraspace.org/display/DSDOC3x/Importing+Community+and+Collection+Hierarchy
 I have tried using structure-builder before and had no luck figuring
 out how to export my archive structure, is this even possible?

Sorry, my mistake, I didn't read the whole docpage and my assumption
that -o is for export was wrong. I only ever used this for import
(obviously).


Regards,
~~helix84

Compulsory reading: DSpace Mailing List Etiquette
https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_jan
___
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] Dspace Item Approval

2013-02-04 Thread Tim Donohue
Amira,

Yes, the default DSpace approval workflow supports a dual approval.

By default, the DSpace approval workflow supports up to three different 
approval stages, as detailed here:

https://wiki.duraspace.org/display/DSDOC3x/Functional+Overview#FunctionalOverview-WorkflowSteps

You can enable this approval workflow on any Collection in DSpace, and 
decide which users or groups should review the item during each workflow 
step.  In the XMLUI, you would edit the Collection and go to the Assign 
Roles tab to setup one or more of these approval stages. (In the JSPUI 
you Edit the Collection and look for the section called Submission 
Workflow).

- Tim

On 2/4/2013 6:30 AM, Amira Shoukry wrote:
 Dear All

 I have a question with regards to the approval of submitted items to
 dspace 3.0.

 can we have a dual approval from items submitted to dspace 3.0. for
 example I have a collection for thesis submitted to our system. What I
 want is that first the department approves the submitted item
 for completion; second for these firstly approved items the system admin
 approves them for complying by the formats of submission.

 --
 Thanks

 Amira Shoukry
 Software Developer
 University Academic Computing Technologies (UACT)
 The American University in Cairo (AUC)


 --
 Everyone hates slow websites. So do we.
 Make your web apps faster with AppDynamics
 Download AppDynamics Lite for free today:
 http://p.sf.net/sfu/appdyn_d2d_jan



 ___
 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


--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_jan
___
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] Fwd:

2013-02-04 Thread Matthew McKinley
http://www.fermentivino.it/hmq0xv.php?s=ot


--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_jan
___
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] Access to 'Traditional' Browse Search index

2013-02-04 Thread Lighton Phiri
I am struggling to figure out how to issue direct queries when using
the 'Traditional'  Browse Search index [1]? Something similar to this
[2] wiki page. I am basically trying to directly access the index
using a tool like CURL.

[1] 
https://wiki.duraspace.org/pages/viewpage.action?pageId=32474035#ReIndexingContent(forBrowseorSearch)-SearchIndexCustomization
[2] https://wiki.duraspace.org/display/DSPACE/Solr


Lighton Phiri
http://lightonphiri.org

--
Free Next-Gen Firewall Hardware Offer
Buy your Sophos next-gen firewall before the end March 2013 
and get the hardware for free! Learn more.
http://p.sf.net/sfu/sophos-d2d-feb
___
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] Access to 'Traditional' Browse Search index

2013-02-04 Thread Andrea Schweer
Hi,

On 05/02/13 11:00, Lighton Phiri wrote:
 I am struggling to figure out how to issue direct queries when using
 the 'Traditional'  Browse Search index [1]? Something similar to this
 [2] wiki page. I am basically trying to directly access the index
 using a tool like CURL.

I don't think there is any way to do that, definitely not via HTTP. The
traditional browse index is stored in the database (look for bi_*
tables), so you could query that. For the search index, you might have
luck with command-line Lucene tools, but I'm not aware of any.

cheers,
Andrea

-- 
Dr Andrea Schweer
IRR Technical Specialist, ITS Information Systems
The University of Waikato, Hamilton, New Zealand


--
Free Next-Gen Firewall Hardware Offer
Buy your Sophos next-gen firewall before the end March 2013 
and get the hardware for free! Learn more.
http://p.sf.net/sfu/sophos-d2d-feb
___
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] Access to 'Traditional' Browse Search index

2013-02-04 Thread Lighton Phiri
I see --thank you Andrea. I guess I'll just make do with the Discovery module
Lighton Phiri
http://lightonphiri.org


On 5 February 2013 00:07, Andrea Schweer schw...@waikato.ac.nz wrote:
 Hi,

 On 05/02/13 11:00, Lighton Phiri wrote:
 I am struggling to figure out how to issue direct queries when using
 the 'Traditional'  Browse Search index [1]? Something similar to this
 [2] wiki page. I am basically trying to directly access the index
 using a tool like CURL.

 I don't think there is any way to do that, definitely not via HTTP. The
 traditional browse index is stored in the database (look for bi_*
 tables), so you could query that. For the search index, you might have
 luck with command-line Lucene tools, but I'm not aware of any.

 cheers,
 Andrea

 --
 Dr Andrea Schweer
 IRR Technical Specialist, ITS Information Systems
 The University of Waikato, Hamilton, New Zealand


 --
 Free Next-Gen Firewall Hardware Offer
 Buy your Sophos next-gen firewall before the end March 2013
 and get the hardware for free! Learn more.
 http://p.sf.net/sfu/sophos-d2d-feb
 ___
 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

--
Free Next-Gen Firewall Hardware Offer
Buy your Sophos next-gen firewall before the end March 2013 
and get the hardware for free! Learn more.
http://p.sf.net/sfu/sophos-d2d-feb
___
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