Department of Transport (1983–87)

The Department of Transport was an Australian government department that existed between March 1983 and July 1987. It was announced by Prime Minister Bob Hawke as a new agency on his first day in the leadership position. The former Department of Transport and Construction was split into two departments, reconstituting the separate Department of Housing and Construction so as "to provide a focus for policies affecting the housing and building industries".[1]

Department of Transport
Department overview
Formed11 March 1983[1]
Preceding Department
Dissolved24 July 1987[1]
Superseding agency
JurisdictionCommonwealth of Australia
Minister responsible
Department executives

According to the Administrative Arrangements Order (AAO) made on 11 March 1983, the Department dealt with:[1]

  • Shipping and marine navigation (including lighthouses, lightships, beacons and buoys)
  • Land transport

Structure

The Department was an Australian Public Service department responsible to the Minister for Transport, Peter Morris.[1] Department officials were headed by a Secretary, initially Rae Taylor (until February 1986),[1] then Colin Freeland.[2]

gollark: This is an API I run to do some random things.
gollark: ```python#!/usr/bin/env python3from flask import Flask, jsonifyfrom wsgiref.simple_server import make_serverimport subprocessimport randomfrom mpd import MPDClientimport threadingimport timempd_client = MPDClient()mpd_client.connect("localhost", 6600)print("connected, mpd is", mpd_client.mpd_version)app = Flask(__name__)@app.route("/")def index(): return "Hello, World!"@app.route("/fortune/")def fortune(): return subprocess.run(["fortune"], stdout=subprocess.PIPE).stdoutcurrent_song = Nonedef mpd_loop(): print("mpd query loop started") while True: global current_song current_song = mpd_client.currentsong() current_song["status"] = mpd_client.status() time.sleep(0.2)threading.Thread(target=mpd_loop).start()@app.route("/current-song")def get_current_song(): return jsonify(current_song)with make_server('', 1337, app) as httpd: print("Serving HTTP...") httpd.serve_forever()```
gollark: It doesn't require classes. Hold on.
gollark: I saw `getunicode`, which seems python2-ish since python3 has better unicode handling.
gollark: Also, please use Flask and Python3.

References

  1. CA 3501: Department of Transport [IV], Central Office, National Archives of Australia, retrieved 2 December 2013
  2. Hawke, Robert (10 February 1986). "UNKNOWN" (Press release). Archived from the original on 1 November 2013.


This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.