Unverified Commit 9b8e639c authored by Birte Kristina Friesel's avatar Birte Kristina Friesel
Browse files

efa-m: Support "FULL" occupancy

parent 11ccc34a
Loading
Loading
Loading
Loading
+6 −3
Original line number Diff line number Diff line
@@ -339,12 +339,15 @@ sub show_results {
		}
		elsif ( $d->occupancy ) {
			if ( $d->occupancy eq 'MANY_SEATS' ) {
				$output_line[3] = '_';
				$output_line[3] = '.';
			}
			elsif ( $d->occupancy eq 'FEW_SEATS' ) {
				$output_line[3] = '*';
				$output_line[3] = 'o';
			}
			elsif ( $d->occupancy eq 'STANDING_ONLY' ) {
				$output_line[3] = '*';
			}
			elsif ( $d->occupancy eq 'FULL' ) {
				$output_line[3] = '!';
			}
			else {
@@ -448,7 +451,7 @@ For each departure, it shows

=item * line,

=item * expected occupation (from _ to !, if available), and
=item * expected occupation (range . o * !, if available), and

=item * destination.