Sha256: 601abc74738dd0626a6ab7b649f7eb4f33fefcf50d09338363a20d2d63c96948
Contents?: true
Size: 1.43 KB
Versions: 1
Compression:
Stored size: 1.43 KB
Contents
/*! * This file is part of Aloha Editor Project http://aloha-editor.org * Copyright � 2010-2011 Gentics Software GmbH, aloha@gentics.com * Contributors http://aloha-editor.org/contribution.php * Licensed unter the terms of http://www.aloha-editor.org/license.html *//* * Aloha Editor is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version.* * * Aloha Editor is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ define( ['aloha/ext'], function(Ext) { Ext.data.AlohaObjectReader = function(meta, recordType) { meta = {}; Ext.applyIf(meta, { idProperty: 'id', root: 'items', totalProperty: 'results', // TODO implement all defined optional attributes fields: [ 'id', 'url', 'name', 'type', 'weight', 'path', 'repositoryId' ] }); Ext.data.JsonReader.superclass.constructor.call(this, meta, meta.fields); }; Ext.extend(Ext.data.AlohaObjectReader, Ext.data.JsonReader, { // extend of necessary }); });
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
free_text-0.0.3 | app/assets/javascripts/aloha-0.10.0/lib/aloha/ext-alohareader.js |