Re: [dspace-tech] DSpace beta version

2023-01-06 Thread Vimal Kumar V.
Thank you

On Wed, Jan 4, 2023 at 6:55 PM Mark H. Wood  wrote:

> On Wed, Jan 04, 2023 at 01:43:18AM -0800, Vimal Kumar V. wrote:
> > Dear Friends,
> > May I know, where we can find DSpace beta version, 7.5 to try?
>
> DSpace 7.5 is still in development.  You can clone the repository with
> 'git' (view it at https://github.com/DSpace/DSpace) and build from the
> 'main' branch if you want the current development version.
>
> We try to keep the 'main' branch always in a runnable state, but it
> may be unstable or broken in some areas.  Problem reports are always
> welcome, as are patches.
>
> --
> 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
>
> --
> All messages to this mailing list should adhere to the Code of Conduct:
> https://www.lyrasis.org/about/Pages/Code-of-Conduct.aspx
> ---
> You received this message because you are subscribed to a topic in the
> Google Groups "DSpace Technical Support" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/dspace-tech/pESWe1wmQFk/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
> dspace-tech+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/dspace-tech/Y7V%2BKoDwcAHQ/kWi%40IUPUI.Edu
> .
>


-- 
*Vimal Kumar V., PhD*
*Reference Assistant*
*Mahatma Gandhi University Library*
*Kottayam, Kerala-686560*
*--*
*My Home page:www.vimalkumar.info 
https://orcid.org/-0002-6094-0913
*
*My Blogs:linuxhalwa.blogspot.com *
*kohageek.blogspot.com 
moovandan.blogspot.com *
*---*
*"The illiterate of the 21st century will not be those who cannot read and
write, but those who cannot learn, unlearn, and relearn." Alvin Toffler*

-- 
All messages to this mailing list should adhere to the Code of Conduct: 
https://www.lyrasis.org/about/Pages/Code-of-Conduct.aspx
--- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/dspace-tech/CANSBHg8Wm3s8-vWX95Ec45bvw5YgZasrXgAhEM-6%2B%2B%3DNrG%2BcXg%40mail.gmail.com.


Re: [dspace-tech] Modifying Themes DSpace 7.4

2023-01-06 Thread Mark H. Wood
On Fri, Jan 06, 2023 at 07:51:49AM -0500, Sarah Butash wrote:
> Thanks for this info! So, I'll want to use an IDE vs working in Linux it
> seems?

I don't think it's necessary but it is useful and doesn't hurt.

I should mention that I think I don't work with DSpace 7 in quite the
same way that most do right now.  From the first, I've been building
and copying the front end as if for production use.  So I don't know a
lot about the *typical* development environment.  I use NetBeans for
developing both back end and front end, but I never run either from
there; I have a few scripts that copy things to the right places, and
I'll usually have at least one terminal window running as root to do
restarts and monitor logs.  Rather than using 'pm2' as most? do, I've
written initscripts to directly run the the backend and frontend
services just as most OS-provided daemons are run.

So, someone else may be your best bet for detailed advice on how most
sites develop and run DSpace 7.

> On Fri, Jan 6, 2023 at 7:40 AM Mark H. Wood  wrote:
> 
> > On Thu, Jan 05, 2023 at 09:56:54AM -0500, Sarah Butash wrote:
> > > Hello,
> > >
> > > We will soon be modifying the theme in our DSpace 7.4 environment.  In
> > > DSpace 5.11, I could make a theme/UI change, bounce the tomcat server and
> > > the change would be in our live environment.  I'm looking for the way to
> > > make changes in this way for 7.4. We work on a Linux server without an
> > > IDE.  For DSpace 7.4, I notice that in the Getting Started Demo, the
> > > presenter keeps recompiling to commit UI changes (header, footer, etc).
> > He
> > > mentions running a yarn:start command.  What is that compiling? The whole
> > > DSpace instance? the UI?
> >
> > To change a theme (or any part of the UI), you need to rebuild the
> > front end (dspace-angular), because part of that process compresses
> > and packs up the code into bundles that can be sent to the browser to
> > run there.  Then you need to restart the NodeJS instance that serves
> > it out.  The back end isn't affected by changes to the UI and can be
> > left running.
> >
> > I *have* seen that at least some UI changes will be taken up without
> > restarting, if I just copy the rebuilt front end 'dist' tree to the
> > place from which it's run, but I don't know when I can trust this so I
> > usually restart it anyway.

-- 
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

-- 
All messages to this mailing list should adhere to the Code of Conduct: 
https://www.lyrasis.org/about/Pages/Code-of-Conduct.aspx
--- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/dspace-tech/Y7g2dvMHE2CM7Y5E%40IUPUI.Edu.


signature.asc
Description: PGP signature


Re: [dspace-tech] Modifying Themes DSpace 7.4

2023-01-06 Thread Sarah Butash
Thanks for this info! So, I'll want to use an IDE vs working in Linux it
seems?

On Fri, Jan 6, 2023 at 7:40 AM Mark H. Wood  wrote:

> On Thu, Jan 05, 2023 at 09:56:54AM -0500, Sarah Butash wrote:
> > Hello,
> >
> > We will soon be modifying the theme in our DSpace 7.4 environment.  In
> > DSpace 5.11, I could make a theme/UI change, bounce the tomcat server and
> > the change would be in our live environment.  I'm looking for the way to
> > make changes in this way for 7.4. We work on a Linux server without an
> > IDE.  For DSpace 7.4, I notice that in the Getting Started Demo, the
> > presenter keeps recompiling to commit UI changes (header, footer, etc).
> He
> > mentions running a yarn:start command.  What is that compiling? The whole
> > DSpace instance? the UI?
>
> To change a theme (or any part of the UI), you need to rebuild the
> front end (dspace-angular), because part of that process compresses
> and packs up the code into bundles that can be sent to the browser to
> run there.  Then you need to restart the NodeJS instance that serves
> it out.  The back end isn't affected by changes to the UI and can be
> left running.
>
> I *have* seen that at least some UI changes will be taken up without
> restarting, if I just copy the rebuilt front end 'dist' tree to the
> place from which it's run, but I don't know when I can trust this so I
> usually restart it anyway.
>
> --
> 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
>
> --
> All messages to this mailing list should adhere to the Code of Conduct:
> https://www.lyrasis.org/about/Pages/Code-of-Conduct.aspx
> ---
> You received this message because you are subscribed to the Google Groups
> "DSpace Technical Support" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to dspace-tech+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/dspace-tech/Y7gWnXxLkinWJt9O%40IUPUI.Edu
> .
>


-- 

Sarah Butash

she / her

Library Systems Analyst, OU Libraries

Kresge Library, Room 227

100 Library Drive, Rochester, MI  48309-4479

Phone: 248-370-2368

-- 
All messages to this mailing list should adhere to the Code of Conduct: 
https://www.lyrasis.org/about/Pages/Code-of-Conduct.aspx
--- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/dspace-tech/CAGdTMAqPB5e4ri_7bdTn%2B8tC5U%2ByHUnNyYT0LoPtKLfWzDkT6g%40mail.gmail.com.


Re: [dspace-tech] Modifying Themes DSpace 7.4

2023-01-06 Thread Mark H. Wood
On Thu, Jan 05, 2023 at 09:56:54AM -0500, Sarah Butash wrote:
> Hello,
> 
> We will soon be modifying the theme in our DSpace 7.4 environment.  In
> DSpace 5.11, I could make a theme/UI change, bounce the tomcat server and
> the change would be in our live environment.  I'm looking for the way to
> make changes in this way for 7.4. We work on a Linux server without an
> IDE.  For DSpace 7.4, I notice that in the Getting Started Demo, the
> presenter keeps recompiling to commit UI changes (header, footer, etc). He
> mentions running a yarn:start command.  What is that compiling? The whole
> DSpace instance? the UI?

To change a theme (or any part of the UI), you need to rebuild the
front end (dspace-angular), because part of that process compresses
and packs up the code into bundles that can be sent to the browser to
run there.  Then you need to restart the NodeJS instance that serves
it out.  The back end isn't affected by changes to the UI and can be
left running.

I *have* seen that at least some UI changes will be taken up without
restarting, if I just copy the rebuilt front end 'dist' tree to the
place from which it's run, but I don't know when I can trust this so I
usually restart it anyway.

-- 
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

-- 
All messages to this mailing list should adhere to the Code of Conduct: 
https://www.lyrasis.org/about/Pages/Code-of-Conduct.aspx
--- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/dspace-tech/Y7gWnXxLkinWJt9O%40IUPUI.Edu.


signature.asc
Description: PGP signature