Archive for April, 2010

SVN back in the house

Wednesday, April 7th, 2010

Ever since I moved from my old source-based linus to rpm-based linux, there were some features I was not able to set up or install due to lack of time. One of these was the SVN server. And since I’ve done some changes to the greasemonkey scripts as you can see in my previous post, I had to commit.
So, long story short, I had to:
– yum install mod_dav_svn.i386
– service httpd restart
– usermod -a -G svn apache
– chown -R svn:svn /svn
– chmod -R g+w /svn
to get rid of all the errors and be able to use my old repository again.

Well, that’s about it for now.

Related posts

Multiple scripts update

Wednesday, April 7th, 2010

following are the modified scripts and their changes:

aa_all_common.user.js – fixed progress notification not being displayed on multiple concurrent executions, added debug support
aa_sp_common.user.js – fixed md5 hash not being correctly processed; fixed on every post callback when a postid is not found
aa_sp_mod_common.user.js – added support to ask for forumID in MoveTopic function
sp_warn_helper.user.js – added more include urls; added automatic explanation support; changed behavior to not clear suspension on warn; increased ban spammer execution wait to 25 seconds
sp_acrhive_pm.user.js – added more urls to include; changed behavior to archive only the messages older than 7 days and leaving at most 50 messages in folders

Related posts