|
@@ -243,7 +243,7 @@ module CPEE
|
|
|
class GetFrames < Riddl::Implementation #{{{
|
|
|
def response
|
|
|
fname = File.join('data',@r[-2],'frames.json')
|
|
|
- if File.exists? fname
|
|
|
+ if File.exist? fname
|
|
|
|
|
|
infofile = File.join('data',@r[-2],'info.json')
|
|
|
infojson = JSON::parse(File.read(infofile))
|
|
@@ -279,7 +279,7 @@ module CPEE
|
|
|
#puts @p[0].value
|
|
|
|
|
|
#fname = File.join('data',@r[-2],'dataelements.json')
|
|
|
- #if File.exists? fname
|
|
|
+ #if File.exist? fname
|
|
|
# Riddl::Parameter::Complex.new('value','application/json',File.read(fname))
|
|
|
#else
|
|
|
# @status = 404
|
|
@@ -290,7 +290,7 @@ module CPEE
|
|
|
class GetDataElements < Riddl::Implementation #{{{
|
|
|
def response
|
|
|
fname = File.join('data',@r[-2],'dataelements.json')
|
|
|
- if File.exists? fname
|
|
|
+ if File.exist? fname
|
|
|
Riddl::Parameter::Complex.new('value','application/json',File.read(fname))
|
|
|
else
|
|
|
@status = 404
|
|
@@ -301,7 +301,7 @@ module CPEE
|
|
|
class GetInfo < Riddl::Implementation #{{{
|
|
|
def response
|
|
|
fname = File.join('data',@r[-2],'info.json')
|
|
|
- if File.exists? fname
|
|
|
+ if File.exist? fname
|
|
|
Riddl::Parameter::Complex.new('value','application/json',File.read(fname))
|
|
|
else
|
|
|
@status = 404
|
|
@@ -312,7 +312,7 @@ module CPEE
|
|
|
class GetLangs < Riddl::Implementation #{{{
|
|
|
def response
|
|
|
fname = File.join('data',@r[-2],'info.json')
|
|
|
- if File.exists? fname
|
|
|
+ if File.exist? fname
|
|
|
infojson = JSON::parse(File.read(fname))
|
|
|
Riddl::Parameter::Complex.new('value','application/json',infojson["langs"])
|
|
|
else
|
|
@@ -324,7 +324,7 @@ module CPEE
|
|
|
class SetLang < Riddl::Implementation #{{{
|
|
|
def response
|
|
|
fname = File.join('data',@r[-2],'info.json')
|
|
|
- if File.exists? fname
|
|
|
+ if File.exist? fname
|
|
|
infojson = JSON::parse(File.read(fname))
|
|
|
infojson["lang"] = @p[0].value
|
|
|
|
|
@@ -349,7 +349,7 @@ module CPEE
|
|
|
class GetStyle < Riddl::Implementation #{{{
|
|
|
def response
|
|
|
fname = File.join('data',@r[-2],'style.url')
|
|
|
- if File.exists? fname
|
|
|
+ if File.exist? fname
|
|
|
Riddl::Parameter::Complex.new('url','text/plain',File.read(fname).strip)
|
|
|
else
|
|
|
@status = 404
|
|
@@ -360,7 +360,7 @@ module CPEE
|
|
|
class GetCpeeInstance < Riddl::Implementation #{{{
|
|
|
def response
|
|
|
fname = File.join('data',@r[-2],'cpeeinstance.url')
|
|
|
- if File.exists? fname
|
|
|
+ if File.exist? fname
|
|
|
Riddl::Parameter::Complex.new('url','text/plain',File.read(fname).strip)
|
|
|
else
|
|
|
@status = 404
|