From a7deeb28a8799cd24b1773e684519c70d9ef9483 Mon Sep 17 00:00:00 2001 From: akk7884 Date: Thu, 24 Aug 2023 08:12:50 +0200 Subject: [PATCH] Initial commit --- .gitignore | 111 +++++++++++++++++++++++++++++++++++++++++++++++++++++ LICENSE | 79 ++++++++++++++++++++++++++++++++++++++ README.md | 3 ++ 3 files changed, 193 insertions(+) create mode 100644 .gitignore create mode 100644 LICENSE create mode 100644 README.md diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..d976189 --- /dev/null +++ b/.gitignore @@ -0,0 +1,111 @@ +# ---> Actionscript +# Build and Release Folders +bin-debug/ +bin-release/ +[Oo]bj/ +[Bb]in/ + +# Other files and folders +.settings/ + +# Executables +*.swf +*.air +*.ipa +*.apk + +# Project files, i.e. `.project`, `.actionScriptProperties` and `.flexProperties` +# should NOT be excluded as they contain compiler settings and other important +# information for Eclipse / Flash Builder. + +# ---> Agda +*.agdai +MAlonzo/** + +# ---> Android +# Built application files +*.apk +*.aar +*.ap_ +*.aab + +# Files for the ART/Dalvik VM +*.dex + +# Java class files +*.class + +# Generated files +bin/ +gen/ +out/ +# Uncomment the following line in case you need and you don't have the release build type files in your app +# release/ + +# Gradle files +.gradle/ +build/ + +# Local configuration file (sdk path, etc) +local.properties + +# Proguard folder generated by Eclipse +proguard/ + +# Log Files +*.log + +# Android Studio Navigation editor temp files +.navigation/ + +# Android Studio captures folder +captures/ + +# IntelliJ +*.iml +.idea/workspace.xml +.idea/tasks.xml +.idea/gradle.xml +.idea/assetWizardSettings.xml +.idea/dictionaries +.idea/libraries +# Android Studio 3 in .gitignore file. +.idea/caches +.idea/modules.xml +# Comment next line if keeping position of elements in Navigation Editor is relevant for you +.idea/navEditor.xml + +# Keystore files +# Uncomment the following lines if you do not want to check your keystore files in. +#*.jks +#*.keystore + +# External native build folder generated in Android Studio 2.2 and later +.externalNativeBuild +.cxx/ + +# Google Services (e.g. APIs or Firebase) +# google-services.json + +# Freeline +freeline.py +freeline/ +freeline_project_description.json + +# fastlane +fastlane/report.xml +fastlane/Preview.html +fastlane/screenshots +fastlane/test_output +fastlane/readme.md + +# Version control +vcs.xml + +# lint +lint/intermediates/ +lint/generated/ +lint/outputs/ +lint/tmp/ +# lint/reports/ + diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..a505d88 --- /dev/null +++ b/LICENSE @@ -0,0 +1,79 @@ +Academic Free License + +Version 1.1 The Academic Free License applies to any original work of authorship +(the "Original Work") whose owner (the "Licensor") has placed the following +notice immediately following the copyright notice for the Original Work: + +"Licensed under the Academic Free License version 1.1." + +Grant of License. Licensor hereby grants to any person obtaining a copy of +the Original Work ("You") a world-wide, royalty-free, non-exclusive, perpetual, +non-sublicenseable license + +(1) to use, copy, modify, merge, publish, perform, distribute and/or sell +copies of the Original Work and derivative works thereof, and + +(2) under patent claims owned or controlled by the Licensor that are embodied +in the Original Work as furnished by the Licensor, to make, use, sell and +offer for sale the Original Work and derivative works thereof, subject to +the following conditions. + +Right of Attribution. Redistributions of the Original Work must reproduce +all copyright notices in the Original Work as furnished by the Licensor, both +in the Original Work itself and in any documentation and/or other materials +provided with the distribution of the Original Work in executable form. + +Exclusions from License Grant. Neither the names of Licensor, nor the names +of any contributors to the Original Work, nor any of their trademarks or service +marks, may be used to endorse or promote products derived from this Original +Work without express prior written permission of the Licensor. + +WARRANTY AND DISCLAIMERS. LICENSOR WARRANTS THAT THE COPYRIGHT IN AND TO THE +ORIGINAL WORK IS OWNED BY THE LICENSOR OR THAT THE ORIGINAL WORK IS DISTRIBUTED +BY LICENSOR UNDER A VALID CURRENT LICENSE FROM THE COPYRIGHT OWNER. EXCEPT +AS EXPRESSLY STATED IN THE IMMEDIATELY PRECEEDING SENTENCE, THE ORIGINAL WORK +IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS, WITHOUT WARRANTY, EITHER +EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, THE WARRANTY OF NON-INFRINGEMENT +AND WARRANTIES THAT THE ORIGINAL WORK IS MERCHANTABLE OR FIT FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY OF THE ORIGINAL WORK IS WITH YOU. +THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. +NO LICENSE TO ORIGINAL WORK IS GRANTED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. + +LIMITATION OF LIABILITY. UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, +WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE LICENSOR +BE LIABLE TO ANY PERSON FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR +CONSEQUENTIAL DAMAGES OF ANY CHARACTER ARISING AS A RESULT OF THIS LICENSE +OR THE USE OF THE ORIGINAL WORK INCLUDING, WITHOUT LIMITATION, DAMAGES FOR +LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND +ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PERSON SHALL HAVE BEEN +INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY +SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH +PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. +SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL +OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO +YOU. + +License to Source Code. The term "Source Code" means the preferred form of +the Original Work for making modifications to it and all available documentation +describing how to access and modify the Original Work. Licensor hereby agrees +to provide a machine-readable copy of the Source Code of the Original Work +along with each copy of the Original Work that Licensor distributes. Licensor +reserves the right to satisfy this obligation by placing a machine-readable +copy of the Source Code in an information repository reasonably calculated +to permit inexpensive and convenient access by You for as long as Licensor +continues to distribute the Original Work, and by publishing the address of +that information repository in a notice immediately following the copyright +notice that applies to the Original Work. + +Mutual Termination for Patent Action. This License shall terminate automatically +and You may no longer exercise any of the rights granted to You by this License +if You file a lawsuit in any court alleging that any OSI Certified open source +software that is licensed under any license containing this "Mutual Termination +for Patent Action" clause infringes any patent claims that are essential to +use that software. + +This license is Copyright (C) 2002 Lawrence E. Rosen. All rights reserved. + +Permission is hereby granted to copy and distribute this license without modification. +This license may not be modified without the express written permission of +its copyright owner. diff --git a/README.md b/README.md new file mode 100644 index 0000000..1ecf599 --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# telenovelastv.com.es + +https://telenovelastv.com.es/