debian/0000755000000000000000000000000011561356106007172 5ustar debian/rules0000755000000000000000000000021111454754043010247 0ustar #!/usr/bin/make -f %: dh $@ build:: rake gordon yui-compressor -o dist/gordon.min.js dist/gordon.js clean:: dh_clean rake clean debian/changelog0000644000000000000000000000101711561356104011041 0ustar gordon (0~git20101011-2) unstable; urgency=low * Fix short description. * Bump standards version to 3.9.2. -- Michael Gilbert Sat, 07 May 2011 19:55:59 -0400 gordon (0~git20101011-1) unstable; urgency=low * New upstream snapshot. -- Michael Gilbert Mon, 11 Oct 2010 23:38:16 -0400 gordon (0~git20100510-1) unstable; urgency=low * Initial release (closes: #566951) -- Michael Gilbert Mon, 10 May 2010 21:53:00 -0400 debian/libjs-gordon.docs0000644000000000000000000000001211454754043012431 0ustar README.md debian/compat0000644000000000000000000000000211454754043010373 0ustar 7 debian/control0000644000000000000000000000130711561356070010576 0ustar Source: gordon Section: utils Priority: extra Maintainer: Michael Gilbert Build-Depends: debhelper (>= 8) , rake , ruby , yui-compressor Standards-Version: 3.9.2 DM-Upload-Allowed: yes Homepage: http://wiki.github.com/tobeytailor/gordon/ Vcs-Git: git://github.com/tobeytailor/gordon Package: libjs-gordon Architecture: all Depends: ${misc:Depends} Description: Open source flash runtime written in pure javascript Gordon enables web developers to embed flash applications directly within the browser. It is a web app written in pure javascript, and eliminates the need for end users to have a separate flash plugin (as long as they use sites that take advantage of gordon). debian/source/0000755000000000000000000000000011454754043010475 5ustar debian/source/format0000644000000000000000000000001411454754043011703 0ustar 3.0 (quilt) debian/copyright0000644000000000000000000000303311454754043011127 0ustar This work was packaged for Debian by: Michael Gilbert on Mon, 10 May 2010 21:53:00 -0400 It was downloaded from: git://github.com/tobeytailor/gordon Upstream Author(s): Tobias Schneider Copyright: Copyright (C) 2010 Tobias Schneider License: MIT License Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. The Debian packaging is: Copyright (C) 2010 Michael Gilbert and is also licensed under the MIT license. debian/patches/0000755000000000000000000000000011530325463010617 5ustar debian/patches/series0000644000000000000000000000004011530325416012024 0ustar # empty copyright-headers.patch debian/patches/copyright-headers.patch0000644000000000000000000000577611530325463015300 0ustar Description: provide copyright headers in all files Author: Michael Gilbert --- gordon-0~git20101011.orig/Rakefile +++ gordon-0~git20101011/Rakefile @@ -16,8 +16,8 @@ task :default => :min task :gordon do sh 'mkdir -p ' + dist_dir sh 'cat ' + intro + ' > ' + output_file - sh 'for file in ' + build_files.join(' ') + "; do echo | cat $file - | sed 's/^/ /' >> " + output_file + '; done' - sh 'cat ' + outro + ' >> ' + output_file + sh 'for file in ' + build_files.join(' ') + "; do echo | cat $file - | grep -v ^// | sed 's/^/ /' >> " + output_file + '; done' + sh 'cat ' + outro + ' | grep -v ^// >> ' + output_file end task :min => :gordon do --- gordon-0~git20101011.orig/src/base.js +++ gordon-0~git20101011/src/base.js @@ -1,3 +1,7 @@ +// Gordon: An open source Flash™ runtime written in pure JavaScript +// +// Copyright (c) 2010 Tobias Schneider +// Gordon is freely distributable under the terms of the MIT license. var win = window, doc = win.document, fromCharCode = String.fromCharCode, --- gordon-0~git20101011.orig/src/stream.js +++ gordon-0~git20101011/src/stream.js @@ -1,3 +1,7 @@ +// Gordon: An open source Flash™ runtime written in pure JavaScript +// +// Copyright (c) 2010 Tobias Schneider +// Gordon is freely distributable under the terms of the MIT license. (function(){ var DEFLATE_CODE_LENGTH_ORDER = [16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15], DEFLATE_CODE_LENGHT_MAP = [ --- gordon-0~git20101011.orig/src/movie.js +++ gordon-0~git20101011/src/movie.js @@ -1,3 +1,7 @@ +// Gordon: An open source Flash™ runtime written in pure JavaScript +// +// Copyright (c) 2010 Tobias Schneider +// Gordon is freely distributable under the terms of the MIT license. (function(){ var LOCATION_DIRNAME = win.location.href.replace(/[^\/]*$/, ''), defaults = { --- gordon-0~git20101011.orig/src/outro.js +++ gordon-0~git20101011/src/outro.js @@ -1,2 +1,6 @@ +// Gordon: An open source Flash™ runtime written in pure JavaScript +// +// Copyright (c) 2010 Tobias Schneider +// Gordon is freely distributable under the terms of the MIT license. win.Gordon = Gordon; })(self); --- gordon-0~git20101011.orig/src/parser.js +++ gordon-0~git20101011/src/parser.js @@ -1,3 +1,7 @@ +// Gordon: An open source Flash™ runtime written in pure JavaScript +// +// Copyright (c) 2010 Tobias Schneider +// Gordon is freely distributable under the terms of the MIT license. (function(){ if(doc && window.Worker){ var REGEXP_SCRIPT_SRC = /(^|.*\/)gordon.(min\.)?js$/, --- gordon-0~git20101011.orig/src/renderer/svg.js +++ gordon-0~git20101011/src/renderer/svg.js @@ -1,3 +1,7 @@ +// Gordon: An open source Flash™ runtime written in pure JavaScript +// +// Copyright (c) 2010 Tobias Schneider +// Gordon is freely distributable under the terms of the MIT license. (function(){ var NS_SVG = "http://www.w3.org/2000/svg", NS_XLINK = "http://www.w3.org/1999/xlink", debian/libjs-gordon.install0000644000000000000000000000013411454754043013154 0ustar dist/gordon.js /usr/share/javascript/gordon dist/gordon.min.js /usr/share/javascript/gordon