debian/0000755000000000000000000000000012044540262007165 5ustar debian/libjs-extjs-doc.examples0000644000000000000000000000001312044540262013720 0ustar examples/* debian/libjs-extjs-doc.links0000644000000000000000000000064212044540262013232 0ustar usr/share/javascript/extjs/resources/css/ext-all.css usr/share/doc/libjs-extjs-doc/resources/ext-all.css usr/share/javascript/extjs/ext-all.js usr/share/doc/libjs-extjs-doc/resources/ext-all.js usr/share/javascript/extjs/resources/css/ usr/share/doc/libjs-extjs-doc/resources/css usr/share/javascript/extjs/resources/images/ usr/share/doc/libjs-extjs-doc/resources/images debian/compile.py0000755000000000000000000000362012044540262011173 0ustar #!/usr/bin/python # -*- encoding: utf-8 -*- # © 2012, David Paleino import json import sys import os # the multiple-times copyright statement to remove copyright_stmt = """/*! * Ext JS Library 3.4.0 * Copyright(c) 2006-2011 Sencha Inc. * licensing@sencha.com * http://www.sencha.com/license */ """ script = json.load(open(sys.argv[1])) for pkg in script['pkgs']: included_copyright = False debug = pkg.get('isDebug', False) if debug: out = pkg['file'][:-3] + '-debug.js' else: out = pkg['file'] print out, # make sure the directory exists if out.rfind('/') != -1: os.system('mkdir -p %s' % out[:out.rfind('/')]) output = open(out, 'w') # only include pkgDeps for ext-all.css and ext-all.js if pkg.has_key('pkgDeps') and 'ext-all' in pkg['file']: if not pkg.get('includeDeps', True): pass else: # first, dependencies for inc in pkg['pkgDeps']: if debug: inc = inc[:-3] + '-debug.js' with open(inc) as f: if included_copyright: # we already included the copyright statement, # drop it. s = f.read() s = s.replace(copyright_stmt, '') output.write(s) else: output.writelines(f.readlines()) included_copyright = True # then, files to include. for inc in pkg['fileIncludes']: if inc['text'].endswith('.js'): if debug: f = inc['path'] + inc['text'] else: f = inc['path'] + inc['text'][:-3] + '-debug.js' else: f = inc['path'] + inc['text'] with open(f) as f: if included_copyright: # we already included the copyright statement, # drop it. s = f.read() s = s.replace(copyright_stmt, '') output.write(s) else: output.writelines(f.readlines()) included_copyright = True output.close() print 'done.' if debug: # minify minout = out.replace('-debug', '') print minout, os.system('yui-compressor -o %s %s' % (minout, out)) print 'minified OK.' debian/rules0000755000000000000000000000257712044540262010260 0ustar #!/usr/bin/make -f CURVER := $(shell dpkg-parsechangelog | grep ^Version | cut -d\ -f2 | cut -d- -f1) ifndef UPVER UPVER := $(shell echo ${CURVER} | cut -d+ -f1) endif DEBVER := ${UPVER}+dfsg1 SRCNAME := ext-${UPVER}.zip SRCURL := http://extjs.cachefly.net/${SRCNAME} %: dh $@ override_dh_auto_build: debian/compile.py ext.jsb2 override_dh_install: dh_install rm -rf $(CURDIR)/debian/libjs-extjs-doc/usr/share/doc/libjs-extjs-doc/source/ rm -rf $(CURDIR)/debian/libjs-extjs-doc/usr/share/doc/libjs-extjs-doc/resources/css/ rm -rf $(CURDIR)/debian/libjs-extjs-doc/usr/share/doc/libjs-extjs-doc/resources/images/ # drop empty directories rm -rf $(CURDIR)/debian/libjs-extjs/usr/share/javascript/extjs/resources/images/vista/dd/ rm -rf $(CURDIR)/debian/libjs-extjs/usr/share/javascript/extjs/resources/images/vista/tree/ override_dh_installexamples: dh_installexamples rm -rf $(CURDIR)/debian/libjs-extjs-doc/usr/share/doc/libjs-extjs-doc/examples/spinner/images/ override_dh_clean: dh_clean $(shell cat debian/generated) get-orig-source: rm -rf ${SRCNAME} wget ${SRCURL} unzip ${SRCNAME} find ext-${UPVER}/ -name "*.swf" -delete rm -rf ext-${UPVER}/examples/image-organizer/ for i in $(shell cat debian/generated); do \ rm -rf ext-${UPVER}/$$i; \ done tar cf libjs-extjs_${DEBVER}.orig.tar ext-${UPVER}/ bzip2 libjs-extjs_${DEBVER}.orig.tar rm -rf ${SRCNAME} ext-${UPVER}/ debian/libjs-extjs-doc.doc-base0000644000000000000000000000047112044540262013567 0ustar Document: libjs-extjs Title: Ext JS Documentation Author: Ext JS LLC Abstract: This manual describes the Ext JS cross browser library. Section: Web Development Format: HTML Index: /usr/share/doc/libjs-extjs-doc/index.html Files: /usr/share/doc/libjs-extjs-doc/*.html /usr/share/doc/libjs-extjs-doc/output/*.html debian/libjs-extjs-doc.install0000644000000000000000000000015012044540262013552 0ustar INCLUDE_ORDER.txt usr/share/doc/libjs-extjs-doc/ docs/* usr/share/doc/libjs-extjs-doc/ debian/libjs-extjs-doc.lintian-overrides0000644000000000000000000003334212044540262015553 0ustar libjs-extjs-doc: doc-package-depends-on-main-package depends libjs-extjs-doc: duplicate-files usr/share/doc/libjs-extjs-doc/examples/feed-viewer/images/tab-close-on.gif usr/share/doc/libjs-extjs-doc/examples/key-feed-viewer/images/tab-close-on.gif libjs-extjs-doc: duplicate-files usr/share/doc/libjs-extjs-doc/examples/feed-viewer/images/delete.gif usr/share/doc/libjs-extjs-doc/examples/key-feed-viewer/images/delete.gif libjs-extjs-doc: duplicate-files usr/share/doc/libjs-extjs-doc/examples/restful/remote/lib/response.php usr/share/doc/libjs-extjs-doc/examples/writer/remote/lib/response.php libjs-extjs-doc: duplicate-files usr/share/doc/libjs-extjs-doc/examples/feed-viewer/images/toolbar.gif usr/share/doc/libjs-extjs-doc/examples/key-feed-viewer/images/toolbar.gif libjs-extjs-doc: duplicate-files usr/share/doc/libjs-extjs-doc/examples/tree/images/thumbs/zacks_grill.jpg usr/share/doc/libjs-extjs-doc/examples/view/images/thumbs/zacks_grill.jpg libjs-extjs-doc: duplicate-files usr/share/doc/libjs-extjs-doc/examples/grid/grouping.css usr/share/doc/libjs-extjs-doc/examples/writer/writer.css libjs-extjs-doc: duplicate-files usr/share/doc/libjs-extjs-doc/examples/feed-viewer/images/grid-hrow.gif usr/share/doc/libjs-extjs-doc/examples/key-feed-viewer/images/grid-hrow.gif libjs-extjs-doc: duplicate-files usr/share/doc/libjs-extjs-doc/examples/feed-viewer/images/rss_add.gif usr/share/doc/libjs-extjs-doc/examples/key-feed-viewer/images/rss_add.gif libjs-extjs-doc: duplicate-files usr/share/doc/libjs-extjs-doc/examples/feed-viewer/images/signout.gif usr/share/doc/libjs-extjs-doc/examples/key-feed-viewer/images/signout.gif libjs-extjs-doc: duplicate-files usr/share/doc/libjs-extjs-doc/examples/feed-viewer/FeedGrid.js usr/share/doc/libjs-extjs-doc/examples/key-feed-viewer/FeedGrid.js libjs-extjs-doc: duplicate-files usr/share/doc/libjs-extjs-doc/examples/feed-viewer/images/suggested.gif usr/share/doc/libjs-extjs-doc/examples/key-feed-viewer/images/suggested.gif libjs-extjs-doc: duplicate-files usr/share/doc/libjs-extjs-doc/examples/restful/remote/app/models/user.php usr/share/doc/libjs-extjs-doc/examples/writer/remote/app/models/user.php libjs-extjs-doc: duplicate-files usr/share/doc/libjs-extjs-doc/examples/desktop/images/grid.png usr/share/doc/libjs-extjs-doc/examples/shared/icons/fam/grid.png libjs-extjs-doc: duplicate-files usr/share/doc/libjs-extjs-doc/examples/feed-viewer/images/post.gif usr/share/doc/libjs-extjs-doc/examples/key-feed-viewer/images/post.gif libjs-extjs-doc: duplicate-files usr/share/doc/libjs-extjs-doc/examples/feed-viewer/images/tab-close.gif usr/share/doc/libjs-extjs-doc/examples/key-feed-viewer/images/tab-close.gif libjs-extjs-doc: duplicate-files usr/share/doc/libjs-extjs-doc/examples/tree/images/thumbs/zack.jpg usr/share/doc/libjs-extjs-doc/examples/view/images/thumbs/zack.jpg libjs-extjs-doc: duplicate-files usr/share/doc/libjs-extjs-doc/examples/desktop/images/tabs.gif usr/share/doc/libjs-extjs-doc/resources/tabs.gif libjs-extjs-doc: duplicate-files usr/share/doc/libjs-extjs-doc/examples/button/images/add16.gif usr/share/doc/libjs-extjs-doc/examples/toolbar/images/add16.gif libjs-extjs-doc: duplicate-files usr/share/doc/libjs-extjs-doc/examples/restful/remote/lib/model.php usr/share/doc/libjs-extjs-doc/examples/writer/remote/lib/model.php libjs-extjs-doc: duplicate-files usr/share/doc/libjs-extjs-doc/examples/feed-viewer/images/signin.gif usr/share/doc/libjs-extjs-doc/examples/key-feed-viewer/images/signin.gif libjs-extjs-doc: duplicate-files usr/share/doc/libjs-extjs-doc/examples/feed-viewer/feed-proxy.php usr/share/doc/libjs-extjs-doc/examples/key-feed-viewer/feed-proxy.php libjs-extjs-doc: duplicate-files usr/share/doc/libjs-extjs-doc/examples/shared/icons/fam/accept.png usr/share/doc/libjs-extjs-doc/examples/ux/statusbar/images/accept.png libjs-extjs-doc: duplicate-files usr/share/doc/libjs-extjs-doc/examples/feed-viewer/images/rss_load.gif usr/share/doc/libjs-extjs-doc/examples/key-feed-viewer/images/rss_load.gif libjs-extjs-doc: duplicate-files usr/share/doc/libjs-extjs-doc/examples/feed-viewer/images/preview-hide.gif usr/share/doc/libjs-extjs-doc/examples/key-feed-viewer/images/preview-hide.gif libjs-extjs-doc: duplicate-files usr/share/doc/libjs-extjs-doc/examples/tree/images/thumbs/sara_smile.jpg usr/share/doc/libjs-extjs-doc/examples/view/images/thumbs/sara_smile.jpg libjs-extjs-doc: duplicate-files usr/share/doc/libjs-extjs-doc/examples/feed-viewer/images/header-bar.gif usr/share/doc/libjs-extjs-doc/examples/key-feed-viewer/images/header-bar.gif libjs-extjs-doc: duplicate-files usr/share/doc/libjs-extjs-doc/examples/feed-viewer/FeedPanel.js usr/share/doc/libjs-extjs-doc/examples/key-feed-viewer/FeedPanel.js libjs-extjs-doc: duplicate-files usr/share/doc/libjs-extjs-doc/examples/tree/images/thumbs/zack_hat.jpg usr/share/doc/libjs-extjs-doc/examples/view/images/thumbs/zack_hat.jpg libjs-extjs-doc: duplicate-files usr/share/doc/libjs-extjs-doc/examples/feed-viewer/images/new_window.gif usr/share/doc/libjs-extjs-doc/examples/key-feed-viewer/images/new_window.gif libjs-extjs-doc: duplicate-files usr/share/doc/libjs-extjs-doc/examples/feed-viewer/images/rss_delete.gif usr/share/doc/libjs-extjs-doc/examples/key-feed-viewer/images/rss_delete.gif libjs-extjs-doc: duplicate-files usr/share/doc/libjs-extjs-doc/examples/feed-viewer/images/wait.gif usr/share/doc/libjs-extjs-doc/examples/key-feed-viewer/images/wait.gif libjs-extjs-doc: duplicate-files usr/share/doc/libjs-extjs-doc/examples/feed-viewer/images/bullet.gif usr/share/doc/libjs-extjs-doc/examples/key-feed-viewer/images/bullet.gif libjs-extjs-doc: duplicate-files usr/share/doc/libjs-extjs-doc/examples/shared/icons/arrow-up.gif usr/share/doc/libjs-extjs-doc/resources/inherited.gif libjs-extjs-doc: duplicate-files usr/share/doc/libjs-extjs-doc/examples/debug/sheldon.xml.gz usr/share/doc/libjs-extjs-doc/examples/grid/sheldon.xml.gz libjs-extjs-doc: duplicate-files usr/share/doc/libjs-extjs-doc/examples/forum/preview.png usr/share/doc/libjs-extjs-doc/examples/menu/preview.png libjs-extjs-doc: duplicate-files usr/share/doc/libjs-extjs-doc/examples/restful/remote/init.php usr/share/doc/libjs-extjs-doc/examples/writer/remote/init.php libjs-extjs-doc: duplicate-files usr/share/doc/libjs-extjs-doc/examples/feed-viewer/images/go-to-post.gif usr/share/doc/libjs-extjs-doc/examples/key-feed-viewer/images/go-to-post.gif libjs-extjs-doc: duplicate-files usr/share/doc/libjs-extjs-doc/examples/tree/images/thumbs/dance_fever.jpg usr/share/doc/libjs-extjs-doc/examples/view/images/thumbs/dance_fever.jpg libjs-extjs-doc: duplicate-files usr/share/doc/libjs-extjs-doc/examples/shared/screens/writer-thumb.gif usr/share/doc/libjs-extjs-doc/examples/writer/writer-thumb.gif libjs-extjs-doc: duplicate-files usr/share/doc/libjs-extjs-doc/examples/desktop/images/bogus.png usr/share/doc/libjs-extjs-doc/resources/form.png libjs-extjs-doc: duplicate-files usr/share/doc/libjs-extjs-doc/examples/tree/images/thumbs/sara_pumpkin.jpg usr/share/doc/libjs-extjs-doc/examples/view/images/thumbs/sara_pumpkin.jpg libjs-extjs-doc: duplicate-files usr/share/doc/libjs-extjs-doc/examples/feed-viewer/images/bg.gif usr/share/doc/libjs-extjs-doc/examples/forum/bg.gif usr/share/doc/libjs-extjs-doc/examples/key-feed-viewer/images/bg.gif libjs-extjs-doc: duplicate-files usr/share/doc/libjs-extjs-doc/examples/tasks/images/icon-no-group.gif usr/share/doc/libjs-extjs-doc/resources/icon-grid.gif libjs-extjs-doc: duplicate-files usr/share/doc/libjs-extjs-doc/examples/tree/images/thumbs/zack_sink.jpg usr/share/doc/libjs-extjs-doc/examples/view/images/thumbs/zack_sink.jpg libjs-extjs-doc: duplicate-files usr/share/doc/libjs-extjs-doc/examples/feed-viewer/images/forward.gif usr/share/doc/libjs-extjs-doc/examples/key-feed-viewer/images/forward.gif libjs-extjs-doc: duplicate-files usr/share/doc/libjs-extjs-doc/examples/button/images/add24.gif usr/share/doc/libjs-extjs-doc/examples/toolbar/images/add24.gif libjs-extjs-doc: duplicate-files usr/share/doc/libjs-extjs-doc/examples/feed-viewer/FeedWindow.js usr/share/doc/libjs-extjs-doc/examples/key-feed-viewer/FeedWindow.js libjs-extjs-doc: duplicate-files usr/share/doc/libjs-extjs-doc/examples/restful/restful-thumb.gif usr/share/doc/libjs-extjs-doc/examples/shared/screens/restful-thumb.gif libjs-extjs-doc: duplicate-files usr/share/doc/libjs-extjs-doc/examples/desktop/images/accordian.gif usr/share/doc/libjs-extjs-doc/resources/accordian.gif libjs-extjs-doc: duplicate-files usr/share/doc/libjs-extjs-doc/examples/tree/images/thumbs/zack_dress.jpg usr/share/doc/libjs-extjs-doc/examples/view/images/thumbs/zack_dress.jpg libjs-extjs-doc: duplicate-files usr/share/doc/libjs-extjs-doc/examples/feed-viewer/images/new_tab.gif usr/share/doc/libjs-extjs-doc/examples/key-feed-viewer/images/new_tab.gif libjs-extjs-doc: duplicate-files usr/share/doc/libjs-extjs-doc/examples/feed-viewer/images/cmp-bg.gif usr/share/doc/libjs-extjs-doc/examples/forum/cmp-bg.gif usr/share/doc/libjs-extjs-doc/examples/key-feed-viewer/images/cmp-bg.gif usr/share/doc/libjs-extjs-doc/examples/tree/images/cmp-bg.gif libjs-extjs-doc: duplicate-files usr/share/doc/libjs-extjs-doc/examples/feed-viewer/images/cancel.gif usr/share/doc/libjs-extjs-doc/examples/key-feed-viewer/images/cancel.gif libjs-extjs-doc: duplicate-files usr/share/doc/libjs-extjs-doc/examples/panel/images/bubble-cs.gif usr/share/doc/libjs-extjs-doc/examples/ux/images/x-grouptabs-corners.gif libjs-extjs-doc: duplicate-files usr/share/doc/libjs-extjs-doc/examples/button/images/add.gif usr/share/doc/libjs-extjs-doc/examples/toolbar/images/add.gif libjs-extjs-doc: duplicate-files usr/share/doc/libjs-extjs-doc/examples/tree/images/thumbs/sara_pink.jpg usr/share/doc/libjs-extjs-doc/examples/view/images/thumbs/sara_pink.jpg libjs-extjs-doc: duplicate-files usr/share/doc/libjs-extjs-doc/examples/desktop/images/s.gif usr/share/doc/libjs-extjs-doc/examples/tasks/images/s.gif usr/share/doc/libjs-extjs-doc/resources/s.gif libjs-extjs-doc: duplicate-files usr/share/doc/libjs-extjs-doc/examples/tree/images/thumbs/gangster_zack.jpg usr/share/doc/libjs-extjs-doc/examples/view/images/thumbs/gangster_zack.jpg libjs-extjs-doc: duplicate-files usr/share/doc/libjs-extjs-doc/examples/feed-viewer/images/post-bg.gif usr/share/doc/libjs-extjs-doc/examples/key-feed-viewer/images/post-bg.gif usr/share/doc/libjs-extjs-doc/examples/shared/info-bg.gif libjs-extjs-doc: duplicate-files usr/share/doc/libjs-extjs-doc/examples/feed-viewer/images/preview-bottom.gif usr/share/doc/libjs-extjs-doc/examples/key-feed-viewer/images/preview-bottom.gif libjs-extjs-doc: duplicate-files usr/share/doc/libjs-extjs-doc/examples/feed-viewer/images/preview-right.gif usr/share/doc/libjs-extjs-doc/examples/key-feed-viewer/images/preview-right.gif libjs-extjs-doc: duplicate-files usr/share/doc/libjs-extjs-doc/examples/feed-viewer/images/rss.gif usr/share/doc/libjs-extjs-doc/examples/key-feed-viewer/images/rss.gif libjs-extjs-doc: duplicate-files usr/share/doc/libjs-extjs-doc/examples/feed-viewer/images/myfeeds.gif usr/share/doc/libjs-extjs-doc/examples/key-feed-viewer/images/myfeeds.gif libjs-extjs-doc: duplicate-files usr/share/doc/libjs-extjs-doc/examples/tree/images/thumbs/up_to_something.jpg usr/share/doc/libjs-extjs-doc/examples/view/images/thumbs/up_to_something.jpg libjs-extjs-doc: duplicate-files usr/share/doc/libjs-extjs-doc/examples/feed-viewer/images/warning.gif usr/share/doc/libjs-extjs-doc/examples/key-feed-viewer/images/warning.gif usr/share/doc/libjs-extjs-doc/examples/message-box/images/warning.gif libjs-extjs-doc: duplicate-files usr/share/doc/libjs-extjs-doc/examples/restful/remote/lib/request.php usr/share/doc/libjs-extjs-doc/examples/writer/remote/lib/request.php libjs-extjs-doc: duplicate-files usr/share/doc/libjs-extjs-doc/examples/feed-viewer/images/article.gif usr/share/doc/libjs-extjs-doc/examples/feed-viewer/images/feed-item.gif usr/share/doc/libjs-extjs-doc/examples/grid/topic.gif usr/share/doc/libjs-extjs-doc/examples/key-feed-viewer/images/article.gif usr/share/doc/libjs-extjs-doc/examples/key-feed-viewer/images/feed-item.gif libjs-extjs-doc: duplicate-files usr/share/doc/libjs-extjs-doc/examples/feed-viewer/images/header.gif usr/share/doc/libjs-extjs-doc/examples/key-feed-viewer/images/header.gif libjs-extjs-doc: duplicate-files usr/share/doc/libjs-extjs-doc/examples/feed-viewer/images/comment-bg.gif usr/share/doc/libjs-extjs-doc/examples/key-feed-viewer/images/comment-bg.gif usr/share/doc/libjs-extjs-doc/examples/message-box/images/comment-bg.gif libjs-extjs-doc: duplicate-files usr/share/doc/libjs-extjs-doc/examples/feed-viewer/images/preview.gif usr/share/doc/libjs-extjs-doc/examples/key-feed-viewer/images/preview.gif libjs-extjs-doc: duplicate-files usr/share/doc/libjs-extjs-doc/examples/slider/images/slider-thumb.png usr/share/doc/libjs-extjs-doc/examples/view/images/slider-thumb.png libjs-extjs-doc: duplicate-files usr/share/doc/libjs-extjs-doc/examples/feed-viewer/images/details.gif usr/share/doc/libjs-extjs-doc/examples/forum/details.gif usr/share/doc/libjs-extjs-doc/examples/grid/details.gif usr/share/doc/libjs-extjs-doc/examples/key-feed-viewer/images/details.gif libjs-extjs-doc: duplicate-files usr/share/doc/libjs-extjs-doc/examples/feed-viewer/images/refresh.gif usr/share/doc/libjs-extjs-doc/examples/key-feed-viewer/images/refresh.gif libjs-extjs-doc: duplicate-files usr/share/doc/libjs-extjs-doc/examples/shared/extjs/images/extanim32.gif usr/share/doc/libjs-extjs-doc/resources/extanim32.gif libjs-extjs-doc: duplicate-files usr/share/doc/libjs-extjs-doc/examples/feed-viewer/images/win-bg.gif usr/share/doc/libjs-extjs-doc/examples/key-feed-viewer/images/win-bg.gif libjs-extjs-doc: duplicate-files usr/share/doc/libjs-extjs-doc/examples/tree/images/thumbs/kids_hug2.jpg usr/share/doc/libjs-extjs-doc/examples/view/images/thumbs/kids_hug2.jpg libjs-extjs-doc: duplicate-files usr/share/doc/libjs-extjs-doc/examples/tree/images/thumbs/kids_hug.jpg usr/share/doc/libjs-extjs-doc/examples/view/images/thumbs/kids_hug.jpg debian/control0000644000000000000000000000352512044540262010575 0ustar Source: libjs-extjs Section: web Priority: optional Maintainer: Debian Javascript Maintainers Uploaders: Thomas Goirand , David Paleino Build-Depends: debhelper (>= 9) , python , yui-compressor Standards-Version: 3.9.4 Vcs-Browser: http://git.debian.org/?p=pkg-javascript/libjs-extjs.git Vcs-Git: http://git.debian.org/git/pkg-javascript/libjs-extjs.git Homepage: http://www.extjs.com/ Package: libjs-extjs Architecture: all Depends: ${misc:Depends}, libjs-jquery, javascript-common Description: cross-browser JavaScript library Ext JS is a cross-browser JavaScript library for building rich internet applications. . The Ext JS library is widely use in numerous web applications. It includes: high performance, customizable UI widgets, well designed and extensible Component model, qn intuitive, easy to use API, Commercial and Open Source licenses available. Ext JS supports all major web browsers including: Internet Explorer 6+, FireFox 1.5+ (PC, Mac), Safari 3+, Opera 9+ (PC, Mac). . This package doesn't include the documentation that is available in the package libjs-extjs-doc. Package: libjs-extjs-doc Section: doc Architecture: all Depends: ${misc:Depends} , libjs-extjs Description: cross-browser JavaScript library (docs) Ext JS is a cross-browser JavaScript library for building rich internet applications. . The Ext JS library is widely use in numerous web applications. It includes: high performance, customizable UI widgets, well designed and extensible Component model, qn intuitive, easy to use API, Commercial and Open Source licenses available. Ext JS supports all major web browsers including: Internet Explorer 6+, FireFox 1.5+ (PC, Mac), Safari 3+, Opera 9+ (PC, Mac). . This package only includes the documentation of ExtJS (libjs-extjs). debian/changelog0000644000000000000000000000307012044540262011037 0ustar libjs-extjs (3.4.0+dfsg1-1) unstable; urgency=low [ Thomas Goirand ] * New upstream version. * Added installation of ext-all-debug-w-comments.js * Switched debian/copyright to format 1.0. [ David Paleino ] * Added myself as Uploaders, and setting pkg-javascript as Maintainer * Implemented debian/rules get-orig-source target, which correctly creates a repackaged tarball, and added a README.source explaining why the repackaging is needed. * Standards-Version bump to 3.9.4. * Updated debian/copyright. * Bumped debhelper to compat 9, switched debian/rules to short format. * Correctly install doc-base file, avoiding manual hacks. * Cleanup debian/rules by moving installation instructions into proper debian/*.{install,examples} files. * Make libjs-extjs-doc depend on libjs-extjs, and make links to current js files. * Created debian/compile.py and integrated it in the build process: now the final .js/.css files are created following the rules specified by upstream in ext.jsb2. -- David Paleino Thu, 01 Nov 2012 19:34:20 +0100 libjs-extjs (3.0.3+dfsg0-1) unstable; urgency=low * Removed examples/images-organizer and resources/*.swf to make the extjs package DFSG compiliant (Closes: #591971). * Added Vcs-Git and Vcs-Browser fields. * Bumped Standard-Version to 3.9.1. -- Thomas Goirand Tue, 31 Aug 2010 22:27:49 +0800 libjs-extjs (3.0.3-1) unstable; urgency=low * Initial release. (Closes: #550031) -- Thomas Goirand Wed, 07 Oct 2009 10:45:22 +0800 debian/copyright0000644000000000000000000000612412044540262011123 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: Ext JS Upstream-Contact: Ext JS, LLC Source: http://www.extjs.com/products/extjs/download.php Files: debian/* Copyright: © 2009, Thomas Goirand © 2012, David Paleino License: GPL-3+ This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. . This program 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 General Public License for more details. . You should have received a copy of the GNU General Public License along with this program. If not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA . On Debian systems, the complete text of the GNU General Public License v3 may be found in /usr/share/common-licenses/GPL-3. Files: * Copyright: (c) 2006-2011, Ext JS, LLC (c) 2006-2011, Aaron Conran License: GPL-3-or-Ext-JS-license Ext is licensed under the terms of the Open Source GPL 3.0 license. . This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. . This program 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 General Public License for more details. . You should have received a copy of the GNU General Public License along with this program. If not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA . On Debian systems, the complete text of the GNU General Public License v3 may be found in /usr/share/common-licenses/GPL-3. . There are several FLOSS exceptions available for use with this release for open source applications that are distributed under a license other than the GPL. * Open Source License Exception for Applications http://extjs.com/products/floss-exception.php * Open Source License Exception for Development http://extjs.com/products/ux-exception.php . Commercial License . This is the appropriate option if you are creating proprietary applications and you are not prepared to distribute and share the source code of your application under the GPL v3 license. Please visit http://extjs.com/license for more details. . OEM / Reseller License . For more details, please visit: http://extjs.com/license. . This library 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 General Public License for more details. debian/source/0000755000000000000000000000000012044540262010465 5ustar debian/source/format0000644000000000000000000000001412044540262011673 0ustar 3.0 (quilt) debian/README.source0000644000000000000000000000064412044540262011350 0ustar libjs-extjs for Debian ---------------------- The original tarball has been repacked to remove binary SWF files, for which the source code is not available. Moreover, the "image-organizer" example has been removed, since it heavily depended on one of the removed SWF files. Also files that are re-created during the build were removed. -- David Paleino Tue, 30 Oct 2012 21:13:13 +0100 debian/libjs-extjs.install0000644000000000000000000000032712044540262013015 0ustar ext-all*.js usr/share/javascript/extjs/ ext.jsb2 usr/share/javascript/extjs/ adapter/ usr/share/javascript/extjs/ pkgs/ usr/share/javascript/extjs/ resources/ usr/share/javascript/extjs/ debian/patches/0000755000000000000000000000000012044540262010614 5ustar debian/patches/series0000644000000000000000000000003112044540262012023 0ustar 00-fix_build_order.patch debian/patches/00-fix_build_order.patch0000644000000000000000000000216712044540262015220 0ustar From: David Paleino Subject: fix build order Forwarded: no Origin: vendor --- ext.jsb2 | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) --- libjs-extjs.orig/ext.jsb2 +++ libjs-extjs/ext.jsb2 @@ -1193,15 +1193,6 @@ "path": "examples/ux/treegrid/" }] },{ - "name": "Ext All CSS", - "file": "resources/css/ext-all.css", - "fileIncludes": [], - "includeDeps": true, - "pkgDeps": [ - "resources/css/ext-all-notheme.css", - "resources/css/xtheme-blue.css" - ] - },{ "name": "Ext All CSS No theme", "file": "resources/css/ext-all-notheme.css", "fileIncludes": [{ @@ -1591,6 +1582,15 @@ "text": "debug.css", "path": "resources/css/visual/" }] + },{ + "name": "Ext All CSS", + "file": "resources/css/ext-all.css", + "fileIncludes": [], + "includeDeps": true, + "pkgDeps": [ + "resources/css/ext-all-notheme.css", + "resources/css/xtheme-blue.css" + ] }], "resources": [{ "src": "src/", debian/generated0000644000000000000000000000363112044540262011051 0ustar adapter/ext/ext-base-debug.js adapter/ext/ext-base.js adapter/yui/ext-yui-adapter-debug.js adapter/yui/ext-yui-adapter.js adapter/prototype/ext-prototype-adapter-debug.js adapter/prototype/ext-prototype-adapter.js adapter/jquery/ext-jquery-adapter-debug.js adapter/jquery/ext-jquery-adapter.js pkgs/ext-core-debug.js pkgs/ext-core.js pkgs/ext-foundation-debug.js pkgs/ext-foundation.js pkgs/ext-dd-debug.js pkgs/ext-dd.js pkgs/data-foundation-debug.js pkgs/data-foundation.js pkgs/data-json-debug.js pkgs/data-json.js pkgs/data-xml-debug.js pkgs/data-xml.js pkgs/data-grouping-debug.js pkgs/data-grouping.js pkgs/direct-debug.js pkgs/direct.js pkgs/cmp-foundation-debug.js pkgs/cmp-foundation.js pkgs/window-debug.js pkgs/window.js pkgs/state-debug.js pkgs/state.js pkgs/data-list-views-debug.js pkgs/data-list-views.js pkgs/resizable-debug.js pkgs/resizable.js pkgs/pkg-tabs-debug.js pkgs/pkg-tabs.js pkgs/pkg-buttons-debug.js pkgs/pkg-buttons.js pkgs/pkg-toolbars-debug.js pkgs/pkg-toolbars.js pkgs/pkg-history-debug.js pkgs/pkg-history.js pkgs/pkg-tips-debug.js pkgs/pkg-tips.js pkgs/pkg-tree-debug.js pkgs/pkg-tree.js pkgs/pkg-charts-debug.js pkgs/pkg-charts.js pkgs/pkg-menu-debug.js pkgs/pkg-menu.js pkgs/pkg-forms-debug.js pkgs/pkg-forms.js pkgs/pkg-grid-foundation-debug.js pkgs/pkg-grid-foundation.js pkgs/pkg-grid-editor-debug.js pkgs/pkg-grid-editor.js pkgs/pkg-grid-property-debug.js pkgs/pkg-grid-property.js pkgs/pkg-grid-grouping-debug.js pkgs/pkg-grid-grouping.js ext-core-all-debug.js ext-core-all.js ext-all-no-core-debug.js ext-all-no-core.js ext-all-debug.js ext-all.js examples/calendar/calendar-all-debug.js examples/calendar/calendar-all.js examples/ux/ux-all-debug.js examples/ux/ux-all.js examples/ux/css/ux-all.css resources/css/ext-all.css resources/css/ext-all-notheme.css resources/css/xtheme-blue.css resources/css/yourtheme.css resources/css/xtheme-gray.css resources/css/xtheme-access.css resources/css/debug.css debian/compat0000644000000000000000000000000212044540262010363 0ustar 9