Class: String

Inherits:
Object show all
Defined in:
lib/knj/web.rb

Instance Method Summary collapse

Instance Method Details

#htmlObject



1054
1055
1056
# File 'lib/knj/web.rb', line 1054

def html
  return Knj::Web.html(self)
end

#sqlObject



1058
1059
1060
1061
1062
1063
1064
1065
1066
# File 'lib/knj/web.rb', line 1058

def sql
  begin
    return _db.escape(self)
  rescue NameError
    #ignore - not i KnjAppServer HTTP-session.
  end
  
  raise "Could not figure out where to find db object."
end