Skip to content
This repository has been archived by the owner on Jan 19, 2020. It is now read-only.

Auto discovery of readers, total of readers and image file name at completion #12

Open
wants to merge 25 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
2615f85
Created cherrypy api system based on php code of osid
aaronnguyen Sep 7, 2017
59a4eb9
Created html page based on osid page, replaced php with api calls and…
aaronnguyen Sep 7, 2017
75bc84f
updated README and LICENSE
aaronnguyen Sep 7, 2017
c6f81f0
rm all old osid files
aaronnguyen Sep 7, 2017
3f594c7
added basic python ignore from github
aaronnguyen Sep 7, 2017
be23a8a
pulled the server configuration into the ini file
aaronnguyen Sep 7, 2017
87ca5d9
took out the Skeleton Embedded css and had server inject the api host…
aaronnguyen Sep 7, 2017
01470cb
added form validation to html ui
aaronnguyen Sep 8, 2017
8bb6f16
Prettify html and added comments
aaronnguyen Sep 8, 2017
923cc77
added commands to copy img to sdcards and added proper percetage read…
aaronnguyen Sep 8, 2017
a30a877
changed the way server makes dd call. write to file then bash the fil…
aaronnguyen Sep 8, 2017
23e1147
changed the headings to shrink the size down a bit
aaronnguyen Sep 9, 2017
3031875
added monitor page to track the progress of the process
aaronnguyen Sep 9, 2017
3ee3d19
removed percentage from the json getStatus, added a simulation to ser…
aaronnguyen Sep 9, 2017
f04a094
added a return to home link after process complete. also added github…
aaronnguyen Sep 12, 2017
7ac1378
added daemon process, full paths replacing relative ones, posted now …
aaronnguyen Sep 12, 2017
bce8b8f
created a quick desktop file to start up server and open chromium on …
aaronnguyen Sep 12, 2017
cd8776c
adding a skeleton css file as it is required
aaronnguyen Sep 12, 2017
7ca7632
updated with readme with setup instructions
aaronnguyen Sep 12, 2017
0c4734f
Merge pull request #1 from aaronnguyen/cherrypy-dev
aaronnguyen Sep 12, 2017
9a17af8
Fixes #2 - If dev list is a string, create a single item list
aaronnguyen Oct 2, 2017
4d6de1f
Added option to select all devices in list in home ui
aaronnguyen Oct 2, 2017
4fa24b5
Updated versioning to 1.1.1
aaronnguyen Oct 2, 2017
c7314ba
Merge pull request #3 from aaronnguyen/cherrypy-dev
aaronnguyen Oct 4, 2017
271dfc7
Auto discovery, device total, image name on completion
Mar 23, 2018
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
107 changes: 107 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,107 @@
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg

# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
.hypothesis/

# Translations
*.mo
*.pot

# Django stuff:
*.log
local_settings.py

# Flask stuff:
instance/
.webassets-cache

# Scrapy stuff:
.scrapy

# Sphinx documentation
docs/_build/

# PyBuilder
target/

# Jupyter Notebook
.ipynb_checkpoints

# pyenv
.python-version

# celery beat schedule file
celerybeat-schedule

# SageMath parsed files
*.sage.py

# Environments
.env
.venv
env/
venv/
ENV/

# Spyder project settings
.spyderproject
.spyproject

# Rope project settings
.ropeproject

# mkdocs documentation
/site

# mypy
.mypy_cache/



# Project specific
system/server.ini
.remote-sync.json
system/osid.desktop
system/run_app.sh
13 changes: 0 additions & 13 deletions .project

This file was deleted.

Loading