チェンジセット 4529: ruby/jsplash

差分発生行の前後
無視リスト:
コミット日時:
2011/03/30 00:02:02 (1 年前)
コミッタ:
gyuque
ログメッセージ:

added license

ファイル:

凡例:

変更無し
追加
削除
更新
コピー
移動
  • ruby/jsplash/trunk/client2/jsplash/executor.js

    r1617 r4529  
     1/* 
     2Copyright (c) 2011 Satoshi Ueyama <gyuque@gmail.com> 
     3 
     4Permission is hereby granted, free of charge, to any person obtaining a copy 
     5of this software and associated documentation files (the "Software"), to deal 
     6in the Software without restriction, including without limitation the rights 
     7to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 
     8copies of the Software, and to permit persons to whom the Software is 
     9furnished to do so, subject to the following conditions: 
     10 
     11The above copyright notice and this permission notice shall be included in 
     12all copies or substantial portions of the Software. 
     13 
     14THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 
     15IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 
     16FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 
     17AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 
     18LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 
     19OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 
     20THE SOFTWARE. 
     21*/ 
     22 
    123JSplash.Executor = Class.create(); 
    224JSplash.Executor._nextid = 1; 
  • ruby/jsplash/trunk/client2/jsplash/objects.js

    r2191 r4529  
     1/* 
     2Copyright (c) 2011 Satoshi Ueyama <gyuque@gmail.com> 
     3 
     4Permission is hereby granted, free of charge, to any person obtaining a copy 
     5of this software and associated documentation files (the "Software"), to deal 
     6in the Software without restriction, including without limitation the rights 
     7to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 
     8copies of the Software, and to permit persons to whom the Software is 
     9furnished to do so, subject to the following conditions: 
     10 
     11The above copyright notice and this permission notice shall be included in 
     12all copies or substantial portions of the Software. 
     13 
     14THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 
     15IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 
     16FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 
     17AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 
     18LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 
     19OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 
     20THE SOFTWARE. 
     21*/ 
     22 
    123JSplash.ObjectInstance = Class.create(); 
    224JSplash.ObjectInstance.next_id = 1; 
  • ruby/jsplash/trunk/client2/jsplash/player.js

    r2191 r4529  
     1/* 
     2Copyright (c) 2011 Satoshi Ueyama <gyuque@gmail.com> 
     3 
     4Permission is hereby granted, free of charge, to any person obtaining a copy 
     5of this software and associated documentation files (the "Software"), to deal 
     6in the Software without restriction, including without limitation the rights 
     7to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 
     8copies of the Software, and to permit persons to whom the Software is 
     9furnished to do so, subject to the following conditions: 
     10 
     11The above copyright notice and this permission notice shall be included in 
     12all copies or substantial portions of the Software. 
     13 
     14THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 
     15IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 
     16FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 
     17AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 
     18LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 
     19OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 
     20THE SOFTWARE. 
     21*/ 
     22 
    123var JSplash = {swfdata: null, gPlayer: null, _bbox_implemented: true}; 
    224if (!window.console) 
  • ruby/jsplash/trunk/client2/jsplash/shapedisposer.js

    r1494 r4529  
     1/* 
     2Copyright (c) 2011 Satoshi Ueyama <gyuque@gmail.com> 
     3 
     4Permission is hereby granted, free of charge, to any person obtaining a copy 
     5of this software and associated documentation files (the "Software"), to deal 
     6in the Software without restriction, including without limitation the rights 
     7to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 
     8copies of the Software, and to permit persons to whom the Software is 
     9furnished to do so, subject to the following conditions: 
     10 
     11The above copyright notice and this permission notice shall be included in 
     12all copies or substantial portions of the Software. 
     13 
     14THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 
     15IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 
     16FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 
     17AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 
     18LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 
     19OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 
     20THE SOFTWARE. 
     21*/ 
     22 
    123JSplash.ShapeDisposer = Class.create(); 
    224JSplash.ShapeDisposer.prototype = { 
  • ruby/jsplash/trunk/client2/jsplash/shaperenderer.js

    r1579 r4529  
     1/* 
     2Copyright (c) 2011 Satoshi Ueyama <gyuque@gmail.com> 
     3 
     4Permission is hereby granted, free of charge, to any person obtaining a copy 
     5of this software and associated documentation files (the "Software"), to deal 
     6in the Software without restriction, including without limitation the rights 
     7to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 
     8copies of the Software, and to permit persons to whom the Software is 
     9furnished to do so, subject to the following conditions: 
     10 
     11The above copyright notice and this permission notice shall be included in 
     12all copies or substantial portions of the Software. 
     13 
     14THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 
     15IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 
     16FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 
     17AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 
     18LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 
     19OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 
     20THE SOFTWARE. 
     21*/ 
     22 
    123JSplash.ShapeRenderer = Class.create(); 
    224JSplash.ShapeRenderer.prototype = { 
  • ruby/jsplash/trunk/client2/jsplash/swfglobal.js

    r1624 r4529  
     1/* 
     2Copyright (c) 2011 Satoshi Ueyama <gyuque@gmail.com> 
     3 
     4Permission is hereby granted, free of charge, to any person obtaining a copy 
     5of this software and associated documentation files (the "Software"), to deal 
     6in the Software without restriction, including without limitation the rights 
     7to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 
     8copies of the Software, and to permit persons to whom the Software is 
     9furnished to do so, subject to the following conditions: 
     10 
     11The above copyright notice and this permission notice shall be included in 
     12all copies or substantial portions of the Software. 
     13 
     14THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 
     15IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 
     16FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 
     17AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 
     18LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 
     19OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 
     20THE SOFTWARE. 
     21*/ 
     22 
    123JSplash.SWFGlobals = {}; 
    224 
  • ruby/jsplash/trunk/client2/jsplash/tags.js

    r1616 r4529  
     1/* 
     2Copyright (c) 2011 Satoshi Ueyama <gyuque@gmail.com> 
     3 
     4Permission is hereby granted, free of charge, to any person obtaining a copy 
     5of this software and associated documentation files (the "Software"), to deal 
     6in the Software without restriction, including without limitation the rights 
     7to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 
     8copies of the Software, and to permit persons to whom the Software is 
     9furnished to do so, subject to the following conditions: 
     10 
     11The above copyright notice and this permission notice shall be included in 
     12all copies or substantial portions of the Software. 
     13 
     14THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 
     15IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 
     16FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 
     17AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 
     18LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 
     19OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 
     20THE SOFTWARE. 
     21*/ 
     22 
    123(function(){ 
    224        /* tags */ 
  • ruby/jsplash/trunk/jextract.rb

    r1616 r4529  
     1# Copyright (c) 2011 Satoshi Ueyama <gyuque@gmail.com> 
     2#  
     3# Permission is hereby granted, free of charge, to any person obtaining a copy 
     4# of this software and associated documentation files (the "Software"), to deal 
     5# in the Software without restriction, including without limitation the rights 
     6# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 
     7# copies of the Software, and to permit persons to whom the Software is 
     8# furnished to do so, subject to the following conditions: 
     9#  
     10# The above copyright notice and this permission notice shall be included in 
     11# all copies or substantial portions of the Software. 
     12#  
     13# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 
     14# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 
     15# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 
     16# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 
     17# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 
     18# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 
     19# THE SOFTWARE. 
     20 
     21 
    122$KCODE = 's' 
    223require 'rexml/document' 
  • ruby/jsplash/trunk/rawswf.rb

    r1579 r4529  
     1# Copyright (c) 2011 Satoshi Ueyama <gyuque@gmail.com> 
     2#  
     3# Permission is hereby granted, free of charge, to any person obtaining a copy 
     4# of this software and associated documentation files (the "Software"), to deal 
     5# in the Software without restriction, including without limitation the rights 
     6# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 
     7# copies of the Software, and to permit persons to whom the Software is 
     8# furnished to do so, subject to the following conditions: 
     9#  
     10# The above copyright notice and this permission notice shall be included in 
     11# all copies or substantial portions of the Software. 
     12#  
     13# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 
     14# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 
     15# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 
     16# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 
     17# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 
     18# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 
     19# THE SOFTWARE. 
     20 
    121module RawSWF 
    222require 'base64'