- These instructions: https://github.com/wojdyr/fityk/wiki/MigrationToGoogleGroups
- This
mbox_send.py
script to (re-)send all emails in the 'mbox' to Google Group: https://gist.github.com/Turin86/4555355
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/dspace/config/dspace.cfg b/dspace/config/dspace.cfg | |
index 8365c30..7924248 100644 | |
--- a/dspace/config/dspace.cfg | |
+++ b/dspace/config/dspace.cfg | |
@@ -13,22 +13,24 @@ | |
# | |
-#---------------------------------------------------------------# | |
-#------------------GENERAL CONFIGURATIONS-----------------------# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[INFO] ------------------------------------------------------------------------ | |
[INFO] Reactor Summary: | |
[INFO] | |
[INFO] DSpace Parent Project ............................. SUCCESS [40.255s] | |
[INFO] DSpace Services Framework :: API and Implementation SUCCESS [17.561s] | |
[INFO] DSpace Kernel :: API and Implementation ........... SUCCESS [2:24.250s] | |
[INFO] DSpace XML-UI (Manakin) ........................... SUCCESS [46.337s] | |
[INFO] DSpace Addon Modules .............................. SUCCESS [0.567s] | |
[INFO] DSpace XML-UI (Manakin) :: Local Customizations ... SUCCESS [22.331s] | |
[INFO] DSpace LNI ........................................ SUCCESS [16.184s] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[INFO] ------------------------------------------------------------------------ | |
[INFO] Building DSpace XML-UI (Manakin) :: Local Customizations 3.0-rc2 | |
[INFO] ------------------------------------------------------------------------ | |
[WARNING] The POM for org.dspace.modules:additions:jar:3.0-rc2 is missing, no dependency information available | |
[INFO] ------------------------------------------------------------------------ | |
[INFO] Reactor Summary: | |
[INFO] | |
[INFO] DSpace Parent Project ............................. SUCCESS [18.386s] | |
[INFO] DSpace Services Framework :: API and Implementation SUCCESS [41.185s] | |
[INFO] DSpace Kernel :: API and Implementation ........... SUCCESS [2:14.349s] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[INFO] Not generating release POMs | |
[INFO] Executing preparation goals - since this is simulation mode it is running against the original project, not the rewritten ones | |
[INFO] Executing goals 'clean verify'... | |
[INFO] Executing: cmd.exe /X /C ""C:\Program Files\Apache Software Foundation\apache-maven-3.0.3\bin\mvn" -s C:\Users\Tim\AppData\Local\Temp | |
\release-settings3479472133434842295.xml clean verify --no-plugin-updates -Psonatype-oss-release -P dspace,dspace-api,dspace-services,dspace | |
-oai,dspace-jspui,dspace-sword,dspace-swordv2,dspace-xmlui,dspace-lni" | |
[WARNING] Command line option -npu is deprecated and will be removed in future Maven versions. | |
[INFO] Scanning for projects... | |
[INFO] ------------------------------------------------------------------------ | |
[INFO] Reactor Build Order: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## WARNING THIS IS NOT YET IN PRODUCTION. IT SEEMS TO WORK IN TESTING THOUGH | |
<VirtualHost *:80> | |
ServerName test.dspacedirect.org | |
## Logging Settings ## | |
ErrorLog ${APACHE_LOG_DIR}/test.dspacedirect.org-error.log | |
CustomLog ${APACHE_LOG_DIR}/test.dspacedirect.org-access.log combined | |
# Possible values include: debug, info, notice, warn, error, crit, | |
# alert, emerg. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Run by doing: "mvn clean verify -Dthird.party.licenses=true" | |
<!-- Generate a list of all THIRD PARTY licenses which are in use by DSpace --> | |
<profile> | |
<id>third-party-licenses</id> | |
<activation> | |
<activeByDefault>false</activeByDefault> | |
<!-- This profile should ONLY be active when user specifies | |
-Dthird.party.licenses=true on command-line. --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- *** Sample Shibboleth Settings for http://www.testshib.org/ *** --> | |
<!-- This provides a simple sample of how you could configure --> | |
<!-- shibboleth2.xml for DSpace sites. --> | |
<!-- TO ENABLE: You'd need to specify "applicationId" as "testshib" in --> | |
<!-- your mod_shib settings, e.g. --> | |
<!-- <Location /> --> | |
<!-- ... --> | |
<!-- ShibRequestSetting applicationId testshib --> | |
<!-- </Location> --> | |
<ApplicationOverride id="testshib" entityID="http://mydspace.edu/shibboleth" |
In case you want to have an IDE locally, but have your Development environment be on a VM
- Install Atom on your local (host) machine: https://atom.io/
- Install the "remote-sync" package: https://atom.io/packages/remote-sync
- Ensure Vagrant is running (e.g.
vagrant up
) - Create an empty directory on your local (host) machine that you want to "sync" with a directory on the Vagrant VM
- Open that empty directory in Atom
- Right click on it, select "Remote Sync -> Configure"
Integrating ConsoleZ + Powershell + Git for Windows + posh-git (with SSH agent forwarding + Vagrant)
Tested on: Windows 10
This setup includes the following:
- Using ConsoleZ for your terminal (This is optional. If you don't want it, skip anything having to do with ConsoleZ and just use PowerShell)
- Running PowerShell behind the scenes
- Installing Git for Windows + posh-git, to provide git commands (and ssh) to PowerShell
- Auto-starting posh-git's SSH-Agent for SSH forwarding to remote servers, VMs, Vagrant, etc.