-
Notifications
You must be signed in to change notification settings - Fork 67
/
update.rb
executable file
·57 lines (52 loc) · 1.42 KB
/
update.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#!/usr/bin/env ruby
# -*- coding: ascii-8bit; -*-
#
# update.rb
#
# Copyright (C) 2001-2009, TADA Tadashi <t@tdtds.jp>
# You can redistribute it and/or modify it under GPL2 or any later version.
#
BEGIN { $stdout.binmode }
begin
if FileTest::symlink?( __FILE__ ) then
org_path = File::dirname( File::readlink( __FILE__ ) )
else
org_path = File::dirname( __FILE__ )
end
$:.unshift( (org_path + '/lib') ) unless $:.include?( org_path + '/lib' )
require 'tdiary'
encoding_error = {}
cgi = CGI::new(accept_charset: "UTF-8") do |name, value|
encoding_error[name] = value
end
if encoding_error.empty?
@cgi = cgi
else
@cgi = CGI::new(accept_charset: 'shift_jis')
@cgi.params = cgi.params.dup
end
request = TDiary::Request.new( ENV, @cgi )
status, headers, body = TDiary::Dispatcher.update.dispatch_cgi( request, @cgi )
TDiary::Dispatcher.send_headers( status, headers )
::Rackup::Handler::CGI.send_body(body)
rescue Exception
if @cgi then
print @cgi.header( 'status' => '500 Internal Server Error', 'type' => 'text/html' )
else
print "Status: 500 Internal Server Error\n"
print "content-type: text/html\n\n"
end
puts "<h1>500 Internal Server Error</h1>"
puts "<pre>"
puts CGI::escapeHTML( "#{$!} (#{$!.class})" )
puts ""
puts CGI::escapeHTML( $@.join( "\n" ) )
puts "</pre>"
puts "<div>#{' ' * 500}</div>"
end
# Local Variables:
# mode: ruby
# indent-tabs-mode: t
# tab-width: 3
# ruby-indent-level: 3
# End: