From aa1c21a8c896158c8014413e0e0153cc2c817512 Mon Sep 17 00:00:00 2001 From: jeffrey Date: Sat, 26 Nov 2016 17:32:30 +0100 Subject: [PATCH] work on monitor --- aircox/controllers.py | 43 +++-- aircox/models.py | 8 +- aircox/static/aircox/images/LICENSE.TXT | 130 ++++++++++++++ aircox/static/aircox/images/README.md | 14 ++ aircox/static/aircox/images/add.png | Bin 0 -> 327 bytes aircox/static/aircox/images/calendar_day.png | Bin 0 -> 340 bytes .../static/aircox/images/calendar_month.png | Bin 0 -> 318 bytes aircox/static/aircox/images/clock.png | Bin 0 -> 1584 bytes aircox/static/aircox/images/close.png | Bin 0 -> 777 bytes aircox/static/aircox/images/comments.png | Bin 0 -> 701 bytes aircox/static/aircox/images/exit.png | Bin 0 -> 855 bytes aircox/static/aircox/images/facebook.png | Bin 0 -> 545 bytes aircox/static/aircox/images/feed.png | Bin 0 -> 1484 bytes aircox/static/aircox/images/gplus.png | Bin 0 -> 1410 bytes aircox/static/aircox/images/grow.png | Bin 0 -> 1620 bytes aircox/static/aircox/images/home.png | Bin 0 -> 1376 bytes aircox/static/aircox/images/list.png | Bin 0 -> 391 bytes aircox/static/aircox/images/listen.png | Bin 0 -> 1397 bytes aircox/static/aircox/images/loading.png | Bin 0 -> 2156 bytes aircox/static/aircox/images/mail.png | Bin 0 -> 952 bytes aircox/static/aircox/images/on_air.png | Bin 0 -> 1955 bytes aircox/static/aircox/images/pause.png | Bin 0 -> 311 bytes aircox/static/aircox/images/play.png | Bin 0 -> 2017 bytes aircox/static/aircox/images/playback_next.png | Bin 0 -> 848 bytes aircox/static/aircox/images/playback_prev.png | Bin 0 -> 884 bytes aircox/static/aircox/images/redo.png | Bin 0 -> 971 bytes aircox/static/aircox/images/reload.png | Bin 0 -> 1256 bytes aircox/static/aircox/images/schuffle.png | Bin 0 -> 1425 bytes aircox/static/aircox/images/search.png | Bin 0 -> 1348 bytes aircox/static/aircox/images/settings.png | Bin 0 -> 1153 bytes aircox/static/aircox/images/share.png | Bin 0 -> 1414 bytes aircox/static/aircox/images/tiles_large.png | Bin 0 -> 316 bytes aircox/static/aircox/images/tumblr.png | Bin 0 -> 696 bytes aircox/static/aircox/images/twitter.png | Bin 0 -> 1568 bytes aircox/templates/aircox/config/liquidsoap.liq | 50 ++++-- .../templates/aircox/controllers/monitor.html | 168 ++++++++++++------ .../templates/aircox/controllers/stats.html | 131 +++++++------- aircox/views.py | 28 +-- 38 files changed, 412 insertions(+), 160 deletions(-) create mode 100755 aircox/static/aircox/images/LICENSE.TXT create mode 100755 aircox/static/aircox/images/README.md create mode 100755 aircox/static/aircox/images/add.png create mode 100644 aircox/static/aircox/images/calendar_day.png create mode 100644 aircox/static/aircox/images/calendar_month.png create mode 100755 aircox/static/aircox/images/clock.png create mode 100644 aircox/static/aircox/images/close.png create mode 100755 aircox/static/aircox/images/comments.png create mode 100644 aircox/static/aircox/images/exit.png create mode 100755 aircox/static/aircox/images/facebook.png create mode 100755 aircox/static/aircox/images/feed.png create mode 100755 aircox/static/aircox/images/gplus.png create mode 100755 aircox/static/aircox/images/grow.png create mode 100755 aircox/static/aircox/images/home.png create mode 100755 aircox/static/aircox/images/list.png create mode 100755 aircox/static/aircox/images/listen.png create mode 100755 aircox/static/aircox/images/loading.png create mode 100755 aircox/static/aircox/images/mail.png create mode 100755 aircox/static/aircox/images/on_air.png create mode 100755 aircox/static/aircox/images/pause.png create mode 100755 aircox/static/aircox/images/play.png create mode 100644 aircox/static/aircox/images/playback_next.png create mode 100644 aircox/static/aircox/images/playback_prev.png create mode 100644 aircox/static/aircox/images/redo.png create mode 100644 aircox/static/aircox/images/reload.png create mode 100644 aircox/static/aircox/images/schuffle.png create mode 100755 aircox/static/aircox/images/search.png create mode 100644 aircox/static/aircox/images/settings.png create mode 100755 aircox/static/aircox/images/share.png create mode 100755 aircox/static/aircox/images/tiles_large.png create mode 100755 aircox/static/aircox/images/tumblr.png create mode 100755 aircox/static/aircox/images/twitter.png diff --git a/aircox/controllers.py b/aircox/controllers.py index 0147faf..9f9e86f 100755 --- a/aircox/controllers.py +++ b/aircox/controllers.py @@ -92,13 +92,11 @@ class Streamer: return self.current_sound = data.get('initial_uri') - try: - self.current_source = next( - source for source in self.station.sources - if source.rid == rid - ) - except: - self.current_source = None + self.current_source = next( + iter(source for source in self.station.sources + if source.rid == rid), + self.current_source + ) def push(self, config = True): """ @@ -124,15 +122,6 @@ class Streamer: with open(self.path, 'w+') as file: file.write(data) - def skip(self): - """ - Skip a given source. If no source, use master. - """ - if self.current_source: - self.current_source.skip() - else: - self._send(self.id, '.skip') - # # Process management # @@ -190,7 +179,7 @@ class Source: """ Related source """ - name = 'dealer' + name = '' path = '' """ @@ -246,6 +235,12 @@ class Source: if not self.__playlist: self.from_db() + def is_stream(self): + return self.program and not self.program.show + + def is_dealer(self): + return not self.program + @property def playlist(self): """ @@ -338,6 +333,20 @@ class Source: """ self._send(self.id, '.skip') + def restart(self): + """ + Restart the current sound in the source. Since liquidsoap + does not give us current position in stream, it seeks back + max 10 hours in the current sound. + """ + self.seek(-216000*10); + + def seek(self, n): + """ + Seeks into the sound. Note that liquidsoap seems really slow for that. + """ + self._send(self.id, '.seek ', str(n)) + def stream(self): """ Return a dict with stream info for a Stream program, or None if there diff --git a/aircox/models.py b/aircox/models.py index 92382cf..163b547 100755 --- a/aircox/models.py +++ b/aircox/models.py @@ -146,10 +146,10 @@ class Station(Nameable): if not self.__streamer: self.__streamer = controllers.Streamer(station = self) self.__dealer = controllers.Source(station = self) - self.__sources = [ + self.__sources = [ self.__dealer ] + [ controllers.Source(station = self, program = program) for program in Program.objects.filter(stream__isnull = False) - ] + [ self.__dealer ] + ] @property def sources(self): @@ -252,7 +252,6 @@ class Station(Nameable): logs = Log.objects.get_for(model = Track) \ .filter(station = self) \ .order_by('-date') - if date: logs = logs.filter(date__contains = date) diffs = Diffusion.objects.get_at(date) @@ -378,6 +377,9 @@ class Program(Nameable): qs = cl.objects.filter(id = int(path)) return qs[0] if qs else None + def is_show(self): + return self.schedule_set.count() != 0 + class Stream(models.Model): """ diff --git a/aircox/static/aircox/images/LICENSE.TXT b/aircox/static/aircox/images/LICENSE.TXT new file mode 100755 index 0000000..075e935 --- /dev/null +++ b/aircox/static/aircox/images/LICENSE.TXT @@ -0,0 +1,130 @@ +This is a human-readable summary of (and not a substitute for) the license. +http://creativecommons.org/licenses/by-sa/4.0/ + +------ + +Disclaimer + +This license is acceptable for Free Cultural Works. +You are free to: + + Share — copy and redistribute the material in any medium or format + Adapt — remix, transform, and build upon the material + for any purpose, even commercially. + + The licensor cannot revoke these freedoms as long as you follow the license terms. + +Under the following terms: + + Attribution — You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use. + + ShareAlike — If you remix, transform, or build upon the material, you must distribute your contributions under the same license as the original. + + No additional restrictions — You may not apply legal terms or technological measures that legally restrict others from doing anything the license permits. + +------ + +Creative Commons Attribution-ShareAlike 4.0 International Public License + +By exercising the Licensed Rights (defined below), You accept and agree to be bound by the terms and conditions of this Creative Commons Attribution-ShareAlike 4.0 International Public License ("Public License"). To the extent this Public License may be interpreted as a contract, You are granted the Licensed Rights in consideration of Your acceptance of these terms and conditions, and the Licensor grants You such rights in consideration of benefits the Licensor receives from making the Licensed Material available under these terms and conditions. + +Section 1 – Definitions. + + Adapted Material means material subject to Copyright and Similar Rights that is derived from or based upon the Licensed Material and in which the Licensed Material is translated, altered, arranged, transformed, or otherwise modified in a manner requiring permission under the Copyright and Similar Rights held by the Licensor. For purposes of this Public License, where the Licensed Material is a musical work, performance, or sound recording, Adapted Material is always produced where the Licensed Material is synched in timed relation with a moving image. + Adapter's License means the license You apply to Your Copyright and Similar Rights in Your contributions to Adapted Material in accordance with the terms and conditions of this Public License. + BY-SA Compatible License means a license listed at creativecommons.org/compatiblelicenses, approved by Creative Commons as essentially the equivalent of this Public License. + Copyright and Similar Rights means copyright and/or similar rights closely related to copyright including, without limitation, performance, broadcast, sound recording, and Sui Generis Database Rights, without regard to how the rights are labeled or categorized. For purposes of this Public License, the rights specified in Section 2(b)(1)-(2) are not Copyright and Similar Rights. + Effective Technological Measures means those measures that, in the absence of proper authority, may not be circumvented under laws fulfilling obligations under Article 11 of the WIPO Copyright Treaty adopted on December 20, 1996, and/or similar international agreements. + Exceptions and Limitations means fair use, fair dealing, and/or any other exception or limitation to Copyright and Similar Rights that applies to Your use of the Licensed Material. + License Elements means the license attributes listed in the name of a Creative Commons Public License. The License Elements of this Public License are Attribution and ShareAlike. + Licensed Material means the artistic or literary work, database, or other material to which the Licensor applied this Public License. + Licensed Rights means the rights granted to You subject to the terms and conditions of this Public License, which are limited to all Copyright and Similar Rights that apply to Your use of the Licensed Material and that the Licensor has authority to license. + Licensor means the individual(s) or entity(ies) granting rights under this Public License. + Share means to provide material to the public by any means or process that requires permission under the Licensed Rights, such as reproduction, public display, public performance, distribution, dissemination, communication, or importation, and to make material available to the public including in ways that members of the public may access the material from a place and at a time individually chosen by them. + Sui Generis Database Rights means rights other than copyright resulting from Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, as amended and/or succeeded, as well as other essentially equivalent rights anywhere in the world. + You means the individual or entity exercising the Licensed Rights under this Public License. Your has a corresponding meaning. + +Section 2 – Scope. + + License grant. + Subject to the terms and conditions of this Public License, the Licensor hereby grants You a worldwide, royalty-free, non-sublicensable, non-exclusive, irrevocable license to exercise the Licensed Rights in the Licensed Material to: + reproduce and Share the Licensed Material, in whole or in part; and + produce, reproduce, and Share Adapted Material. + Exceptions and Limitations. For the avoidance of doubt, where Exceptions and Limitations apply to Your use, this Public License does not apply, and You do not need to comply with its terms and conditions. + Term. The term of this Public License is specified in Section 6(a). + Media and formats; technical modifications allowed. The Licensor authorizes You to exercise the Licensed Rights in all media and formats whether now known or hereafter created, and to make technical modifications necessary to do so. The Licensor waives and/or agrees not to assert any right or authority to forbid You from making technical modifications necessary to exercise the Licensed Rights, including technical modifications necessary to circumvent Effective Technological Measures. For purposes of this Public License, simply making modifications authorized by this Section 2(a)(4) never produces Adapted Material. + Downstream recipients. + Offer from the Licensor – Licensed Material. Every recipient of the Licensed Material automatically receives an offer from the Licensor to exercise the Licensed Rights under the terms and conditions of this Public License. + Additional offer from the Licensor – Adapted Material. Every recipient of Adapted Material from You automatically receives an offer from the Licensor to exercise the Licensed Rights in the Adapted Material under the conditions of the Adapter’s License You apply. + No downstream restrictions. You may not offer or impose any additional or different terms or conditions on, or apply any Effective Technological Measures to, the Licensed Material if doing so restricts exercise of the Licensed Rights by any recipient of the Licensed Material. + No endorsement. Nothing in this Public License constitutes or may be construed as permission to assert or imply that You are, or that Your use of the Licensed Material is, connected with, or sponsored, endorsed, or granted official status by, the Licensor or others designated to receive attribution as provided in Section 3(a)(1)(A)(i). + + Other rights. + Moral rights, such as the right of integrity, are not licensed under this Public License, nor are publicity, privacy, and/or other similar personality rights; however, to the extent possible, the Licensor waives and/or agrees not to assert any such rights held by the Licensor to the limited extent necessary to allow You to exercise the Licensed Rights, but not otherwise. + Patent and trademark rights are not licensed under this Public License. + To the extent possible, the Licensor waives any right to collect royalties from You for the exercise of the Licensed Rights, whether directly or through a collecting society under any voluntary or waivable statutory or compulsory licensing scheme. In all other cases the Licensor expressly reserves any right to collect such royalties. + +Section 3 – License Conditions. + +Your exercise of the Licensed Rights is expressly made subject to the following conditions. + + Attribution. + + If You Share the Licensed Material (including in modified form), You must: + retain the following if it is supplied by the Licensor with the Licensed Material: + identification of the creator(s) of the Licensed Material and any others designated to receive attribution, in any reasonable manner requested by the Licensor (including by pseudonym if designated); + a copyright notice; + a notice that refers to this Public License; + a notice that refers to the disclaimer of warranties; + a URI or hyperlink to the Licensed Material to the extent reasonably practicable; + indicate if You modified the Licensed Material and retain an indication of any previous modifications; and + indicate the Licensed Material is licensed under this Public License, and include the text of, or the URI or hyperlink to, this Public License. + You may satisfy the conditions in Section 3(a)(1) in any reasonable manner based on the medium, means, and context in which You Share the Licensed Material. For example, it may be reasonable to satisfy the conditions by providing a URI or hyperlink to a resource that includes the required information. + If requested by the Licensor, You must remove any of the information required by Section 3(a)(1)(A) to the extent reasonably practicable. + ShareAlike. + + In addition to the conditions in Section 3(a), if You Share Adapted Material You produce, the following conditions also apply. + The Adapter’s License You apply must be a Creative Commons license with the same License Elements, this version or later, or a BY-SA Compatible License. + You must include the text of, or the URI or hyperlink to, the Adapter's License You apply. You may satisfy this condition in any reasonable manner based on the medium, means, and context in which You Share Adapted Material. + You may not offer or impose any additional or different terms or conditions on, or apply any Effective Technological Measures to, Adapted Material that restrict exercise of the rights granted under the Adapter's License You apply. + +Section 4 – Sui Generis Database Rights. + +Where the Licensed Rights include Sui Generis Database Rights that apply to Your use of the Licensed Material: + + for the avoidance of doubt, Section 2(a)(1) grants You the right to extract, reuse, reproduce, and Share all or a substantial portion of the contents of the database; + if You include all or a substantial portion of the database contents in a database in which You have Sui Generis Database Rights, then the database in which You have Sui Generis Database Rights (but not its individual contents) is Adapted Material, including for purposes of Section 3(b); and + You must comply with the conditions in Section 3(a) if You Share all or a substantial portion of the contents of the database. + +For the avoidance of doubt, this Section 4 supplements and does not replace Your obligations under this Public License where the Licensed Rights include other Copyright and Similar Rights. + +Section 5 – Disclaimer of Warranties and Limitation of Liability. + + Unless otherwise separately undertaken by the Licensor, to the extent possible, the Licensor offers the Licensed Material as-is and as-available, and makes no representations or warranties of any kind concerning the Licensed Material, whether express, implied, statutory, or other. This includes, without limitation, warranties of title, merchantability, fitness for a particular purpose, non-infringement, absence of latent or other defects, accuracy, or the presence or absence of errors, whether or not known or discoverable. Where disclaimers of warranties are not allowed in full or in part, this disclaimer may not apply to You. + To the extent possible, in no event will the Licensor be liable to You on any legal theory (including, without limitation, negligence) or otherwise for any direct, special, indirect, incidental, consequential, punitive, exemplary, or other losses, costs, expenses, or damages arising out of this Public License or use of the Licensed Material, even if the Licensor has been advised of the possibility of such losses, costs, expenses, or damages. Where a limitation of liability is not allowed in full or in part, this limitation may not apply to You. + + The disclaimer of warranties and limitation of liability provided above shall be interpreted in a manner that, to the extent possible, most closely approximates an absolute disclaimer and waiver of all liability. + +Section 6 – Term and Termination. + + This Public License applies for the term of the Copyright and Similar Rights licensed here. However, if You fail to comply with this Public License, then Your rights under this Public License terminate automatically. + + Where Your right to use the Licensed Material has terminated under Section 6(a), it reinstates: + automatically as of the date the violation is cured, provided it is cured within 30 days of Your discovery of the violation; or + upon express reinstatement by the Licensor. + For the avoidance of doubt, this Section 6(b) does not affect any right the Licensor may have to seek remedies for Your violations of this Public License. + For the avoidance of doubt, the Licensor may also offer the Licensed Material under separate terms or conditions or stop distributing the Licensed Material at any time; however, doing so will not terminate this Public License. + Sections 1, 5, 6, 7, and 8 survive termination of this Public License. + +Section 7 – Other Terms and Conditions. + + The Licensor shall not be bound by any additional or different terms or conditions communicated by You unless expressly agreed. + Any arrangements, understandings, or agreements regarding the Licensed Material not stated herein are separate from and independent of the terms and conditions of this Public License. + +Section 8 – Interpretation. + + For the avoidance of doubt, this Public License does not, and shall not be interpreted to, reduce, limit, restrict, or impose conditions on any use of the Licensed Material that could lawfully be made without permission under this Public License. + To the extent possible, if any provision of this Public License is deemed unenforceable, it shall be automatically reformed to the minimum extent necessary to make it enforceable. If the provision cannot be reformed, it shall be severed from this Public License without affecting the enforceability of the remaining terms and conditions. + No term or condition of this Public License will be waived and no failure to comply consented to unless expressly agreed to by the Licensor. + Nothing in this Public License constitutes or may be interpreted as a limitation upon, or waiver of, any privileges and immunities that apply to the Licensor or You, including from the legal processes of any jurisdiction or authority. + diff --git a/aircox/static/aircox/images/README.md b/aircox/static/aircox/images/README.md new file mode 100755 index 0000000..c55e61b --- /dev/null +++ b/aircox/static/aircox/images/README.md @@ -0,0 +1,14 @@ +# Android Developer Icons +Android Developer Icons is a custom icon set, created by [Opoloo](http://www.opoloo.com/). Included are: +* 250 hand-crafted, pixel-perfect icons in 5 sizes and 14 colors +* an icon font, made from the set +* all sources: .svg, .ai, .eps, .eot, .ttf, .woff + + + +## License +[Attribution-ShareAlike 4.0 International CC BY-SA 4.0] +(http://creativecommons.org/licenses/by-sa/4.0/) + +## More +We‘re always happy to hear from you, whether it’s a question about the icon set or giving us a heads-up where you used our beautiful little icons in a project. If you like, follow us at [Google+](https://plus.google.com/u/0/b/104776915031333350956/+Opoloo/posts), on [Twitter](https://twitter.com/Opoloo), or [shoot us an email](mailto: info@opoloo.com). \ No newline at end of file diff --git a/aircox/static/aircox/images/add.png b/aircox/static/aircox/images/add.png new file mode 100755 index 0000000000000000000000000000000000000000..122ad5d9a07e680c9f7636397ac63b585547c850 GIT binary patch literal 327 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=EX7WqAsj$Z!;#Vf2?p zUk71ECym(^Ktah8*NBqf{Irtt#G+J&^73-M%)IR4ZGQ)# z_OzdTKc<&8nJ)wy6U?ByKoe6h?``%wt#8#A;84N8aJocs`n&^ofc|0dboFyt=akR{ E07a&7EC2ui literal 0 HcmV?d00001 diff --git a/aircox/static/aircox/images/calendar_day.png b/aircox/static/aircox/images/calendar_day.png new file mode 100644 index 0000000000000000000000000000000000000000..545e28d1217b5f91256b4b8d08bcefb5539c2bf2 GIT binary patch literal 340 zcmeAS@N?(olHy`uVBq!ia0vp^1|ZDA1|-9oezpTCmSQK*5Dp-y;YjHK@;M7UB8!3Q zuY)k7lg8`{prB-lYeY$Kep*R+Vo@qXd3m{BW?pu2a$-TMUVc&f>~}U&Kt&flT^vI) z8sE-vAl*@0Mu$aNd zS@OcRu9Dv=+&g`Bw=Bw4Ib-d>n6Yikg;U1yN%t7J94^mg{35-wrILNt`pf_OD%mv{ fcv%-LWH7N8?#eHoKQE;L=s5;YS3j3^P6~}U&Kt;PfT^vI) z8sE-{=4wz7anZdsDLcz|?Mc_0`5lj5-!d_IuJ4#(bC>f@QcvGZ*}qJiH5jB=9TqcW z^vyhb@AvDUGENrZ?@l}BC#?S4dHHhH>{+r^%x8@!Sa(h}zL53Lo~@{7+i{=QOD;$U zFqi}zPYBAIe($T?3tpfpmnAi75AS_#`{!~)=Es)!?fIHG5-+}Rh zL-YxzDrT;RWtD6f%9p6V;0?)NzMpR|BiMcshO@jqJ98MV{zi5Jy}{t=>gTe~DWM4f D{0DT( literal 0 HcmV?d00001 diff --git a/aircox/static/aircox/images/clock.png b/aircox/static/aircox/images/clock.png new file mode 100755 index 0000000000000000000000000000000000000000..5c8dbb0257e3bc908dfee971f691dea22f185397 GIT binary patch literal 1584 zcmV-02G9A4P)fj*es*?tuZZj=qWQ3EO)2$$eSQ6Xr_)&jAYY8rb}xl1mC7757ewSZGZ&b7 zchvm=dH}jgsiy$C&1UnT?c}#@0=TYwP$_kRh>FadOX35-fQULGvfOI5UZu(hr{%zR`- z_cH)DC!HiG5+MBNe06qY??fZUv5^@_Tm&+w)zQW9VjIL+RX7iUxGGQVC78e)4 zBO~nrymTCADJs=n*FB!g<*pME4F-dyR;%@NT&!BHwh#otb!I+fbUpGs@7E;!i6&SH zmdoWcWDH(J+Pz-y#<=HPDK%URt~Z~5+lcP&Xe}4 z1MtCdoTWH}C)%6=`tLaCcDsS&I7`Za(zacxJr+xRhQ z28`lja*aZ40m41JA;RzZL;#=YHfH{zQmK5lsS*>3vorqdLaF!qHGsqd z5PdE}_?o?T>eQ+Iw!Ta*Cf6v$7GQmSeUsC019KwyzW;!T{?MA{K7IQ1qwR9mzI#8?C7UJ4(1<&*D6VbzsYi8ch%-7<+8A1-jon!#LPN$RpBLF}EboI7= zzkedGeH1*;TP95eB0A=}?)PzQO%4FMHhY9tZvmy$roB66K51hg1ycm2)Hkl{o*QRp zaxgiLgOvcGx&tlv(Q37N*v3Z`JkMJO@aK@6QkNDN7q|Snt5&Or_1Xb|ftjV_U?o7f z2j9`#MC784j~FrTZHU0k3c%H^c6vs{?%37|tQSHevMeIQy>w9t9o0ZP;kNmiC!i8 z7;>^kA_3a%_B#=|qqi~hp?p4nHEj`e6bc0=pU+=4t3x7kCu!L{lhRlcY*%S)S{$90 z$EOD*rblGb@8`T z*3SaS^L#3Vn0=KQA;c`t^QlXYH9(%{)4Hyo5b=>QwsyDIFUHs!5g+TiesX~zHl@VL zJR#)f6hp*aRaGyZem^Nq(+5Jx;%w~WWHR}EI2`_7%eDFinx+xw<^cc*A&WFkAKdMJ zR@=ND`=)6cVUuqKP!z?7Qfl9hheDXl0{|$c_C-;A*o8)Xi zAoBp08`(AKzsAMaRZ6`9{0B0mZOgL!6Z-Bb006yT`9eymH!0;N#(Sexqf*Mv>5KO% zrg?zK<@7a(*yaI#T0d}2*XBWcb&8>A0Jf7jHpI7IMuUF=UE3JVODQ)!6MN-T#kLg$ z&{deVSDPLPrz+MYZ-6fI0I)SJl{&UHJRbz%1)#eyV^!Jrzt;DRRjhAk=M2!*27+Z_ z)>Q!dwx>=2q2^DD31JPu7+ZJsus$VmS(dL|J+{lalNEpvVn!*Qx8tE_LtX7DrF3q4 z0%!%0BuRmY$MaaMgDn#TA|8_@DQxnscjEKYIi=Lz<>w2o{jjs3vT8UcpZ2r#rpfT8sdZ?X5zJRd;B00000NkvXX Hu0mjf{ts3O literal 0 HcmV?d00001 diff --git a/aircox/static/aircox/images/comments.png b/aircox/static/aircox/images/comments.png new file mode 100755 index 0000000000000000000000000000000000000000..b8d2839edc9204291e62b63e26f25106792802ca GIT binary patch literal 701 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=EX7WqAsj$Z!;#Vf2?p zUk71ECym(^Ktah8*NBqf{Irtt#G+J&^73-M%)IR4bUrw7!NL+-&oh+ zH?MNKqUixK&KOVexhx;0Wncby{MhpuBcGA6kK|%mhuJy~)(vKn4P^|un;70Q+)81* z#kl1p(-!88$*dXd7u2{f@GUqyeV^E^95b_)2T48I$!DAvsR_oe+1kEI=k?z@`P)}s z_&RVLH2l2Tu*f&PC(__^F$W{VgYeZ-Nty2il4JNcmgO@oxfQqT+mrYvG<#<5X}H&S z==kH0xA$gGJN@*K#AY^z_Kt6toev(cdQf8*@3;IiAH%DC*K+PK*7}sXlx( z*<*PB^{#)qVg9Qon7C|7efE0)eB;mICrjD14^+QT-+Yr_>C?;ShR57NA`A=*R;^n7 zy>50Hvyz|tf!;0B0vij?i3V+T|17j-)hjNB+gG!;GBvO>2viF8xgFqrzjuHA)&Is_ z?hlNi!Dg~|;prz!BY!JPalbIC%)Ium;~3MaO=|=T)ptg_lsF!VoxXCNuExjzOy_ns zb=2+qZm#s{^Ups|&pW0SbjY;an|)!%&r@ggFR_bfy09FPkiRT%$5VSf*oEbe+Ln!P zs=U$}&+TLq>^6K0V!C{BaJda+cAeOMV8%)JM9dgW`@|H-$YK5GV4tb_2VhcT@O1Ta JS?83{1ONutH6;K5 literal 0 HcmV?d00001 diff --git a/aircox/static/aircox/images/exit.png b/aircox/static/aircox/images/exit.png new file mode 100644 index 0000000000000000000000000000000000000000..f220ed2940b383e8d7f3b1914158dc380b644602 GIT binary patch literal 855 zcmV-d1E~CoP)7oru-}KuQS!(s7(`%zOyoGcymG&F10m?(VSKxTm2kzXQ`fkOwK{Pa(u0 zj^q8ky}b`b+L%Y~9smF$ddAEq0F#+p08An}o2(~EquB68+QRJx41u6wy`8=9tV z$8o$tMCXBt1c>O#tR=Qm0cO5eK^q{VzsiWn>2|wJL{F0vwHZPga4pMfCkq!wKuWnC zMbUn;ywV{Q1i_uMZFD-Fi@L6Fo%|UBFbV&5R(+*=p(L}yGxN(Rir%HYQyT%#^VW1- z-%N%N!!R{GP?I^}dEVM+G|C+ws6h{Sp0^gq@s<$c+*I+4FbsFHysuQib=^zMya`|u zo`|0NzW+XJ8%l=|GhaoC@PJ~0AP9D(l&^te;ei@V;wXw<5z+l3;ei?m0D$lNAB(}G~?rSDdnkMWK~o$gqT?pk&+9J+yZG=OhFJRxnjz6LsMrK hei>Z~sAegkn%|hMIIEOya#sKV002ovPDHLkV1ijDcaZ=9 literal 0 HcmV?d00001 diff --git a/aircox/static/aircox/images/facebook.png b/aircox/static/aircox/images/facebook.png new file mode 100755 index 0000000000000000000000000000000000000000..5841351b085050de8f1be80278ec84b882e9a3e0 GIT binary patch literal 545 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=EX7WqAsj$Z!;#Vf2?p zUk71ECym(^Ktah8*NBqf{Irtt#G+J&^73-M%)IR4W5uKIe&h16;9+e!}|Hf-EPF*EZ+l+Y&2`kL|I3zHj?&)#(pcuo!Gs zU(~)VbKbL6lCvACpWmrEH|ydV#xs8|Zp$?-znj6568Y`KnZ$RCF4{2N`+a?*S@zq? z``?$(ert37=qop6g_aLrZ~t4Qq1XAs>(ip`ozDb6+^g?1iS>yzmtu^){#DsGJ@{I$ z+W`p|lgwi;SbcbNgj5#oUbSl8f2+Lj+WlL<9jUHYo|;^!oFLJreDa@|`T>bzom=x$ z(u)tAX`l30*Uy2&v4rJ-nqykr)YP4~a{6m8-K+g>?)Gh-ZXSyVmY_fgo#a;do2phA z!eGT9CECE(;KsUuc|joK3x*7k(5xq{e;9VxB;T2R@8n!ybTW9l`njxgN@xNA$Iaj1 literal 0 HcmV?d00001 diff --git a/aircox/static/aircox/images/feed.png b/aircox/static/aircox/images/feed.png new file mode 100755 index 0000000000000000000000000000000000000000..0f1c1e5849a36dcd2e2c3814cb8b73df63d190ea GIT binary patch literal 1484 zcmZ`(c`(}v6#gaSNEH<<>Q1zEv~Joeb^QFYlGGWgvxrdY2#TQD9@*Abur0Q6q$!O| z(_M9StL`hxQY6?mOEFs6Ra#1QQ#7Mx)7hE*Z{N)KzIorgzrOe8%lG&7Qc==X0sue- zhlL0-cK-^5f~-GCIR8>cav30wh>+DqL@Yx#?@7akX2|xZz5)iCv2$eN{!C0rW?*Vu zW_EP?Ss*(*+bSU?DI+F2?W|R5dOUm0MHc|%aX83>m~&?}%!i?m(cFm?j`=;(h#%mX zv5g1&7}0~%4Z}sovBL*#6Ez{V4;;m<;%irp(fN!V5j_vFxM=hQeeTD3^A@>VN4mR1 zwCzsiE?UIKM({>t_X9(6T-{m3b2)Dl zExrTnIYZvYhwng!d286*2m$_+LnLtJOo=~_aKY~w(x9TELMP&_ebQz50eHnBl5WIn zy78mwcYA{yBZU{L%HtPZ=y!I%J4P3Rh-bFG)*K8l+tLVYQy?9E5oA>^5uDKknLzSE zv}MdPI6my{<0FI}m!BtA`(u|RQgwSbZ>V*H_D;_uDn5or>wxi5=wN(%A#i znwpey)VNrv5oc~>!u2m%I6j6!4Rl^kd26X{Q0c%H_SXlkSn@=+%$C?2}EtFRMp>`W5Cuu;_w2R#Qrc6{t1s;14_hNbC-+AsQCUyuXA5 z#q+5pMP8roo?V=%?0=B6{O*Vn#8gP*KdSqkGTXwtx;mY_sR14M76k?1+j(`2*VqEl(#bD%kAW#8%dPl^Q=0?FBIQyeJ<5O*OVJq##q}o!z7$One3><7q~gf?%lA` zv)r+!w?X@Y;fZiO;+rSmv$hnn^TO)0SS-(4I_ng&C5+fR=Uxa1T$-Z$uV;U@htYS- zmKPQlbm)!Ob|B`aOX`)0D(r##=!<#xn0m969Zb^DXlbc?IWY7EZkj8VO8*KFbC@)D zJS(|XMOAf2hguN3NQS1|vVGcA!sO05=xRGROK~ej6MXPqh4f_>n=)$|=V~O@>j1Y7 zkDvA|1o9#B7dtDK>gI&NE(7ZwH->Qu?}a6ff`x$WcY1s&Ji^-`bO+Binq|og;4r>W14z3152r?^ssI20 literal 0 HcmV?d00001 diff --git a/aircox/static/aircox/images/gplus.png b/aircox/static/aircox/images/gplus.png new file mode 100755 index 0000000000000000000000000000000000000000..98d8b17f3b3baeaab0cfb95c5cc2dcc5dfb5bdf4 GIT binary patch literal 1410 zcmV-|1%3L7P)hX zSBf_Um4b-95Q~?B(u&@cf)@(<2b5|NZ@lnQ6ub&Zk!*H$Cv5{#wXmfXD{U>LXgArN z^Lo(~*6GCV&Y8^tv%jmI^D*Z+&(6$w&pQJVq16oA7GRsc0k#F$rf-040k-KIU|WD~ z`Ucn*V4J=HwguQ`)f?dE=@f?Hv7&_(L8Vf8tJ^-S{t8(22IRU0vJjCA0IIE4>nE-C zQy3o%tT9GavPwvzO1$WERN&)-o1NEVHobyTJH>kV1rWXhKQVX9Os*vnVC!N{Qy8I z^}2}cAR-cxwag6DiR2~kGoU;&GV);@$92#1?wy~Xe~*Y>Wado(TmWmCS!u10gkk8l zca)oaMMT#DjM$t!QBDIYmCA{!si_7Lk>fZAn0ZrHI{+*qZ+f0L+Fl+-QM1)*eJ&!c zJmVJ$Op>BXsWn9ODS$f}`Fj*aN7K)SAPAmk=9jWM|4LfQWn(4W<;a8LAP{qn$Jqkw4mx znK=}Ztg9lEUgRN)*bYw-(UndbYOT-Q`mL1Om?X(71&nWmu>nhA?Qs#g_FwHpB#z^_ zPDC_0Ik}FA-e%^zO~*GSmjR=rqeJb-aU9nN2M3Q5QF)mzXp zmuKvv$+Z^nfa+^vzZklZ!BW0qUlLi zcyMqq$tbRM88xm5Ju#rwYHdiDRjbusnfaKAbhUx%HNAQ-@LX15rBaDot=7l3a{%r1 z!~g(Khhg|cR^9CE>~F5?ek3CGUX0x>#(Mz~X^6;0X1*vQmqg?S5&aEd*?)O@dU{?d z^@)fa1Tb!@!Gv4}h)9EOZi33yYW3`LFG6nR3q?ey>!K)XDy5E#$U6YG=Fw3ExgtTO z)IbzP&9>u5L}Z+qH;KrDM6^ys9A<`y%oEXmL>t7QUXFn_EoRg<<$C5go`aWQi5c2`Z%~nfY)hlP4l#<~^lS z>D}$yw-2Z5hKGl%TI<`4SqX9(;QRg_0B->3>KOuHOQ}>kJT^A=ubtr1Tc*rgq}Sv! zV7a$BodDp0p`oGIGR}ED?>SA#WdMM?49DFuF)@+8b*zNR*1ixCk?2ZTbe-7GRsc0k#F$X4M<;5A`F~Cw0HS QZ~y=R07*qoM6N<$f+g3JG5`Po literal 0 HcmV?d00001 diff --git a/aircox/static/aircox/images/grow.png b/aircox/static/aircox/images/grow.png new file mode 100755 index 0000000000000000000000000000000000000000..df0755f52e7f5c14798884a8f6d8b4ccbffff6bd GIT binary patch literal 1620 zcmV-a2CMmrP)4ZN8DhB{O{o$u& z=6)_1l5zUx|Mk5l?U&5v-gD3S?)UD!@4S2OfTXNvXxIe8#)bf469^j{0)$NUI#D(V8*hnnby|U8;L|B7Xo)* zutES45yx>30EpJ&fTRI%Q$#W(&$zC8&2N&ciE;w$0q}Yw4oO}jd8VVIV=R$K+-sWQ zD#KHNcs$-^j5*SbV`I!RfM0j*+I9Tcv19pWe61!t1puJ^{rzA1u@D+#F59+!G?`5P z)2y%6fM*9u8WEZEC4lNPxm@nOSS0Lh8f2nb;B(9lrpYWQvh zl~(yFlD=nn05%z8y8QOrC?e%5T-UwtIL?%aJm+^%l5LH)jmP6%xm<3Ch-?GU1z;=5 zygYbo%>lTjs<+zO+OE}-h?NyUL4yr8P%o_s1f7#kb=i{x}YL92n}=~`_E1_pX<+x`H+fU4Hj`C=GjlIe8%qE}r- z0r&tvH5%B%U)FWqR4ulS<7^}OX0z$IF@^w+m#eSpJe^LT6_KfCNQj7#%(t|(d{;-4 z7=V^$;{v$oy6*LI^);!hsz*sKG)cr-T3Q;c!@j$jcn_hfXDZg$;-s)>eO+%}Kr&z4 zhUBZUSnP=!o8PG?R+;$sW@l&9m27IBU#{y;8DqXBS<@zmG3Ih45;+3kmxpBlB9>*n zF)}h@RclYO>Cb19CnqN-mnzxRwZLRD88@HLzfUq-A?Q4SA2XTEN6BRJYI}S831iId zB9o`5rlwx57Av36j}|`58v@CN`T6;i)$BYsL~4QKIM0)OR#hJ**-3Jm0h3)xTF{i4Z*SZfG*x^SelSvh4l>jyYc(K^Vah%6h z^oOS06rCwN@ork5&1BgOkS;rSHo*SBd~4zTt1(Ft*EGTZfK+18Pw?t&S zh=?)fZvbBvpE$X$I|bnI?%lihsA?a8ts-I@WB#x#%N-pZz0?S&hTj4W1q0CE-~Tay zj)!F=uL8IzB6~$dj4`*3F^99+?5!X;1$qElmrd&l_Vr=N*6()lyf#5x4;3okzqzh^ zKWHLh39w?3Q`Pn`h=d}5s(Kx}Jry_+2}u9|D@Fjxo%Qbe`hidc$mMb?MgV|K@pybk z&|Jcr0-lM^^73-v(;yT9T-Uwh^>wGJf!`kp?Jl6#Iv^n|grN!GwZlwuOVB*RybWrX z761tR-oTm?Kt!58391)sN`Q4W0swgJM%lF-n)rz|H3CFLCMG5Vod#j0!dmXw+qUgM zr$HzJ^z`(2K7A1pRSi^tKsQC#BG$#fLMmZHfUpUKjST_9CJ;6@1PGfz*!T|$uyzvn S5}&#N0000Qb&x; z14$ilt;}YUMN31B)b+}w+>B7mBh6!%{_V|t?|tvhoA<{z-#qFCe=l`4eKi08)P1~> zD0y}N4izPNZb{CXl@~=k!Y4>Y9#>W3DDqwv=N*oh?~i{61YyP?$%lG5o?$r`GZS)% z*z9*V z(qOk06HTl$_Ng9{rtUjQvz}mC%Dx3FdhBTRyG38Zr1LGU*2y8X8wbmIj)Q)Ng#CPi zXG4(=cf0g?&8KNel{R{yjqc|dID`h{~tYe;bww*rPFyaA%;{?rMi;8+b++oS}^LsLAwAQ z8lRIpJbDpACX+=41qD^WUG#05cXCF?((dBoV%`B%7%EAT)`@6h9h;95#Vn!SGP>y-7;6kK}|FvUv; za)C9jzHUi9qG6-~(Xe6)3p6R~5fNs{z|xodQQ9Sq@3VWR)5qG?2Ht1CMYA`4fxWLZ ze<6tJkZfJOZcaa+0fH?dtyMb)Q-8@ZwmQ$Q!>&LA4-|ap9HEhH?SqnQsx@ zxp2QwMW<<%D)0s5K+;fd0 z5}kgk`(qRL33Lv_5)*4XiADf$sdC*OCR=-0N*mAvYcBXY6c!dbj!Dzv54jCl%XP=3WNguZ z37!lCe)(Ygbz92h>Lj=}m%~qhrT$IJI1I6zp1Dz-Sx1=-^u??^(uslsPkAzd=R0!_ zKZ*TfcX!uob!#Waks*shqv1d_BkDnd6|zy(9Z(DB+SuFYob8P~4#D*a9z*AlJrSJeH@Y5Eysx(S5Tt#6KslFKuTQ}CbqR&SfPTqml9~3mwhLxg1LU?E(@2<= z5h5=;pZaw*wKD#i8TjUasEL;@OkxwEP7B@PUdL}{_e4aoLynvPQ~7@IbJ)w5H^}~V zhJ>{s5*GVb-L{(~SIxyBueVI;m@4p~xlHn?duTbr8_*8!9NBXixcg1?` Xvt5|=q?WJz8v;I_{>XMj^o{=kjoW&m literal 0 HcmV?d00001 diff --git a/aircox/static/aircox/images/list.png b/aircox/static/aircox/images/list.png new file mode 100755 index 0000000000000000000000000000000000000000..60f103e13f54df408261532369e25cab9a15e360 GIT binary patch literal 391 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=EX7WqAsj$Z!;#Vf2?p zUk71ECym(^Ktah8*NBqf{Irtt#G+J&^73-M%)IR4|K+x>R+_u5U*n@GCKY!-U#apjkJO9|?UipXHXKc=!pSQfOy`k>&{CR(w zAHHX}&X8u7TltND$Ge6P(;rOasApfne1&nI^Q(r(3-|(noTSA-s)BDNb6>NSgX{vn zj$W$=*R2oy{=HAM6y!FjBCJll$N=@lA^s0cT2HTsJ{R!P0|pv{r>mdKI;Vst07^@i AzyJUM literal 0 HcmV?d00001 diff --git a/aircox/static/aircox/images/listen.png b/aircox/static/aircox/images/listen.png new file mode 100755 index 0000000000000000000000000000000000000000..1ec7a40a160655c984fb39f5b567f5153df58f92 GIT binary patch literal 1397 zcmV-*1&aEKP)C45Fz_3YWR%K(0DM*xhC zjrEDhk(Bv!IG}fvGG-SLRWDbCc-UjgG zCd;-2Ktzw4@)fD=^}*%=|#Rb*!ti-3uH%c(4EiKOO)?WZf80 zuh*|fX;tkuQBP8B18`k;)PxZLP}Myt*$*mpeA;oRdqT2j5g|O=j6V=zH6q8B(<`#5(DV&?v4Qv(XI3|wyw4SOioVL z0o*j?C6?!T7os#X=eGp_fT|kp1|kwnPfssK$3&Fh7SNDM05?6)`!bo41OOm^0Ep<~ z#-%nV5jjz*R8|4aeG919>$4_|000qPPRUM=0r>-P>eQ(!fFBKb0W&|eHqUk4coT$( zj1Pis?+7)vu0Lyh)~Qq~y@yS1n25;klS{JzPuEdeB-8kth& z0D>S0nfYT8xv^1MB5DZ$z$J6eZmT0}f$8b#MP@!GA}!y?QPp*0fU5R3zE=u`!e6Gn zb!;(o^5n@gMD$&&GObzw5&bKTOiWCysOm8!c6!&Ux3@R$2E)U{{fV96J0Ac51VQkJh@5B^Pd@!&=6#9$y8{3K z%+1YBipVcb!to1HM6?gMJphJb_*)iUtN>6|C8AH8JPh4WMAR4yo^Irwo}ZuJa2nl; ztZj(}K~QsD_oI|Gey{KQulMxyyu-{70su4rl$8&wdxDip<$|hyl5&6WDl?A*fQZ}} z7#KL6a=H;&-xQslo&8x=ziJj|=9w(!|M>b@UHJcKZf@=e0LQUrdQ{bGp67j^W!<@X zTO7E@UzfL~Tyz1O+6G|TfNgC9ux-G$wgK2SU|atI*l^4~ySnD{00000NkvXXu0mjf DY`}u{ literal 0 HcmV?d00001 diff --git a/aircox/static/aircox/images/loading.png b/aircox/static/aircox/images/loading.png new file mode 100755 index 0000000000000000000000000000000000000000..7206a3ae398a464b7a40d9a0c4848a422f73df86 GIT binary patch literal 2156 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 Ru>;L!@O1TaS?83{1OQ8@p2`3K literal 0 HcmV?d00001 diff --git a/aircox/static/aircox/images/on_air.png b/aircox/static/aircox/images/on_air.png new file mode 100755 index 0000000000000000000000000000000000000000..b437b6834df4633221406e3e05e1780d17ac6f2a GIT binary patch literal 1955 zcmV;U2VD4xP)4ddNu9Wkqmov* z1wxc~W|B$9e&1n{=g4(qdw$-`L#mJDh3DP--E+^}x!-rsyFwBlWtg}L#Ene>;wBI` zHU)^AK-}0AAZ`M2V^e^*3B-*}0pcbQHxjKLV03iU&d$#6OeT{lV@xUtf|M~P1)y71 zQveo?F(r~El0|E6NmWY#7F^d|Xf;1+#bGFu$?O5pZ>{Yo`KX9=HWG*AbrG2ff?y^H zf|>K@&)TJ@``0BvI-TB@OeT*57!(m(?_jM2$s5L))A@XUyqNh7Sq_4r=(_IWeG(#)&1SbG5{cB};$q4evje~ZlKmpG zvyrhw_?1fK#PsxZd94QP7D6I2Qt#wR7DdDhf?%enr)PF-Z0t@AeF)%o`1kMd<2(SQ z)9KyT+CF2N3~i#24J|B z;)>*H*L7cAug!*gKsue?-O800d^v%c@Y8Ge(?+2S#h{Q&wKsS%b79}&4E zA~UY*US5vxIL=m*!^W6n0D9KoRq#CTC2lamnzF#*!-qems^3_-{79Bn^`!6n?(%2p zbb5C(nS3JLFq5@SwKk~gHDk!a zb0y&ZX8ko0*#Y2o5Cq@zeg9f5@#-psa=F}dB;R&jcM`a_M-+?2x`hPGuGO(&79YJdwV;3dU}RLG^Aaya3Nc?(YV&b3o2N986F1MHDK>!~EuuD~U8e=+0-U%zgvWQ$0k(rK;j<;5> zl<=%D0N~j$)d2v4AUNUs{@)s&03xu&1_lNmvev!`po8QuJ?>^M#z$*&k=_Cy(%D!tn4hU?b*(n4dXwZORs9pmagtXzU_ZpOtSRssGW@R7eMx+y^11meb~0C5wD8=C^e pO(1S;3J^DexUnff+yvsr{{RhE$4Q9x%)bBt002ovPDHLkV1nG6tNZ`} literal 0 HcmV?d00001 diff --git a/aircox/static/aircox/images/pause.png b/aircox/static/aircox/images/pause.png new file mode 100755 index 0000000000000000000000000000000000000000..ddd31af92d4ad524b834fa585180d9634605a9e8 GIT binary patch literal 311 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=EX7WqAsj$Z!;#Vf2?p zUk71ECym(^Ktah8*NBqf{Irtt#G+J&^73-M%)IR4{Y(1ItYoed90SFW`Yzs63U0RO$mr2qBOw9v1&fP<8_giW^pCxBOTI z)``?_a%o_1|M7qG4=HAd|^_-m{mTOY5zTp?_qlQL=)_nA$Y!%C0AG!2S4ypK zY;0KL;L?ea3y?~smH<4@%+%5JOQlo^0GN69=FOW=j+#q1j8uTt)zu4@Wqk*L)6vwZ z)oMRKJUsk~QtB=MD5X9%N-j|tnE*sYQ&UsV6VZH^=3Nnyy}i8?0Dt!Do?Kg7n;jLO zD2z-1*L6QjL@N=^*MowHya512WI2xWu~G4f!bk*2r_&cj=3Y&QFZhnNqZ&CGp+P%jVgVYCcZS643t<+-`JIsngqyfjEKj70z<`Z|Ee4Q+c0 zKtvzvH-_uFk2;R?J=b*;08lIzTOzXO_h;L-jZc-v>2M~Kd6t=WSzG zxWAiRzI?goQVRJP^6r+<42v1h^S-86=mG$ENPu)Y{nYyU`l4q4CIB!q9UmW`*Xj?0 za;w!!n2<3NAR?n18qDnGa=C@zxt9lIGMT3>%X+rmZim|*5#0^SN-2HIJJjmq5ui{g z*Z^is1{(yP=Y1q7E2Z=p5C%clbra0|CBJ@NvpLrKhOVxA0DyP|I5;?%GZ|=5Se6yW zm6MZ`t{%{6G=e0l(+l6$#t8*r<|A#Kcm%L*J687(pp*&)sMqUVJ)mB%pDLw-YwPd} zF>_ZBfVKn>mj}FyFp~TGz5=vbt;2pcLru(lJ18fU$?(ol+slzmCa1LID&*mL-Xq#L z;UP*Xr7u@Kzli41&tPF;;i#X@Fle{ip#am<)1d%F6t4S3BBAdH`WFg=a=YDbYV~@c zj7NZCvDktZbmD^JIJZI)%w0X8R;x9L=v6-s=m}F-4oQPE)yn1aLGVmO zT|EE*DwWD_nE6E!3GJEr{XyBbZ9R|B1u)`lnhhQT=$ob*;%&!qex_IG0swfY!yeUY z^$#6YivS=Zs@ZIY*`@9Q%p9Kw5Yg@aR%TF2y;drf9{6>7c|gP%i@xox-QC?&zf1tm z1NVg~m&-=6%T$1hiJjqCce+&TF`%aaxm<2RyLk$))KjU{Lq`(%G(KW@e@#B0IiqC;$T!AI+G@BtWfJ^O*UEN~z<1wnWrZ003{9 z%(=O_*$&FhX7dvKI6_2!-Pzgc%OgN+xj?yGK49jTwdAEMMC73u5M*v5(oQCm{~UDg zjyF-p?hnMA3{|VuT_XBbFPmN-Kt%u2e_2z^&d$Cb1V+oUCMN&@EH5wr0zKjZ5k0c9 zvNEkb6M)A6Kq+P9{+%cmi>x8zmePr)M~ZAE2UnGYS-WXF!Lp?erN%P#mFv1wzs#7N~s$W z&EcynBDw_J4}hNM{bf{qqA)T6{CoNzN4yMuf{4hE1;GjK`XJj^To~za<~|GWIV z5&uswMn-}&0VYjg(l`@f(gY@rGXW+|VAA+69q!dtaJoK-00000NkvXXu0mjf?VP{e literal 0 HcmV?d00001 diff --git a/aircox/static/aircox/images/playback_next.png b/aircox/static/aircox/images/playback_next.png new file mode 100644 index 0000000000000000000000000000000000000000..30f204b6e7894d012fbe1f1dd39027590e31979f GIT binary patch literal 848 zcmV-W1F!svP)t84nODQiJhB4>5?k7rKDRt-P=SrnA5jHOL3;@6}%d)105XS)k;x+&PM}r`k7DAjF z9UV2|=A+Vf2?0P4=lr~F+mnvt9Ed$R=N9MuOrz15%IEWk=xw&C5wVeet@U*&<+;JZ z!5xG;`?S_ql~Ut{LZO$C5AQANKmgzXaH6lTZ(0a(gjg@%YPDvRQX`aQ`7dJMg#chT z=lqgVYGQbJco(7OPR7`nZQGN!ZTA!MzmeoNY8!?@KAN2KegK$MN{tnZ#T>PXMEd{$ z^f1Q8gb>#Xg~I;W#W@GY*og1@H>H$$N)H{`$N=DA5Ck`b5NC&mhAcw97XZeklvfBu#Jhz-*;@0CiW z_r&}bV{D;Xt-5iui3AXF8vq{FYPA(4{K=}dM$Y+)Wm$`>tE){)4@m^PR;x9)wzl?_ z64qL8AmaT>rLvKrhxh`B_!$u&)M~XlvF10%*plaYq_g%Xkp&P@Gsd28Zf-taUtj-D ztmhhru}~_Nwut$^h$Nu3-Y^W~Zn<23N38RKb3W_3?ptC$l(qthxQ&QQp69(FUZg%_ z?8(5u!1Db3e2d&=8$tyT@nw>SdPIC>nkM<7J}QvCVoI4zAZ;>%w8;e0CKE`TOdxH# aUf>7Xeg`PGt^7j(0000oa&det>Z)cN5B7#na#XW&mNd)315r~^aAZ`+YxJd-!rsD;S-7fa`_s`Zo zbIz~p4B)!%;V=xxg%FQ*^7(xJplO;DLWn2zuJ0<)3S(nqsnylhApkhf7&BG#h=`VD zoiR;w7!mh1YPTl>uIrwZQcg0)j_Kqb$2nnH)-}dhceA!_6(|;qU11oG0)VTN@9F7D zXS3Oh0C1Ku7O6hlB7lf!+x8#;3t|11<)fQViZ(LddR5b+@Z{Lsxe zBC>!G;w58jnutE?4CHyyK|G8Q!mA?AEe-8lWiRh2c9BOD6@zT;#m2*B% zL^D##HPt*35$Aj{48th^2z2Ms@?9thg0&zBW&mIw0Di0HE0xMG&iSmA@(~gJRL!^L zHd^~OQ>oMx0F-t5@O}UN`uh4UB6_P*ZdywDLQ1)*n)f{KOArJzQp%^zihR$06E7?*gaGi`bzL5Y;kas^ zwqG5+%jfeI(=;a7ADp<3fdZfAr@CzY;N}sLaLmKQ6h*2(FAlaxAQE#l~a4C4$lpABLWS=Kb|mTlY1VfrV23c0TPgovI7F@SF0_a`%%Ojnrxi5nmy%H?u1 zBJwJ@nXdpi*pR$%ymuVuhHM}-(rf`>UDr=A^H`H-dR;{1Co@0TNIX%5706^VyGo_f zRRBk-2KWIW4`8ueF2C#O=vc~Tv*kEqEz24sqSOC~zdbuU`?glU(6i`y-Z(Q?i=Qu* zO80B+&#)MVagv$;5>G@^^~4i}G@$GHpr&afL_|s{Vdi^|x&vZKnY2 zsSNOmh-PA`{RdswO#l~}8I|0g@B7n*LZKKXPnZ|k(V(G}dgwULT12huA|l@alqz{k znx@@}DxRp0fzi>?6o8(}fQp$T53mu1LZPT>+8q&DO{G%PwrwxO$y0L+t*opZs5io95q)!M0%^*@8S+pi$=r~ZIfcI5o#I$uvpbTyxC&nP}4wr zd;3Qb2}*+=(=^jtpeYhH4P>*~vWP4Z{VwE`Qhi$^D?DNT1F!!)%zS>ktwLP`p65Li zk?%xA0QLhI+k9E!scT?L?FW*!ORW|q^9ux&0h zafx&%4z82{HuXxWlzQU2?&C1eMtT#Ah;m)`g;MIehh5x|Wt_^eWw t#6K-I%Ku%=?F3o|lBQ)KX<7!7<`?1uaWe$>=-L1P002ovPDHLkV1miJvkU+L literal 0 HcmV?d00001 diff --git a/aircox/static/aircox/images/reload.png b/aircox/static/aircox/images/reload.png new file mode 100644 index 0000000000000000000000000000000000000000..e21f314c740729e28e9601dcb84f0b0621b8b4d3 GIT binary patch literal 1256 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 literal 0 HcmV?d00001 diff --git a/aircox/static/aircox/images/settings.png b/aircox/static/aircox/images/settings.png new file mode 100644 index 0000000000000000000000000000000000000000..23471f478021167ff2e4109de6f35041b2b0f4c8 GIT binary patch literal 1153 zcmV-{1b+L8P)$#L zx7!OlJ3B|0UF*UIf*>dWsFK{U)*gt6c%D}vnLmpGkoP>VARixfkWkmrAACTCFykRtM6y5|v72Mnv8| zC-T@Bb2~1tPs~!iUSCe5BlQTV>fXP|62$k5>BZ%W)CR1zKZ(d;+WamYMqH`jJcVkt z+UV)&=`?`f$HvBf+}+)M55Q#F!rdUbJw87E<=)=jD+65G7l4`B}Ze(QSGm@=XLB`xJ z7K^uBbtR5~@B4Yr^9rgu0bnM9?~8i9z8x1(sZ^##g9L0G@3&n;!*1P)66b6&-?abUK|6lEka(aih_A?5fLY1cD$aL|4YUuEf!S z^_z%{0C-+RG6Ur9tLj%S_vJyFIcM=vP7c6J0LEni@lo#Gt7zt&dXvilNp)@JoD5iN z4@jPjY)Sxu`W^%^)suZP;H zsi{{LqeZNN7D0BjquO+NtJ25i$0z_tO~^aHSM zz&8B=Y#XqRW7|MCxUM?@U=I=P7Ln~lG!Nja*81B*q3~NT&qmk}LzzrwSF6=}6~JhR z<_3UM#bWUb)8~i!6-XwNBh38Te+-_8Xh1{`O-xMWOf^CsfY$mIBHDbfI%b~CX0tI9 zjnD>=%jJedB+*SRfT32a^@NE|XalI#YL6(T&~3el>@?8{Z2$lQ{Ye8DGSLZT0NHGI zl!!7x`iRKSCR(A|2aJu4ZE+mu1pvv7?EC6nZNWNSy=cR{1Y&!3r_o2&I~C;&YLkjv$U>h=005lyUqN16FLGasu|DsuoZ zK0f|55xv;HwllLRrHZv$?c>?m**}bp^nh^yV`F361_lOR2e7qMyNED=b0QK4@NkFr zIc7dlE|;$w8CWBX0ssKlb>ASOM}zid<{JP$@_oM?Sa=;US_aeUv@0S(2mcoleHx3! z^7(weX`;Ix7zJQ3`1AF8{bZ-f(KbeBft72i?nRU;gmLgh<^e1Qsc*Gf|Jvn+1)~4} z1e&=49C2OuXeN_+z(j97FeCGRpBe3u~V7w1-UH2IP zNA6Z5B7cfVw8NJ7rc&yIVzKz0k@y;(SZ1DyL?Z7kFE4LXN*xBU zyS+w4zIPnwc&~T+z0mVnAe+s`>h=1QTI-!6vIW33BKoORD*bpz1VAd4$|$7{5Yh1J z{vy%>@MSa_{Uo2yFZX1|fDJtjdY-qbTCMIEk>@&`?-xYmr0@IF8)k?s-3Mf|+0kaR zISJtL_BLj|thGK~EEezF@p+!NX>oBez499EAfn#^T+v#eFBA%amgIJne@n-t(?&2oJ$+q7s@>GCESr~2bV3_|h%ht1-%YJj>a6ekznbWTHUJ``a=Gk_ z$X);cM?@}0qtVl*8lhVTJCRDI9#cvkB%+4^D56_OY5<>?N~N!QdG>t~z-{93cw~5Z zc(l=I++3?W#``LO^&r%9z(&vyz_tO~^aHSMz&8B=Y#XpmKLFbXY|{_GwgKDx1D{wG Uma96zK>z>%07*qoM6N<$g6g%A#{d8T literal 0 HcmV?d00001 diff --git a/aircox/static/aircox/images/tiles_large.png b/aircox/static/aircox/images/tiles_large.png new file mode 100755 index 0000000000000000000000000000000000000000..aaca56b0d974c1505fde1d218262bcc2994a6d5b GIT binary patch literal 316 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=EX7WqAsj$Z!;#Vf2?p zUk71ECym(^Ktah8*NBqf{Irtt#G+J&^73-M%)IR4*C^b-}Ue9KJ?9g0Yj8SFaxHR#gAV+gBkIb w2?p zUk71ECym(^Ktah8*NBqf{Irtt#G+J&^73-M%)IR43I{BcCHTMSl-$cQ~ku3%QJCb!`z=-Vq#%oW!s*!f7r0y^X1C9 zx0g)J>3GSf!^FO*sa1ftY4>NHbB`>{o=a|iFF)hwK{Mmsd;b5Marfrj*sxHpnNn5^ zvosiF8GJ<=_!`u>9M~O%Sr;%b=w!OUc!5PfA$w}`oZ|M^e4F^(7GL~ZZ>#o0Pykte zY37Iez^lh2r`4(|2~A{9yXW>qfvLA4ZSzmw!0kN6jH|5tFPm&%x0|P>;rcaG{X6*W_Qw9JFV5VGI>dNPGAFx98Q;u%(}>8#-)epG~{+`m5ZOv;SWlom#;e zA)2){O8TdA)69m02?E;~l(^y!xFxAMn14xEF=kZS6nt&ns{3n=rX*H!#^`5xW4c{=NXoZw!o`xbNk>IE*Iwx4a8 zrraYnh#+4Z;kXYRcG^3JvsDZ6yeor%8p+g<6?z3TsIMl-Zxy@x03xg+;5+?3t^wE&tpE ze&zHXht6D|!1!pf0W5|-FjY9;4?4?H$Kt~Hf+1rOLkWXPAOlPm9Dfyz`xy_-o&L3K TxxpM@Dr4|;^>bP0l+XkKRKPKQ literal 0 HcmV?d00001 diff --git a/aircox/static/aircox/images/twitter.png b/aircox/static/aircox/images/twitter.png new file mode 100755 index 0000000000000000000000000000000000000000..9751963d9ec85dc9d0d3116c307f8bb0976a9df2 GIT binary patch literal 1568 zcmaJ>`B#z&6#WP_H94sTl;Na=WtNtXduA?QjZje{iItiQW@he|3!+S>eri(#;*6=; zCMuIyT3EScb4J4zbwo`Vu_@P(KnP{dFR}F&wJH>h^dzU2%S(@)+epC(+9sT2x#x@x z-fX?Vx7-<)-!1IjZd7k*bj;e?hp?xSGjMp1+%w(kaUN;*PDu0}wiGNx=*oZh($0U3 zFY6P|hn1cWjX_2gA1`bgX)n2{mYHuEOg<{@C6+T*Tr8RuYTCp{VT*ctRZ0St&i7cT zpY0Lw|KsbeFm9!`=yGNE*+<8q&O?9~ZWI%^F*q8&@d%Ole4nG^rP0bW;qVKR%$E(dPacmPKT3L%P=nrWz?0mvMpDFQ+z!@ z*^OHJD{ORqz0*b!FXI^dLSNn^pU2>HjXo*AA) z<~6tWHPosfjm_7^vlLU~7>l|?6^&zsXyyWev&flCjG{7nmHpnXaXQL^x6W~zh&-_K z-(RHW?v*1Ji>s=u54h5n=VOL8y>;;bzmz&LNvE^TQu{BCyGt5J`$thFo4?|2*~=#w zfzi>jJA2XVubkG-)Oo#opi1vWa8JW>QytA0%oU5pi*PtRWx7#5I~$Ojy8Qs)VW?HT zR!7Gw^zBuIlAhJuC~qq!-9IWW`U_0-dls0vv#jr06z>7ld4i`JUS3{aAaU)doP{wQ zQNhEz(M)1>wq?Sd;2cxI91yQG-*DG~J42^Bj|8Z$RwjniAKQCQNoPyXkr9$8sg zKnQ843e%P1^M1!OcH^I4C7VmbS`1j_DVvWNb40h8;YYU=K!aag^+4+G^R@M`=Zfo4 zC#S~L8a0fZdQ!6xS^@YH=sbR~s|60g?Mbh2GIDSy`zC9WxSk_gcq&U&9ajt(1R;ep zOOfDY5|8iO6=iG0Bp7OWt0o~bN=?sVPv!wa0Q&sTa3S=0BOhgZ7zekz(K~cX=HO{q z4v!~92mK0JLeTb)^wuX-_~h>3A3_Sv-Ec!f8(#>i!U<;zFsC7bTQ&rv88e=zvq z5$*LnRS-vn);L+Lnh9+`?-3ap*~I0}9Rz6atjop)SD=jPG^xUNipB^qcvT-RC`fi) zt%c^z$57ce!1v+q#RR&Yn;Ryrt<8{$=%m{1vhERMv8VCkVOHvebG-f{w|8m5<9qfk z)!&8<6O^$WwlQ-GI0Zar8C=w-7C?b(2NY?+p|*?t9kY5hQaKu=MqUkHfq|7+Y<17n zVwWaX{7rNbR%AFkH+S+hmwai>EO+FC>=0S>HSm(d%q2`+d_=7~S&MV~d Ezfc begin seek(s, x) end) s = store_metadata(id=id, size=1, s) add_skip_command(s) if disable_switch then @@ -88,7 +123,7 @@ stream = fallback([ {% elif stream.begin and stream.end %} at({ {{stream.begin}}-{{stream.end}} }, stream("{{ source.id }}", "{{ source.path }}")), - {% elif not stream %} + {% else %} stream("{{ source.id }}", "{{ source.path }}"), {% endif %} {% endwith %} @@ -104,19 +139,6 @@ stream = fallback([ {% block sources_extras %} {% endblock %} - -def to_live(stream,live) - stream = fade.final(duration=2., type='log', stream) - live = fade.initial(duration=2., type='log', live) - add(normalize=false, [stream,live]) -end - -def to_stream(live,stream) - source.skip(stream) - add(normalize=false, [live,stream]) -end - - {% block station %} {{ station.streamer.id }} = interactive_source ( "{{ station.streamer.id }}", diff --git a/aircox/templates/aircox/controllers/monitor.html b/aircox/templates/aircox/controllers/monitor.html index c7e2d0a..31a485c 100755 --- a/aircox/templates/aircox/controllers/monitor.html +++ b/aircox/templates/aircox/controllers/monitor.html @@ -1,47 +1,60 @@ +{% extends "admin/base_site.html" %} {% load i18n %} +{% load static %} +{% block title %} +{% trans "Monitoring streamer" %} +{% endblock %} + +{% block content %}