Redmine Modifications

./public/stylesheets/application.css

Added the following code to the @Media Print section:

#content, .issue, h1, h2, h3, h4, h5, h6, a:link, a:visited { border: 0 !important; color: #000 !important; }

This removes a couple of borders that I found to be distracting and changed various font colors to black to make the text easier to on paper.

./lib/redmine/scm/adapters/subversion_adapter.rb

Changed the value of the SVN_BIN variable from

svn

to

/usr/local/bin/svn --config-dir /path_to_redmine/.svn

I then created the /path_to_redmine/.svn directory and connected to the https-based repository. This allowed me to accept the self-signed SSL certificate permanently and store it in the config-dir specified above.