Please enable JavaScript to use RhodeCode Enterprise
Commit Description:
added box for windows
Commit Description:
added box for windows
module GraderEngineHelperMethods
def clear_sandbox
config = Grader :: Configuration . get_instance
clear_cmd = "rm -rf #{ config . test_sandbox_dir } /*"
system ( clear_cmd )
end
def init_sandbox
config = Grader :: Configuration . get_instance
clear_sandbox
FileUtils . mkdir_p config . user_result_dir
cp_cmd = "cp -R #{ config . test_data_dir } /ev #{ config . test_sandbox_dir } "
system ( cp_cmd )
end
def create_submission_from_file ( id , user , problem ,
source_fname , language = nil )
language = stub ( Language , :name => 'c' , :ext => 'c' ) if language == nil
config = Grader :: Configuration . get_instance
source = File . open ( config . test_data_dir + "/" + source_fname ) . read
stub ( Submission ,
:id => id , :user => user , :problem => problem ,
:source => source , :language => language )
end
end
Site-wide shortcuts
/
Use quick search box
g h
Goto home page
g g
Goto my private gists page
g G
Goto my public gists page
n r
New repository page
n g
New gist page
Repositories
g s
Goto summary page
g c
Goto changelog page
g f
Goto files page
g F
Goto files page with file search activated
g p
Goto pull requests page
g o
Goto repository settings
g O
Goto repository permissions settings