Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
dividuum committed Jul 20, 2014
0 parents commit 47b8d84
Show file tree
Hide file tree
Showing 24 changed files with 4,925 additions and 0 deletions.
19 changes: 19 additions & 0 deletions COPYRIGHT
@@ -0,0 +1,19 @@
Copyright (C) 2014 Florian Wesch <fw@dividuum.de>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
24 changes: 24 additions & 0 deletions MANIFEST
@@ -0,0 +1,24 @@
COPYRIGHT
dateutil/__init__.py
dateutil/parser.py
dateutil/relativedelta.py
dateutil/rrule.py
dateutil/tz.py
defusedxml/common.py
defusedxml/ElementTree.py
defusedxml/__init__.py
empty.png
hosted.lua
hosted.py
importer.py
MANIFEST
node.json
node.lua
package.json
package.png
progress.frag
README.creole
screenshot.jpg
service
silkscreen.ttf
utils.py
95 changes: 95 additions & 0 deletions README.creole
@@ -0,0 +1,95 @@
= Conference Room Information

{{screenshot.jpg|Screenshot}}

= Description

Displays information about the next talk, talks in other rooms and generic room information.
Scheduling information is imported from a https://frab.cccv.de/ export.

= Configuration

== Logo (logo)

Sets a logo. Size should be 280x100 pixel. Otherwise the image will be scaled to that size which
might lead to a reduced quality.

== Other room display (other_rooms)

How long to show information about talks in other rooms (in seconds)

== Current room (current_room)

How long to show information about the (upcoming) talk in the current room.
Default is 15 seconds.

The current talk is displayed for the first 25 minutes of that talk. So in
case of a delayed start the screen will stil show useful information.

After 25 minutes into the talk this screen will show information about the
next talk.

== Room info (room_info)

Shows information about the current room (irc channel, recommended hashtag).

== Schedule URL (schedule_url)

Url where the running devices should fetch the schedule from. The schedule
is expected to be in the frabs export format. This format looks something
like this:

{{{
<schedule>
<conference>
<title>EuroPython 2014</title>
<acronym>EP2014</acronym>
<start>2014-07-21</start>
<end>2014-07-27</end>
<days>7</days>
<timeslot_duration>00:15</timeslot_duration>
</conference>
<day date="2014-07-21" index="1">
<room name="C01">
<event id="118">
...
</schedule>
}}}

== Rooms (rooms)

Here you can defined your rooms. You can use the same Setup for multiple
rooms.

==== Room name (name)

Sets the room name. This name must match the room name in the Schedule.

=== Short Room name (name_short)

Sets the display name of the room. You can set a shorter name for a room
since space on the display is limited.

=== Device Serial (serial)

Enter the serial number of the device that is responsible for showing
room information here.

=== Dect (dect)

Information about what number to dial to live audio feed.

=== Translation (translation)

Information about what number to dial to a live audio translation.

=== Hashtag (hashtag)

Information about the hashtag recommended for discussing the content
of the current room.

=== IRC (irc)

Information about the recommended IRC channel to talk about the content
of the current room.

9 changes: 9 additions & 0 deletions dateutil/__init__.py
@@ -0,0 +1,9 @@
"""
Copyright (c) 2003-2010 Gustavo Niemeyer <gustavo@niemeyer.net>
This module offers extensions to the standard python 2.3+
datetime module.
"""
__author__ = "Gustavo Niemeyer <gustavo@niemeyer.net>"
__license__ = "PSF License"
__version__ = "1.5"

0 comments on commit 47b8d84

Please sign in to comment.