#!/usr/bin/env ruby # -*- coding: ascii-8bit; -*-:w #!/home/vette/src/ruby-2.5.3/ruby # # # index.rb # # Copyright (C) 2001-2009, TADA Tadashi # 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 end request = TDiary::Request.new( ENV, @cgi ) status, headers, body = TDiary::Dispatcher.index.dispatch_cgi( request, @cgi ) TDiary::Dispatcher.send_headers( status, headers ) ::Rack::Handler::CGI.send_body(body) rescue Exception if @cgi then print @cgi.header( 'status' => CGI::HTTP_STATUS['SERVER_ERROR'], 'type' => 'text/html' ) else print "Status: 500 Internal Server Error\n" print "Content-Type: text/html\n\n" end puts "

500 Internal Server Error

" puts "
"
	puts CGI::escapeHTML( "#{$!} (#{$!.class})" )
	puts ""
	puts CGI::escapeHTML( $@.join( "\n" ) )
	puts "
" puts "
#{' ' * 500}
" end # Local Variables: # mode: ruby # indent-tabs-mode: t # tab-width: 3 # ruby-indent-level: 3 # End: