new skin for posart

This commit is contained in:
Van
2014-02-17 13:27:23 +08:00
parent a55133005a
commit 820b18d0fe
189 changed files with 19164 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
require 'webrick'
include WEBrick
s = HTTPServer.new(
:Port => 2010,
:DocumentRoot => Dir::pwd
)
s.mount('/sh/scripts', WEBrick::HTTPServlet::FileHandler, '../scripts')
s.mount('/sh/styles', WEBrick::HTTPServlet::FileHandler, '../styles')
trap('INT') { s.stop }
s.start