From 7e2e182315364d0f86b2ee694dd7c4d0a79f919a Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Wed, 6 Apr 2016 15:45:02 +0800 Subject: [PATCH] put dashboard-specific files in separate directory --- artiq/dashboard/__init__.py | 0 artiq/{gui => dashboard}/datasets.py | 0 artiq/{gui => dashboard}/experiments.py | 0 artiq/{gui => dashboard}/explorer.py | 0 artiq/{gui => dashboard}/log.py | 0 artiq/{gui => dashboard}/moninj.py | 0 artiq/{gui => dashboard}/schedule.py | 0 artiq/{gui => dashboard}/shortcuts.py | 0 artiq/frontend/artiq_dashboard.py | 5 +++-- 9 files changed, 3 insertions(+), 2 deletions(-) create mode 100644 artiq/dashboard/__init__.py rename artiq/{gui => dashboard}/datasets.py (100%) rename artiq/{gui => dashboard}/experiments.py (100%) rename artiq/{gui => dashboard}/explorer.py (100%) rename artiq/{gui => dashboard}/log.py (100%) rename artiq/{gui => dashboard}/moninj.py (100%) rename artiq/{gui => dashboard}/schedule.py (100%) rename artiq/{gui => dashboard}/shortcuts.py (100%) diff --git a/artiq/dashboard/__init__.py b/artiq/dashboard/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/artiq/gui/datasets.py b/artiq/dashboard/datasets.py similarity index 100% rename from artiq/gui/datasets.py rename to artiq/dashboard/datasets.py diff --git a/artiq/gui/experiments.py b/artiq/dashboard/experiments.py similarity index 100% rename from artiq/gui/experiments.py rename to artiq/dashboard/experiments.py diff --git a/artiq/gui/explorer.py b/artiq/dashboard/explorer.py similarity index 100% rename from artiq/gui/explorer.py rename to artiq/dashboard/explorer.py diff --git a/artiq/gui/log.py b/artiq/dashboard/log.py similarity index 100% rename from artiq/gui/log.py rename to artiq/dashboard/log.py diff --git a/artiq/gui/moninj.py b/artiq/dashboard/moninj.py similarity index 100% rename from artiq/gui/moninj.py rename to artiq/dashboard/moninj.py diff --git a/artiq/gui/schedule.py b/artiq/dashboard/schedule.py similarity index 100% rename from artiq/gui/schedule.py rename to artiq/dashboard/schedule.py diff --git a/artiq/gui/shortcuts.py b/artiq/dashboard/shortcuts.py similarity index 100% rename from artiq/gui/shortcuts.py rename to artiq/dashboard/shortcuts.py diff --git a/artiq/frontend/artiq_dashboard.py b/artiq/frontend/artiq_dashboard.py index 7b4977079..78769cdd6 100755 --- a/artiq/frontend/artiq_dashboard.py +++ b/artiq/frontend/artiq_dashboard.py @@ -12,8 +12,9 @@ from artiq import __artiq_dir__ as artiq_dir from artiq.tools import * from artiq.protocols.pc_rpc import AsyncioClient from artiq.gui.models import ModelSubscriber -from artiq.gui import (state, experiments, shortcuts, explorer, - moninj, datasets, applets, schedule, log) +from artiq.gui import state, applets +from artiq.dashboard import (experiments, shortcuts, explorer, + moninj, datasets, schedule, log) def get_argparser():