├── .dockerignore ├── Dockerfile ├── LICENSE ├── README.md ├── SECURITY.md ├── app.min.js ├── assembly.json ├── css └── app.css ├── fonts └── SegoeUI │ ├── SegoeUI-Bold.eot │ ├── SegoeUI-Bold.ttf │ ├── SegoeUI-Bold.woff │ ├── SegoeUI-BoldItalic.eot │ ├── SegoeUI-BoldItalic.ttf │ ├── SegoeUI-BoldItalic.woff │ ├── SegoeUI-Italic.eot │ ├── SegoeUI-Italic.ttf │ ├── SegoeUI-Italic.woff │ ├── SegoeUI-Light.eot │ ├── SegoeUI-Light.ttf │ ├── SegoeUI-Light.woff │ ├── SegoeUI-SemiBold.eot │ ├── SegoeUI-SemiBold.ttf │ ├── SegoeUI-SemiBold.woff │ ├── SegoeUI.eot │ ├── SegoeUI.ttf │ ├── SegoeUI.woff │ ├── demo.html │ └── stylesheet.css ├── icons ├── android-chrome-192x192.png ├── android-chrome-384x384.png ├── apple-touch-icon.png ├── browserconfig.xml ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── mstile-150x150.png ├── safari-pinned-tab.svg └── site.webmanifest ├── img ├── actor.svg ├── bokeh-h │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ └── 6.png ├── bokeh │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ └── 6.png ├── empty.svg ├── error.svg ├── icons │ ├── add.svg │ ├── android │ │ ├── android-launchericon-144-144.png │ │ ├── android-launchericon-192-192.png │ │ ├── android-launchericon-48-48.png │ │ ├── android-launchericon-512-512.png │ │ ├── android-launchericon-72-72.png │ │ └── android-launchericon-96-96.png │ ├── check_dark.svg │ ├── film.svg │ ├── ios │ │ ├── 100.png │ │ ├── 1024.png │ │ ├── 114.png │ │ ├── 120.png │ │ ├── 128.png │ │ ├── 152.png │ │ ├── 16.png │ │ ├── 167.png │ │ ├── 180.png │ │ ├── 20.png │ │ ├── 256.png │ │ ├── 29.png │ │ ├── 32.png │ │ ├── 40.png │ │ ├── 50.png │ │ ├── 57.png │ │ ├── 58.png │ │ ├── 60.png │ │ ├── 64.png │ │ ├── 76.png │ │ ├── 80.png │ │ └── 87.png │ ├── keyboard │ │ ├── abc.svg │ │ ├── bksp.svg │ │ ├── enter.svg │ │ ├── lang.svg │ │ ├── space.svg │ │ ├── sym.svg │ │ └── up.svg │ ├── menu │ │ ├── bookmark.svg │ │ ├── browse.svg │ │ ├── catalog.svg │ │ ├── home.svg │ │ ├── hourglass.svg │ │ ├── info.svg │ │ ├── like.svg │ │ ├── movie.svg │ │ ├── settings.svg │ │ ├── time.svg │ │ └── tv.svg │ ├── more.svg │ ├── player │ │ ├── next.svg │ │ ├── pause.svg │ │ ├── play.svg │ │ ├── playlist.svg │ │ ├── prev.svg │ │ ├── size.svg │ │ └── subs.svg │ ├── pulse.svg │ ├── settings │ │ ├── more.svg │ │ ├── panel.svg │ │ ├── parser.svg │ │ ├── player.svg │ │ └── server.svg │ ├── split.svg │ ├── time.svg │ └── view.svg ├── ili │ ├── bookmarks.png │ ├── search.png │ └── tv.png ├── img_broken.svg ├── img_load.svg ├── loader.svg ├── logo-icon.svg ├── logo.svg ├── video_poster.png └── welcome.jpg ├── index.html ├── lang ├── be.js ├── bg.js ├── cs.js ├── en.js ├── he.js ├── meta.js ├── pt.js ├── ru.js ├── uk.js └── zh.js ├── msx-logo.png ├── msx ├── lang │ └── ru.json └── start.json ├── og.png ├── sound ├── bell.ogg └── hover.ogg ├── vender ├── dash │ └── dash.js ├── hls │ └── hls.js ├── jquery │ └── jquery.js ├── keypad │ ├── keypad.js │ └── style.css ├── navigator │ └── navigator.js ├── notify │ └── notify.js └── scrollbar │ ├── jquery.scrollbar.css │ ├── jquery.scrollbar.js │ └── jquery.scrollbar.min.js └── webos ├── LICENSE-2.0.txt ├── webOSTV-dev.js └── webOSTV.js /.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | .idea 3 | .dockerignore 4 | Dockerfile 5 | README.md 6 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM httpd:alpine3.15 2 | ARG domain 3 | ARG prefix="http://" 4 | RUN test -n "$domain" || (echo "ERROR: domain is not set" && false) 5 | COPY . /usr/local/apache2/htdocs/ 6 | RUN sed -i -e "s|{domain}|$domain|" -e "s|{PREFIX}|$prefix|" /usr/local/apache2/htdocs/msx/start.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 2, June 1991 3 | 4 | Copyright (C) 1989, 1991 Free Software Foundation, Inc., 5 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 6 | Everyone is permitted to copy and distribute verbatim copies 7 | of this license document, but changing it is not allowed. 8 | 9 | Preamble 10 | 11 | The licenses for most software are designed to take away your 12 | freedom to share and change it. By contrast, the GNU General Public 13 | License is intended to guarantee your freedom to share and change free 14 | software--to make sure the software is free for all its users. This 15 | General Public License applies to most of the Free Software 16 | Foundation's software and to any other program whose authors commit to 17 | using it. (Some other Free Software Foundation software is covered by 18 | the GNU Lesser General Public License instead.) You can apply it to 19 | your programs, too. 20 | 21 | When we speak of free software, we are referring to freedom, not 22 | price. Our General Public Licenses are designed to make sure that you 23 | have the freedom to distribute copies of free software (and charge for 24 | this service if you wish), that you receive source code or can get it 25 | if you want it, that you can change the software or use pieces of it 26 | in new free programs; and that you know you can do these things. 27 | 28 | To protect your rights, we need to make restrictions that forbid 29 | anyone to deny you these rights or to ask you to surrender the rights. 30 | These restrictions translate to certain responsibilities for you if you 31 | distribute copies of the software, or if you modify it. 32 | 33 | For example, if you distribute copies of such a program, whether 34 | gratis or for a fee, you must give the recipients all the rights that 35 | you have. You must make sure that they, too, receive or can get the 36 | source code. And you must show them these terms so they know their 37 | rights. 38 | 39 | We protect your rights with two steps: (1) copyright the software, and 40 | (2) offer you this license which gives you legal permission to copy, 41 | distribute and/or modify the software. 42 | 43 | Also, for each author's protection and ours, we want to make certain 44 | that everyone understands that there is no warranty for this free 45 | software. If the software is modified by someone else and passed on, we 46 | want its recipients to know that what they have is not the original, so 47 | that any problems introduced by others will not reflect on the original 48 | authors' reputations. 49 | 50 | Finally, any free program is threatened constantly by software 51 | patents. We wish to avoid the danger that redistributors of a free 52 | program will individually obtain patent licenses, in effect making the 53 | program proprietary. To prevent this, we have made it clear that any 54 | patent must be licensed for everyone's free use or not licensed at all. 55 | 56 | The precise terms and conditions for copying, distribution and 57 | modification follow. 58 | 59 | GNU GENERAL PUBLIC LICENSE 60 | TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 61 | 62 | 0. This License applies to any program or other work which contains 63 | a notice placed by the copyright holder saying it may be distributed 64 | under the terms of this General Public License. The "Program", below, 65 | refers to any such program or work, and a "work based on the Program" 66 | means either the Program or any derivative work under copyright law: 67 | that is to say, a work containing the Program or a portion of it, 68 | either verbatim or with modifications and/or translated into another 69 | language. (Hereinafter, translation is included without limitation in 70 | the term "modification".) Each licensee is addressed as "you". 71 | 72 | Activities other than copying, distribution and modification are not 73 | covered by this License; they are outside its scope. The act of 74 | running the Program is not restricted, and the output from the Program 75 | is covered only if its contents constitute a work based on the 76 | Program (independent of having been made by running the Program). 77 | Whether that is true depends on what the Program does. 78 | 79 | 1. You may copy and distribute verbatim copies of the Program's 80 | source code as you receive it, in any medium, provided that you 81 | conspicuously and appropriately publish on each copy an appropriate 82 | copyright notice and disclaimer of warranty; keep intact all the 83 | notices that refer to this License and to the absence of any warranty; 84 | and give any other recipients of the Program a copy of this License 85 | along with the Program. 86 | 87 | You may charge a fee for the physical act of transferring a copy, and 88 | you may at your option offer warranty protection in exchange for a fee. 89 | 90 | 2. You may modify your copy or copies of the Program or any portion 91 | of it, thus forming a work based on the Program, and copy and 92 | distribute such modifications or work under the terms of Section 1 93 | above, provided that you also meet all of these conditions: 94 | 95 | a) You must cause the modified files to carry prominent notices 96 | stating that you changed the files and the date of any change. 97 | 98 | b) You must cause any work that you distribute or publish, that in 99 | whole or in part contains or is derived from the Program or any 100 | part thereof, to be licensed as a whole at no charge to all third 101 | parties under the terms of this License. 102 | 103 | c) If the modified program normally reads commands interactively 104 | when run, you must cause it, when started running for such 105 | interactive use in the most ordinary way, to print or display an 106 | announcement including an appropriate copyright notice and a 107 | notice that there is no warranty (or else, saying that you provide 108 | a warranty) and that users may redistribute the program under 109 | these conditions, and telling the user how to view a copy of this 110 | License. (Exception: if the Program itself is interactive but 111 | does not normally print such an announcement, your work based on 112 | the Program is not required to print an announcement.) 113 | 114 | These requirements apply to the modified work as a whole. If 115 | identifiable sections of that work are not derived from the Program, 116 | and can be reasonably considered independent and separate works in 117 | themselves, then this License, and its terms, do not apply to those 118 | sections when you distribute them as separate works. But when you 119 | distribute the same sections as part of a whole which is a work based 120 | on the Program, the distribution of the whole must be on the terms of 121 | this License, whose permissions for other licensees extend to the 122 | entire whole, and thus to each and every part regardless of who wrote it. 123 | 124 | Thus, it is not the intent of this section to claim rights or contest 125 | your rights to work written entirely by you; rather, the intent is to 126 | exercise the right to control the distribution of derivative or 127 | collective works based on the Program. 128 | 129 | In addition, mere aggregation of another work not based on the Program 130 | with the Program (or with a work based on the Program) on a volume of 131 | a storage or distribution medium does not bring the other work under 132 | the scope of this License. 133 | 134 | 3. You may copy and distribute the Program (or a work based on it, 135 | under Section 2) in object code or executable form under the terms of 136 | Sections 1 and 2 above provided that you also do one of the following: 137 | 138 | a) Accompany it with the complete corresponding machine-readable 139 | source code, which must be distributed under the terms of Sections 140 | 1 and 2 above on a medium customarily used for software interchange; or, 141 | 142 | b) Accompany it with a written offer, valid for at least three 143 | years, to give any third party, for a charge no more than your 144 | cost of physically performing source distribution, a complete 145 | machine-readable copy of the corresponding source code, to be 146 | distributed under the terms of Sections 1 and 2 above on a medium 147 | customarily used for software interchange; or, 148 | 149 | c) Accompany it with the information you received as to the offer 150 | to distribute corresponding source code. (This alternative is 151 | allowed only for noncommercial distribution and only if you 152 | received the program in object code or executable form with such 153 | an offer, in accord with Subsection b above.) 154 | 155 | The source code for a work means the preferred form of the work for 156 | making modifications to it. For an executable work, complete source 157 | code means all the source code for all modules it contains, plus any 158 | associated interface definition files, plus the scripts used to 159 | control compilation and installation of the executable. However, as a 160 | special exception, the source code distributed need not include 161 | anything that is normally distributed (in either source or binary 162 | form) with the major components (compiler, kernel, and so on) of the 163 | operating system on which the executable runs, unless that component 164 | itself accompanies the executable. 165 | 166 | If distribution of executable or object code is made by offering 167 | access to copy from a designated place, then offering equivalent 168 | access to copy the source code from the same place counts as 169 | distribution of the source code, even though third parties are not 170 | compelled to copy the source along with the object code. 171 | 172 | 4. You may not copy, modify, sublicense, or distribute the Program 173 | except as expressly provided under this License. Any attempt 174 | otherwise to copy, modify, sublicense or distribute the Program is 175 | void, and will automatically terminate your rights under this License. 176 | However, parties who have received copies, or rights, from you under 177 | this License will not have their licenses terminated so long as such 178 | parties remain in full compliance. 179 | 180 | 5. You are not required to accept this License, since you have not 181 | signed it. However, nothing else grants you permission to modify or 182 | distribute the Program or its derivative works. These actions are 183 | prohibited by law if you do not accept this License. Therefore, by 184 | modifying or distributing the Program (or any work based on the 185 | Program), you indicate your acceptance of this License to do so, and 186 | all its terms and conditions for copying, distributing or modifying 187 | the Program or works based on it. 188 | 189 | 6. Each time you redistribute the Program (or any work based on the 190 | Program), the recipient automatically receives a license from the 191 | original licensor to copy, distribute or modify the Program subject to 192 | these terms and conditions. You may not impose any further 193 | restrictions on the recipients' exercise of the rights granted herein. 194 | You are not responsible for enforcing compliance by third parties to 195 | this License. 196 | 197 | 7. If, as a consequence of a court judgment or allegation of patent 198 | infringement or for any other reason (not limited to patent issues), 199 | conditions are imposed on you (whether by court order, agreement or 200 | otherwise) that contradict the conditions of this License, they do not 201 | excuse you from the conditions of this License. If you cannot 202 | distribute so as to satisfy simultaneously your obligations under this 203 | License and any other pertinent obligations, then as a consequence you 204 | may not distribute the Program at all. For example, if a patent 205 | license would not permit royalty-free redistribution of the Program by 206 | all those who receive copies directly or indirectly through you, then 207 | the only way you could satisfy both it and this License would be to 208 | refrain entirely from distribution of the Program. 209 | 210 | If any portion of this section is held invalid or unenforceable under 211 | any particular circumstance, the balance of the section is intended to 212 | apply and the section as a whole is intended to apply in other 213 | circumstances. 214 | 215 | It is not the purpose of this section to induce you to infringe any 216 | patents or other property right claims or to contest validity of any 217 | such claims; this section has the sole purpose of protecting the 218 | integrity of the free software distribution system, which is 219 | implemented by public license practices. Many people have made 220 | generous contributions to the wide range of software distributed 221 | through that system in reliance on consistent application of that 222 | system; it is up to the author/donor to decide if he or she is willing 223 | to distribute software through any other system and a licensee cannot 224 | impose that choice. 225 | 226 | This section is intended to make thoroughly clear what is believed to 227 | be a consequence of the rest of this License. 228 | 229 | 8. If the distribution and/or use of the Program is restricted in 230 | certain countries either by patents or by copyrighted interfaces, the 231 | original copyright holder who places the Program under this License 232 | may add an explicit geographical distribution limitation excluding 233 | those countries, so that distribution is permitted only in or among 234 | countries not thus excluded. In such case, this License incorporates 235 | the limitation as if written in the body of this License. 236 | 237 | 9. The Free Software Foundation may publish revised and/or new versions 238 | of the General Public License from time to time. Such new versions will 239 | be similar in spirit to the present version, but may differ in detail to 240 | address new problems or concerns. 241 | 242 | Each version is given a distinguishing version number. If the Program 243 | specifies a version number of this License which applies to it and "any 244 | later version", you have the option of following the terms and conditions 245 | either of that version or of any later version published by the Free 246 | Software Foundation. If the Program does not specify a version number of 247 | this License, you may choose any version ever published by the Free Software 248 | Foundation. 249 | 250 | 10. If you wish to incorporate parts of the Program into other free 251 | programs whose distribution conditions are different, write to the author 252 | to ask for permission. For software which is copyrighted by the Free 253 | Software Foundation, write to the Free Software Foundation; we sometimes 254 | make exceptions for this. Our decision will be guided by the two goals 255 | of preserving the free status of all derivatives of our free software and 256 | of promoting the sharing and reuse of software generally. 257 | 258 | NO WARRANTY 259 | 260 | 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY 261 | FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN 262 | OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES 263 | PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED 264 | OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 265 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS 266 | TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE 267 | PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, 268 | REPAIR OR CORRECTION. 269 | 270 | 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 271 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR 272 | REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, 273 | INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING 274 | OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED 275 | TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY 276 | YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER 277 | PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE 278 | POSSIBILITY OF SUCH DAMAGES. 279 | 280 | END OF TERMS AND CONDITIONS 281 | 282 | How to Apply These Terms to Your New Programs 283 | 284 | If you develop a new program, and you want it to be of the greatest 285 | possible use to the public, the best way to achieve this is to make it 286 | free software which everyone can redistribute and change under these terms. 287 | 288 | To do so, attach the following notices to the program. It is safest 289 | to attach them to the start of each source file to most effectively 290 | convey the exclusion of warranty; and each file should have at least 291 | the "copyright" line and a pointer to where the full notice is found. 292 | 293 | 294 | Copyright (C) 295 | 296 | This program is free software; you can redistribute it and/or modify 297 | it under the terms of the GNU General Public License as published by 298 | the Free Software Foundation; either version 2 of the License, or 299 | (at your option) any later version. 300 | 301 | This program is distributed in the hope that it will be useful, 302 | but WITHOUT ANY WARRANTY; without even the implied warranty of 303 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 304 | GNU General Public License for more details. 305 | 306 | You should have received a copy of the GNU General Public License along 307 | with this program; if not, write to the Free Software Foundation, Inc., 308 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 309 | 310 | Also add information on how to contact you by electronic and paper mail. 311 | 312 | If the program is interactive, make it output a short notice like this 313 | when it starts in an interactive mode: 314 | 315 | Gnomovision version 69, Copyright (C) year name of author 316 | Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 317 | This is free software, and you are welcome to redistribute it 318 | under certain conditions; type `show c' for details. 319 | 320 | The hypothetical commands `show w' and `show c' should show the appropriate 321 | parts of the General Public License. Of course, the commands you use may 322 | be called something other than `show w' and `show c'; they could even be 323 | mouse-clicks or menu items--whatever suits your program. 324 | 325 | You should also get your employer (if you work as a programmer) or your 326 | school, if any, to sign a "copyright disclaimer" for the program, if 327 | necessary. Here is a sample; alter the names: 328 | 329 | Yoyodyne, Inc., hereby disclaims all copyright interest in the program 330 | `Gnomovision' (which makes passes at compilers) written by James Hacker. 331 | 332 | , 1 April 1989 333 | Ty Coon, President of Vice 334 | 335 | This General Public License does not permit incorporating your program into 336 | proprietary programs. If your program is a subroutine library, you may 337 | consider it more useful to permit linking proprietary applications with the 338 | library. If this is what you want to do, use the GNU Lesser General 339 | Public License instead of this License. 340 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Lampa 2 | 3 | Приложение полностью бесплатное и использует публичные ссылки для просмотра информации о фильмах, новинках, популярных фильмов и т.д. Вся доступная информация используется исключительно в познавательных целях, приложение не использует свои собственные серверы для распространения информации. 4 | 5 | Исходники лампы доступны тут: https://github.com/yumata/lampa-source 6 | 7 | #### Устройства 8 | * LG WebOS 9 | * Samsung Tizen 10 | * MSX 11 | * Android 12 | * MacOS 13 | * Windows 14 | 15 | ## Установка для MSX 16 | 17 | На данный момент ручная установка, вам необходим свой собственный хостинг или локальный веб-сервер. 18 | 19 | 1. Тут же нажмите на зеленую кнопку (Code) и выберите (Download ZIP) загрузите файлы на хостинг или веб-сервер. 20 | 2. Откройте файл `msx/start.json` и замените содержиое `{domain}` на свой домен или IP 21 | 3. Откройте MSX и выполните установку 22 | 23 | ## Запуск в Docker'е 24 | 25 | 1. Соберите образ `docker build --build-arg domain={domain} -t lampa . ` 26 | 2. Запустите контейнер `docker run -p 8080:80 -d --restart unless-stopped -it --name lampa lampa` 27 | -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- 1 | # Security Policy 2 | 3 | :x: Этот проект не обеспечивает безопасность ваших данных. 4 | 5 | Проект поддерживает возможность подключать сторонние плагины. Непроверенные плагины могут содержать в себе вредоносный код, который может пагубно повлиять на работу приложения. 6 | Устанавливайте только проверенные плагины. 7 | -------------------------------------------------------------------------------- /assembly.json: -------------------------------------------------------------------------------- 1 | { 2 | "app_version": "2.4.3", 3 | "css_version": "2.6.8", 4 | "css_digital": 268, 5 | "app_digital": 243, 6 | "time": 1749022462241, 7 | "hash": "be3ed69a9616ca95c43489099bb6d7c7" 8 | } -------------------------------------------------------------------------------- /fonts/SegoeUI/SegoeUI-Bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumata/lampa/75cf3cdd7c46d8965cd3aa4572a1150edfb57718/fonts/SegoeUI/SegoeUI-Bold.eot -------------------------------------------------------------------------------- /fonts/SegoeUI/SegoeUI-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumata/lampa/75cf3cdd7c46d8965cd3aa4572a1150edfb57718/fonts/SegoeUI/SegoeUI-Bold.ttf -------------------------------------------------------------------------------- /fonts/SegoeUI/SegoeUI-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumata/lampa/75cf3cdd7c46d8965cd3aa4572a1150edfb57718/fonts/SegoeUI/SegoeUI-Bold.woff -------------------------------------------------------------------------------- /fonts/SegoeUI/SegoeUI-BoldItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumata/lampa/75cf3cdd7c46d8965cd3aa4572a1150edfb57718/fonts/SegoeUI/SegoeUI-BoldItalic.eot -------------------------------------------------------------------------------- /fonts/SegoeUI/SegoeUI-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumata/lampa/75cf3cdd7c46d8965cd3aa4572a1150edfb57718/fonts/SegoeUI/SegoeUI-BoldItalic.ttf -------------------------------------------------------------------------------- /fonts/SegoeUI/SegoeUI-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumata/lampa/75cf3cdd7c46d8965cd3aa4572a1150edfb57718/fonts/SegoeUI/SegoeUI-BoldItalic.woff -------------------------------------------------------------------------------- /fonts/SegoeUI/SegoeUI-Italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumata/lampa/75cf3cdd7c46d8965cd3aa4572a1150edfb57718/fonts/SegoeUI/SegoeUI-Italic.eot -------------------------------------------------------------------------------- /fonts/SegoeUI/SegoeUI-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumata/lampa/75cf3cdd7c46d8965cd3aa4572a1150edfb57718/fonts/SegoeUI/SegoeUI-Italic.ttf -------------------------------------------------------------------------------- /fonts/SegoeUI/SegoeUI-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumata/lampa/75cf3cdd7c46d8965cd3aa4572a1150edfb57718/fonts/SegoeUI/SegoeUI-Italic.woff -------------------------------------------------------------------------------- /fonts/SegoeUI/SegoeUI-Light.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumata/lampa/75cf3cdd7c46d8965cd3aa4572a1150edfb57718/fonts/SegoeUI/SegoeUI-Light.eot -------------------------------------------------------------------------------- /fonts/SegoeUI/SegoeUI-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumata/lampa/75cf3cdd7c46d8965cd3aa4572a1150edfb57718/fonts/SegoeUI/SegoeUI-Light.ttf -------------------------------------------------------------------------------- /fonts/SegoeUI/SegoeUI-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumata/lampa/75cf3cdd7c46d8965cd3aa4572a1150edfb57718/fonts/SegoeUI/SegoeUI-Light.woff -------------------------------------------------------------------------------- /fonts/SegoeUI/SegoeUI-SemiBold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumata/lampa/75cf3cdd7c46d8965cd3aa4572a1150edfb57718/fonts/SegoeUI/SegoeUI-SemiBold.eot -------------------------------------------------------------------------------- /fonts/SegoeUI/SegoeUI-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumata/lampa/75cf3cdd7c46d8965cd3aa4572a1150edfb57718/fonts/SegoeUI/SegoeUI-SemiBold.ttf -------------------------------------------------------------------------------- /fonts/SegoeUI/SegoeUI-SemiBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumata/lampa/75cf3cdd7c46d8965cd3aa4572a1150edfb57718/fonts/SegoeUI/SegoeUI-SemiBold.woff -------------------------------------------------------------------------------- /fonts/SegoeUI/SegoeUI.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumata/lampa/75cf3cdd7c46d8965cd3aa4572a1150edfb57718/fonts/SegoeUI/SegoeUI.eot -------------------------------------------------------------------------------- /fonts/SegoeUI/SegoeUI.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumata/lampa/75cf3cdd7c46d8965cd3aa4572a1150edfb57718/fonts/SegoeUI/SegoeUI.ttf -------------------------------------------------------------------------------- /fonts/SegoeUI/SegoeUI.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumata/lampa/75cf3cdd7c46d8965cd3aa4572a1150edfb57718/fonts/SegoeUI/SegoeUI.woff -------------------------------------------------------------------------------- /fonts/SegoeUI/demo.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | Transfonter demo 9 | 10 | 175 | 176 | 177 |
178 |
179 |

Segoe UI Light

180 |
.your-style {
181 |     font-family: 'Segoe UI';
182 |     font-weight: 300;
183 |     font-style: normal;
184 | }
185 |
186 |

187 | абвгдеёжзийклмнопрстуфхцчшщъыьэюя
188 | АБВГДЕЁЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯ
189 | abcdefghijklmnopqrstuvwxyz
190 | ABCDEFGHIJKLMNOPQRSTUVWXYZ
0123456789.:,;()*!?'@#<>$%&^+-=~ 191 |

192 |

Съешь же ещё этих мягких французских булок, да выпей чаю.

193 |

Съешь же ещё этих мягких французских булок, да выпей чаю.

194 |

Съешь же ещё этих мягких французских булок, да выпей чаю.

195 |

Съешь же ещё этих мягких французских булок, да выпей чаю.

196 |

Съешь же ещё этих мягких французских булок, да выпей чаю.

197 |

Съешь же ещё этих мягких французских булок, да выпей чаю.

198 |

Съешь же ещё этих мягких французских булок, да выпей чаю.

199 |

Съешь же ещё этих мягких французских булок, да выпей чаю.

200 |

Съешь же ещё этих мягких французских булок, да выпей чаю.

201 |

Съешь же ещё этих мягких французских булок, да выпей чаю.

202 |

Съешь же ещё этих мягких французских булок, да выпей чаю.

203 |
204 |
205 |
206 |

Segoe UI Bold Italic

207 |
.your-style {
208 |     font-family: 'Segoe UI';
209 |     font-weight: bold;
210 |     font-style: italic;
211 | }
212 |
213 |

214 | абвгдеёжзийклмнопрстуфхцчшщъыьэюя
215 | АБВГДЕЁЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯ
216 | abcdefghijklmnopqrstuvwxyz
217 | ABCDEFGHIJKLMNOPQRSTUVWXYZ
0123456789.:,;()*!?'@#<>$%&^+-=~ 218 |

219 |

Съешь же ещё этих мягких французских булок, да выпей чаю.

220 |

Съешь же ещё этих мягких французских булок, да выпей чаю.

221 |

Съешь же ещё этих мягких французских булок, да выпей чаю.

222 |

Съешь же ещё этих мягких французских булок, да выпей чаю.

223 |

Съешь же ещё этих мягких французских булок, да выпей чаю.

224 |

Съешь же ещё этих мягких французских булок, да выпей чаю.

225 |

Съешь же ещё этих мягких французских булок, да выпей чаю.

226 |

Съешь же ещё этих мягких французских булок, да выпей чаю.

227 |

Съешь же ещё этих мягких французских булок, да выпей чаю.

228 |

Съешь же ещё этих мягких французских булок, да выпей чаю.

229 |

Съешь же ещё этих мягких французских булок, да выпей чаю.

230 |
231 |
232 |
233 |

Segoe UI Semibold

234 |
.your-style {
235 |     font-family: 'Segoe UI';
236 |     font-weight: 600;
237 |     font-style: normal;
238 | }
239 |
240 |

241 | абвгдеёжзийклмнопрстуфхцчшщъыьэюя
242 | АБВГДЕЁЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯ
243 | abcdefghijklmnopqrstuvwxyz
244 | ABCDEFGHIJKLMNOPQRSTUVWXYZ
0123456789.:,;()*!?'@#<>$%&^+-=~ 245 |

246 |

Съешь же ещё этих мягких французских булок, да выпей чаю.

247 |

Съешь же ещё этих мягких французских булок, да выпей чаю.

248 |

Съешь же ещё этих мягких французских булок, да выпей чаю.

249 |

Съешь же ещё этих мягких французских булок, да выпей чаю.

250 |

Съешь же ещё этих мягких французских булок, да выпей чаю.

251 |

Съешь же ещё этих мягких французских булок, да выпей чаю.

252 |

Съешь же ещё этих мягких французских булок, да выпей чаю.

253 |

Съешь же ещё этих мягких французских булок, да выпей чаю.

254 |

Съешь же ещё этих мягких французских булок, да выпей чаю.

255 |

Съешь же ещё этих мягких французских булок, да выпей чаю.

256 |

Съешь же ещё этих мягких французских булок, да выпей чаю.

257 |
258 |
259 |
260 |

Segoe UI

261 |
.your-style {
262 |     font-family: 'Segoe UI';
263 |     font-weight: normal;
264 |     font-style: normal;
265 | }
266 |
267 |

268 | абвгдеёжзийклмнопрстуфхцчшщъыьэюя
269 | АБВГДЕЁЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯ
270 | abcdefghijklmnopqrstuvwxyz
271 | ABCDEFGHIJKLMNOPQRSTUVWXYZ
0123456789.:,;()*!?'@#<>$%&^+-=~ 272 |

273 |

Съешь же ещё этих мягких французских булок, да выпей чаю.

274 |

Съешь же ещё этих мягких французских булок, да выпей чаю.

275 |

Съешь же ещё этих мягких французских булок, да выпей чаю.

276 |

Съешь же ещё этих мягких французских булок, да выпей чаю.

277 |

Съешь же ещё этих мягких французских булок, да выпей чаю.

278 |

Съешь же ещё этих мягких французских булок, да выпей чаю.

279 |

Съешь же ещё этих мягких французских булок, да выпей чаю.

280 |

Съешь же ещё этих мягких французских булок, да выпей чаю.

281 |

Съешь же ещё этих мягких французских булок, да выпей чаю.

282 |

Съешь же ещё этих мягких французских булок, да выпей чаю.

283 |

Съешь же ещё этих мягких французских булок, да выпей чаю.

284 |
285 |
286 |
287 |

Segoe UI Bold

288 |
.your-style {
289 |     font-family: 'Segoe UI';
290 |     font-weight: bold;
291 |     font-style: normal;
292 | }
293 |
294 |

295 | абвгдеёжзийклмнопрстуфхцчшщъыьэюя
296 | АБВГДЕЁЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯ
297 | abcdefghijklmnopqrstuvwxyz
298 | ABCDEFGHIJKLMNOPQRSTUVWXYZ
0123456789.:,;()*!?'@#<>$%&^+-=~ 299 |

300 |

Съешь же ещё этих мягких французских булок, да выпей чаю.

301 |

Съешь же ещё этих мягких французских булок, да выпей чаю.

302 |

Съешь же ещё этих мягких французских булок, да выпей чаю.

303 |

Съешь же ещё этих мягких французских булок, да выпей чаю.

304 |

Съешь же ещё этих мягких французских булок, да выпей чаю.

305 |

Съешь же ещё этих мягких французских булок, да выпей чаю.

306 |

Съешь же ещё этих мягких французских булок, да выпей чаю.

307 |

Съешь же ещё этих мягких французских булок, да выпей чаю.

308 |

Съешь же ещё этих мягких французских булок, да выпей чаю.

309 |

Съешь же ещё этих мягких французских булок, да выпей чаю.

310 |

Съешь же ещё этих мягких французских булок, да выпей чаю.

311 |
312 |
313 |
314 |

Segoe UI Italic

315 |
.your-style {
316 |     font-family: 'Segoe UI';
317 |     font-weight: normal;
318 |     font-style: italic;
319 | }
320 |
321 |

322 | абвгдеёжзийклмнопрстуфхцчшщъыьэюя
323 | АБВГДЕЁЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯ
324 | abcdefghijklmnopqrstuvwxyz
325 | ABCDEFGHIJKLMNOPQRSTUVWXYZ
0123456789.:,;()*!?'@#<>$%&^+-=~ 326 |

327 |

Съешь же ещё этих мягких французских булок, да выпей чаю.

328 |

Съешь же ещё этих мягких французских булок, да выпей чаю.

329 |

Съешь же ещё этих мягких французских булок, да выпей чаю.

330 |

Съешь же ещё этих мягких французских булок, да выпей чаю.

331 |

Съешь же ещё этих мягких французских булок, да выпей чаю.

332 |

Съешь же ещё этих мягких французских булок, да выпей чаю.

333 |

Съешь же ещё этих мягких французских булок, да выпей чаю.

334 |

Съешь же ещё этих мягких французских булок, да выпей чаю.

335 |

Съешь же ещё этих мягких французских булок, да выпей чаю.

336 |

Съешь же ещё этих мягких французских булок, да выпей чаю.

337 |

Съешь же ещё этих мягких французских булок, да выпей чаю.

338 |
339 |
340 |
341 | 342 | -------------------------------------------------------------------------------- /fonts/SegoeUI/stylesheet.css: -------------------------------------------------------------------------------- 1 | /* This stylesheet generated by Transfonter (https://transfonter.org) on August 23, 2017 4:44 PM */ 2 | 3 | @font-face { 4 | font-family: 'Segoe UI'; 5 | src: url('SegoeUI-Light.eot'); 6 | src: local('Segoe UI Light'), local('SegoeUI-Light'), 7 | url('SegoeUI-Light.eot?#iefix') format('embedded-opentype'), 8 | url('SegoeUI-Light.woff') format('woff'), 9 | url('SegoeUI-Light.ttf') format('truetype'); 10 | font-weight: 300; 11 | font-style: normal; 12 | } 13 | 14 | @font-face { 15 | font-family: 'Segoe UI'; 16 | src: url('SegoeUI-BoldItalic.eot'); 17 | src: local('Segoe UI Bold Italic'), local('SegoeUI-BoldItalic'), 18 | url('SegoeUI-BoldItalic.eot?#iefix') format('embedded-opentype'), 19 | url('SegoeUI-BoldItalic.woff') format('woff'), 20 | url('SegoeUI-BoldItalic.ttf') format('truetype'); 21 | font-weight: bold; 22 | font-style: italic; 23 | } 24 | 25 | @font-face { 26 | font-family: 'Segoe UI'; 27 | src: url('SegoeUI-SemiBold.eot'); 28 | src: local('Segoe UI Semibold'), local('SegoeUI-SemiBold'), 29 | url('SegoeUI-SemiBold.eot?#iefix') format('embedded-opentype'), 30 | url('SegoeUI-SemiBold.woff') format('woff'), 31 | url('SegoeUI-SemiBold.ttf') format('truetype'); 32 | font-weight: 600; 33 | font-style: normal; 34 | } 35 | 36 | @font-face { 37 | font-family: 'Segoe UI'; 38 | src: url('SegoeUI.eot'); 39 | src: local('Segoe UI'), local('SegoeUI'), 40 | url('SegoeUI.eot?#iefix') format('embedded-opentype'), 41 | url('SegoeUI.woff') format('woff'), 42 | url('SegoeUI.ttf') format('truetype'); 43 | font-weight: normal; 44 | font-style: normal; 45 | } 46 | 47 | @font-face { 48 | font-family: 'Segoe UI'; 49 | src: url('SegoeUI-Bold.eot'); 50 | src: local('Segoe UI Bold'), local('SegoeUI-Bold'), 51 | url('SegoeUI-Bold.eot?#iefix') format('embedded-opentype'), 52 | url('SegoeUI-Bold.woff') format('woff'), 53 | url('SegoeUI-Bold.ttf') format('truetype'); 54 | font-weight: bold; 55 | font-style: normal; 56 | } 57 | 58 | @font-face { 59 | font-family: 'Segoe UI'; 60 | src: url('SegoeUI-Italic.eot'); 61 | src: local('Segoe UI Italic'), local('SegoeUI-Italic'), 62 | url('SegoeUI-Italic.eot?#iefix') format('embedded-opentype'), 63 | url('SegoeUI-Italic.woff') format('woff'), 64 | url('SegoeUI-Italic.ttf') format('truetype'); 65 | font-weight: normal; 66 | font-style: italic; 67 | } 68 | -------------------------------------------------------------------------------- /icons/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumata/lampa/75cf3cdd7c46d8965cd3aa4572a1150edfb57718/icons/android-chrome-192x192.png -------------------------------------------------------------------------------- /icons/android-chrome-384x384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumata/lampa/75cf3cdd7c46d8965cd3aa4572a1150edfb57718/icons/android-chrome-384x384.png -------------------------------------------------------------------------------- /icons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumata/lampa/75cf3cdd7c46d8965cd3aa4572a1150edfb57718/icons/apple-touch-icon.png -------------------------------------------------------------------------------- /icons/browserconfig.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | #1d1f20 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /icons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumata/lampa/75cf3cdd7c46d8965cd3aa4572a1150edfb57718/icons/favicon-16x16.png -------------------------------------------------------------------------------- /icons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumata/lampa/75cf3cdd7c46d8965cd3aa4572a1150edfb57718/icons/favicon-32x32.png -------------------------------------------------------------------------------- /icons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumata/lampa/75cf3cdd7c46d8965cd3aa4572a1150edfb57718/icons/favicon.ico -------------------------------------------------------------------------------- /icons/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumata/lampa/75cf3cdd7c46d8965cd3aa4572a1150edfb57718/icons/mstile-150x150.png -------------------------------------------------------------------------------- /icons/safari-pinned-tab.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | 7 | 8 | Created by potrace 1.14, written by Peter Selinger 2001-2017 9 | 10 | 12 | 21 | 28 | 31 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /icons/site.webmanifest: -------------------------------------------------------------------------------- 1 | { 2 | "name": "", 3 | "short_name": "", 4 | "icons": [ 5 | { 6 | "src": "android-chrome-192x192.png", 7 | "sizes": "192x192", 8 | "type": "image/png" 9 | }, 10 | { 11 | "src": "android-chrome-384x384.png", 12 | "sizes": "384x384", 13 | "type": "image/png" 14 | } 15 | ], 16 | "theme_color": "#1d1f20", 17 | "background_color": "#1d1f20", 18 | "display": "standalone" 19 | } 20 | -------------------------------------------------------------------------------- /img/actor.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /img/bokeh-h/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumata/lampa/75cf3cdd7c46d8965cd3aa4572a1150edfb57718/img/bokeh-h/1.png -------------------------------------------------------------------------------- /img/bokeh-h/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumata/lampa/75cf3cdd7c46d8965cd3aa4572a1150edfb57718/img/bokeh-h/2.png -------------------------------------------------------------------------------- /img/bokeh-h/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumata/lampa/75cf3cdd7c46d8965cd3aa4572a1150edfb57718/img/bokeh-h/3.png -------------------------------------------------------------------------------- /img/bokeh-h/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumata/lampa/75cf3cdd7c46d8965cd3aa4572a1150edfb57718/img/bokeh-h/4.png -------------------------------------------------------------------------------- /img/bokeh-h/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumata/lampa/75cf3cdd7c46d8965cd3aa4572a1150edfb57718/img/bokeh-h/5.png -------------------------------------------------------------------------------- /img/bokeh-h/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumata/lampa/75cf3cdd7c46d8965cd3aa4572a1150edfb57718/img/bokeh-h/6.png -------------------------------------------------------------------------------- /img/bokeh/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumata/lampa/75cf3cdd7c46d8965cd3aa4572a1150edfb57718/img/bokeh/1.png -------------------------------------------------------------------------------- /img/bokeh/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumata/lampa/75cf3cdd7c46d8965cd3aa4572a1150edfb57718/img/bokeh/2.png -------------------------------------------------------------------------------- /img/bokeh/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumata/lampa/75cf3cdd7c46d8965cd3aa4572a1150edfb57718/img/bokeh/3.png -------------------------------------------------------------------------------- /img/bokeh/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumata/lampa/75cf3cdd7c46d8965cd3aa4572a1150edfb57718/img/bokeh/4.png -------------------------------------------------------------------------------- /img/bokeh/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumata/lampa/75cf3cdd7c46d8965cd3aa4572a1150edfb57718/img/bokeh/5.png -------------------------------------------------------------------------------- /img/bokeh/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumata/lampa/75cf3cdd7c46d8965cd3aa4572a1150edfb57718/img/bokeh/6.png -------------------------------------------------------------------------------- /img/empty.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /img/error.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /img/icons/add.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 10 | 11 | 12 | 13 | 14 | 16 | 17 | 18 | 19 | 20 | 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /img/icons/android/android-launchericon-144-144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumata/lampa/75cf3cdd7c46d8965cd3aa4572a1150edfb57718/img/icons/android/android-launchericon-144-144.png -------------------------------------------------------------------------------- /img/icons/android/android-launchericon-192-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumata/lampa/75cf3cdd7c46d8965cd3aa4572a1150edfb57718/img/icons/android/android-launchericon-192-192.png -------------------------------------------------------------------------------- /img/icons/android/android-launchericon-48-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumata/lampa/75cf3cdd7c46d8965cd3aa4572a1150edfb57718/img/icons/android/android-launchericon-48-48.png -------------------------------------------------------------------------------- /img/icons/android/android-launchericon-512-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumata/lampa/75cf3cdd7c46d8965cd3aa4572a1150edfb57718/img/icons/android/android-launchericon-512-512.png -------------------------------------------------------------------------------- /img/icons/android/android-launchericon-72-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumata/lampa/75cf3cdd7c46d8965cd3aa4572a1150edfb57718/img/icons/android/android-launchericon-72-72.png -------------------------------------------------------------------------------- /img/icons/android/android-launchericon-96-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumata/lampa/75cf3cdd7c46d8965cd3aa4572a1150edfb57718/img/icons/android/android-launchericon-96-96.png -------------------------------------------------------------------------------- /img/icons/check_dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | -------------------------------------------------------------------------------- /img/icons/film.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | -------------------------------------------------------------------------------- /img/icons/ios/100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumata/lampa/75cf3cdd7c46d8965cd3aa4572a1150edfb57718/img/icons/ios/100.png -------------------------------------------------------------------------------- /img/icons/ios/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumata/lampa/75cf3cdd7c46d8965cd3aa4572a1150edfb57718/img/icons/ios/1024.png -------------------------------------------------------------------------------- /img/icons/ios/114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumata/lampa/75cf3cdd7c46d8965cd3aa4572a1150edfb57718/img/icons/ios/114.png -------------------------------------------------------------------------------- /img/icons/ios/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumata/lampa/75cf3cdd7c46d8965cd3aa4572a1150edfb57718/img/icons/ios/120.png -------------------------------------------------------------------------------- /img/icons/ios/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumata/lampa/75cf3cdd7c46d8965cd3aa4572a1150edfb57718/img/icons/ios/128.png -------------------------------------------------------------------------------- /img/icons/ios/152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumata/lampa/75cf3cdd7c46d8965cd3aa4572a1150edfb57718/img/icons/ios/152.png -------------------------------------------------------------------------------- /img/icons/ios/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumata/lampa/75cf3cdd7c46d8965cd3aa4572a1150edfb57718/img/icons/ios/16.png -------------------------------------------------------------------------------- /img/icons/ios/167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumata/lampa/75cf3cdd7c46d8965cd3aa4572a1150edfb57718/img/icons/ios/167.png -------------------------------------------------------------------------------- /img/icons/ios/180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumata/lampa/75cf3cdd7c46d8965cd3aa4572a1150edfb57718/img/icons/ios/180.png -------------------------------------------------------------------------------- /img/icons/ios/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumata/lampa/75cf3cdd7c46d8965cd3aa4572a1150edfb57718/img/icons/ios/20.png -------------------------------------------------------------------------------- /img/icons/ios/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumata/lampa/75cf3cdd7c46d8965cd3aa4572a1150edfb57718/img/icons/ios/256.png -------------------------------------------------------------------------------- /img/icons/ios/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumata/lampa/75cf3cdd7c46d8965cd3aa4572a1150edfb57718/img/icons/ios/29.png -------------------------------------------------------------------------------- /img/icons/ios/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumata/lampa/75cf3cdd7c46d8965cd3aa4572a1150edfb57718/img/icons/ios/32.png -------------------------------------------------------------------------------- /img/icons/ios/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumata/lampa/75cf3cdd7c46d8965cd3aa4572a1150edfb57718/img/icons/ios/40.png -------------------------------------------------------------------------------- /img/icons/ios/50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumata/lampa/75cf3cdd7c46d8965cd3aa4572a1150edfb57718/img/icons/ios/50.png -------------------------------------------------------------------------------- /img/icons/ios/57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumata/lampa/75cf3cdd7c46d8965cd3aa4572a1150edfb57718/img/icons/ios/57.png -------------------------------------------------------------------------------- /img/icons/ios/58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumata/lampa/75cf3cdd7c46d8965cd3aa4572a1150edfb57718/img/icons/ios/58.png -------------------------------------------------------------------------------- /img/icons/ios/60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumata/lampa/75cf3cdd7c46d8965cd3aa4572a1150edfb57718/img/icons/ios/60.png -------------------------------------------------------------------------------- /img/icons/ios/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumata/lampa/75cf3cdd7c46d8965cd3aa4572a1150edfb57718/img/icons/ios/64.png -------------------------------------------------------------------------------- /img/icons/ios/76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumata/lampa/75cf3cdd7c46d8965cd3aa4572a1150edfb57718/img/icons/ios/76.png -------------------------------------------------------------------------------- /img/icons/ios/80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumata/lampa/75cf3cdd7c46d8965cd3aa4572a1150edfb57718/img/icons/ios/80.png -------------------------------------------------------------------------------- /img/icons/ios/87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumata/lampa/75cf3cdd7c46d8965cd3aa4572a1150edfb57718/img/icons/ios/87.png -------------------------------------------------------------------------------- /img/icons/keyboard/abc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /img/icons/keyboard/bksp.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /img/icons/keyboard/enter.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /img/icons/keyboard/lang.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /img/icons/keyboard/space.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /img/icons/keyboard/sym.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /img/icons/keyboard/up.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /img/icons/menu/bookmark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /img/icons/menu/browse.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 11 | 12 | 13 | 14 | 15 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /img/icons/menu/catalog.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 10 | 11 | 12 | 13 | 14 | 16 | 17 | 18 | 19 | 20 | 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /img/icons/menu/home.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /img/icons/menu/hourglass.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 11 | 23 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /img/icons/menu/info.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /img/icons/menu/like.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /img/icons/menu/movie.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 9 | 10 | 11 | 12 | 13 | 16 | 17 | 18 | 19 | 20 | 23 | 24 | 25 | 26 | 27 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /img/icons/menu/settings.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 12 | 39 | 40 | 41 | 42 | 43 | 44 | -------------------------------------------------------------------------------- /img/icons/menu/time.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 10 | 11 | 12 | 13 | 14 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /img/icons/menu/tv.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 11 | 12 | 13 | 14 | 15 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /img/icons/more.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 11 | 12 | 13 | 14 | 15 | 18 | 19 | 20 | 21 | 22 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /img/icons/player/next.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /img/icons/player/pause.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /img/icons/player/play.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /img/icons/player/playlist.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /img/icons/player/prev.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /img/icons/player/size.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /img/icons/player/subs.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /img/icons/pulse.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /img/icons/settings/more.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /img/icons/settings/panel.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /img/icons/settings/parser.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /img/icons/settings/player.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /img/icons/settings/server.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /img/icons/split.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /img/icons/time.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 10 | 11 | 12 | 13 | 14 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /img/icons/view.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 12 | 13 | 14 | 15 | 16 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /img/ili/bookmarks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumata/lampa/75cf3cdd7c46d8965cd3aa4572a1150edfb57718/img/ili/bookmarks.png -------------------------------------------------------------------------------- /img/ili/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumata/lampa/75cf3cdd7c46d8965cd3aa4572a1150edfb57718/img/ili/search.png -------------------------------------------------------------------------------- /img/ili/tv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumata/lampa/75cf3cdd7c46d8965cd3aa4572a1150edfb57718/img/ili/tv.png -------------------------------------------------------------------------------- /img/img_broken.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /img/img_load.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /img/loader.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /img/logo-icon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /img/logo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /img/video_poster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumata/lampa/75cf3cdd7c46d8965cd3aa4572a1150edfb57718/img/video_poster.png -------------------------------------------------------------------------------- /img/welcome.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumata/lampa/75cf3cdd7c46d8965cd3aa4572a1150edfb57718/img/welcome.jpg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Lampa - Каталог фильмов и сериалов 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 36 | 37 |
38 | 39 |
40 | 41 |
42 | 43 |
44 |
Ошибка
45 |
Не удалось загрузить файл:
46 |
47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 166 | 167 | -------------------------------------------------------------------------------- /lang/meta.js: -------------------------------------------------------------------------------- 1 | export default { 2 | languages: { 3 | ru: { 4 | code: 'ru', 5 | name: 'Русский', 6 | 7 | lang_choice_title: 'Добро пожаловать', 8 | lang_choice_subtitle: 'Выберите свой язык', 9 | }, 10 | en: { 11 | code: 'en', 12 | name: 'English', 13 | 14 | lang_choice_title: 'Welcome', 15 | lang_choice_subtitle: 'Choose your language', 16 | }, 17 | uk: { 18 | code: 'uk', 19 | name: 'Українська', 20 | 21 | lang_choice_title: 'Ласкаво просимо', 22 | lang_choice_subtitle: 'Виберіть мову', 23 | }, 24 | be: { 25 | code: 'be', 26 | name: 'Беларуская', 27 | 28 | lang_choice_title: 'Сардэчна запрашаем', 29 | lang_choice_subtitle: 'Выберыце сваю мову', 30 | }, 31 | zh: { 32 | code: 'zh', 33 | name: '简体中文', 34 | 35 | lang_choice_title: '欢迎', 36 | lang_choice_subtitle: '选择你的语言', 37 | }, 38 | pt: { 39 | code: 'pt', 40 | name: 'Português', 41 | 42 | lang_choice_title: 'Bem-vindo', 43 | lang_choice_subtitle: 'Escolhe o teu idioma', 44 | }, 45 | bg: { 46 | code: 'bg', 47 | name: 'Български', 48 | 49 | lang_choice_title: 'Здравейте', 50 | lang_choice_subtitle: 'Изберете вашият език', 51 | }, 52 | he: { 53 | code: 'he', 54 | name: 'עִברִית', 55 | 56 | lang_choice_title: 'ברוך הבא', 57 | lang_choice_subtitle: 'בחר את השפה שלך', 58 | }, 59 | cs: { 60 | code: "cs", 61 | name: "Čeština", 62 | 63 | lang_choice_title: "Vítejte", 64 | lang_choice_subtitle: "Vyberte svůj jazyk", 65 | } 66 | } 67 | } -------------------------------------------------------------------------------- /msx-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumata/lampa/75cf3cdd7c46d8965cd3aa4572a1150edfb57718/msx-logo.png -------------------------------------------------------------------------------- /msx/lang/ru.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Русский/Russian", 3 | "author": "DevelopGin", 4 | "version": "1.0.0", 5 | "properties": { 6 | "format:date": "dd/mm/yy", 7 | "format:day": "D dd/mm", 8 | "format:full_day": "DD dd/mm/yyyy", 9 | "format:long_date": "MM d, yyyy", 10 | "format:long_day": "D mm/dd/yyyy", 11 | "format:long_time": "h:mm:ss/ampm", 12 | "format:separator": ", ", 13 | "format:time": "h:mm/ampm", 14 | "label:about": "О программе", 15 | "label:animations": "Анимация", 16 | "label:application": "Приложение", 17 | "label:apply": "Применить", 18 | "label:audio": "Звук", 19 | "label:auto": "Авто", 20 | "label:auto_and_fixed": "Автоматически & Фиксировано", 21 | "label:cancel": "Отмена", 22 | "label:clear": "Очистить", 23 | "label:click_and_swipe": "Нажатия & Жесты", 24 | "label:client": "Клиент", 25 | "label:complete_start_parameter": "Установить плейлист", 26 | "label:complex": "Комплексный", 27 | "label:config_error": "Ошибка Конфигурационного Файла", 28 | "label:config_not_available": "Конфигурационный Файл Недоступен", 29 | "label:contact": "Контакты", 30 | "label:content_guide": "Для Начинающих", 31 | "label:content_info": "Плейлист", 32 | "label:content_not_available": "Нет Контента", 33 | "label:content_server": "Сервер", 34 | "label:continue": "Продолжить", 35 | "label:copyright": "Сopyright", 36 | "label:current_time": "Текущее Время", 37 | "label:data_load_error": "Ошибка загрузки данных", 38 | "label:debug": "Отладка", 39 | "label:default": "По Умолчанию", 40 | "label:detected": "Определено", 41 | "label:detected_and_fixed": "Определено & Зафиксировано", 42 | "label:device": "Устройство", 43 | "label:dictionary": "Перевод", 44 | "label:drag_and_drop": "Drag & Drop", 45 | "label:error": "{ico:msx-red:error} Ошибка", 46 | "label:exit": "Выход", 47 | "label:extended_information": "Дополнительная Информация", 48 | "label:fast": "Быстро", 49 | "label:fixed": "Зафиксировано", 50 | "label:framework": "Framework", 51 | "label:fullscreen": "Во весь экран", 52 | "label:home": "Главная", 53 | "label:host_server": "Хост Сервер", 54 | "label:hover_effect": "Эффект наведения", 55 | "label:info": "{ico:msx-blue:info} Информация", 56 | "label:input_type": "Тип Ввода", 57 | "label:layout": "Разрешение", 58 | "label:leave": "Выйти", 59 | "label:link_validation": "Подтверждение Ссылок", 60 | "label:load_error": "Ошибка загрузки", 61 | "label:log": "Журнал Событий", 62 | "label:menu": "Меню", 63 | "label:menu_button": "Кнопка Меню", 64 | "label:menu_not_available": "Меню Не Доступно", 65 | "label:minimalistic": "Минимум", 66 | "label:name": "Имя", 67 | "label:navigation_frame": "Навигационное окно", 68 | "label:no": "Нет", 69 | "label:none": "Не задано", 70 | "label:normal": "Нормально", 71 | "label:not_available": "Не доступно", 72 | "label:not_fixed": "Не Зафиксировано", 73 | "label:off": "Выкл.", 74 | "label:ok": "OK", 75 | "label:on": "Вкл.", 76 | "label:options": "Настройки", 77 | "label:parameter": "Параметр", 78 | "label:platform": "Платформа", 79 | "label:platform_options": "Настройки Платформы", 80 | "label:player": "Плеер", 81 | "label:random_playback": "Случайное Воспроизведение", 82 | "label:reload": "Перезагрузка", 83 | "label:remote_control": "Удаленное Воспроизведение", 84 | "label:remote_only": "Удаленно", 85 | "label:reset": "Сбросить", 86 | "label:reset_settings": "Сбросить Настройки", 87 | "label:reset_start_parameter": "Сбросить Плейлист", 88 | "label:restart": "Перезапуск", 89 | "label:scale": "Масштаб", 90 | "label:settings": "Настройки", 91 | "label:setup": "Установка", 92 | "label:setup_start_parameter": "Установить Плейлист", 93 | "label:slideshow_interval": "Интервал Слайдшоу", 94 | "label:slow": "Медленно", 95 | "label:start_data_not_available": "Данные Плейлиста Недоступны", 96 | "label:start_error": "Ошибка Плейлиста", 97 | "label:start_parameter": "Плейлист", 98 | "label:success": "{ico:msx-green:check-circle} Успешно", 99 | "label:transformations": "Трасформации", 100 | "label:tv_control": "Управление ТВ", 101 | "label:unknown": "Неизвестно", 102 | "label:url_parameters": "Параметры URL", 103 | "label:user_agent": "User Agent", 104 | "label:validate_links": "Подтверждение Ссылок", 105 | "label:version": "Версия", 106 | "label:very_fast": "Очень быстро", 107 | "label:very_slow": "Очень медленно", 108 | "label:video": "Видео", 109 | "label:video_speed": "Скорость воспроизведения", 110 | "label:volume": "Громкость", 111 | "label:warning": "{ico:msx-yellow:warning} Внимание", 112 | "label:web": "Сайт", 113 | "label:welcome": "Приветствие", 114 | "label:yes": "Да", 115 | "label:zoom": "Зум", 116 | "list:day_long_names": "Воскресенье,Понедельник,Вторник,Среда,Четверг,Пятница,Суббота", 117 | "list:day_names": "Вс,Пон,Вт,Ср,Чт,Пт,Суб", 118 | "list:month_long_names": "Январь,Февраль,Март,Апрель,Май,Июнь,Июль,Август,Сентябрь,Октябрь,Ноябрь,Декабрь", 119 | "list:month_names": "Янв,Фев,Мар,Апр,Май,Июн,Июл,Авг,Сент,Окт,Ноя,Дек", 120 | "message:action_error_1": "Ошибка исполнения: Code is invalid.", 121 | "message:action_error_2": "Ошибка исполнения: Action is missing or empty.", 122 | "message:action_not_available": "Не задано действие.", 123 | "message:action_not_available_for_platform": "Текущая платформа не поддерживает это действие.", 124 | "message:action_warning_1": "Skip action '{ACTION}', because max action call stack has been reached.", 125 | "message:action_warning_2": "Unknown action: '{ACTION}'.", 126 | "message:action_warning_3": "Live action is invalid in this context.", 127 | "message:action_warning_4": "Invalid data action: Data is missing.", 128 | "message:action_warning_5": "Invalid data action: Actions are missing.", 129 | "message:action_warning_6": "Unknown logger action: '{ACTION}'.", 130 | "message:action_warning_7": "Invalid trigger action: '{ACTION}'.", 131 | "message:action_warning_8": "Unknown system action: '{ACTION}'.", 132 | "message:action_warning_9": "Unknown history action: '{ACTION}'.", 133 | "message:action_warning_10": "Unknown settings action: '{ACTION}'.", 134 | "message:action_warning_11": "Unknown volume action: '{ACTION}'.", 135 | "message:action_warning_12": "Unknown player action: '{ACTION}'.", 136 | "message:action_warning_13": "Unknown player progress action: '{ACTION}'.", 137 | "message:action_warning_14": "Unknown player label action: '{ACTION}'.", 138 | "message:action_warning_15": "Unknown player commit action: '{ACTION}'.", 139 | "message:action_warning_16": "Unknown player speed action: '{ACTION}'.", 140 | "message:action_warning_17": "Unknown busy action: '{ACTION}'.", 141 | "message:action_warning_18": "Unknown invalidate action: '{ACTION}'.", 142 | "message:action_warning_19": "Unknown update action: '{ACTION}'.", 143 | "message:action_warning_20": "Unknown reload action: '{ACTION}'.", 144 | "message:action_warning_21": "Unknown resume action: '{ACTION}'.", 145 | "message:action_warning_22": "Unknown ticking action: '{ACTION}'.", 146 | "message:action_warning_23": "Unknown release action: '{ACTION}'.", 147 | "message:action_warning_24": "Unknown time action: '{ACTION}'.", 148 | "message:action_warning_25": "Unknown slider action: '{ACTION}'.", 149 | "message:action_warning_26": "Unknown slider labels action: '{ACTION}'.", 150 | "message:action_warning_27": "Unknown interaction action: '{ACTION}'.", 151 | "message:action_warning_28": "Unknown interaction commit action: '{ACTION}'.", 152 | "message:action_warning_29": "Unknown log action: '{ACTION}'.", 153 | "message:action_warning_30": "Unknown player button action: '{ACTION}'.", 154 | "message:action_warning_31": "Invalid player button action: '{ACTION}'.", 155 | "message:animate_info": "Тип анимации. {dic:submessage:performance_info} {dic:submessage:preset_recommended}", 156 | "message:animate_set": "Анимация установлена: {txt:msx-white:{ANIMATE}}.", 157 | "message:animate_set_error": "Set animations failed: Invalid value: {txt:msx-white:'{ANIMATE}'}.", 158 | "message:audio_not_available": "Audio is not available.", 159 | "message:audio_url_missing": "Audio URL is missing.", 160 | "message:complete_start_parameter_info": "Start parameter successfully loaded. Do you want to set it up and reload the application?", 161 | "message:config_error_1": "Invalid config data.", 162 | "message:config_error_2": "Missing config data.", 163 | "message:content_missing": "Content is missing.", 164 | "message:content_not_available": "No content available.", 165 | "message:content_warning_1": "Maximum page offset reached: {POSITION}.", 166 | "message:content_warning_2": "{ITEM}[{REF}] ID is already registered: '{ID}'.", 167 | "message:content_warning_3": "{ITEM}[{REF}] ID is invalid: '{ID}'.", 168 | "message:content_warning_4": "{ITEM}[{REF}] type is invalid: '{TYPE}': For the overlay/underlay page, only items of type 'space' are allowed.", 169 | "message:content_warning_5": "{ITEM}[{REF}] layout is invalid: '{LAYOUT}': Position is already registered.", 170 | "message:content_warning_6": "{ITEM}[{REF}] layout is invalid: '{LAYOUT}': Values are out of range.", 171 | "message:content_warning_7": "{ITEM}[{REF}] layout is invalid: '{LAYOUT}': Some values are invalid.", 172 | "message:content_warning_8": "{ITEM}[{REF}] layout is invalid: '{LAYOUT}'.", 173 | "message:content_warning_9": "{ITEM}[{REF}] layout is missing.", 174 | "message:content_warning_10": "Page[{PAGE_INDEX}] has no selectable items.", 175 | "message:content_warning_11": "Content has no selectable items.", 176 | "message:data_load_error": "Data could not be loaded.", 177 | "message:dialog_warning": "Unknown dialog: '{DIALOG}'.", 178 | "message:exit_info": "Do you want to exit the application?", 179 | "message:feature_not_available": "This feature is not yet available.", 180 | "message:hover_effect_info": "Indicates whether a hover effect should be used. If you control the application with a pointer device, this effect helps you to select items. You can ignore this settings if you control the application with a physical remote control or with touch.", 181 | "message:hover_effect_set": "Hover effect has been set to: {txt:msx-white:{HOVER_EFFECT}}.", 182 | "message:hover_effect_set_error": "Set hover effect failed: Invalid value: {txt:msx-white:'{HOVER_EFFECT}'}.", 183 | "message:image_list_missing": "Image list is missing.", 184 | "message:input_info": "Управление через интерфейс. Если вы управляете через пульт можете игнорировать эту настройку. {dic:submessage:reload_required}", 185 | "message:input_set": "Input type has been set to: {txt:msx-white:{INPUT}}.{br}{dic:submessage:submessage:reload_request}", 186 | "message:input_set_error": "Set input type failed: Invalid value: {txt:msx-white:'{INPUT}'}.", 187 | "message:interaction_commit_error": "Commit interaction data failed.", 188 | "message:interaction_commit_warning": "Commit interaction data is not possible, because no interaction plugin is loaded.", 189 | "message:interaction_error": "Invalid interaction URL: '{SOURCE}': URL must be a valid HTTP(S) URL.", 190 | "message:interaction_info": "No interaction plugin loaded, please load one to use interaction functions.", 191 | "message:key_warning_1": "Unknown key: '{KEY}'.", 192 | "message:key_warning_2": "Invalid key code: '{CODE}'.", 193 | "message:layout_info": "The resolution of the layout. {dic:submessage:performance_info} {dic:submessage:reload_required} {dic:submessage:preset_recommended}", 194 | "message:layout_set": "Layout has been set to: {txt:msx-white:{LAYOUT}}.{br}{dic:submessage:submessage:reload_request}", 195 | "message:layout_set_error": "Set layout failed: Invalid value: {txt:msx-white:'{LAYOUT}'}.", 196 | "message:live_action_not_available": "No live action available.", 197 | "message:menu_button_info": "The menu button is used to quickly access all major controls. By default, the menu {ico:msx-white:menu} and the blue {ico:msx-blue:stop} button is mapped to this function. Additionally, you can define an extra button here. Press {txt:msx-white:OK} to reset the entry.", 198 | "message:menu_button_set": "Menu button has been set to: {txt:msx-white:{MENU_BUTTON}}.", 199 | "message:menu_button_set_error_1": "Set menu button failed: Invalid action value: {txt:msx-white:'{MENU_BUTTON_ACTION}'}.", 200 | "message:menu_button_set_error_2": "Set menu button failed: Invalid key code value: {txt:msx-white:'{MENU_BUTTON_KEY_CODE}'}.", 201 | "message:menu_missing": "Menu is missing.", 202 | "message:menu_warning_1": "Maximum menu position reached: {POSITION}.", 203 | "message:menu_warning_2": "Menu item ID is already registered: '{ID}'.", 204 | "message:menu_warning_3": "Menu item ID is invalid: '{ID}'.", 205 | "message:menu_warning_4": "Menu has no selectable items.", 206 | "message:player_commit_error": "Commit player data failed.", 207 | "message:player_commit_warning": "Commit player data is not supported.", 208 | "message:player_error_1": "Video or audio file could not be played:{br}{CONTEXT}", 209 | "message:player_error_2": "Loading of video or audio file has been aborted:{br}{CONTEXT}", 210 | "message:player_error_3": "Video or audio file could not be played, because of network issues:{br}{CONTEXT}", 211 | "message:player_error_4": "An error has occured while playing the video or audio file:{br}{CONTEXT}", 212 | "message:player_error_5": "Video or audio file could not be played, because the source is not supported:{br}{CONTEXT}", 213 | "message:player_info_1": "No video or audio file loaded, please load one to open the player.", 214 | "message:player_info_2": "No video or audio file loaded, please load one to use player functions.", 215 | "message:playlist_empty": "Playlist is empty.", 216 | "message:playlist_missing": "Playlist is missing.", 217 | "message:random_playback_info": "Indicates whether playlist items are played in random order.", 218 | "message:random_playback_set": "Random playback has been set to: {txt:msx-white:{RANDOM_PLAYBACK}}.", 219 | "message:random_playback_set_error": "Set random playback failed: Invalid value: {txt:msx-white:'{RANDOM_PLAYBACK}'}.", 220 | "message:reload_info": "Do you want to reload the application?", 221 | "message:remote_info": "The type of the on-screen remote control. If you control the application with a physical remote control, you can ignore this settings. {dic:submessage:reload_required}", 222 | "message:remote_set": "Remote control has been set to: {txt:msx-white:{REMOTE}}.{br}{dic:submessage:submessage:reload_request}", 223 | "message:remote_set_error": "Set remote control failed: Invalid value: {txt:msx-white:'{REMOTE}'}.", 224 | "message:reset_settings_info": "Do you want to reset settings and reload the application?", 225 | "message:reset_start_parameter_info": "Do you want to reset the start parameter and reload the application?", 226 | "message:restart_info": "Do you want to restart the application?", 227 | "message:scale_info": "The scale factor of the layout. By default, this is detected automatically. Depending on the platform, the auto-detection may not work correctly. If the layout does not fit into the screen, you can set this factor to a fixed value. {dic:submessage:reload_required}", 228 | "message:scale_set": "Scale factor has been set to: {txt:msx-white:'{SCALE}'}.{br}{dic:submessage:submessage:reload_request}", 229 | "message:scale_set_error": "Set scale factor failed: Invalid value: {txt:msx-white:'{SCALE}'}.", 230 | "message:see_log": "Please see log for further details.", 231 | "message:setup_start_parameter_info": "Do you want to set up the following start parameter and reload the application?", 232 | "message:slider_info": "No slideshow loaded, please load one to use slider functions.", 233 | "message:slider_warning": "Image list has no visible items.", 234 | "message:slideshow_interval_info": "The time until the next image is changed in the slideshow.", 235 | "message:slideshow_interval_set": "Slideshow interval has been set to: {txt:msx-white:{SLIDESHOW_INTERVAL}}.", 236 | "message:slideshow_interval_set_error": "Set slideshow interval failed: Invalid value: {txt:msx-white:'{SLIDESHOW_INTERVAL}'}.", 237 | "message:start_parameter_error_1": "Invalid start parameter: '{PARAMETER}'.{br}Parameter must start with 'menu:' or 'content:'.", 238 | "message:start_parameter_error_2": "Invalid start parameter: '{PARAMETER}'.{br}Parameter must be a full string.", 239 | "message:start_parameter_error_3": "Missing start parameter.", 240 | "message:start_parameter_error_4": "Invalid start parameter name: '{NAME}'.{br}Start parameter name must be a full string.", 241 | "message:start_parameter_error_5": "Missing start parameter name.", 242 | "message:start_parameter_error_6": "Invalid start parameter version: '{VERSION}'.{br}Start parameter version must be a full string.", 243 | "message:start_parameter_error_7": "Missing start parameter version.", 244 | "message:start_parameter_error_8": "Missing start data.", 245 | "message:start_parameter_info": "The start parameter specifies which menu or content is loaded at startup. Once you have completed the start parameter setup, your content is loaded every time you start the application. For more information, please visit {txt:msx-white:http://msx.benzac.de/info/}.", 246 | "message:start_parameter_warning": "Start parameter must be loaded via HTTPS, because the application was loaded in a secure context.{br}Please set the security lock and try it again.", 247 | "message:start_parameter_welcome_info_1": "{ico:msx-blue:info} This start parameter is also set as welcome pages start action in the settings.", 248 | "message:start_parameter_welcome_info_2": "{ico:msx-blue:info} This start parameter is also set as welcome pages content in the settings.", 249 | "message:start_parameter_welcome_info_3": "{ico:msx-blue:info} The start parameter {col:msx-white}{NAME} {VERSION}{col} is also set as welcome pages start action in the settings.", 250 | "message:start_parameter_welcome_info_4": "{ico:msx-blue:info} The start parameter {col:msx-white}{NAME} {VERSION}{col} is also set as welcome pages content in the settings.", 251 | "message:template_warning_1": "Template area is invalid: '{AREA}': Values are out of range.", 252 | "message:template_warning_2": "Template area is invalid: '{AREA}': Some values are invalid.", 253 | "message:template_warning_3": "Template layout is invalid: '{LAYOUT}': Values are out of range.", 254 | "message:template_warning_4": "Template layout is invalid: '{LAYOUT}': Some values are invalid.", 255 | "message:template_warning_5": "Template layout is invalid: '{LAYOUT}'.", 256 | "message:template_warning_6": "Template layout is missing.", 257 | "message:time_success": "Time initialization completed.", 258 | "message:time_warning_1": "Unexpected timestamp difference: {DIFF}. A time offset is applied to fix this issue.", 259 | "message:time_warning_2": "Unexpected time zone: {CLIENT} != {SERVER}. A time zone offset is applied to fix this issue.", 260 | "message:transform_info": "Тип трансформации. {dic:submessage:performance_info} {dic:submessage:reload_required} {dic:submessage:preset_recommended}", 261 | "message:transform_set": "Тип трансформации установлен: {txt:msx-white:{TRANSFORM}}.{br}{dic:submessage:submessage:reload_request}", 262 | "message:transform_set_error": "Set transformations failed: Invalid value: {txt:msx-white:'{TRANSFORM}'}.", 263 | "message:validate_link": "A link is opened. This can freeze the application, because not every link is suitable for each platform. Additionally, it may happen that it is not possible to return to the current page. Please validate the link and press continue if you want to open it.{br}{br}Link: {str:msx-white:{LINK}}", 264 | "message:validate_links_info": "Indicates whether links should be checked with a short validation panel. Opening links can freeze the application, because not every link is suitable for each platform. Additionally, it may happen that it is not possible to return to the current page. Therefore, it is recommended to validate links, before they are opened.", 265 | "message:validate_links_set": "Validate links has been set to: {txt:msx-white:{VALIDATE_LINKS}}.", 266 | "message:validate_links_set_error": "Set validate links failed: Invalid value: {txt:msx-white:'{VALIDATE_LINKS}'}.", 267 | "message:video_not_available": "Видео не доступно.", 268 | "message:video_url_missing": "Нет ссылки на видео.", 269 | "message:zoom_info": "The zoom factor of the layout. By default, the resolution of the layout is set via the {txt:msx-white:Layout} settings and no additional zooming is performed. If the layout does not fit into the screen, you can set this factor to {txt:msx-white:Auto}. {dic:submessage:reload_required}", 270 | "message:zoom_set": "Zoom factor has been set to: {txt:msx-white:'{ZOOM}'}.{br}{dic:submessage:submessage:reload_request}", 271 | "message:zoom_set_error": "Set zoom factor failed: Invalid value: {txt:msx-white:'{ZOOM}'}.", 272 | "submessage:performance_info": "Зависит от платформы, изменение этого параметра может ускорить или замедлить работу приложения", 273 | "submessage:preset_recommended": "Лучше оставлять значение по умолчанию.", 274 | "submessage:reload_request": "Перезагрузите приложение для применения настроек.", 275 | "submessage:reload_required": "Для применения настроек надо перезагрузить приложение.", 276 | "unit:am": " AM", 277 | "unit:day": " д", 278 | "unit:days": " д", 279 | "unit:hours": " ч", 280 | "unit:minutes": " мин", 281 | "unit:pm": " PM", 282 | "unit:seconds": " сек" 283 | } 284 | } 285 | -------------------------------------------------------------------------------- /msx/start.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Загрузчик приложений", 3 | "headline": "Загрузчик приложений", 4 | "extension": "Версия MSX: 1.0.0", 5 | "version": "1.0.0", 6 | "parameter": "content:{PREFIX}{domain}/msx/start.json", 7 | "note": "For this service, Media Station X 0.1.120 or higher is needed", 8 | "action": "[settings:validate_links:0|home]", 9 | "dictionary": "{PREFIX}{domain}/msx/lang/ru.json", 10 | "pages": [ 11 | { 12 | "items": [ 13 | { 14 | "id": "description", 15 | "type": "space", 16 | "layout": "5,0,5,5", 17 | "text": "" 18 | }, 19 | { 20 | "type": "control", 21 | "layout": "0,0,5,1", 22 | "image": "{PREFIX}{domain}/msx-logo.png", 23 | "label": "Lampa", 24 | "action": "link:{PREFIX}{domain}", 25 | "selection": { 26 | "important": true, 27 | "action": "update:content:description", 28 | "data": { 29 | "text": [ 30 | "{txt:msx-white: Lampa} — Просмотр популярных фильмов, новинок, топ и т.д" 31 | ] 32 | } 33 | } 34 | }, 35 | { 36 | "type": "control", 37 | "layout": "0,1,5,1", 38 | "image": "http://msx.benzac.de/img/icon_raw.png", 39 | "label": "FXMLPlayer", 40 | "action": "execute:http://msxplayer.ru/msx/get-start-action", 41 | "selection": { 42 | "important": true, 43 | "action": "update:content:description", 44 | "data": { 45 | "text": [ 46 | "{txt:msx-white: FXMLPlayer} - это программа для удобного просмотра тв, фильмов, телепередач и другого.{br}", 47 | "{ico:msx-green:add-circle} Поддержка {txt:msx-white:лучших} порталов FXML {txt:msx-white: RFork Online, KinoPub, CoolTV, KinoBoom} {br}", 48 | "{ico:msx-green:add-circle} Возможность загрузки фильмов и сериалов из приложения HDVideoBox, LazyMedia Deluxe{br}{br}", 49 | "{ico:info}Данная версия грузит обновленную версию Media Station X из интернета, так как для плейлиста FXMLPlayer требуется версия Media Station X не ниже версии {txt:msx-white:0.1.120}{br}" 50 | ] 51 | } 52 | } 53 | }, 54 | { 55 | "type": "control", 56 | "layout": "0,2,5,1", 57 | "image": "http://static.tempdata.forkplayer.tv/staticfiles/fimg/forkicon.png", 58 | "label": "ForkPlayer", 59 | "action": "link:http://msx.lnka.ru/msx/distributive_forkplayer", 60 | "selection": { 61 | "important": true, 62 | "action": "update:content:description", 63 | "data": { 64 | "text": [ 65 | "{txt:msx-white: ForkPlayer} — это прикладное программное обеспечение для просмотра fxml(Fork eXtensible Markup Language)-страниц в глобальной сети. ForkPlayer используют для запроса, обработки, манипулирования и отображения содержания fxml-сайтов а также для непосредственного просмотра содержания файлов плейлистов (m3u,xml,xspf), изображений (gif, jpeg, png), аудио-видео форматов (mp3, mpeg, mkv), потокового видео (udp, hls)." 66 | ] 67 | } 68 | } 69 | }, 70 | { 71 | "type": "control", 72 | "layout": "0,3,5,1", 73 | "image": "http://ott-play.com/android-chrome-192x192.png", 74 | "label": "OTT-Play", 75 | "action": "link:http://ott-play.com/f/", 76 | "selection": { 77 | "important": true, 78 | "action": "update:content:description", 79 | "data": { 80 | "text": [ 81 | "{txt:msx-white: OTT-Play} — мультиплатформенный плеер IPTV, доступный на телевизорах, на ТВ-приставках и на мобильных устройствах." 82 | ] 83 | } 84 | } 85 | }, 86 | { 87 | "type": "control", 88 | "layout": "0,4,5,1", 89 | "image": "https://ottplayer.es/public/images/logo_temp.svg", 90 | "label": "OTTplayer", 91 | "action": "link:http://widget.ottplayer.es", 92 | "selection": { 93 | "important": true, 94 | "action": "update:content:description", 95 | "data": { 96 | "text": ["{txt:msx-white: OTTplayer} — сервис, позволяющий собрать все ваше IP-телевидение в один плейлист, настроить порядок каналов, получить электронный телегид."] 97 | } 98 | } 99 | } 100 | ] 101 | } 102 | ] 103 | } 104 | -------------------------------------------------------------------------------- /og.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumata/lampa/75cf3cdd7c46d8965cd3aa4572a1150edfb57718/og.png -------------------------------------------------------------------------------- /sound/bell.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumata/lampa/75cf3cdd7c46d8965cd3aa4572a1150edfb57718/sound/bell.ogg -------------------------------------------------------------------------------- /sound/hover.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumata/lampa/75cf3cdd7c46d8965cd3aa4572a1150edfb57718/sound/hover.ogg -------------------------------------------------------------------------------- /vender/keypad/style.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * 3 | * simple-keyboard v2.32.123 4 | * https://github.com/hodgef/simple-keyboard 5 | * 6 | * Copyright (c) Francisco Hodge (https://github.com/hodgef) 7 | * 8 | * This source code is licensed under the MIT license found in the 9 | * LICENSE file in the root directory of this source tree. 10 | * 11 | */.hg-theme-default{width:100%;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;box-sizing:border-box;overflow:hidden;touch-action:manipulation}.hg-theme-default .hg-button span{pointer-events:none}.hg-theme-default button.hg-button{border-width:0;outline:0;font-size:inherit}.hg-theme-default{font-family:"HelveticaNeue-Light","Helvetica Neue Light","Helvetica Neue",Helvetica,Arial,"Lucida Grande",sans-serif;background-color:#ececec;padding:5px;border-radius:5px}.hg-theme-default .hg-button{display:inline-block;flex-grow:1}.hg-theme-default .hg-row{display:flex}.hg-theme-default .hg-row:not(:last-child){margin-bottom:5px}.hg-theme-default .hg-row .hg-button-container,.hg-theme-default .hg-row .hg-button:not(:last-child){margin-right:5px}.hg-theme-default .hg-row>div:last-child{margin-right:0}.hg-theme-default .hg-row .hg-button-container{display:flex}.hg-theme-default .hg-button{box-shadow:0 0 3px -1px rgba(0,0,0,.3);height:40px;border-radius:5px;box-sizing:border-box;padding:5px;background:#fff;border-bottom:1px solid #b5b5b5;cursor:pointer;display:flex;align-items:center;justify-content:center;-webkit-tap-highlight-color:rgba(0,0,0,0)}.hg-theme-default .hg-button.hg-activeButton{background:#efefef}.hg-theme-default.hg-layout-numeric .hg-button{width:33.3%;height:60px;align-items:center;display:flex;justify-content:center}.hg-theme-default .hg-button.hg-button-numpadadd,.hg-theme-default .hg-button.hg-button-numpadenter{height:85px}.hg-theme-default .hg-button.hg-button-numpad0{width:105px}.hg-theme-default .hg-button.hg-button-com{max-width:85px}.hg-theme-default .hg-button.hg-standardBtn.hg-button-at{max-width:45px}.hg-theme-default .hg-button.hg-selectedButton{background:rgba(5,25,70,.53);color:#fff}.hg-theme-default .hg-button.hg-standardBtn[data-skbtn=".com"]{max-width:82px}.hg-theme-default .hg-button.hg-standardBtn[data-skbtn="@"]{max-width:60px} 12 | /*# sourceMappingURL=index.css.map */ -------------------------------------------------------------------------------- /vender/notify/notify.js: -------------------------------------------------------------------------------- 1 | /* Notify.js - http://notifyjs.com/ Copyright (c) 2015 MIT */ 2 | (function (factory) { 3 | // UMD start 4 | // https://github.com/umdjs/umd/blob/master/jqueryPluginCommonjs.js 5 | if (typeof define === 'function' && define.amd) { 6 | // AMD. Register as an anonymous module. 7 | define(['jquery'], factory); 8 | } else if (typeof module === 'object' && module.exports) { 9 | // Node/CommonJS 10 | module.exports = function( root, jQuery ) { 11 | if ( jQuery === undefined ) { 12 | // require('jQuery') returns a factory that requires window to 13 | // build a jQuery instance, we normalize how we use modules 14 | // that require this pattern but the window provided is a noop 15 | // if it's defined (how jquery works) 16 | if ( typeof window !== 'undefined' ) { 17 | jQuery = require('jquery'); 18 | } 19 | else { 20 | jQuery = require('jquery')(root); 21 | } 22 | } 23 | factory(jQuery); 24 | return jQuery; 25 | }; 26 | } else { 27 | // Browser globals 28 | factory(jQuery); 29 | } 30 | }(function ($) { 31 | //IE8 indexOf polyfill 32 | var indexOf = [].indexOf || function(item) { 33 | for (var i = 0, l = this.length; i < l; i++) { 34 | if (i in this && this[i] === item) { 35 | return i; 36 | } 37 | } 38 | return -1; 39 | }; 40 | 41 | var pluginName = "notify"; 42 | var pluginClassName = pluginName + "js"; 43 | var blankFieldName = pluginName + "!blank"; 44 | 45 | var positions = { 46 | t: "top", 47 | m: "middle", 48 | b: "bottom", 49 | l: "left", 50 | c: "center", 51 | r: "right" 52 | }; 53 | var hAligns = ["l", "c", "r"]; 54 | var vAligns = ["t", "m", "b"]; 55 | var mainPositions = ["t", "b", "l", "r"]; 56 | var opposites = { 57 | t: "b", 58 | m: null, 59 | b: "t", 60 | l: "r", 61 | c: null, 62 | r: "l" 63 | }; 64 | 65 | var parsePosition = function(str) { 66 | var pos; 67 | pos = []; 68 | $.each(str.split(/\W+/), function(i, word) { 69 | var w; 70 | w = word.toLowerCase().charAt(0); 71 | if (positions[w]) { 72 | return pos.push(w); 73 | } 74 | }); 75 | return pos; 76 | }; 77 | 78 | var styles = {}; 79 | 80 | var coreStyle = { 81 | name: "core", 82 | html: "
\n
\n
\n
", 83 | css: "." + pluginClassName + "-corner {\n position: fixed;\n margin: 5px;\n z-index: 1050;\n}\n\n." + pluginClassName + "-corner ." + pluginClassName + "-wrapper,\n." + pluginClassName + "-corner ." + pluginClassName + "-container {\n position: relative;\n display: block;\n height: inherit;\n width: inherit;\n margin: 3px;\n}\n\n." + pluginClassName + "-wrapper {\n z-index: 1;\n position: absolute;\n display: inline-block;\n height: 0;\n width: 0;\n}\n\n." + pluginClassName + "-container {\n display: none;\n z-index: 1;\n position: absolute;\n}\n\n." + pluginClassName + "-hidable {\n cursor: pointer;\n}\n\n[data-notify-text],[data-notify-html] {\n position: relative;\n}\n\n." + pluginClassName + "-arrow {\n position: absolute;\n z-index: 2;\n width: 0;\n height: 0;\n}" 84 | }; 85 | 86 | var stylePrefixes = { 87 | "border-radius": ["-webkit-", "-moz-"] 88 | }; 89 | 90 | var getStyle = function(name) { 91 | return styles[name]; 92 | }; 93 | 94 | var removeStyle = function(name) { 95 | if (!name) { 96 | throw "Missing Style name"; 97 | } 98 | if (styles[name]) { 99 | delete styles[name]; 100 | } 101 | }; 102 | 103 | var addStyle = function(name, def) { 104 | if (!name) { 105 | throw "Missing Style name"; 106 | } 107 | if (!def) { 108 | throw "Missing Style definition"; 109 | } 110 | if (!def.html) { 111 | throw "Missing Style HTML"; 112 | } 113 | //remove existing style 114 | var existing = styles[name]; 115 | if (existing && existing.cssElem) { 116 | if (window.console) { 117 | console.warn(pluginName + ": overwriting style '" + name + "'"); 118 | } 119 | styles[name].cssElem.remove(); 120 | } 121 | def.name = name; 122 | styles[name] = def; 123 | var cssText = ""; 124 | if (def.classes) { 125 | $.each(def.classes, function(className, props) { 126 | cssText += "." + pluginClassName + "-" + def.name + "-" + className + " {\n"; 127 | $.each(props, function(name, val) { 128 | if (stylePrefixes[name]) { 129 | $.each(stylePrefixes[name], function(i, prefix) { 130 | return cssText += " " + prefix + name + ": " + val + ";\n"; 131 | }); 132 | } 133 | return cssText += " " + name + ": " + val + ";\n"; 134 | }); 135 | return cssText += "}\n"; 136 | }); 137 | } 138 | if (def.css) { 139 | cssText += "/* styles for " + def.name + " */\n" + def.css; 140 | } 141 | if (cssText) { 142 | def.cssElem = insertCSS(cssText); 143 | def.cssElem.attr("id", "notify-" + def.name); 144 | } 145 | var fields = {}; 146 | var elem = $(def.html); 147 | findFields("html", elem, fields); 148 | findFields("text", elem, fields); 149 | def.fields = fields; 150 | }; 151 | 152 | var insertCSS = function(cssText) { 153 | var e, elem, error; 154 | elem = createElem("style"); 155 | elem.attr("type", 'text/css'); 156 | $("head").append(elem); 157 | try { 158 | elem.html(cssText); 159 | } catch (_) { 160 | elem[0].styleSheet.cssText = cssText; 161 | } 162 | return elem; 163 | }; 164 | 165 | var findFields = function(type, elem, fields) { 166 | var attr; 167 | if (type !== "html") { 168 | type = "text"; 169 | } 170 | attr = "data-notify-" + type; 171 | return find(elem, "[" + attr + "]").each(function() { 172 | var name; 173 | name = $(this).attr(attr); 174 | if (!name) { 175 | name = blankFieldName; 176 | } 177 | fields[name] = type; 178 | }); 179 | }; 180 | 181 | var find = function(elem, selector) { 182 | if (elem.is(selector)) { 183 | return elem; 184 | } else { 185 | return elem.find(selector); 186 | } 187 | }; 188 | 189 | var pluginOptions = { 190 | clickToHide: true, 191 | autoHide: true, 192 | autoHideDelay: 5000, 193 | arrowShow: true, 194 | arrowSize: 5, 195 | breakNewLines: true, 196 | elementPosition: "bottom", 197 | globalPosition: "top right", 198 | style: "bootstrap", 199 | className: "error", 200 | showAnimation: "slideDown", 201 | showDuration: 400, 202 | hideAnimation: "slideUp", 203 | hideDuration: 200, 204 | gap: 5 205 | }; 206 | 207 | var inherit = function(a, b) { 208 | var F; 209 | F = function() {}; 210 | F.prototype = a; 211 | return $.extend(true, new F(), b); 212 | }; 213 | 214 | var defaults = function(opts) { 215 | return $.extend(pluginOptions, opts); 216 | }; 217 | 218 | var createElem = function(tag) { 219 | return $("<" + tag + ">"); 220 | }; 221 | 222 | var globalAnchors = {}; 223 | 224 | var getAnchorElement = function(element) { 225 | var radios; 226 | if (element.is('[type=radio]')) { 227 | radios = element.parents('form:first').find('[type=radio]').filter(function(i, e) { 228 | return $(e).attr("name") === element.attr("name"); 229 | }); 230 | element = radios.first(); 231 | } 232 | return element; 233 | }; 234 | 235 | var incr = function(obj, pos, val) { 236 | var opp, temp; 237 | if (typeof val === "string") { 238 | val = parseInt(val, 10); 239 | } else if (typeof val !== "number") { 240 | return; 241 | } 242 | if (isNaN(val)) { 243 | return; 244 | } 245 | opp = positions[opposites[pos.charAt(0)]]; 246 | temp = pos; 247 | if (obj[opp] !== undefined) { 248 | pos = positions[opp.charAt(0)]; 249 | val = -val; 250 | } 251 | if (obj[pos] === undefined) { 252 | obj[pos] = val; 253 | } else { 254 | obj[pos] += val; 255 | } 256 | return null; 257 | }; 258 | 259 | var realign = function(alignment, inner, outer) { 260 | if (alignment === "l" || alignment === "t") { 261 | return 0; 262 | } else if (alignment === "c" || alignment === "m") { 263 | return outer / 2 - inner / 2; 264 | } else if (alignment === "r" || alignment === "b") { 265 | return outer - inner; 266 | } 267 | throw "Invalid alignment"; 268 | }; 269 | 270 | var encode = function(text) { 271 | encode.e = encode.e || createElem("div"); 272 | return encode.e.text(text).html(); 273 | }; 274 | 275 | function Notification(elem, data, options) { 276 | if (typeof options === "string") { 277 | options = { 278 | className: options 279 | }; 280 | } 281 | this.options = inherit(pluginOptions, $.isPlainObject(options) ? options : {}); 282 | this.loadHTML(); 283 | this.wrapper = $(coreStyle.html); 284 | if (this.options.clickToHide) { 285 | this.wrapper.addClass(pluginClassName + "-hidable"); 286 | } 287 | this.wrapper.data(pluginClassName, this); 288 | this.arrow = this.wrapper.find("." + pluginClassName + "-arrow"); 289 | this.container = this.wrapper.find("." + pluginClassName + "-container"); 290 | this.container.append(this.userContainer); 291 | if (elem && elem.length) { 292 | this.elementType = elem.attr("type"); 293 | this.originalElement = elem; 294 | this.elem = getAnchorElement(elem); 295 | this.elem.data(pluginClassName, this); 296 | this.elem.before(this.wrapper); 297 | } 298 | this.container.hide(); 299 | this.run(data); 300 | } 301 | 302 | Notification.prototype.loadHTML = function() { 303 | var style; 304 | style = this.getStyle(); 305 | this.userContainer = $(style.html); 306 | this.userFields = style.fields; 307 | }; 308 | 309 | Notification.prototype.show = function(show, userCallback) { 310 | var args, callback, elems, fn, hidden; 311 | callback = (function(_this) { 312 | return function() { 313 | if (!show && !_this.elem) { 314 | _this.destroy(); 315 | } 316 | if (userCallback) { 317 | return userCallback(); 318 | } 319 | }; 320 | })(this); 321 | hidden = this.container.parent().parents(':hidden').length > 0; 322 | elems = this.container.add(this.arrow); 323 | args = []; 324 | if (hidden && show) { 325 | fn = "show"; 326 | } else if (hidden && !show) { 327 | fn = "hide"; 328 | } else if (!hidden && show) { 329 | fn = this.options.showAnimation; 330 | args.push(this.options.showDuration); 331 | } else if (!hidden && !show) { 332 | fn = this.options.hideAnimation; 333 | args.push(this.options.hideDuration); 334 | } else { 335 | return callback(); 336 | } 337 | args.push(callback); 338 | return elems[fn].apply(elems, args); 339 | }; 340 | 341 | Notification.prototype.setGlobalPosition = function() { 342 | var p = this.getPosition(); 343 | var pMain = p[0]; 344 | var pAlign = p[1]; 345 | var main = positions[pMain]; 346 | var align = positions[pAlign]; 347 | var key = pMain + "|" + pAlign; 348 | var anchor = globalAnchors[key]; 349 | if (!anchor || !document.body.contains(anchor[0])) { 350 | anchor = globalAnchors[key] = createElem("div"); 351 | var css = {}; 352 | css[main] = 0; 353 | if (align === "middle") { 354 | css.top = '45%'; 355 | } else if (align === "center") { 356 | css.left = '45%'; 357 | } else { 358 | css[align] = 0; 359 | } 360 | anchor.css(css).addClass(pluginClassName + "-corner"); 361 | $("body").append(anchor); 362 | } 363 | return anchor.prepend(this.wrapper); 364 | }; 365 | 366 | Notification.prototype.setElementPosition = function() { 367 | var arrowColor, arrowCss, arrowSize, color, contH, contW, css, elemH, elemIH, elemIW, elemPos, elemW, gap, j, k, len, len1, mainFull, margin, opp, oppFull, pAlign, pArrow, pMain, pos, posFull, position, ref, wrapPos; 368 | position = this.getPosition(); 369 | pMain = position[0]; 370 | pAlign = position[1]; 371 | pArrow = position[2]; 372 | elemPos = this.elem.position(); 373 | elemH = this.elem.outerHeight(); 374 | elemW = this.elem.outerWidth(); 375 | elemIH = this.elem.innerHeight(); 376 | elemIW = this.elem.innerWidth(); 377 | wrapPos = this.wrapper.position(); 378 | contH = this.container.height(); 379 | contW = this.container.width(); 380 | mainFull = positions[pMain]; 381 | opp = opposites[pMain]; 382 | oppFull = positions[opp]; 383 | css = {}; 384 | css[oppFull] = pMain === "b" ? elemH : pMain === "r" ? elemW : 0; 385 | incr(css, "top", elemPos.top - wrapPos.top); 386 | incr(css, "left", elemPos.left - wrapPos.left); 387 | ref = ["top", "left"]; 388 | for (j = 0, len = ref.length; j < len; j++) { 389 | pos = ref[j]; 390 | margin = parseInt(this.elem.css("margin-" + pos), 10); 391 | if (margin) { 392 | incr(css, pos, margin); 393 | } 394 | } 395 | gap = Math.max(0, this.options.gap - (this.options.arrowShow ? arrowSize : 0)); 396 | incr(css, oppFull, gap); 397 | if (!this.options.arrowShow) { 398 | this.arrow.hide(); 399 | } else { 400 | arrowSize = this.options.arrowSize; 401 | arrowCss = $.extend({}, css); 402 | arrowColor = this.userContainer.css("border-color") || this.userContainer.css("border-top-color") || this.userContainer.css("background-color") || "white"; 403 | for (k = 0, len1 = mainPositions.length; k < len1; k++) { 404 | pos = mainPositions[k]; 405 | posFull = positions[pos]; 406 | if (pos === opp) { 407 | continue; 408 | } 409 | color = posFull === mainFull ? arrowColor : "transparent"; 410 | arrowCss["border-" + posFull] = arrowSize + "px solid " + color; 411 | } 412 | incr(css, positions[opp], arrowSize); 413 | if (indexOf.call(mainPositions, pAlign) >= 0) { 414 | incr(arrowCss, positions[pAlign], arrowSize * 2); 415 | } 416 | } 417 | if (indexOf.call(vAligns, pMain) >= 0) { 418 | incr(css, "left", realign(pAlign, contW, elemW)); 419 | if (arrowCss) { 420 | incr(arrowCss, "left", realign(pAlign, arrowSize, elemIW)); 421 | } 422 | } else if (indexOf.call(hAligns, pMain) >= 0) { 423 | incr(css, "top", realign(pAlign, contH, elemH)); 424 | if (arrowCss) { 425 | incr(arrowCss, "top", realign(pAlign, arrowSize, elemIH)); 426 | } 427 | } 428 | if (this.container.is(":visible")) { 429 | css.display = "block"; 430 | } 431 | this.container.removeAttr("style").css(css); 432 | if (arrowCss) { 433 | return this.arrow.removeAttr("style").css(arrowCss); 434 | } 435 | }; 436 | 437 | Notification.prototype.getPosition = function() { 438 | var pos, ref, ref1, ref2, ref3, ref4, ref5, text; 439 | text = this.options.position || (this.elem ? this.options.elementPosition : this.options.globalPosition); 440 | pos = parsePosition(text); 441 | if (pos.length === 0) { 442 | pos[0] = "b"; 443 | } 444 | if (ref = pos[0], indexOf.call(mainPositions, ref) < 0) { 445 | throw "Must be one of [" + mainPositions + "]"; 446 | } 447 | if (pos.length === 1 || ((ref1 = pos[0], indexOf.call(vAligns, ref1) >= 0) && (ref2 = pos[1], indexOf.call(hAligns, ref2) < 0)) || ((ref3 = pos[0], indexOf.call(hAligns, ref3) >= 0) && (ref4 = pos[1], indexOf.call(vAligns, ref4) < 0))) { 448 | pos[1] = (ref5 = pos[0], indexOf.call(hAligns, ref5) >= 0) ? "m" : "l"; 449 | } 450 | if (pos.length === 2) { 451 | pos[2] = pos[1]; 452 | } 453 | return pos; 454 | }; 455 | 456 | Notification.prototype.getStyle = function(name) { 457 | var style; 458 | if (!name) { 459 | name = this.options.style; 460 | } 461 | if (!name) { 462 | name = "default"; 463 | } 464 | style = styles[name]; 465 | if (!style) { 466 | throw "Missing style: " + name; 467 | } 468 | return style; 469 | }; 470 | 471 | Notification.prototype.updateClasses = function() { 472 | var classes, style; 473 | classes = ["base"]; 474 | if ($.isArray(this.options.className)) { 475 | classes = classes.concat(this.options.className); 476 | } else if (this.options.className) { 477 | classes.push(this.options.className); 478 | } 479 | style = this.getStyle(); 480 | classes = $.map(classes, function(n) { 481 | return pluginClassName + "-" + style.name + "-" + n; 482 | }).join(" "); 483 | return this.userContainer.attr("class", classes); 484 | }; 485 | 486 | Notification.prototype.run = function(data, options) { 487 | var d, datas, name, type, value; 488 | if ($.isPlainObject(options)) { 489 | $.extend(this.options, options); 490 | } else if ($.type(options) === "string") { 491 | this.options.className = options; 492 | } 493 | if (this.container && !data) { 494 | this.show(false); 495 | return; 496 | } else if (!this.container && !data) { 497 | return; 498 | } 499 | datas = {}; 500 | if ($.isPlainObject(data)) { 501 | datas = data; 502 | } else { 503 | datas[blankFieldName] = data; 504 | } 505 | for (name in datas) { 506 | d = datas[name]; 507 | type = this.userFields[name]; 508 | if (!type) { 509 | continue; 510 | } 511 | if (type === "text") { 512 | d = encode(d); 513 | if (this.options.breakNewLines) { 514 | d = d.replace(/\n/g, '
'); 515 | } 516 | } 517 | value = name === blankFieldName ? '' : '=' + name; 518 | find(this.userContainer, "[data-notify-" + type + value + "]").html(d); 519 | } 520 | this.updateClasses(); 521 | if (this.elem) { 522 | this.setElementPosition(); 523 | } else { 524 | this.setGlobalPosition(); 525 | } 526 | this.show(true); 527 | if (this.options.autoHide) { 528 | clearTimeout(this.autohideTimer); 529 | this.autohideTimer = setTimeout(this.show.bind(this, false), this.options.autoHideDelay); 530 | } 531 | }; 532 | 533 | Notification.prototype.destroy = function() { 534 | this.wrapper.data(pluginClassName, null); 535 | this.wrapper.remove(); 536 | }; 537 | 538 | $[pluginName] = function(elem, data, options) { 539 | if ((elem && elem.nodeName) || elem.jquery) { 540 | $(elem)[pluginName](data, options); 541 | } else { 542 | options = data; 543 | data = elem; 544 | new Notification(null, data, options); 545 | } 546 | return elem; 547 | }; 548 | 549 | $.fn[pluginName] = function(data, options) { 550 | $(this).each(function() { 551 | var prev = getAnchorElement($(this)).data(pluginClassName); 552 | if (prev) { 553 | prev.destroy(); 554 | } 555 | var curr = new Notification($(this), data, options); 556 | }); 557 | return this; 558 | }; 559 | 560 | $.extend($[pluginName], { 561 | defaults: defaults, 562 | addStyle: addStyle, 563 | removeStyle: removeStyle, 564 | pluginOptions: pluginOptions, 565 | getStyle: getStyle, 566 | insertCSS: insertCSS 567 | }); 568 | 569 | //always include the default bootstrap style 570 | addStyle("bootstrap", { 571 | html: "
\n\n
", 572 | classes: { 573 | base: { 574 | "font-weight": "bold", 575 | "padding": "8px 15px 8px 14px", 576 | "text-shadow": "0 1px 0 rgba(255, 255, 255, 0.5)", 577 | "background-color": "#fcf8e3", 578 | "border": "1px solid #fbeed5", 579 | "border-radius": "4px", 580 | "white-space": "nowrap", 581 | "padding-left": "25px", 582 | "background-repeat": "no-repeat", 583 | "background-position": "3px 7px" 584 | }, 585 | error: { 586 | "color": "#B94A48", 587 | "background-color": "#F2DEDE", 588 | "border-color": "#EED3D7", 589 | "background-image": "url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAtRJREFUeNqkVc1u00AQHq+dOD+0poIQfkIjalW0SEGqRMuRnHos3DjwAH0ArlyQeANOOSMeAA5VjyBxKBQhgSpVUKKQNGloFdw4cWw2jtfMOna6JOUArDTazXi/b3dm55socPqQhFka++aHBsI8GsopRJERNFlY88FCEk9Yiwf8RhgRyaHFQpPHCDmZG5oX2ui2yilkcTT1AcDsbYC1NMAyOi7zTX2Agx7A9luAl88BauiiQ/cJaZQfIpAlngDcvZZMrl8vFPK5+XktrWlx3/ehZ5r9+t6e+WVnp1pxnNIjgBe4/6dAysQc8dsmHwPcW9C0h3fW1hans1ltwJhy0GxK7XZbUlMp5Ww2eyan6+ft/f2FAqXGK4CvQk5HueFz7D6GOZtIrK+srupdx1GRBBqNBtzc2AiMr7nPplRdKhb1q6q6zjFhrklEFOUutoQ50xcX86ZlqaZpQrfbBdu2R6/G19zX6XSgh6RX5ubyHCM8nqSID6ICrGiZjGYYxojEsiw4PDwMSL5VKsC8Yf4VRYFzMzMaxwjlJSlCyAQ9l0CW44PBADzXhe7xMdi9HtTrdYjFYkDQL0cn4Xdq2/EAE+InCnvADTf2eah4Sx9vExQjkqXT6aAERICMewd/UAp/IeYANM2joxt+q5VI+ieq2i0Wg3l6DNzHwTERPgo1ko7XBXj3vdlsT2F+UuhIhYkp7u7CarkcrFOCtR3H5JiwbAIeImjT/YQKKBtGjRFCU5IUgFRe7fF4cCNVIPMYo3VKqxwjyNAXNepuopyqnld602qVsfRpEkkz+GFL1wPj6ySXBpJtWVa5xlhpcyhBNwpZHmtX8AGgfIExo0ZpzkWVTBGiXCSEaHh62/PoR0p/vHaczxXGnj4bSo+G78lELU80h1uogBwWLf5YlsPmgDEd4M236xjm+8nm4IuE/9u+/PH2JXZfbwz4zw1WbO+SQPpXfwG/BBgAhCNZiSb/pOQAAAAASUVORK5CYII=)" 590 | }, 591 | success: { 592 | "color": "#468847", 593 | "background-color": "#DFF0D8", 594 | "border-color": "#D6E9C6", 595 | "background-image": "url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAutJREFUeNq0lctPE0Ecx38zu/RFS1EryqtgJFA08YCiMZIAQQ4eRG8eDGdPJiYeTIwHTfwPiAcvXIwXLwoXPaDxkWgQ6islKlJLSQWLUraPLTv7Gme32zoF9KSTfLO7v53vZ3d/M7/fIth+IO6INt2jjoA7bjHCJoAlzCRw59YwHYjBnfMPqAKWQYKjGkfCJqAF0xwZjipQtA3MxeSG87VhOOYegVrUCy7UZM9S6TLIdAamySTclZdYhFhRHloGYg7mgZv1Zzztvgud7V1tbQ2twYA34LJmF4p5dXF1KTufnE+SxeJtuCZNsLDCQU0+RyKTF27Unw101l8e6hns3u0PBalORVVVkcaEKBJDgV3+cGM4tKKmI+ohlIGnygKX00rSBfszz/n2uXv81wd6+rt1orsZCHRdr1Imk2F2Kob3hutSxW8thsd8AXNaln9D7CTfA6O+0UgkMuwVvEFFUbbAcrkcTA8+AtOk8E6KiQiDmMFSDqZItAzEVQviRkdDdaFgPp8HSZKAEAL5Qh7Sq2lIJBJwv2scUqkUnKoZgNhcDKhKg5aH+1IkcouCAdFGAQsuWZYhOjwFHQ96oagWgRoUov1T9kRBEODAwxM2QtEUl+Wp+Ln9VRo6BcMw4ErHRYjH4/B26AlQoQQTRdHWwcd9AH57+UAXddvDD37DmrBBV34WfqiXPl61g+vr6xA9zsGeM9gOdsNXkgpEtTwVvwOklXLKm6+/p5ezwk4B+j6droBs2CsGa/gNs6RIxazl4Tc25mpTgw/apPR1LYlNRFAzgsOxkyXYLIM1V8NMwyAkJSctD1eGVKiq5wWjSPdjmeTkiKvVW4f2YPHWl3GAVq6ymcyCTgovM3FzyRiDe2TaKcEKsLpJvNHjZgPNqEtyi6mZIm4SRFyLMUsONSSdkPeFtY1n0mczoY3BHTLhwPRy9/lzcziCw9ACI+yql0VLzcGAZbYSM5CCSZg1/9oc/nn7+i8N9p/8An4JMADxhH+xHfuiKwAAAABJRU5ErkJggg==)" 596 | }, 597 | info: { 598 | "color": "#3A87AD", 599 | "background-color": "#D9EDF7", 600 | "border-color": "#BCE8F1", 601 | "background-image": "url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3QYFAhkSsdes/QAAA8dJREFUOMvVlGtMW2UYx//POaWHXg6lLaW0ypAtw1UCgbniNOLcVOLmAjHZolOYlxmTGXVZdAnRfXQm+7SoU4mXaOaiZsEpC9FkiQs6Z6bdCnNYruM6KNBw6YWewzl9z+sHImEWv+vz7XmT95f/+3/+7wP814v+efDOV3/SoX3lHAA+6ODeUFfMfjOWMADgdk+eEKz0pF7aQdMAcOKLLjrcVMVX3xdWN29/GhYP7SvnP0cWfS8caSkfHZsPE9Fgnt02JNutQ0QYHB2dDz9/pKX8QjjuO9xUxd/66HdxTeCHZ3rojQObGQBcuNjfplkD3b19Y/6MrimSaKgSMmpGU5WevmE/swa6Oy73tQHA0Rdr2Mmv/6A1n9w9suQ7097Z9lM4FlTgTDrzZTu4StXVfpiI48rVcUDM5cmEksrFnHxfpTtU/3BFQzCQF/2bYVoNbH7zmItbSoMj40JSzmMyX5qDvriA7QdrIIpA+3cdsMpu0nXI8cV0MtKXCPZev+gCEM1S2NHPvWfP/hL+7FSr3+0p5RBEyhEN5JCKYr8XnASMT0xBNyzQGQeI8fjsGD39RMPk7se2bd5ZtTyoFYXftF6y37gx7NeUtJJOTFlAHDZLDuILU3j3+H5oOrD3yWbIztugaAzgnBKJuBLpGfQrS8wO4FZgV+c1IxaLgWVU0tMLEETCos4xMzEIv9cJXQcyagIwigDGwJgOAtHAwAhisQUjy0ORGERiELgG4iakkzo4MYAxcM5hAMi1WWG1yYCJIcMUaBkVRLdGeSU2995TLWzcUAzONJ7J6FBVBYIggMzmFbvdBV44Corg8vjhzC+EJEl8U1kJtgYrhCzgc/vvTwXKSib1paRFVRVORDAJAsw5FuTaJEhWM2SHB3mOAlhkNxwuLzeJsGwqWzf5TFNdKgtY5qHp6ZFf67Y/sAVadCaVY5YACDDb3Oi4NIjLnWMw2QthCBIsVhsUTU9tvXsjeq9+X1d75/KEs4LNOfcdf/+HthMnvwxOD0wmHaXr7ZItn2wuH2SnBzbZAbPJwpPx+VQuzcm7dgRCB57a1uBzUDRL4bfnI0RE0eaXd9W89mpjqHZnUI5Hh2l2dkZZUhOqpi2qSmpOmZ64Tuu9qlz/SEXo6MEHa3wOip46F1n7633eekV8ds8Wxjn37Wl63VVa+ej5oeEZ/82ZBETJjpJ1Rbij2D3Z/1trXUvLsblCK0XfOx0SX2kMsn9dX+d+7Kf6h8o4AIykuffjT8L20LU+w4AZd5VvEPY+XpWqLV327HR7DzXuDnD8r+ovkBehJ8i+y8YAAAAASUVORK5CYII=)" 602 | }, 603 | warn: { 604 | "color": "#C09853", 605 | "background-color": "#FCF8E3", 606 | "border-color": "#FBEED5", 607 | "background-image": "url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAMAAAC6V+0/AAABJlBMVEXr6eb/2oD/wi7/xjr/0mP/ykf/tQD/vBj/3o7/uQ//vyL/twebhgD/4pzX1K3z8e349vK6tHCilCWbiQymn0jGworr6dXQza3HxcKkn1vWvV/5uRfk4dXZ1bD18+/52YebiAmyr5S9mhCzrWq5t6ufjRH54aLs0oS+qD751XqPhAybhwXsujG3sm+Zk0PTwG6Shg+PhhObhwOPgQL4zV2nlyrf27uLfgCPhRHu7OmLgAafkyiWkD3l49ibiAfTs0C+lgCniwD4sgDJxqOilzDWowWFfAH08uebig6qpFHBvH/aw26FfQTQzsvy8OyEfz20r3jAvaKbhgG9q0nc2LbZxXanoUu/u5WSggCtp1anpJKdmFz/zlX/1nGJiYmuq5Dx7+sAAADoPUZSAAAAAXRSTlMAQObYZgAAAAFiS0dEAIgFHUgAAAAJcEhZcwAACxMAAAsTAQCanBgAAAAHdElNRQfdBgUBGhh4aah5AAAAlklEQVQY02NgoBIIE8EUcwn1FkIXM1Tj5dDUQhPU502Mi7XXQxGz5uVIjGOJUUUW81HnYEyMi2HVcUOICQZzMMYmxrEyMylJwgUt5BljWRLjmJm4pI1hYp5SQLGYxDgmLnZOVxuooClIDKgXKMbN5ggV1ACLJcaBxNgcoiGCBiZwdWxOETBDrTyEFey0jYJ4eHjMGWgEAIpRFRCUt08qAAAAAElFTkSuQmCC)" 608 | } 609 | } 610 | }); 611 | 612 | $(function() { 613 | insertCSS(coreStyle.css).attr("id", "core-notify"); 614 | $(document).on("click", "." + pluginClassName + "-hidable", function(e) { 615 | $(this).trigger("notify-hide"); 616 | }); 617 | $(document).on("notify-hide", "." + pluginClassName + "-wrapper", function(e) { 618 | var elem = $(this).data(pluginClassName); 619 | if(elem) { 620 | elem.show(false); 621 | } 622 | }); 623 | }); 624 | 625 | })); 626 | -------------------------------------------------------------------------------- /vender/scrollbar/jquery.scrollbar.min.js: -------------------------------------------------------------------------------- 1 | /** 2 | * jQuery CSS Customizable Scrollbar 3 | * 4 | * Copyright 2015, Yuriy Khabarov 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * 7 | * If you found bug, please contact me via email <13real008@gmail.com> 8 | * 9 | * Compressed by http://jscompress.com/ 10 | * 11 | * @author Yuriy Khabarov aka Gromo 12 | * @version 0.2.10 13 | * @url https://github.com/gromo/jquery.scrollbar/ 14 | * 15 | */ 16 | !function(l,e){"function"==typeof define&&define.amd?define(["jquery"],e):e(l.jQuery)}(this,function(l){"use strict";function e(e){if(t.webkit&&!e)return{height:0,width:0};if(!t.data.outer){var o={border:"none","box-sizing":"content-box",height:"200px",margin:"0",padding:"0",width:"200px"};t.data.inner=l("
").css(l.extend({},o)),t.data.outer=l("
").css(l.extend({left:"-1000px",overflow:"scroll",position:"absolute",top:"-1000px"},o)).append(t.data.inner).appendTo("body")}return t.data.outer.scrollLeft(1e3).scrollTop(1e3),{height:Math.ceil(t.data.outer.offset().top-t.data.inner.offset().top||0),width:Math.ceil(t.data.outer.offset().left-t.data.inner.offset().left||0)}}function o(){var l=e(!0);return!(l.height||l.width)}function s(l){var e=l.originalEvent;return e.axis&&e.axis===e.HORIZONTAL_AXIS?!1:e.wheelDeltaX?!1:!0}var r=!1,t={data:{index:0,name:"scrollbar"},macosx:/mac/i.test(navigator.platform),mobile:/android|webos|iphone|ipad|ipod|blackberry/i.test(navigator.userAgent),overlay:null,scroll:null,scrolls:[],webkit:/webkit/i.test(navigator.userAgent)&&!/edge\/\d+/i.test(navigator.userAgent)};t.scrolls.add=function(l){this.remove(l).push(l)},t.scrolls.remove=function(e){for(;l.inArray(e,this)>=0;)this.splice(l.inArray(e,this),1);return this};var i={autoScrollSize:!0,autoUpdate:!0,debug:!1,disableBodyScroll:!1,duration:200,ignoreMobile:!1,ignoreOverlay:!1,scrollStep:30,showArrows:!1,stepScrolling:!0,scrollx:null,scrolly:null,onDestroy:null,onInit:null,onScroll:null,onUpdate:null},n=function(s){t.scroll||(t.overlay=o(),t.scroll=e(),a(),l(window).resize(function(){var l=!1;if(t.scroll&&(t.scroll.height||t.scroll.width)){var o=e();(o.height!==t.scroll.height||o.width!==t.scroll.width)&&(t.scroll=o,l=!0)}a(l)})),this.container=s,this.namespace=".scrollbar_"+t.data.index++,this.options=l.extend({},i,window.jQueryScrollbarOptions||{}),this.scrollTo=null,this.scrollx={},this.scrolly={},s.data(t.data.name,this),t.scrolls.add(this)};n.prototype={destroy:function(){if(this.wrapper){this.container.removeData(t.data.name),t.scrolls.remove(this);var e=this.container.scrollLeft(),o=this.container.scrollTop();this.container.insertBefore(this.wrapper).css({height:"",margin:"","max-height":""}).removeClass("scroll-content scroll-scrollx_visible scroll-scrolly_visible").off(this.namespace).scrollLeft(e).scrollTop(o),this.scrollx.scroll.removeClass("scroll-scrollx_visible").find("div").andSelf().off(this.namespace),this.scrolly.scroll.removeClass("scroll-scrolly_visible").find("div").andSelf().off(this.namespace),this.wrapper.remove(),l(document).add("body").off(this.namespace),l.isFunction(this.options.onDestroy)&&this.options.onDestroy.apply(this,[this.container])}},init:function(e){var o=this,r=this.container,i=this.containerWrapper||r,n=this.namespace,c=l.extend(this.options,e||{}),a={x:this.scrollx,y:this.scrolly},d=this.wrapper,h={scrollLeft:r.scrollLeft(),scrollTop:r.scrollTop()};if(t.mobile&&c.ignoreMobile||t.overlay&&c.ignoreOverlay||t.macosx&&!t.webkit)return!1;if(d)i.css({height:"auto","margin-bottom":-1*t.scroll.height+"px","margin-right":-1*t.scroll.width+"px","max-height":""});else{if(this.wrapper=d=l("
").addClass("scroll-wrapper").addClass(r.attr("class")).css("position","absolute"==r.css("position")?"absolute":"relative").insertBefore(r).append(r),r.is("textarea")&&(this.containerWrapper=i=l("
").insertBefore(r).append(r),d.addClass("scroll-textarea")),i.addClass("scroll-content").css({height:"auto","margin-bottom":-1*t.scroll.height+"px","margin-right":-1*t.scroll.width+"px","max-height":""}),r.on("scroll"+n,function(e){l.isFunction(c.onScroll)&&c.onScroll.call(o,{maxScroll:a.y.maxScrollOffset,scroll:r.scrollTop(),size:a.y.size,visible:a.y.visible},{maxScroll:a.x.maxScrollOffset,scroll:r.scrollLeft(),size:a.x.size,visible:a.x.visible}),a.x.isVisible&&a.x.scroll.bar.css("left",r.scrollLeft()*a.x.kx+"px"),a.y.isVisible&&a.y.scroll.bar.css("top",r.scrollTop()*a.y.kx+"px")}),d.on("scroll"+n,function(){d.scrollTop(0).scrollLeft(0)}),c.disableBodyScroll){var p=function(l){s(l)?a.y.isVisible&&a.y.mousewheel(l):a.x.isVisible&&a.x.mousewheel(l)};d.on("MozMousePixelScroll"+n,p),d.on("mousewheel"+n,p),t.mobile&&d.on("touchstart"+n,function(e){var o=e.originalEvent.touches&&e.originalEvent.touches[0]||e,s={pageX:o.pageX,pageY:o.pageY},t={left:r.scrollLeft(),top:r.scrollTop()};l(document).on("touchmove"+n,function(l){var e=l.originalEvent.targetTouches&&l.originalEvent.targetTouches[0]||l;r.scrollLeft(t.left+s.pageX-e.pageX),r.scrollTop(t.top+s.pageY-e.pageY),l.preventDefault()}),l(document).on("touchend"+n,function(){l(document).off(n)})})}l.isFunction(c.onInit)&&c.onInit.apply(this,[r])}l.each(a,function(e,t){var i=null,d=1,h="x"===e?"scrollLeft":"scrollTop",p=c.scrollStep,u=function(){var l=r[h]();r[h](l+p),1==d&&l+p>=f&&(l=r[h]()),-1==d&&f>=l+p&&(l=r[h]()),r[h]()==l&&i&&i()},f=0;t.scroll||(t.scroll=o._getScroll(c["scroll"+e]).addClass("scroll-"+e),c.showArrows&&t.scroll.addClass("scroll-element_arrows_visible"),t.mousewheel=function(l){if(!t.isVisible||"x"===e&&s(l))return!0;if("y"===e&&!s(l))return a.x.mousewheel(l),!0;var i=-1*l.originalEvent.wheelDelta||l.originalEvent.detail,n=t.size-t.visible-t.offset;return(i>0&&n>f||0>i&&f>0)&&(f+=i,0>f&&(f=0),f>n&&(f=n),o.scrollTo=o.scrollTo||{},o.scrollTo[h]=f,setTimeout(function(){o.scrollTo&&(r.stop().animate(o.scrollTo,240,"linear",function(){f=r[h]()}),o.scrollTo=null)},1)),l.preventDefault(),!1},t.scroll.on("MozMousePixelScroll"+n,t.mousewheel).on("mousewheel"+n,t.mousewheel).on("mouseenter"+n,function(){f=r[h]()}),t.scroll.find(".scroll-arrow, .scroll-element_track").on("mousedown"+n,function(s){if(1!=s.which)return!0;d=1;var n={eventOffset:s["x"===e?"pageX":"pageY"],maxScrollValue:t.size-t.visible-t.offset,scrollbarOffset:t.scroll.bar.offset()["x"===e?"left":"top"],scrollbarSize:t.scroll.bar["x"===e?"outerWidth":"outerHeight"]()},a=0,v=0;return l(this).hasClass("scroll-arrow")?(d=l(this).hasClass("scroll-arrow_more")?1:-1,p=c.scrollStep*d,f=d>0?n.maxScrollValue:0):(d=n.eventOffset>n.scrollbarOffset+n.scrollbarSize?1:n.eventOffset','
','
','
','
','
','
','
','
',"
","
",'
','
','
',"
",'
','
',"
","
","
"].join(""),simple:['
','
','
','
','
',"
","
"].join("")};return o[e]&&(e=o[e]),e||(e=o.simple),e="string"==typeof e?l(e).appendTo(this.wrapper):l(e),l.extend(e,{bar:e.find(".scroll-bar"),size:e.find(".scroll-element_size"),track:e.find(".scroll-element_track")}),e},_handleMouseDown:function(e,o){var s=this.namespace;return l(document).on("blur"+s,function(){l(document).add("body").off(s),e&&e()}),l(document).on("dragstart"+s,function(l){return l.preventDefault(),!1}),l(document).on("mouseup"+s,function(){l(document).add("body").off(s),e&&e()}),l("body").on("selectstart"+s,function(l){return l.preventDefault(),!1}),o&&o.preventDefault(),!1},_updateScroll:function(e,o){var s=this.container,r=this.containerWrapper||s,i="scroll-scroll"+e+"_visible",n="x"===e?this.scrolly:this.scrollx,c=parseInt(this.container.css("x"===e?"left":"top"),10)||0,a=this.wrapper,d=o.size,h=o.visible+c;o.isVisible=d-h>1,o.isVisible?(o.scroll.addClass(i),n.scroll.addClass(i),r.addClass(i)):(o.scroll.removeClass(i),n.scroll.removeClass(i),r.removeClass(i)),"y"===e&&(s.is("textarea")||h>d?r.css({height:h+t.scroll.height+"px","max-height":"none"}):r.css({"max-height":h+t.scroll.height+"px"})),(o.size!=s.prop("scrollWidth")||n.size!=s.prop("scrollHeight")||o.visible!=a.width()||n.visible!=a.height()||o.offset!=(parseInt(s.css("left"),10)||0)||n.offset!=(parseInt(s.css("top"),10)||0))&&(l.extend(this.scrollx,{offset:parseInt(s.css("left"),10)||0,size:s.prop("scrollWidth"),visible:a.width()}),l.extend(this.scrolly,{offset:parseInt(s.css("top"),10)||0,size:this.container.prop("scrollHeight"),visible:a.height()}),this._updateScroll("x"===e?"y":"x",n))}};var c=n;l.fn.scrollbar=function(e,o){return"string"!=typeof e&&(o=e,e="init"),"undefined"==typeof o&&(o=[]),l.isArray(o)||(o=[o]),this.not("body, .scroll-wrapper").each(function(){var s=l(this),r=s.data(t.data.name);(r||"init"===e)&&(r||(r=new c(s)),r[e]&&r[e].apply(r,o))}),this},l.fn.scrollbar.options=i;var a=function(){var l=0,e=0;return function(o){var s,i,n,c,d,h,p;for(s=0;s10?(window.console&&console.log("Scroll updates exceed 10"),a=function(){}):(clearTimeout(l),l=setTimeout(a,300))}}();window.angular&&!function(l){l.module("jQueryScrollbar",[]).provider("jQueryScrollbar",function(){var e=i;return{setOptions:function(o){l.extend(e,o)},$get:function(){return{options:l.copy(e)}}}}).directive("jqueryScrollbar",["jQueryScrollbar","$parse",function(l,e){return{restrict:"AC",link:function(o,s,r){var t=e(r.jqueryScrollbar),i=t(o);s.scrollbar(i||l.options).on("$destroy",function(){s.scrollbar("destroy")})}}}])}(window.angular)}); -------------------------------------------------------------------------------- /webos/LICENSE-2.0.txt: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "{}" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright {yyyy} {name of copyright owner} 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | 203 | -------------------------------------------------------------------------------- /webos/webOSTV-dev.js: -------------------------------------------------------------------------------- 1 | window.webOSDev=function(e){var r={};function t(n){if(r[n])return r[n].exports;var i=r[n]={i:n,l:!1,exports:{}};return e[n].call(i.exports,i,i.exports,t),i.l=!0,i.exports}return t.m=e,t.c=r,t.d=function(e,r,n){t.o(e,r)||Object.defineProperty(e,r,{enumerable:!0,get:n})},t.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},t.t=function(e,r){if(1&r&&(e=t(e)),8&r)return e;if(4&r&&"object"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(t.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&r&&"string"!=typeof e)for(var i in e)t.d(n,i,function(r){return e[r]}.bind(null,i));return n},t.n=function(e){var r=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(r,"a",r),r},t.o=function(e,r){return Object.prototype.hasOwnProperty.call(e,r)},t.p="",t(t.s=0)}([function(e,r,t){"use strict";function n(e,r){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);r&&(n=n.filter((function(r){return Object.getOwnPropertyDescriptor(e,r).enumerable}))),t.push.apply(t,n)}return t}function i(e){for(var r=1;r0&&void 0!==arguments[0]?arguments[0]:function(){},r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:function(){},t=arguments.length>2&&void 0!==arguments[2]?arguments[2]:function(){},n=arguments.length>3&&void 0!==arguments[3]?arguments[3]:"";if(!this.cancelled){var i={};try{i=JSON.parse(n)}catch(e){i={errorCode:-1,errorText:n,returnValue:!1}}var o=i,u=o.errorCode,c=o.returnValue;u||!1===c?(i.returnValue=!1,r(i)):(i.returnValue=!0,e(i)),t(i),this.subscribe||this.cancel()}}},{key:"cancel",value:function(){this.cancelled=!0,null!==this.bridge&&(this.bridge.cancel(),this.bridge=null),this.ts&&c[this.ts]&&delete c[this.ts]}}])&&u(r.prototype,t),n&&u(r,n),e}(),s={BROWSER:"APP_BROWSER"},l=function(e){var r=e.id,t=void 0===r?"":r,n=e.params,i=void 0===n?{}:n,o=e.onSuccess,u=void 0===o?function(){}:o,c=e.onFailure,l=void 0===c?function(){}:c,d={id:t,params:i};s.BROWSER===t&&(d.params.target=i.target||"",d.params.fullMode=!0,d.id="com.webos.app.browser"),function(e){var r=e.parameters,t=e.onSuccess,n=e.onFailure;(new a).send({service:"luna://com.webos.applicationManager",method:"launch",parameters:r,onComplete:function(e){var r=e.returnValue,i=e.errorCode,o=e.errorText;return!0===r?t():n({errorCode:i,errorText:o})}})}({parameters:d,onSuccess:u,onFailure:l})},d=function(){var e={};if(window.PalmSystem&&""!==window.PalmSystem.launchParams)try{e=JSON.parse(window.PalmSystem.launchParams)}catch(e){console.error("JSON parsing error")}return e},f=function(){return window.PalmSystem&&window.PalmSystem.identifier?window.PalmSystem.identifier.split(" ")[0]:""};function v(e,r){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);r&&(n=n.filter((function(r){return Object.getOwnPropertyDescriptor(e,r).enumerable}))),t.push.apply(t,n)}return t}function p(e){for(var r=1;r0&&void 0!==arguments[0]?arguments[0]:function(){},r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};setTimeout((function(){return e(r)}),0)},j=function(e){return e.state===w&&""!==e.getClientId()},D=function(e,r){var t=r.errorCode,n=void 0===t?h.UNKNOWN_ERROR:t,i=r.errorText,o={errorCode:n,errorText:void 0===i?"Unknown error.":i};return e.setError(o),o},E={errorCode:h.CLIENT_NOT_LOADED,errorText:"DRM client is not loaded."},I=function(){function e(r){!function(e,r){if(!(e instanceof r))throw new TypeError("Cannot call a class as a function")}(this,e),this.clientId="",this.drmType=r,this.errorCode=h.NOT_ERROR,this.errorText="",this.state=O}var r,t,n;return r=e,(t=[{key:"getClientId",value:function(){return this.clientId}},{key:"getDrmType",value:function(){return this.drmType}},{key:"getErrorCode",value:function(){return this.errorCode}},{key:"getErrorText",value:function(){return this.errorText}},{key:"setError",value:function(e){var r=e.errorCode,t=e.errorText;this.errorCode=r,this.errorText=t}},{key:"isLoaded",value:function(e){var r=this,t=e.onSuccess,n=void 0===t?function(){}:t,i=e.onFailure,o=void 0===i?function(){}:i;S({method:"isLoaded",parameters:{appId:f()},onComplete:function(e){if(!0===e.returnValue){if(r.clientId=e.clientId||"",r.state=e.loadStatus?w:O,!0===e.loadStatus&&e.drmType!==r.drmType)return o(D(r,{errorCode:h.UNKNOWN_ERROR,errorText:"DRM types of set and loaded are not matched."}));var t=p({},e);return delete t.returnValue,n(t)}return o(D(r,e))}})}},{key:"load",value:function(e){var r=this,t=e.onSuccess,n=void 0===t?function(){}:t,i=e.onFailure,o=void 0===i?function(){}:i;if(this.state!==g&&this.state!==w){var u={appId:f(),drmType:this.drmType};this.state=g,S({method:"load",onComplete:function(e){return!0===e.returnValue?(r.clientId=e.clientId,r.state=w,n({clientId:r.clientId})):o(D(r,e))},parameters:u})}else T(n,{isLoaded:!0,clientId:this.clientId})}},{key:"unload",value:function(e){var r=this,t=e.onSuccess,n=void 0===t?function(){}:t,i=e.onFailure,o=void 0===i?function(){}:i;if(j(this)){var u={clientId:this.clientId};this.state=P,S({method:"unload",onComplete:function(e){return!0===e.returnValue?(r.clientId="",r.state=O,n()):o(D(r,e))},parameters:u})}else T(o,D(this,E))}},{key:"getRightsError",value:function(e){var r=this,t=e.onSuccess,n=void 0===t?function(){}:t,i=e.onFailure,o=void 0===i?function(){}:i;j(this)?S({method:"getRightsError",parameters:{clientId:this.clientId,subscribe:!0},onComplete:function(e){if(!0===e.returnValue){var t=p({},e);return delete t.returnValue,n(t)}return o(D(r,e))}}):T(o,D(this,E))}},{key:"sendDrmMessage",value:function(e){var r=this,t=e.msg,n=void 0===t?"":t,i=e.onSuccess,o=void 0===i?function(){}:i,u=e.onFailure,c=void 0===u?function(){}:u;if(j(this)){var a=function(e){var r="",t="";switch(e){case y.PLAYREADY:r="application/vnd.ms-playready.initiator+xml",t="urn:dvb:casystemid:19219";break;case y.WIDEVINE:r="application/widevine+xml",t="urn:dvb:casystemid:19156"}return{msgType:r,drmSystemId:t}}(this.drmType),s=p({clientId:this.clientId,msg:n},a);S({method:"sendDrmMessage",onComplete:function(e){if(!0===e.returnValue){var t=p({},e);return delete t.returnValue,o(t)}return c(D(r,e))},parameters:s})}else T(c,D(this,E))}}])&&m(r.prototype,t),n&&m(r,n),e}(),R={Error:h,Type:y},C=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"";return""===e?null:new I(e)};function N(e,r){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);r&&(n=n.filter((function(r){return Object.getOwnPropertyDescriptor(e,r).enumerable}))),t.push.apply(t,n)}return t}function _(e,r,t){return r in e?Object.defineProperty(e,r,{value:t,enumerable:!0,configurable:!0,writable:!0}):e[r]=t,e}var x=function(e){var r=e.service,t=e.subscribe,n=e.onSuccess,i=e.onFailure;(new a).send({service:r,method:"getStatus",parameters:{subscribe:t},onComplete:function(e){var r=function(e){for(var r=1;r-1&&(c="palm"),x({service:"luna://com.".concat(c,".connectionmanager"),subscribe:u,onSuccess:t,onFailure:i})}},k=function(e){var r=e.onSuccess,t=void 0===r?function(){}:r,n=e.onFailure,i=void 0===n?function(){}:n;-1!==navigator.userAgent.indexOf("Chrome")?(new a).send({service:"luna://com.webos.service.sm",method:"deviceid/getIDs",parameters:{idType:["LGUDID"]},onComplete:function(e){if(!0!==e.returnValue)i({errorCode:e.errorCode,errorText:e.errorText});else{var r=e.idList.filter((function(e){return"LGUDID"===e.idType}))[0].idValue;t({id:r})}}}):setTimeout((function(){return i({errorCode:"ERROR.000",errorText:"Not supported."})}),0)}}]); -------------------------------------------------------------------------------- /webos/webOSTV.js: -------------------------------------------------------------------------------- 1 | window.webOS=function(e){var n={};function r(t){if(n[t])return n[t].exports;var o=n[t]={i:t,l:!1,exports:{}};return e[t].call(o.exports,o,o.exports,r),o.l=!0,o.exports}return r.m=e,r.c=n,r.d=function(e,n,t){r.o(e,n)||Object.defineProperty(e,n,{enumerable:!0,get:t})},r.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},r.t=function(e,n){if(1&n&&(e=r(e)),8&n)return e;if(4&n&&"object"==typeof e&&e&&e.__esModule)return e;var t=Object.create(null);if(r.r(t),Object.defineProperty(t,"default",{enumerable:!0,value:e}),2&n&&"string"!=typeof e)for(var o in e)r.d(t,o,function(n){return e[n]}.bind(null,o));return t},r.n=function(e){var n=e&&e.__esModule?function(){return e.default}:function(){return e};return r.d(n,"a",n),n},r.o=function(e,n){return Object.prototype.hasOwnProperty.call(e,n)},r.p="",r(r.s=1)}([function(e){e.exports=JSON.parse('{"name":"webostv-js","version":"1.2.4","description":"","main":"index.js","scripts":{"belazy":"npm run lint && npm run docs && npm run release","build":"node scripts/build.js","build:dev":"node scripts/build.js develop","clean":"git clean -xdf","docs":"jsdoc -c jsdoc.json","lint":"eslint . --cache","release":"node scripts/release.js","test":"node scripts/test.js app","test:mocha":"node scripts/test.js mocha"},"repository":{"type":"git","url":"http://mod.lge.com/hub/tvsdk/webostv-js.git"},"keywords":[],"author":"LGE TV Lab","license":"Apache-2.0","dependencies":{"address":"^1.0.3","archiver":"^4.0.1","chalk":"^2.4.1","command-exists":"^1.2.7","fs-extra":"^8.1.0","jsdoc":"^3.5.5","webpack":"^4.10.1","webpack-dev-server":"^3.1.4","webpack-merge":"^4.1.2"},"devDependencies":{"@babel/cli":"^7.10.1","@babel/core":"^7.10.2","@babel/polyfill":"^7.10.1","@babel/preset-env":"^7.10.2","babel-loader":"^8.1.0","eslint":"^4.19.1","eslint-config-airbnb-base":"^12.1.0","eslint-loader":"^2.0.0","eslint-plugin-import":"^2.12.0","html-webpack-plugin":"^4.3.0","mocha":"^5.2.0","mocha-loader":"^1.1.3"}}')},function(e,n,r){"use strict";r.r(n),r.d(n,"deviceInfo",(function(){return P})),r.d(n,"fetchAppId",(function(){return t})),r.d(n,"fetchAppInfo",(function(){return i})),r.d(n,"fetchAppRootPath",(function(){return s})),r.d(n,"keyboard",(function(){return x})),r.d(n,"libVersion",(function(){return D})),r.d(n,"platformBack",(function(){return a})),r.d(n,"platform",(function(){return V})),r.d(n,"service",(function(){return p})),r.d(n,"systemInfo",(function(){return k}));var t=function(){return window.PalmSystem&&window.PalmSystem.identifier?window.PalmSystem.identifier.split(" ")[0]:""},o={},i=function(e,n){if(0===Object.keys(o).length){var r=function(n,r){if(!n&&r)try{o=JSON.parse(r),e&&e(o)}catch(n){console.error("Unable to parse appinfo.json file for",t()),e&&e()}else e&&e()},i=new window.XMLHttpRequest;i.onreadystatechange=function(){4===i.readyState&&(i.status>=200&&i.status<300||0===i.status?r(null,i.responseText):r({status:404}))};try{i.open("GET",n||"appinfo.json",!0),i.send(null)}catch(e){r({status:404})}}else e&&e(o)},s=function(){var e=window.location.href;if("baseURI"in window.document)e=window.document.baseURI;else{var n=window.document.getElementsByTagName("base");n.length>0&&(e=n[0].href)}var r=e.match(new RegExp(".*://[^#]*/"));return r?r[0]:""},a=function(){if(window.PalmSystem&&window.PalmSystem.platformBack)return window.PalmSystem.platformBack()};function c(e,n){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var t=Object.getOwnPropertySymbols(e);n&&(t=t.filter((function(n){return Object.getOwnPropertyDescriptor(e,n).enumerable}))),r.push.apply(r,t)}return r}function l(e){for(var n=1;n0&&void 0!==arguments[0]?arguments[0]:function(){},n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:function(){},r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:function(){},t=arguments.length>3&&void 0!==arguments[3]?arguments[3]:"";if(!this.cancelled){var o={};try{o=JSON.parse(t)}catch(e){o={errorCode:-1,errorText:t,returnValue:!1}}var i=o,s=i.errorCode,a=i.returnValue;s||!1===a?(o.returnValue=!1,n(o)):(o.returnValue=!0,e(o)),r(o),this.subscribe||this.cancel()}}},{key:"cancel",value:function(){this.cancelled=!0,null!==this.bridge&&(this.bridge.cancel(),this.bridge=null),this.ts&&f[this.ts]&&delete f[this.ts]}}])&&u(n.prototype,r),t&&u(n,t),e}(),p={request:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},r=l({service:e},n);return(new m).send(r)}};function v(e){return(v="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}var w={};if("object"===("undefined"==typeof window?"undefined":v(window))&&window.PalmSystem){if(window.navigator.userAgent.indexOf("SmartWatch")>-1)w.watch=!0;else if(window.navigator.userAgent.indexOf("SmartTV")>-1||window.navigator.userAgent.indexOf("Large Screen")>-1)w.tv=!0;else{try{var b=JSON.parse(window.PalmSystem.deviceInfo||"{}");if(b.platformVersionMajor&&b.platformVersionMinor){var h=Number(b.platformVersionMajor),y=Number(b.platformVersionMinor);h<3||3===h&&y<=0?w.legacy=!0:w.open=!0}}catch(e){w.open=!0}window.Mojo=window.Mojo||{relaunch:function(){}},window.PalmSystem.stageReady&&window.PalmSystem.stageReady()}if(window.navigator.userAgent.indexOf("Chr0me")>-1||window.navigator.userAgent.indexOf("Chrome")>-1){var g=window.navigator.userAgent.indexOf("Chr0me")>-1?window.navigator.userAgent.indexOf("Chr0me"):window.navigator.userAgent.indexOf("Chrome"),S=window.navigator.userAgent.slice(g).indexOf(" "),O=window.navigator.userAgent.slice(g+7,g+S).split(".");w.chrome=Number(O[0])}else w.chrome=0}else w.unknown=!0;var V=w,j={},P=function(e){if(0===Object.keys(j).length){try{var n=JSON.parse(window.PalmSystem.deviceInfo);j.modelName=n.modelName,j.version=n.platformVersion,j.versionMajor=n.platformVersionMajor,j.versionMinor=n.platformVersionMinor,j.versionDot=n.platformVersionDot,j.sdkVersion=n.platformVersion,j.screenWidth=n.screenWidth,j.screenHeight=n.screenHeight}catch(e){j.modelName="webOS Device"}j.screenHeight=j.screenHeight||window.screen.height,j.screenWidth=j.screenWidth||window.screen.width,V.tv&&(j.uhd=!1,j.uhd8K=!1,j.hdr10=!1,j.dolbyVision=!1,j.dolbyAtmos=!1,(new m).send({service:"luna://com.webos.service.config",method:"getConfigs",parameters:{configNames:["tv.model.modelname","tv.nyx.platformVersion","tv.nyx.firmwareVersion","tv.hw.panelResolution","tv.hw.displayType","tv.hw.ddrSize","tv.model.supportHDR","tv.config.supportDolbyHDRContents","tv.config.supportDolbyTVATMOS","tv.model.supportTemp8K"]},onComplete:function(n){if(n.configs&&(j.modelName=n.configs["tv.model.modelname"]||j.modelName,j.sdkVersion=n.configs["tv.nyx.platformVersion"]||j.sdkVersion,j.uhd="UD"===n.configs["tv.hw.panelResolution"]||"8K"===n.configs["tv.hw.panelResolution"],j.uhd8K="8K"===n.configs["tv.hw.panelResolution"]||!0===n.configs["tv.model.supportTemp8K"],j.oled="OLED"===n.configs["tv.hw.displayType"],j.ddrSize=n.configs["tv.hw.ddrSize"],j.hdr10=!0===n.configs["tv.model.supportHDR"],j.dolbyVision=!0===n.configs["tv.config.supportDolbyHDRContents"],j.dolbyAtmos=!0===n.configs["tv.config.supportDolbyTVATMOS"],n.configs["tv.nyx.firmwareVersion"]&&"0.0.0"!==n.configs["tv.nyx.firmwareVersion"]||(n.configs["tv.nyx.firmwareVersion"]=n.configs["tv.nyx.platformVersion"]),n.configs["tv.nyx.firmwareVersion"])){j.version=n.configs["tv.nyx.firmwareVersion"];for(var r=j.version.split("."),t=["versionMajor","versionMinor","versionDot"],o=0;o