[dspace-tech] External metadata source in the submission form

2023-02-23 Thread Anis
dspace frontend and angular 2, so where should I start looking into this? And is there some documentation, material, videos or tutorials on the technical parts of the frontend? - Anis -- All messages to this mailing list should adhere to the Code of Conduct: https://www.lyrasis.org/about/Pages

[dspace-tech] Re: CI/CD and configs with DSpace 7

2022-12-13 Thread Anis
Hey! Thank you for the reply and links, I'll read upon them. - Anis On Monday, December 12, 2022 at 4:49:21 PM UTC Tim Donohue wrote: > Hi Anis, > > If I understand the question, the only "required" configs for the Maven > build are those listed with asterisks in the

[dspace-tech] CI/CD and configs with DSpace 7

2022-12-12 Thread Anis
is, as we have multiple DSpace instances with different configs, what configs are required for the maven run, and is it possible to build it with one set of configs and maybe just copy instance specific configs over those? Or do I have to run the build separately with each set of configs? - Anis

[dspace-tech] Re: ItemExportCLIIT failing

2022-11-22 Thread Anis
On Tuesday, November 1, 2022 at 11:32:29 AM UTC Anis wrote: > Hello, thanks for the reply Kim! > > I'm getting different IT failures after pulling from the DSpace repo and > merging with my local one, that import one seems to go through fine now. > After that I was getting

[dspace-tech] Re: ItemExportCLIIT failing

2022-11-01 Thread Anis
mvn --no-transfer-progress -V clean install -P-assembly -Pcoverage-report -DskipIntegrationTests=false -Denforcer.skip=true -Dcheckstyle.skip=true -Dlicense.skip=true -Dxml.skip=true Unit tests go through fine. - Anis On Sunday, October 30, 2022 at 6:59:26 PM UTC DSpace Technical Support

[dspace-tech] ItemExportCLIIT failing

2022-10-28 Thread Anis
Hey, I'm running the latest code for DSpace 7 and getting the following error on the ItemExport CLI integration test (pasting the relevant parts): [ERROR] importItemByZipSafWithRelationships(org.dspace.app.itemimport.ItemImportCLIIT) Caused by:

[dspace-tech] Re: DSpace 7 docker images with M1 Mac

2022-01-21 Thread Anis
so FROM --platform=linux/arm64/v8 anis/dspace-dep:latest as build I also added the same line into the ant deploy and run tomcat section, like this FROM --platform=linux/arm64/v8 tomcat:9-jdk11 So the build is working now! I can look into if this multiarch support is easy to integrate to DSpace

[dspace-tech] Re: DSpace 7 docker images with M1 Mac

2022-01-21 Thread Anis
. - Anis On Friday, January 21, 2022 at 3:30:06 PM UTC Tim Donohue wrote: > Hi Anis, > > It appears, from that stacktrace, that you might somehow be using OpenJDK > v18? The DSpace 7 backend will only currently build on OpenJDK v11 > (though we will have v17 support coming

[dspace-tech] DSpace 7 docker images with M1 Mac

2022-01-21 Thread Anis
known desc = executor failed running [/bin/sh -c mvn package -Pdspace-rest && mv /app/dspace/target/${TARGET_DIR}/* /install && mvn clean]: exit code: 134 thanks, - Anis -- All messages to this mailing list should adhere to the Code of Conduct: https://www.lyrasis.org/about/

[dspace-tech] Re: DSpace Mirage2 Errors

2020-02-03 Thread Anis
Seems like the newest ffi (1.12.2) is causing some problems, downgrading to 1.12.1 seems to work. so adding the following lines to dspace/modules/xmlui-mirage2/pom.xml rubygems ffi 1.12.1 gem - Anis On Monday, February 3, 2020 at 8:41:47 AM UTC, Anis wrote: > > H

[dspace-tech] DSpace Mirage2 Errors

2020-02-03 Thread Anis
Hi, I'm trying to compile DSpace 5 with the following command mvn package -Dmirage2.on=true The error I get is the following, ERROR: Error installing ../.m2/repository/rubygems/ffi/1.12.2/ffi-1.12.2.gem: ERROR: Failed to build gem native extension. current directory:

[dspace-tech] Re: Mirage2: How to change navigation sidebar menu order?

2018-03-08 Thread Anis
I think the relevant parts are at dspace-xmlui-mirage2/src/main/webapp/xsl/core/navigation.xsl and dspace-xmlui/src/main/java/org/dspace/app/xmlui/aspect/browseArtifacts/Navigation.java - Anis On Wednesday, March 7, 2018 at 1:57:37 PM UTC+2, Christian Loeschen wrote: > > Dear all, &

[dspace-tech] Re: Byte range requests in DSpace5

2018-03-08 Thread Anis
if (response instanceof HttpResponse) { // Response with status 206 (Partial content) response.setStatus(206); } - Anis On Wednesday, March 7, 2018 at 9:20:27 AM UTC+2, Anis wrote: > > Thank you! I'll look into this and test for possible side effects. > >

[dspace-tech] Re: Byte range requests in DSpace5

2018-03-06 Thread Anis
Thank you! I'll look into this and test for possible side effects. On Tuesday, March 6, 2018 at 4:28:06 PM UTC+2, Mark H. Wood wrote: > > On Tuesday, March 6, 2018 at 3:16:37 AM UTC-5, Anis wrote: >> >> We're planning to add very simple video streaming support to our UI, by &

[dspace-tech] Re: A new tool for dealing with Postgresql "idle in transaction" connections?

2018-03-06 Thread Anis
Thank you! I'll look into this and test for possible side effects. On Monday, March 5, 2018 at 11:30:43 PM UTC+2, Mark H. Wood wrote: > > I just came across a PostgreSQL configuration variable that may be of > interest: idle_in_transaction_session_timeout appeared in, I think, Pg > 9.6.

[dspace-tech] Byte range requests in DSpace5

2018-03-06 Thread Anis
We're planning to add very simple video streaming support to our UI, by basically adding a video tag if the file format is right. Now this simple change has hit a pretty annoying wall, as the streaming works neatly in every browser except Safari, because it requires byte range requests from

[dspace-tech] Re: dspace 5 rest and embargo

2017-10-19 Thread Anis
5_x/dspace-rest/src/main/java/org/dspace/rest/ItemsResource.java#L518> (the second for-loop could be refactored out, and do the deletion in the first), now it works! - Anis On Wednesday, October 18, 2017 at 4:00:36 PM UTC+3, Anis wrote: > > Hi! I'm considering doing ingestion through dsp

[dspace-tech] dspace 5 rest and embargo

2017-10-18 Thread Anis
? I've tried to read through the documentation, but to no avail. Help would be greatly appreciated, thank you! - Anis -- You received this message because you are subscribed to the Google Groups "DSpace Technical Support" group. To unsubscribe from this group and stop receiving e

[dspace-tech] Re: Updating solr from 4.10.2

2017-10-17 Thread Anis
Hi Mark! Thanks for the reply, we'll look into an independent solr instance. - Anis On Monday, October 16, 2017 at 4:19:06 PM UTC+3, Mark H. Wood wrote: > > On Monday, October 16, 2017 at 6:56:20 AM UTC-4, Anis wrote: >> >> Hi, as you may know Solr has been hit with a p

[dspace-tech] Updating solr from 4.10.2

2017-10-16 Thread Anis
t;7? Everything under the version 6.4 for solr has been EOL for awhile now, and I think it would be critical to update it. We're using DSpace 5.6. - Anis -- You received this message because you are subscribed to the Google Groups "DSpace Technical Support" group. To unsubscribe fr

[dspace-tech] DSpace5 + nginx results in too many redirects.

2017-02-07 Thread Anis
Hey! I'm setting up a dspace 5 instance using nginx. The problem I'm facing now is, that after going to the login page and clicking login I get "server redirected you too many times" error from my browser (Chrome on Mac OS). So the site works fine before I try to login, after that it gives the

Re: [dspace-tech] Possible memory leak in dspace.

2016-11-04 Thread Anis
Hey, thanks for the links, it's just that nothing in our investigation would refer to solr leak. Need to go deeper. We're using dspace 3.2 - Anis -- You received this message because you are subscribed to the Google Groups "DSpace Technical Support" group. To unsubscribe from

Re: [dspace-tech] Re: sitemap.xmap exception

2016-03-09 Thread Anis Moubarik
Hello, switching to Java 8 didn't help, but switching back to tomcat 7 and Mirage 2 did, now it's working fine. - Anis On Tuesday, March 8, 2016 at 5:28:42 PM UTC+2, Holger Mickler wrote: > > Hi Anis, > > is looks like the same problem was raised some days ago on the > d

[dspace-tech] Re: sitemap.xmap exception

2016-03-08 Thread Anis Moubarik
to provide on my original post: Postgres version 9.5.1, tomcat 8.0.32, mvn 3.3.9, ant 1.9.6. And I'm using IntelliJ IDEA 15 to build and deploy the app. - Anis On Tuesday, March 8, 2016 at 3:17:25 PM UTC+2, Anis Moubarik wrote: > > Hey, I'm having problems installing DSpace 5.5 on to my