├── .project ├── .pydevproject ├── .settings └── org.eclipse.core.resources.prefs ├── README.md ├── preview ├── 0.login.jpg ├── 1.home.jpg ├── 2.user.jpg ├── 3.passwd.jpg ├── 4.project.jpg ├── 5.server.jpg └── 6.logview.jpg └── src ├── LogMgmt ├── __init__.py ├── __init__.pyc ├── settings.py ├── settings.pyc ├── urls.py ├── urls.pyc ├── wsgi.py └── wsgi.pyc ├── LogsMgmt ├── __init__.py ├── __init__.pyc ├── admin.py ├── admin.pyc ├── models.py ├── models.pyc ├── static │ ├── css │ │ ├── adaptiveMenu.css │ │ ├── bootstrap-responsive.css │ │ ├── bootstrap-responsive.min.css │ │ ├── bootstrap.css │ │ ├── bootstrap.min.css │ │ └── site.css │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ ├── img │ │ ├── bg.png │ │ ├── fav.ico │ │ ├── glyphicons-halflings-white.png │ │ ├── glyphicons-halflings.png │ │ ├── hand.png │ │ ├── left-handing.png │ │ ├── left_hand.png │ │ ├── password.png │ │ ├── right_hand.png │ │ ├── right_handing.png │ │ ├── tou.png │ │ └── username.png │ └── js │ │ ├── adaptiveMenu.js.del │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ ├── excanvas.min.js │ │ ├── html5.js │ │ ├── jquery-1.9.1.min.js │ │ ├── jquery.flot.js │ │ ├── jquery.flot.resize.js │ │ ├── jquery.js │ │ └── template.js ├── templates │ ├── base.html │ ├── home.html │ ├── login.html │ ├── passwd.html │ ├── project.html │ ├── server.html │ ├── users.html │ └── welcome.html ├── tests.py ├── tests.pyc ├── views.py └── views.pyc ├── error.log ├── manage.py └── manage.pyc /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ningyuanye/LogView/HEAD/.project -------------------------------------------------------------------------------- /.pydevproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ningyuanye/LogView/HEAD/.pydevproject -------------------------------------------------------------------------------- /.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ningyuanye/LogView/HEAD/.settings/org.eclipse.core.resources.prefs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ningyuanye/LogView/HEAD/README.md -------------------------------------------------------------------------------- /preview/0.login.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ningyuanye/LogView/HEAD/preview/0.login.jpg -------------------------------------------------------------------------------- /preview/1.home.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ningyuanye/LogView/HEAD/preview/1.home.jpg -------------------------------------------------------------------------------- /preview/2.user.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ningyuanye/LogView/HEAD/preview/2.user.jpg -------------------------------------------------------------------------------- /preview/3.passwd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ningyuanye/LogView/HEAD/preview/3.passwd.jpg -------------------------------------------------------------------------------- /preview/4.project.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ningyuanye/LogView/HEAD/preview/4.project.jpg -------------------------------------------------------------------------------- /preview/5.server.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ningyuanye/LogView/HEAD/preview/5.server.jpg -------------------------------------------------------------------------------- /preview/6.logview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ningyuanye/LogView/HEAD/preview/6.logview.jpg -------------------------------------------------------------------------------- /src/LogMgmt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/LogMgmt/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ningyuanye/LogView/HEAD/src/LogMgmt/__init__.pyc -------------------------------------------------------------------------------- /src/LogMgmt/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ningyuanye/LogView/HEAD/src/LogMgmt/settings.py -------------------------------------------------------------------------------- /src/LogMgmt/settings.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ningyuanye/LogView/HEAD/src/LogMgmt/settings.pyc -------------------------------------------------------------------------------- /src/LogMgmt/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ningyuanye/LogView/HEAD/src/LogMgmt/urls.py -------------------------------------------------------------------------------- /src/LogMgmt/urls.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ningyuanye/LogView/HEAD/src/LogMgmt/urls.pyc -------------------------------------------------------------------------------- /src/LogMgmt/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ningyuanye/LogView/HEAD/src/LogMgmt/wsgi.py -------------------------------------------------------------------------------- /src/LogMgmt/wsgi.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ningyuanye/LogView/HEAD/src/LogMgmt/wsgi.pyc -------------------------------------------------------------------------------- /src/LogsMgmt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/LogsMgmt/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ningyuanye/LogView/HEAD/src/LogsMgmt/__init__.pyc -------------------------------------------------------------------------------- /src/LogsMgmt/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ningyuanye/LogView/HEAD/src/LogsMgmt/admin.py -------------------------------------------------------------------------------- /src/LogsMgmt/admin.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ningyuanye/LogView/HEAD/src/LogsMgmt/admin.pyc -------------------------------------------------------------------------------- /src/LogsMgmt/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ningyuanye/LogView/HEAD/src/LogsMgmt/models.py -------------------------------------------------------------------------------- /src/LogsMgmt/models.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ningyuanye/LogView/HEAD/src/LogsMgmt/models.pyc -------------------------------------------------------------------------------- /src/LogsMgmt/static/css/adaptiveMenu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ningyuanye/LogView/HEAD/src/LogsMgmt/static/css/adaptiveMenu.css -------------------------------------------------------------------------------- /src/LogsMgmt/static/css/bootstrap-responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ningyuanye/LogView/HEAD/src/LogsMgmt/static/css/bootstrap-responsive.css -------------------------------------------------------------------------------- /src/LogsMgmt/static/css/bootstrap-responsive.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ningyuanye/LogView/HEAD/src/LogsMgmt/static/css/bootstrap-responsive.min.css -------------------------------------------------------------------------------- /src/LogsMgmt/static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ningyuanye/LogView/HEAD/src/LogsMgmt/static/css/bootstrap.css -------------------------------------------------------------------------------- /src/LogsMgmt/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ningyuanye/LogView/HEAD/src/LogsMgmt/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /src/LogsMgmt/static/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ningyuanye/LogView/HEAD/src/LogsMgmt/static/css/site.css -------------------------------------------------------------------------------- /src/LogsMgmt/static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ningyuanye/LogView/HEAD/src/LogsMgmt/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /src/LogsMgmt/static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ningyuanye/LogView/HEAD/src/LogsMgmt/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /src/LogsMgmt/static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ningyuanye/LogView/HEAD/src/LogsMgmt/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /src/LogsMgmt/static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ningyuanye/LogView/HEAD/src/LogsMgmt/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /src/LogsMgmt/static/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ningyuanye/LogView/HEAD/src/LogsMgmt/static/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /src/LogsMgmt/static/img/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ningyuanye/LogView/HEAD/src/LogsMgmt/static/img/bg.png -------------------------------------------------------------------------------- /src/LogsMgmt/static/img/fav.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ningyuanye/LogView/HEAD/src/LogsMgmt/static/img/fav.ico -------------------------------------------------------------------------------- /src/LogsMgmt/static/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ningyuanye/LogView/HEAD/src/LogsMgmt/static/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /src/LogsMgmt/static/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ningyuanye/LogView/HEAD/src/LogsMgmt/static/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /src/LogsMgmt/static/img/hand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ningyuanye/LogView/HEAD/src/LogsMgmt/static/img/hand.png -------------------------------------------------------------------------------- /src/LogsMgmt/static/img/left-handing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ningyuanye/LogView/HEAD/src/LogsMgmt/static/img/left-handing.png -------------------------------------------------------------------------------- /src/LogsMgmt/static/img/left_hand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ningyuanye/LogView/HEAD/src/LogsMgmt/static/img/left_hand.png -------------------------------------------------------------------------------- /src/LogsMgmt/static/img/password.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ningyuanye/LogView/HEAD/src/LogsMgmt/static/img/password.png -------------------------------------------------------------------------------- /src/LogsMgmt/static/img/right_hand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ningyuanye/LogView/HEAD/src/LogsMgmt/static/img/right_hand.png -------------------------------------------------------------------------------- /src/LogsMgmt/static/img/right_handing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ningyuanye/LogView/HEAD/src/LogsMgmt/static/img/right_handing.png -------------------------------------------------------------------------------- /src/LogsMgmt/static/img/tou.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ningyuanye/LogView/HEAD/src/LogsMgmt/static/img/tou.png -------------------------------------------------------------------------------- /src/LogsMgmt/static/img/username.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ningyuanye/LogView/HEAD/src/LogsMgmt/static/img/username.png -------------------------------------------------------------------------------- /src/LogsMgmt/static/js/adaptiveMenu.js.del: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ningyuanye/LogView/HEAD/src/LogsMgmt/static/js/adaptiveMenu.js.del -------------------------------------------------------------------------------- /src/LogsMgmt/static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ningyuanye/LogView/HEAD/src/LogsMgmt/static/js/bootstrap.js -------------------------------------------------------------------------------- /src/LogsMgmt/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ningyuanye/LogView/HEAD/src/LogsMgmt/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /src/LogsMgmt/static/js/excanvas.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ningyuanye/LogView/HEAD/src/LogsMgmt/static/js/excanvas.min.js -------------------------------------------------------------------------------- /src/LogsMgmt/static/js/html5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ningyuanye/LogView/HEAD/src/LogsMgmt/static/js/html5.js -------------------------------------------------------------------------------- /src/LogsMgmt/static/js/jquery-1.9.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ningyuanye/LogView/HEAD/src/LogsMgmt/static/js/jquery-1.9.1.min.js -------------------------------------------------------------------------------- /src/LogsMgmt/static/js/jquery.flot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ningyuanye/LogView/HEAD/src/LogsMgmt/static/js/jquery.flot.js -------------------------------------------------------------------------------- /src/LogsMgmt/static/js/jquery.flot.resize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ningyuanye/LogView/HEAD/src/LogsMgmt/static/js/jquery.flot.resize.js -------------------------------------------------------------------------------- /src/LogsMgmt/static/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ningyuanye/LogView/HEAD/src/LogsMgmt/static/js/jquery.js -------------------------------------------------------------------------------- /src/LogsMgmt/static/js/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ningyuanye/LogView/HEAD/src/LogsMgmt/static/js/template.js -------------------------------------------------------------------------------- /src/LogsMgmt/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ningyuanye/LogView/HEAD/src/LogsMgmt/templates/base.html -------------------------------------------------------------------------------- /src/LogsMgmt/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ningyuanye/LogView/HEAD/src/LogsMgmt/templates/home.html -------------------------------------------------------------------------------- /src/LogsMgmt/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ningyuanye/LogView/HEAD/src/LogsMgmt/templates/login.html -------------------------------------------------------------------------------- /src/LogsMgmt/templates/passwd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ningyuanye/LogView/HEAD/src/LogsMgmt/templates/passwd.html -------------------------------------------------------------------------------- /src/LogsMgmt/templates/project.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ningyuanye/LogView/HEAD/src/LogsMgmt/templates/project.html -------------------------------------------------------------------------------- /src/LogsMgmt/templates/server.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ningyuanye/LogView/HEAD/src/LogsMgmt/templates/server.html -------------------------------------------------------------------------------- /src/LogsMgmt/templates/users.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ningyuanye/LogView/HEAD/src/LogsMgmt/templates/users.html -------------------------------------------------------------------------------- /src/LogsMgmt/templates/welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ningyuanye/LogView/HEAD/src/LogsMgmt/templates/welcome.html -------------------------------------------------------------------------------- /src/LogsMgmt/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ningyuanye/LogView/HEAD/src/LogsMgmt/tests.py -------------------------------------------------------------------------------- /src/LogsMgmt/tests.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ningyuanye/LogView/HEAD/src/LogsMgmt/tests.pyc -------------------------------------------------------------------------------- /src/LogsMgmt/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ningyuanye/LogView/HEAD/src/LogsMgmt/views.py -------------------------------------------------------------------------------- /src/LogsMgmt/views.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ningyuanye/LogView/HEAD/src/LogsMgmt/views.pyc -------------------------------------------------------------------------------- /src/error.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ningyuanye/LogView/HEAD/src/manage.py -------------------------------------------------------------------------------- /src/manage.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ningyuanye/LogView/HEAD/src/manage.pyc --------------------------------------------------------------------------------