Sha256: e665609754a53e39a82561838f687d8351b518f1d7087eea9f9809231aad77a9
Contents?: true
Size: 1.44 KB
Versions: 8
Compression:
Stored size: 1.44 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
8 entries across 8 versions & 2 rubygems