Improved www.ttss.krakow.pl
Jacek Kowalski
2016-12-06 a03a801704417cf4b0bb2bb00151586b5eaf38e3
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<!DOCTYPE html>
<html lang="en">
    <head>
        <title>TTSS Cracow</title>
        <meta charset="utf-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta name="viewport" content="width=device-width, initial-scale=1">
        <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
        <style type="text/css">
            tr.active {
                color: gray;
            }
            .form-round-left {
                border-top-left-radius: 4px !important;
                border-bottom-left-radius: 4px !important;
                border-right: 0;
            }
            .navbar-text {
                margin-right: 15px;
                margin-left: 15px;
            }
            .input-group-btn:first-child {
                width: 50%;
            }
            @keyframes blink {
                50% { color: transparent; }
            }
            .status-boarding {
                animation: blink 1s linear infinite;
            }
            .status-delayed {
                font-weight: bold;
            }
            .bg-active {
                background-color: #eee;
            }
            .label.bg-success, .label.bg-warning, .label.bg-danger, .label.bg-active {
                color: black;
                font-weight: normal;
                font-size: inherit;
            }
        </style>
    </head>
    <body>
        <nav class="navbar navbar-default">
            <div class="container-fluid">
                <div class="navbar-header">
                    <a class="navbar-brand" href="#">TTSS KRK</a>
                </div>
                <form class="navbar-form navbar-left">
                    <div class="input-group">
                        <span class="input-group-btn">
                            <input type="text" class="form-control form-round-left" id="stop-name" placeholder="Stop name" />
                        </span>
                        <select class="form-control" id="stop-name-autocomplete">
                        </select>
                        <span class="input-group-btn">
                            <button type="submit" class="btn btn-default">Go</button>
                        </span>
                    </div>
                </form>
                
                <button type="button" class="btn btn-default navbar-btn pull-right" id="refresh" disabled="disabled">
                    <span class="glyphicon glyphicon-refresh" aria-hidden="true"></span>
                    Refresh
                </button>
                
                <p class="navbar-text pull-right" id="refresh-text">Initializing...</p>
            </div>
        </nav>
        <div class="container-fluid">
            <div id="alert" class="alert alert-danger alert-dismissible" style="display:none">
                <a href="#" class="close" id="alert-close" aria-label="close">&times;</a>
                <strong>Error occured!</strong> <span id="alert-text"></span>
            </div>
            
            <div class="row">
                <div class="col-md-6">
                    <h2 id="times-stop-name"></h2>
                    
                    <div id="times-alerts"></div>
                    
                    <table class="table table-striped table-condensed">
                        <thead>
                            <tr>
                                <th>Line</th>
                                <th>Direction</th>
                                <th>Time</th>
                                <th>Delay</th>
                            </tr>
                        </thead>
                        <tbody id="times-table">
                        </tbody>
                    </table>
                </div>
                <div class="col-md-6">
                    <h3>Lines</h3>
                    
                    <table class="table table-condensed">
                        <thead>
                            <tr>
                                <th>Line</th>
                                <th>Route</th>
                                <th>Carrier</th>
                            </tr>
                        </thead>
                        <tbody id="times-lines">
                            
                        </tbody>
                    </table>
                    
                    <!--
                    <h3 id="route-line"></h3>
                    
                    <table class="table table-condensed">
                        <thead>
                            <tr>
                                <th>Stop</th>
                            </tr>
                        </thead>
                        <tbody id="route-table">
                            
                        </tbody>
                    </table>
                    -->
                    
                    <p class="small">
                        Legend:
                        <span class="label bg-success">At stop</span>
                        <span class="label bg-warning">Slightly delayed</span>
                        <span class="label bg-danger">Heavily delayed</span>
                        <span class="label bg-active">Departed</span>
                    </p>
                    
                    <p class="small">Relative times (eg. 3 min) are real-time arrivals based on tram location data. Absolute times (eg. 8:01) are scheduled departures, shown when the tram cannot be located. "?" means unknown delay.</p>
                    
                    <p class="small">&copy; 2016 Jacek Kowalski - <a href="https://github.com/jacekkow/mpk-ttss">Source</a> - <a href="https://raw.githubusercontent.com/jacekkow/mpk-ttss/master/LICENSE">License</a></p>
                </div>
            </div>
        </div>
        <script src="https://code.jquery.com/jquery-3.1.1.min.js" integrity="sha384-3ceskX3iaEnIogmQchP8opvBy3Mi7Ce34nWjpBIwVTHfGYWQS9jwHDVRnpKKHJg7"  crossorigin="anonymous"></script>
        <script type="text/javascript" src="index.js"></script>
    </body>
</html>