From ec44fba6ba019592bf9b7c42140c8028d8bee27f Mon Sep 17 00:00:00 2001 From: genywind Date: Mon, 25 Jul 2011 21:10:03 +0400 Subject: [PATCH] add license: m-files --- .../iphone/Classes/AppManager/AppLoader.m | 33 +++++++++++--- .../iphone/Classes/AppManager/AppManager.m | 32 ++++++++++--- platform/iphone/Classes/Bluetooth/Bluetooth.m | 32 ++++++++++--- .../iphone/Classes/Camera/PickImageDelegate.m | 32 ++++++++++--- platform/iphone/Classes/DateTime.m | 32 ++++++++++--- platform/iphone/Classes/DateTimePicker.m | 32 ++++++++++--- .../iphone/Classes/DateTimePickerDelegate.m | 32 ++++++++++--- .../iphone/Classes/LogOptionsController.m | 32 ++++++++++--- platform/iphone/Classes/LogViewController.m | 32 ++++++++++--- .../iphone/Classes/MapView/GoogleGeocoder.m | 26 +++++++++++ .../iphone/Classes/MapView/MapAnnotation.m | 31 ++++++++++--- .../Classes/MapView/MapViewController.m | 32 ++++++++++--- .../iphone/Classes/MapView/MapViewManager.m | 30 ++++++++++--- platform/iphone/Classes/NativeBar.m | 32 ++++++++++--- .../iphone/Classes/NativeView/NVDelegate.m | 32 ++++++++++--- .../Classes/NativeView/NVViewController.m | 32 ++++++++++--- .../NativeView/RhoNativeViewManager.mm | 33 ++++++++++---- platform/iphone/Classes/NavBar.m | 32 ++++++++++--- platform/iphone/Classes/Phonebook/phonebook.m | 33 ++++++++++---- platform/iphone/Classes/RhoAlert.m | 32 ++++++++++--- platform/iphone/Classes/RhoDelegate.m | 32 ++++++++++--- platform/iphone/Classes/RhoViewController.m | 32 ++++++++++--- platform/iphone/Classes/Rhodes.m | 26 +++++++++++ platform/iphone/Classes/RingtoneManager.m | 32 ++++++++++--- .../Classes/Signature/SignatureDelegate.m | 32 ++++++++++--- .../iphone/Classes/Signature/SignatureView.m | 40 ++++++++++------- .../Signature/SignatureViewController.m | 32 ++++++++++--- platform/iphone/Classes/SimpleMainView.m | 32 ++++++++++--- .../iphone/Classes/SplashViewController.m | 32 ++++++++++--- .../Classes/SplitView/LeftViewController.m | 32 ++++++++++--- .../Classes/SplitView/RightViewController.m | 32 ++++++++++--- .../Classes/SplitView/SplitViewDelegate.m | 32 ++++++++++--- .../Classes/SplitView/SplittedMainView.m | 32 ++++++++++--- platform/iphone/Classes/TabbedMainView.m | 32 ++++++++++--- platform/iphone/Classes/Utils/ParamsWrapper.m | 32 ++++++++++--- platform/iphone/Classes/WebView.m | 32 ++++++++++--- .../iphone/Classes/rho/net/NetRequestImpl.m | 45 +++++++++++-------- .../iphone/Tests/Classes/TestsAppDelegate.m | 32 ++++++++++--- platform/iphone/main.m | 32 ++++++++++--- platform/shared/common/iphone/RhoCryptImpl.mm | 26 +++++++++++ platform/shared/common/iphone/RhoFileImpl.m | 33 +++++++++++--- platform/shared/common/iphone/RhoThreadImpl.m | 33 +++++++++++--- 42 files changed, 1058 insertions(+), 291 deletions(-) diff --git a/platform/iphone/Classes/AppManager/AppLoader.m b/platform/iphone/Classes/AppManager/AppLoader.m index a2409566c0a..82630354ac9 100644 --- a/platform/iphone/Classes/AppManager/AppLoader.m +++ b/platform/iphone/Classes/AppManager/AppLoader.m @@ -1,10 +1,29 @@ -// -// AppLoader.m -// rhorunner -// -// Created by vlad on 9/24/08. -// Copyright 2008 __MyCompanyName__. All rights reserved. -// +/*------------------------------------------------------------------------ +* (The MIT License) +* +* Copyright (c) 2008-2011 Rhomobile, Inc. +* +* 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. +* +* http://rhomobile.com +*------------------------------------------------------------------------*/ + #include "common/RhoPort.h" #import "AppManager.h" #import "AppLoader.h" diff --git a/platform/iphone/Classes/AppManager/AppManager.m b/platform/iphone/Classes/AppManager/AppManager.m index 0220b871082..e2a6d9fbead 100644 --- a/platform/iphone/Classes/AppManager/AppManager.m +++ b/platform/iphone/Classes/AppManager/AppManager.m @@ -1,10 +1,28 @@ -// -// AppManager.m -// rhorunner -// -// Created by vlad on 9/24/08. -// Copyright 2008 __MyCompanyName__. All rights reserved. -// +/*------------------------------------------------------------------------ +* (The MIT License) +* +* Copyright (c) 2008-2011 Rhomobile, Inc. +* +* 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. +* +* http://rhomobile.com +*------------------------------------------------------------------------*/ #import #import diff --git a/platform/iphone/Classes/Bluetooth/Bluetooth.m b/platform/iphone/Classes/Bluetooth/Bluetooth.m index 4d21e7e6b50..54ad5f9ffea 100644 --- a/platform/iphone/Classes/Bluetooth/Bluetooth.m +++ b/platform/iphone/Classes/Bluetooth/Bluetooth.m @@ -1,10 +1,28 @@ -// -// BluetoothManager.m -// rhorunner -// -// Created by Soldatenkov Dmitry on 27/07/10. -// Copyright 2010 Rhomobile. All rights reserved. -// +/*------------------------------------------------------------------------ +* (The MIT License) +* +* Copyright (c) 2008-2011 Rhomobile, Inc. +* +* 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. +* +* http://rhomobile.com +*------------------------------------------------------------------------*/ #import "Rhodes.h" #import "Bluetooth.h" diff --git a/platform/iphone/Classes/Camera/PickImageDelegate.m b/platform/iphone/Classes/Camera/PickImageDelegate.m index 94111170679..3d709a8f724 100644 --- a/platform/iphone/Classes/Camera/PickImageDelegate.m +++ b/platform/iphone/Classes/Camera/PickImageDelegate.m @@ -1,10 +1,28 @@ -// -// PickImageDelegate.m -// rhorunner -// -// Created by Vlad on 2/12/09. -// Copyright 2009 __MyCompanyName__. All rights reserved. -// +/*------------------------------------------------------------------------ +* (The MIT License) +* +* Copyright (c) 2008-2011 Rhomobile, Inc. +* +* 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. +* +* http://rhomobile.com +*------------------------------------------------------------------------*/ #include #import "Rhodes.h" diff --git a/platform/iphone/Classes/DateTime.m b/platform/iphone/Classes/DateTime.m index 221ebbac433..8acaeddb942 100644 --- a/platform/iphone/Classes/DateTime.m +++ b/platform/iphone/Classes/DateTime.m @@ -1,10 +1,28 @@ -// -// DateTime.m -// rhorunner -// -// Created by lars on 8/12/09. -// Copyright 2009 Home. All rights reserved. -// +/*------------------------------------------------------------------------ +* (The MIT License) +* +* Copyright (c) 2008-2011 Rhomobile, Inc. +* +* 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. +* +* http://rhomobile.com +*------------------------------------------------------------------------*/ #import "DateTime.h" diff --git a/platform/iphone/Classes/DateTimePicker.m b/platform/iphone/Classes/DateTimePicker.m index a9aa5a5f707..15bbfeb8237 100644 --- a/platform/iphone/Classes/DateTimePicker.m +++ b/platform/iphone/Classes/DateTimePicker.m @@ -1,10 +1,28 @@ -// -// DateTimePicker.m -// rhorunner -// -// Created by Dmitry Moskalchuk on 29.03.10. -// Copyright 2010 __MyCompanyName__. All rights reserved. -// +/*------------------------------------------------------------------------ +* (The MIT License) +* +* Copyright (c) 2008-2011 Rhomobile, Inc. +* +* 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. +* +* http://rhomobile.com +*------------------------------------------------------------------------*/ #import "DateTime.h" #import "Rhodes.h" diff --git a/platform/iphone/Classes/DateTimePickerDelegate.m b/platform/iphone/Classes/DateTimePickerDelegate.m index 211cecc9a63..92ac2c50783 100644 --- a/platform/iphone/Classes/DateTimePickerDelegate.m +++ b/platform/iphone/Classes/DateTimePickerDelegate.m @@ -1,10 +1,28 @@ -// -// DateTimePickerDelegate.m -// rhorunner -// -// Created by lars on 8/11/09. -// Copyright 2009 Home. All rights reserved. -// +/*------------------------------------------------------------------------ +* (The MIT License) +* +* Copyright (c) 2008-2011 Rhomobile, Inc. +* +* 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. +* +* http://rhomobile.com +*------------------------------------------------------------------------*/ #import "DateTimePickerDelegate.h" #import "common/RhodesApp.h" diff --git a/platform/iphone/Classes/LogOptionsController.m b/platform/iphone/Classes/LogOptionsController.m index 081c8882bec..2177a8e16ee 100644 --- a/platform/iphone/Classes/LogOptionsController.m +++ b/platform/iphone/Classes/LogOptionsController.m @@ -1,10 +1,28 @@ -// -// LogOptionsController.m -// rhorunner -// -// Created by Vlad on 4/17/09. -// Copyright 2009 __MyCompanyName__. All rights reserved. -// +/*------------------------------------------------------------------------ +* (The MIT License) +* +* Copyright (c) 2008-2011 Rhomobile, Inc. +* +* 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. +* +* http://rhomobile.com +*------------------------------------------------------------------------*/ #import "LogOptionsController.h" #import "logging/RhoLogConf.h" diff --git a/platform/iphone/Classes/LogViewController.m b/platform/iphone/Classes/LogViewController.m index 93287338fd7..7792fec2e0b 100644 --- a/platform/iphone/Classes/LogViewController.m +++ b/platform/iphone/Classes/LogViewController.m @@ -1,10 +1,28 @@ -// -// LogViewController.m -// rhorunner -// -// Created by Vlad on 4/15/09. -// Copyright 2009 rhomobile, inc. All rights reserved. -// +/*------------------------------------------------------------------------ +* (The MIT License) +* +* Copyright (c) 2008-2011 Rhomobile, Inc. +* +* 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. +* +* http://rhomobile.com +*------------------------------------------------------------------------*/ #import "LogViewController.h" #import "logging/RhoLogConf.h" diff --git a/platform/iphone/Classes/MapView/GoogleGeocoder.m b/platform/iphone/Classes/MapView/GoogleGeocoder.m index 10958f63b93..c6637940fe0 100644 --- a/platform/iphone/Classes/MapView/GoogleGeocoder.m +++ b/platform/iphone/Classes/MapView/GoogleGeocoder.m @@ -1,3 +1,29 @@ +/*------------------------------------------------------------------------ +* (The MIT License) +* +* Copyright (c) 2008-2011 Rhomobile, Inc. +* +* 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. +* +* http://rhomobile.com +*------------------------------------------------------------------------*/ + #ifdef __IPHONE_3_0 #import "GoogleGeocoder.h" diff --git a/platform/iphone/Classes/MapView/MapAnnotation.m b/platform/iphone/Classes/MapView/MapAnnotation.m index 8d80fdf6c2d..c11ae1571be 100644 --- a/platform/iphone/Classes/MapView/MapAnnotation.m +++ b/platform/iphone/Classes/MapView/MapAnnotation.m @@ -1,9 +1,28 @@ -// -// MapAnnotation.m -// -// Created by Vlad on 9/22/09. -// Copyright 2009 rhomobile, inc. All rights reserved. -// +/*------------------------------------------------------------------------ +* (The MIT License) +* +* Copyright (c) 2008-2011 Rhomobile, Inc. +* +* 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. +* +* http://rhomobile.com +*------------------------------------------------------------------------*/ #ifdef __IPHONE_3_0 diff --git a/platform/iphone/Classes/MapView/MapViewController.m b/platform/iphone/Classes/MapView/MapViewController.m index 5863050acc9..7b0fb9c5def 100644 --- a/platform/iphone/Classes/MapView/MapViewController.m +++ b/platform/iphone/Classes/MapView/MapViewController.m @@ -1,9 +1,29 @@ -// -// MapViewController.m -// -// Created by Vlad on 9/16/09. -// Copyright 2009 Rhomobile, Inc. All rights reserved. -// +/*------------------------------------------------------------------------ +* (The MIT License) +* +* Copyright (c) 2008-2011 Rhomobile, Inc. +* +* 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. +* +* http://rhomobile.com +*------------------------------------------------------------------------*/ + #ifdef __IPHONE_3_0 #import "MapAnnotation.h" diff --git a/platform/iphone/Classes/MapView/MapViewManager.m b/platform/iphone/Classes/MapView/MapViewManager.m index 411efd7b0f3..e3deee18339 100644 --- a/platform/iphone/Classes/MapView/MapViewManager.m +++ b/platform/iphone/Classes/MapView/MapViewManager.m @@ -1,8 +1,28 @@ -// -// Created by DmitryS . -// Copyright 2011 rhomobile, inc. All rights reserved. -// - +/*------------------------------------------------------------------------ +* (The MIT License) +* +* Copyright (c) 2008-2011 Rhomobile, Inc. +* +* 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. +* +* http://rhomobile.com +*------------------------------------------------------------------------*/ #import "MapAnnotation.h" #import "MapViewController.h" diff --git a/platform/iphone/Classes/NativeBar.m b/platform/iphone/Classes/NativeBar.m index 965b6a33333..584321ad4bf 100644 --- a/platform/iphone/Classes/NativeBar.m +++ b/platform/iphone/Classes/NativeBar.m @@ -1,10 +1,28 @@ -// -// NativeBar.m -// rhorunner -// -// Created by lars on 8/21/09. -// Copyright 2009 Home. All rights reserved. -// +/*------------------------------------------------------------------------ +* (The MIT License) +* +* Copyright (c) 2008-2011 Rhomobile, Inc. +* +* 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. +* +* http://rhomobile.com +*------------------------------------------------------------------------*/ #import "NativeBar.h" #import "Rhodes.h" diff --git a/platform/iphone/Classes/NativeView/NVDelegate.m b/platform/iphone/Classes/NativeView/NVDelegate.m index f7d8d0f9337..7705debed6d 100644 --- a/platform/iphone/Classes/NativeView/NVDelegate.m +++ b/platform/iphone/Classes/NativeView/NVDelegate.m @@ -1,10 +1,28 @@ -// -// SignatureDelegate.m -// rhorunner -// -// Created by Soldatenkov Dmitry on 27/07/10. -// Copyright 2010 Rhomobile. All rights reserved. -// +/*------------------------------------------------------------------------ +* (The MIT License) +* +* Copyright (c) 2008-2011 Rhomobile, Inc. +* +* 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. +* +* http://rhomobile.com +*------------------------------------------------------------------------*/ #import "Rhodes.h" #import "NVDelegate.h" diff --git a/platform/iphone/Classes/NativeView/NVViewController.m b/platform/iphone/Classes/NativeView/NVViewController.m index a6944d15037..d6d0c34f1f3 100755 --- a/platform/iphone/Classes/NativeView/NVViewController.m +++ b/platform/iphone/Classes/NativeView/NVViewController.m @@ -1,10 +1,28 @@ -// -// SignatureView.m -// rhorunner -// -// Created by Soldatenkov Dmitry on 27/07/10. -// Copyright 2010 Rhomobile. All rights reserved. -// +/*------------------------------------------------------------------------ +* (The MIT License) +* +* Copyright (c) 2008-2011 Rhomobile, Inc. +* +* 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. +* +* http://rhomobile.com +*------------------------------------------------------------------------*/ #import "NVViewController.h" diff --git a/platform/iphone/Classes/NativeView/RhoNativeViewManager.mm b/platform/iphone/Classes/NativeView/RhoNativeViewManager.mm index cb281f4962e..6e03c66a6d4 100644 --- a/platform/iphone/Classes/NativeView/RhoNativeViewManager.mm +++ b/platform/iphone/Classes/NativeView/RhoNativeViewManager.mm @@ -1,11 +1,28 @@ -/* - * RhoNativeViewManager.mm - * rhorunner - * - * Created by Dmitry Soldatenkov on 8/25/10. - * Copyright 2010 __MyCompanyName__. All rights reserved. - * - */ +/*------------------------------------------------------------------------ +* (The MIT License) +* +* Copyright (c) 2008-2011 Rhomobile, Inc. +* +* 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. +* +* http://rhomobile.com +*------------------------------------------------------------------------*/ #import #import diff --git a/platform/iphone/Classes/NavBar.m b/platform/iphone/Classes/NavBar.m index dbc61f12c4a..c8347f10284 100644 --- a/platform/iphone/Classes/NavBar.m +++ b/platform/iphone/Classes/NavBar.m @@ -1,10 +1,28 @@ -// -// NavBar.m -// rhorunner -// -// Created by Dmitry Moskalchuk on 26.04.10. -// Copyright 2010 __MyCompanyName__. All rights reserved. -// +/*------------------------------------------------------------------------ +* (The MIT License) +* +* Copyright (c) 2008-2011 Rhomobile, Inc. +* +* 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. +* +* http://rhomobile.com +*------------------------------------------------------------------------*/ #import "NavBar.h" #import "Rhodes.h" diff --git a/platform/iphone/Classes/Phonebook/phonebook.m b/platform/iphone/Classes/Phonebook/phonebook.m index 3278a3349bb..d5da4924ef7 100644 --- a/platform/iphone/Classes/Phonebook/phonebook.m +++ b/platform/iphone/Classes/Phonebook/phonebook.m @@ -1,11 +1,28 @@ -/* - * phonebook.c - * rhorunner - * - * Created by Vlad on 12/12/08. - * Copyright 2008 __MyCompanyName__. All rights reserved. - * - */ +/*------------------------------------------------------------------------ +* (The MIT License) +* +* Copyright (c) 2008-2011 Rhomobile, Inc. +* +* 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. +* +* http://rhomobile.com +*------------------------------------------------------------------------*/ #include "ruby/ext/rho/rhoruby.h" #include "ruby/ext/phonebook/phonebook.h" diff --git a/platform/iphone/Classes/RhoAlert.m b/platform/iphone/Classes/RhoAlert.m index 7e86e9406af..60b31e6a698 100644 --- a/platform/iphone/Classes/RhoAlert.m +++ b/platform/iphone/Classes/RhoAlert.m @@ -1,10 +1,28 @@ -// -// Alert.m -// rhorunner -// -// Created by Dmitry Moskalchuk on 29.03.10. -// Copyright 2010 __MyCompanyName__. All rights reserved. -// +/*------------------------------------------------------------------------ +* (The MIT License) +* +* Copyright (c) 2008-2011 Rhomobile, Inc. +* +* 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. +* +* http://rhomobile.com +*------------------------------------------------------------------------*/ #import #import diff --git a/platform/iphone/Classes/RhoDelegate.m b/platform/iphone/Classes/RhoDelegate.m index bc33148b0dd..e4eba903077 100644 --- a/platform/iphone/Classes/RhoDelegate.m +++ b/platform/iphone/Classes/RhoDelegate.m @@ -1,10 +1,28 @@ -// -// RhoDelegate.m -// rhorunner -// -// Created by lars on 8/11/09. -// Copyright 2009 Home. All rights reserved. -// +/*------------------------------------------------------------------------ +* (The MIT License) +* +* Copyright (c) 2008-2011 Rhomobile, Inc. +* +* 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. +* +* http://rhomobile.com +*------------------------------------------------------------------------*/ #import "RhoDelegate.h" diff --git a/platform/iphone/Classes/RhoViewController.m b/platform/iphone/Classes/RhoViewController.m index 5d8b6203ec5..bd260cab1b3 100644 --- a/platform/iphone/Classes/RhoViewController.m +++ b/platform/iphone/Classes/RhoViewController.m @@ -1,10 +1,28 @@ -// -// RhoViewController.m -// rhorunner -// -// Created by Dmitry Moskalchuk on 13.09.10. -// Copyright 2010 __MyCompanyName__. All rights reserved. -// +/*------------------------------------------------------------------------ +* (The MIT License) +* +* Copyright (c) 2008-2011 Rhomobile, Inc. +* +* 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. +* +* http://rhomobile.com +*------------------------------------------------------------------------*/ #import "Rhodes.h" #import "RhoViewController.h" diff --git a/platform/iphone/Classes/Rhodes.m b/platform/iphone/Classes/Rhodes.m index 01e6b35aba6..8085b4b72bc 100644 --- a/platform/iphone/Classes/Rhodes.m +++ b/platform/iphone/Classes/Rhodes.m @@ -1,3 +1,29 @@ +/*------------------------------------------------------------------------ +* (The MIT License) +* +* Copyright (c) 2008-2011 Rhomobile, Inc. +* +* 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. +* +* http://rhomobile.com +*------------------------------------------------------------------------*/ + #import "Rhodes.h" #import "SimpleMainView.h" #import "RhoAlert.h" diff --git a/platform/iphone/Classes/RingtoneManager.m b/platform/iphone/Classes/RingtoneManager.m index 100e71520f8..9a660cc5bb0 100644 --- a/platform/iphone/Classes/RingtoneManager.m +++ b/platform/iphone/Classes/RingtoneManager.m @@ -1,10 +1,28 @@ -// -// RingtoneManager.m -// rhorunner -// -// Created by Dmitry Moskalchuk on 29.03.10. -// Copyright 2010 __MyCompanyName__. All rights reserved. -// +/*------------------------------------------------------------------------ +* (The MIT License) +* +* Copyright (c) 2008-2011 Rhomobile, Inc. +* +* 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. +* +* http://rhomobile.com +*------------------------------------------------------------------------*/ #import "RingtoneManager.h" #import "Rhodes.h" diff --git a/platform/iphone/Classes/Signature/SignatureDelegate.m b/platform/iphone/Classes/Signature/SignatureDelegate.m index 34892b1487f..c2b9701601e 100644 --- a/platform/iphone/Classes/Signature/SignatureDelegate.m +++ b/platform/iphone/Classes/Signature/SignatureDelegate.m @@ -1,10 +1,28 @@ -// -// SignatureDelegate.m -// rhorunner -// -// Created by Soldatenkov Dmitry on 27/07/10. -// Copyright 2010 Rhomobile. All rights reserved. -// +/*------------------------------------------------------------------------ +* (The MIT License) +* +* Copyright (c) 2008-2011 Rhomobile, Inc. +* +* 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. +* +* http://rhomobile.com +*------------------------------------------------------------------------*/ #import "Rhodes.h" #import "SignatureDelegate.h" diff --git a/platform/iphone/Classes/Signature/SignatureView.m b/platform/iphone/Classes/Signature/SignatureView.m index 5ef12054342..bb344866e78 100644 --- a/platform/iphone/Classes/Signature/SignatureView.m +++ b/platform/iphone/Classes/Signature/SignatureView.m @@ -1,23 +1,33 @@ -// -// SignatureView.m -// Signature -// -// Created by Dmitry Soldatenkov on 7/27/10. -// Copyright 2010 __MyCompanyName__. All rights reserved. -// +/*------------------------------------------------------------------------ +* (The MIT License) +* +* Copyright (c) 2008-2011 Rhomobile, Inc. +* +* 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. +* +* http://rhomobile.com +*------------------------------------------------------------------------*/ #import "SignatureView.h" - - - - - - @implementation SignatureView - - -(CGContextRef)CreateRGBABitmapContext:(int)width height:(int)height { CGContextRef context = NULL; diff --git a/platform/iphone/Classes/Signature/SignatureViewController.m b/platform/iphone/Classes/Signature/SignatureViewController.m index 294083c7e4e..2c01c8bad88 100755 --- a/platform/iphone/Classes/Signature/SignatureViewController.m +++ b/platform/iphone/Classes/Signature/SignatureViewController.m @@ -1,10 +1,28 @@ -// -// SignatureView.m -// rhorunner -// -// Created by Soldatenkov Dmitry on 27/07/10. -// Copyright 2010 Rhomobile. All rights reserved. -// +/*------------------------------------------------------------------------ +* (The MIT License) +* +* Copyright (c) 2008-2011 Rhomobile, Inc. +* +* 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. +* +* http://rhomobile.com +*------------------------------------------------------------------------*/ #import "SignatureViewController.h" diff --git a/platform/iphone/Classes/SimpleMainView.m b/platform/iphone/Classes/SimpleMainView.m index 0c1bb42449f..4d01ab563a9 100755 --- a/platform/iphone/Classes/SimpleMainView.m +++ b/platform/iphone/Classes/SimpleMainView.m @@ -1,10 +1,28 @@ -// -// SimpleMainView.m -// rhorunner -// -// Created by Dmitry Moskalchuk on 07.03.10. -// Copyright 2010 Rhomobile Inc. All rights reserved. -// +/*------------------------------------------------------------------------ +* (The MIT License) +* +* Copyright (c) 2008-2011 Rhomobile, Inc. +* +* 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. +* +* http://rhomobile.com +*------------------------------------------------------------------------*/ #import "SimpleMainView.h" #import "AppManager.h" diff --git a/platform/iphone/Classes/SplashViewController.m b/platform/iphone/Classes/SplashViewController.m index 723c71c1f3e..85b6928864f 100644 --- a/platform/iphone/Classes/SplashViewController.m +++ b/platform/iphone/Classes/SplashViewController.m @@ -1,10 +1,28 @@ -// -// SplashViewController.m -// rhorunner -// -// Created by Dmitry Moskalchuk on 01.03.10. -// Copyright 2010 Rhomobile Inc. All rights reserved. -// +/*------------------------------------------------------------------------ +* (The MIT License) +* +* Copyright (c) 2008-2011 Rhomobile, Inc. +* +* 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. +* +* http://rhomobile.com +*------------------------------------------------------------------------*/ #import "SplashViewController.h" diff --git a/platform/iphone/Classes/SplitView/LeftViewController.m b/platform/iphone/Classes/SplitView/LeftViewController.m index 52a25b01df2..da1eeac4c2f 100644 --- a/platform/iphone/Classes/SplitView/LeftViewController.m +++ b/platform/iphone/Classes/SplitView/LeftViewController.m @@ -1,10 +1,28 @@ - // -// TabbedMainView.m -// rhorunner -// -// Created by Dmitry Moskalchuk on 26.03.10. -// Copyright 2010 __MyCompanyName__. All rights reserved. -// +/*------------------------------------------------------------------------ +* (The MIT License) +* +* Copyright (c) 2008-2011 Rhomobile, Inc. +* +* 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. +* +* http://rhomobile.com +*------------------------------------------------------------------------*/ #import "LeftViewController.h" #import "SimpleMainView.h" diff --git a/platform/iphone/Classes/SplitView/RightViewController.m b/platform/iphone/Classes/SplitView/RightViewController.m index 9fbbeb07466..13a3e784526 100644 --- a/platform/iphone/Classes/SplitView/RightViewController.m +++ b/platform/iphone/Classes/SplitView/RightViewController.m @@ -1,10 +1,28 @@ - // -// TabbedMainView.m -// rhorunner -// -// Created by Dmitry Moskalchuk on 26.03.10. -// Copyright 2010 __MyCompanyName__. All rights reserved. -// +/*------------------------------------------------------------------------ +* (The MIT License) +* +* Copyright (c) 2008-2011 Rhomobile, Inc. +* +* 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. +* +* http://rhomobile.com +*------------------------------------------------------------------------*/ #import "RightViewController.h" #import "SimpleMainView.h" diff --git a/platform/iphone/Classes/SplitView/SplitViewDelegate.m b/platform/iphone/Classes/SplitView/SplitViewDelegate.m index a882cb2695c..c295af74ca6 100644 --- a/platform/iphone/Classes/SplitView/SplitViewDelegate.m +++ b/platform/iphone/Classes/SplitView/SplitViewDelegate.m @@ -1,10 +1,28 @@ - // -// TabbedMainView.m -// rhorunner -// -// Created by Dmitry Moskalchuk on 26.03.10. -// Copyright 2010 __MyCompanyName__. All rights reserved. -// +/*------------------------------------------------------------------------ +* (The MIT License) +* +* Copyright (c) 2008-2011 Rhomobile, Inc. +* +* 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. +* +* http://rhomobile.com +*------------------------------------------------------------------------*/ #import "SplitViewDelegate.h" #import "SimpleMainView.h" diff --git a/platform/iphone/Classes/SplitView/SplittedMainView.m b/platform/iphone/Classes/SplitView/SplittedMainView.m index 10d266f18cf..48545c2e317 100644 --- a/platform/iphone/Classes/SplitView/SplittedMainView.m +++ b/platform/iphone/Classes/SplitView/SplittedMainView.m @@ -1,10 +1,28 @@ - // -// TabbedMainView.m -// rhorunner -// -// Created by Dmitry Moskalchuk on 26.03.10. -// Copyright 2010 __MyCompanyName__. All rights reserved. -// +/*------------------------------------------------------------------------ +* (The MIT License) +* +* Copyright (c) 2008-2011 Rhomobile, Inc. +* +* 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. +* +* http://rhomobile.com +*------------------------------------------------------------------------*/ #import "SplittedMainView.h" #import "SimpleMainView.h" diff --git a/platform/iphone/Classes/TabbedMainView.m b/platform/iphone/Classes/TabbedMainView.m index 5c7cae00f48..934c4bf2391 100644 --- a/platform/iphone/Classes/TabbedMainView.m +++ b/platform/iphone/Classes/TabbedMainView.m @@ -1,10 +1,28 @@ - // -// TabbedMainView.m -// rhorunner -// -// Created by Dmitry Moskalchuk on 26.03.10. -// Copyright 2010 __MyCompanyName__. All rights reserved. -// +/*------------------------------------------------------------------------ +* (The MIT License) +* +* Copyright (c) 2008-2011 Rhomobile, Inc. +* +* 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. +* +* http://rhomobile.com +*------------------------------------------------------------------------*/ #import "TabbedMainView.h" #import "SimpleMainView.h" diff --git a/platform/iphone/Classes/Utils/ParamsWrapper.m b/platform/iphone/Classes/Utils/ParamsWrapper.m index 0db9f4744b4..eb647dfbc66 100644 --- a/platform/iphone/Classes/Utils/ParamsWrapper.m +++ b/platform/iphone/Classes/Utils/ParamsWrapper.m @@ -1,10 +1,28 @@ -// -// ParamsWrapper.m -// rhorunner -// -// Created by Vlad on 8/7/09. -// Copyright 2009 __MyCompanyName__. All rights reserved. -// +/*------------------------------------------------------------------------ +* (The MIT License) +* +* Copyright (c) 2008-2011 Rhomobile, Inc. +* +* 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. +* +* http://rhomobile.com +*------------------------------------------------------------------------*/ #import "ParamsWrapper.h" diff --git a/platform/iphone/Classes/WebView.m b/platform/iphone/Classes/WebView.m index b2100acf135..b946189f6cb 100644 --- a/platform/iphone/Classes/WebView.m +++ b/platform/iphone/Classes/WebView.m @@ -1,10 +1,28 @@ -// -// RhoMainView.m -// rhorunner -// -// Created by Dmitry Moskalchuk on 26.03.10. -// Copyright 2010 __MyCompanyName__. All rights reserved. -// +/*------------------------------------------------------------------------ +* (The MIT License) +* +* Copyright (c) 2008-2011 Rhomobile, Inc. +* +* 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. +* +* http://rhomobile.com +*------------------------------------------------------------------------*/ //#import "RhoMainView.h" #import "Rhodes.h" diff --git a/platform/iphone/Classes/rho/net/NetRequestImpl.m b/platform/iphone/Classes/rho/net/NetRequestImpl.m index ff616332809..b13a65ea01e 100644 --- a/platform/iphone/Classes/rho/net/NetRequestImpl.m +++ b/platform/iphone/Classes/rho/net/NetRequestImpl.m @@ -1,22 +1,29 @@ -/* - * SyncManager.m - * RhoSyncClient - * - * Copyright (C) 2008 Rhomobile, Inc. All rights reserved. - * - * 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, see . - */ +/*------------------------------------------------------------------------ +* (The MIT License) +* +* Copyright (c) 2008-2011 Rhomobile, Inc. +* +* 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. +* +* http://rhomobile.com +*------------------------------------------------------------------------*/ + #import #import #import diff --git a/platform/iphone/Tests/Classes/TestsAppDelegate.m b/platform/iphone/Tests/Classes/TestsAppDelegate.m index ec3031c4c3f..c4019dff368 100644 --- a/platform/iphone/Tests/Classes/TestsAppDelegate.m +++ b/platform/iphone/Tests/Classes/TestsAppDelegate.m @@ -1,10 +1,28 @@ -// -// TestsAppDelegate.m -// Tests -// -// Created by evgeny vovchenko on 5/28/09. -// Copyright RhoMobile 2009. All rights reserved. -// +/*------------------------------------------------------------------------ +* (The MIT License) +* +* Copyright (c) 2008-2011 Rhomobile, Inc. +* +* 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. +* +* http://rhomobile.com +*------------------------------------------------------------------------*/ #import "TestsAppDelegate.h" diff --git a/platform/iphone/main.m b/platform/iphone/main.m index db67e509f72..cfa78065522 100644 --- a/platform/iphone/main.m +++ b/platform/iphone/main.m @@ -1,10 +1,28 @@ -// -// main.m -// Browser -// -// Created by adam blum on 9/4/08. -// Copyright __MyCompanyName__ 2008. All rights reserved. -// +/*------------------------------------------------------------------------ +* (The MIT License) +* +* Copyright (c) 2008-2011 Rhomobile, Inc. +* +* 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. +* +* http://rhomobile.com +*------------------------------------------------------------------------*/ #include diff --git a/platform/shared/common/iphone/RhoCryptImpl.mm b/platform/shared/common/iphone/RhoCryptImpl.mm index c459cb68ae3..0b4c332907c 100644 --- a/platform/shared/common/iphone/RhoCryptImpl.mm +++ b/platform/shared/common/iphone/RhoCryptImpl.mm @@ -1,3 +1,29 @@ +/*------------------------------------------------------------------------ +* (The MIT License) +* +* Copyright (c) 2008-2011 Rhomobile, Inc. +* +* 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. +* +* http://rhomobile.com +*------------------------------------------------------------------------*/ + #import #include "RhoCryptImpl.h" diff --git a/platform/shared/common/iphone/RhoFileImpl.m b/platform/shared/common/iphone/RhoFileImpl.m index 815938e2e53..78874698dbc 100644 --- a/platform/shared/common/iphone/RhoFileImpl.m +++ b/platform/shared/common/iphone/RhoFileImpl.m @@ -1,10 +1,29 @@ -// -// RhoFileImpl.m -// rhorunner -// -// Created by Dmitry Moskalchuk on 09.10.09. -// Copyright 2009 __MyCompanyName__. All rights reserved. -// +/*------------------------------------------------------------------------ +* (The MIT License) +* +* Copyright (c) 2008-2011 Rhomobile, Inc. +* +* 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. +* +* http://rhomobile.com +*------------------------------------------------------------------------*/ + #ifdef __OBJC__ #import #import diff --git a/platform/shared/common/iphone/RhoThreadImpl.m b/platform/shared/common/iphone/RhoThreadImpl.m index 256d5e972b5..6e912d2e5e9 100644 --- a/platform/shared/common/iphone/RhoThreadImpl.m +++ b/platform/shared/common/iphone/RhoThreadImpl.m @@ -1,10 +1,29 @@ -// -// RhoFileImpl.m -// rhorunner -// -// Created by Dmitry Moskalchuk on 09.10.09. -// Copyright 2009 __MyCompanyName__. All rights reserved. -// +/*------------------------------------------------------------------------ +* (The MIT License) +* +* Copyright (c) 2008-2011 Rhomobile, Inc. +* +* 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. +* +* http://rhomobile.com +*------------------------------------------------------------------------*/ + #ifdef __OBJC__ #import #import