diff options
| author | Ralph Amissah <ralph@amissah.com> | 2010-04-16 10:16:59 -0400 | 
|---|---|---|
| committer | Ralph Amissah <ralph@amissah.com> | 2010-04-16 10:16:59 -0400 | 
| commit | 221cfa4043a1e9423a6ed4222fb41ef68b8fd73d (patch) | |
| tree | d2672b93a05d27edd46087108719b9ed88efcb4e /lib | |
| parent | param checks metadata string lengths against set db column sizes (diff) | |
db, sysenv, sisurc.yml determine whether to share sisu markup source in db
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/sisu/v2/sysenv.rb | 6 | 
1 files changed, 6 insertions, 0 deletions
| diff --git a/lib/sisu/v2/sysenv.rb b/lib/sisu/v2/sysenv.rb index 88195630..c857468f 100644 --- a/lib/sisu/v2/sysenv.rb +++ b/lib/sisu/v2/sysenv.rb @@ -2685,6 +2685,12 @@ WOK        @rc=@@rc ||=Get_init.instance.yamlrc        @defaults=Info_env.new.defaults      end +    def share_source? +      ((defined? @rc['db']['share_source']) \ +      && @rc['db']['share_source']==true) \ +      ? @rc['db']['share_source'] \ +      : false +    end      def engine        def default          ((defined? @rc['db']['engine']['default']) \ | 
