チェンジセット 2482

差分発生行の前後
無視リスト:
コミット日時:
2009/04/17 15:56:01 (3 年前)
コミッタ:
seagirl
ログメッセージ:

ライセンス表記したり

ファイル:

凡例:

変更無し
追加
削除
更新
コピー
移動
  • as3/GeniusFramework/branches/2.0/src/jp/seagirl/genius/controllers/ApplicationDelegate.as

    r2477 r2482  
    1 package jp.seagirl.genius.controllers 
     1/** 
     2 * Licensed under the MIT License 
     3 *  
     4 * Copyright (c) 2009 seagirl 
     5 *  
     6 * Permission is hereby granted, free of charge, to any person obtaining a copy 
     7 * of this software and associated documentation files (the "Software"), to deal 
     8 * in the Software without restriction, including without limitation the rights 
     9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 
     10 * copies of the Software, and to permit persons to whom the Software is 
     11 * furnished to do so, subject to the following conditions: 
     12 *  
     13 * The above copyright notice and this permission notice shall be included in 
     14 * all copies or substantial portions of the Software. 
     15 *  
     16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 
     17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 
     18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 
     19 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 
     20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 
     21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 
     22 * THE SOFTWARE. 
     23 *  
     24 */ 
     25  
     26 package jp.seagirl.genius.controllers 
    227{ 
    328        import jp.seagirl.genius.core.Context; 
  • as3/GeniusFramework/branches/2.0/src/jp/seagirl/genius/controllers/Controller.as

    r2477 r2482  
    1 package jp.seagirl.genius.controllers 
     1/** 
     2 * Licensed under the MIT License 
     3 *  
     4 * Copyright (c) 2008 seagirl 
     5 *  
     6 * Permission is hereby granted, free of charge, to any person obtaining a copy 
     7 * of this software and associated documentation files (the "Software"), to deal 
     8 * in the Software without restriction, including without limitation the rights 
     9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 
     10 * copies of the Software, and to permit persons to whom the Software is 
     11 * furnished to do so, subject to the following conditions: 
     12 *  
     13 * The above copyright notice and this permission notice shall be included in 
     14 * all copies or substantial portions of the Software. 
     15 *  
     16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 
     17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 
     18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 
     19 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 
     20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 
     21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 
     22 * THE SOFTWARE. 
     23 *  
     24 */ 
     25  
     26 package jp.seagirl.genius.controllers 
    227{ 
    328        import flash.utils.getDefinitionByName; 
  • as3/GeniusFramework/branches/2.0/src/jp/seagirl/genius/controllers/ItemRendererController.as

    r2477 r2482  
    1 package jp.seagirl.genius.controllers 
     1/** 
     2 * Licensed under the MIT License 
     3 *  
     4 * Copyright (c) 2008 seagirl 
     5 *  
     6 * Permission is hereby granted, free of charge, to any person obtaining a copy 
     7 * of this software and associated documentation files (the "Software"), to deal 
     8 * in the Software without restriction, including without limitation the rights 
     9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 
     10 * copies of the Software, and to permit persons to whom the Software is 
     11 * furnished to do so, subject to the following conditions: 
     12 *  
     13 * The above copyright notice and this permission notice shall be included in 
     14 * all copies or substantial portions of the Software. 
     15 *  
     16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 
     17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 
     18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 
     19 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 
     20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 
     21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 
     22 * THE SOFTWARE. 
     23 *  
     24 */ 
     25  
     26 package jp.seagirl.genius.controllers 
    227{ 
    328        import mx.events.FlexEvent; 
     
    1742                } 
    1843                 
    19                  
    20                  
    2144        } 
    2245} 
  • as3/GeniusFramework/branches/2.0/src/jp/seagirl/genius/controllers/ViewController.as

    r2477 r2482  
    1 package jp.seagirl.genius.controllers 
     1/** 
     2 * Licensed under the MIT License 
     3 *  
     4 * Copyright (c) 2008 seagirl 
     5 *  
     6 * Permission is hereby granted, free of charge, to any person obtaining a copy 
     7 * of this software and associated documentation files (the "Software"), to deal 
     8 * in the Software without restriction, including without limitation the rights 
     9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 
     10 * copies of the Software, and to permit persons to whom the Software is 
     11 * furnished to do so, subject to the following conditions: 
     12 *  
     13 * The above copyright notice and this permission notice shall be included in 
     14 * all copies or substantial portions of the Software. 
     15 *  
     16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 
     17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 
     18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 
     19 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 
     20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 
     21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 
     22 * THE SOFTWARE. 
     23 *  
     24 */ 
     25  
     26 package jp.seagirl.genius.controllers 
    227{ 
    328        import flash.display.DisplayObject; 
  • as3/GeniusFramework/branches/2.0/src/jp/seagirl/genius/core/Context.as

    r2477 r2482  
     1/** 
     2 * Licensed under the MIT License 
     3 *  
     4 * Copyright (c) 2008 seagirl 
     5 *  
     6 * Permission is hereby granted, free of charge, to any person obtaining a copy 
     7 * of this software and associated documentation files (the "Software"), to deal 
     8 * in the Software without restriction, including without limitation the rights 
     9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 
     10 * copies of the Software, and to permit persons to whom the Software is 
     11 * furnished to do so, subject to the following conditions: 
     12 *  
     13 * The above copyright notice and this permission notice shall be included in 
     14 * all copies or substantial portions of the Software. 
     15 *  
     16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 
     17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 
     18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 
     19 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 
     20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 
     21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 
     22 * THE SOFTWARE. 
     23 *  
     24 */ 
     25  
    126package jp.seagirl.genius.core 
    227{ 
  • as3/GeniusFramework/branches/2.0/src/jp/seagirl/genius/threads/FileDownloadServiceThread.as

    r1528 r2482  
    2626package jp.seagirl.genius.threads 
    2727{ 
     28        import flash.net.FileReference; 
    2829        import flash.net.URLRequest; 
    2930        import flash.net.URLVariables; 
    30          
    31         import org.libspark.thread.threads.net.FileDownloadThread; 
    3231 
    3332        /** 
     
    4443                 
    4544                /** 
    46                  * FileDownloadThread のインスタンスを保持するための変数です. 
     45                 * FileReference のインスタンスです。 
    4746                 */              
    48                 protected var fileDownloadThread:FileDownloadThread
     47                protected var file:FileReference = new FileReference()
    4948                 
    5049                /** 
  • as3/GeniusFramework/branches/2.0/src/jp/seagirl/genius/threads/FileUploadServiceThread.as

    r924 r2482  
    2626package jp.seagirl.genius.threads 
    2727{ 
     28        import flash.net.FileReference; 
    2829        import flash.net.URLRequest; 
    2930        import flash.net.URLVariables; 
    30          
    31         import org.libspark.thread.threads.net.FileUploadThread; 
    3231 
    3332        /** 
     
    4443                 
    4544                /** 
    46                  * FileUploadThread のインスタンスを保持するための変数です. 
     45                 * FileReference のインスタンスです。 
    4746                 */              
    48                 protected var fileUploadThread:FileUploadThread
     47                protected var file:FileReference = new FileReference()
    4948                 
    5049                /**