summaryrefslogtreecommitdiff
path: root/www/aswiki/files/patch-2chbbs.rb
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2013-10-15 12:44:10 +0000
committerBaptiste Daroussin <bapt@FreeBSD.org>2013-10-15 12:44:10 +0000
commitc3ce1ddc75fb38dffc019d42295a987ba1620c77 (patch)
treeda17db1f48b35781b37fb35a622c7f764319a3f5 /www/aswiki/files/patch-2chbbs.rb
parentDrop support for ruby-lua4 (diff)
2013-10-15 www/rubygem-staticmatic: No longer maintained upstream
2013-10-10 www/ruby-nora: Does not work with Ruby 1.9 www/aswiki 2013-10-10 textproc/ruby-amrita: Does not work with Ruby 1.9 2013-10-15 security/flowtag: Does not work with Ruby 1.9 2013-10-10 lang/ruby-lua4: Does not work with Ruby 1.9 2013-10-15 dns/dnsdoctor: Does not work with Ruby 1.9
Notes
Notes: svn path=/head/; revision=330396
Diffstat (limited to 'www/aswiki/files/patch-2chbbs.rb')
-rw-r--r--www/aswiki/files/patch-2chbbs.rb20
1 files changed, 0 insertions, 20 deletions
diff --git a/www/aswiki/files/patch-2chbbs.rb b/www/aswiki/files/patch-2chbbs.rb
deleted file mode 100644
index 7c3ff4f07ba9..000000000000
--- a/www/aswiki/files/patch-2chbbs.rb
+++ /dev/null
@@ -1,20 +0,0 @@
---- plugin/2chbbs.rb.dist Wed Jan 8 11:01:21 2003
-+++ plugin/2chbbs.rb Sun Apr 29 22:05:37 2007
-@@ -24,7 +24,7 @@
- t = Time.now
- time = t.strftime("%Y/%m/%d (#{weekstr[t.wday]}) %R")
- data = "\n#{number}: #{from}: #{name} #{date}: #{time} \n\n" +
-- session['textdata'] + "\n"
-+ session['textdata'].to_s + "\n"
- file = @repository.load(pname)
- file[session['begin'].to_i-1, 0 ] = data
- file[session['begin'].to_i] = "#2chbbs #{number}\n"
-@@ -40,7 +40,7 @@
- session['number'] = av[1].to_i
- @data = {
- :_session_id => session.session_id,
-- :md5sum => Digest::MD5::new(@repository.load(@name).to_s).to_s,
-+ :md5sum => Digest::MD5::new.update(@repository.load(@name).to_s).to_s,
- :msg_2chbbs_from => msg_2chbbs_from,
- :msg_2chbbs_write => msg_2chbbs_write,
- }