Sha256: 67df4ea0f1fc2271b2279abcacdc66e7beeb966ff459958dbe2bcd539955e834
Contents?: true
Size: 1.25 KB
Versions: 1
Compression:
Stored size: 1.25 KB
Contents
// ========================================================================== // Project: Greenhouse.File // Copyright: ©2010 Mike Ball // ========================================================================== /*jslint evil: true*/ /*globals Greenhouse*/ require('core'); /** @class file properties @property dir @property name @extends SC.ChildRecord @version 0.1 */ Greenhouse.File = SC.ChildRecord.extend( /** @scope Greenhouse.File.prototype */ { type: 'File', childRecordNamespace: Greenhouse, name: SC.Record.attr(String), dir: SC.Record.attr(String), body: SC.Record.attr(String), primaryKey: 'id', isFile: YES, path: function(){ return this.get('dir') + this.get('name'); }.property('name', 'dir').cacheable(), pageRegex: function(){ var b = this.get('body'), re =/(\w+)\.(\w+)\s*=\s*SC\.Page\.(design|create)/; return b ? b.match(re): b; }.property('body').cacheable(), isPage: function(){ return this.get('pageRegex') !== null; }.property('pageRegex').cacheable(), pageName: function(){ var r = this.get('pageRegex') || []; return "%@.%@".fmt(r[1],r[2]); }.property('pageRegex').cacheable() }) ; Greenhouse.FILES_QUERY = SC.Query.remote(Greenhouse.File); Greenhouse.File.mixin({ });
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
sproutcore-1.5.0.pre.3 | lib/frameworks/sproutcore/apps/greenhouse/models/file.js |