├── .gitignore ├── .npmignore ├── Gruntfile.js ├── LICENSE ├── README.md ├── app.js ├── db ├── appset-.json ├── config.js ├── mysql_db.js └── userlist_comment_article.js ├── package.json ├── public ├── images │ ├── Sorting icons.psd │ ├── add.gif │ ├── back_disabled.png │ ├── back_enabled.png │ ├── back_enabled_hover.png │ ├── close.gif │ ├── favicon.ico │ ├── forward_disabled.png │ ├── forward_enabled.png │ ├── forward_enabled_hover.png │ ├── loading.gif │ ├── loading副本.gif │ ├── logo.gif │ ├── ok.gif │ ├── qq.gif │ ├── sort_asc.png │ ├── sort_asc_disabled.png │ ├── sort_both.png │ ├── sort_desc.png │ ├── sort_desc_disabled.png │ └── weibo.gif ├── img │ ├── glyphicons-halflings-white.png │ └── glyphicons-halflings.png ├── javascripts │ ├── angular │ │ └── angularjs │ │ │ └── 1.1.5 │ │ │ ├── angular-debug.js │ │ │ └── angular.js │ ├── assets │ │ └── boots-jquery.js │ ├── bootstrap │ │ ├── bootstrap │ │ │ └── 2.3.2 │ │ │ │ ├── bootstrap.js │ │ │ │ └── bootstrap.min.js │ │ └── paginator │ │ │ └── 1.0.2 │ │ │ ├── bootstrap-paginator.js │ │ │ └── bootstrap-paginator.min.js │ ├── jquery │ │ ├── datatable │ │ │ └── 1.10.4 │ │ │ │ └── jquery.dataTables.js │ │ ├── easing │ │ │ └── 1.3.0 │ │ │ │ ├── easing-debug.js │ │ │ │ ├── easing.js │ │ │ │ └── package.json │ │ ├── jquery │ │ │ └── 1.10.1 │ │ │ │ ├── jquery-debug.js │ │ │ │ ├── jquery.js │ │ │ │ └── package.json │ │ ├── mypage │ │ │ └── 1.0.0 │ │ │ │ └── mypage.js │ │ └── zepto │ │ │ └── 1.1.6 │ │ │ ├── zepto.js │ │ │ └── zepto.min.js │ ├── seajs │ │ └── seajs │ │ │ ├── 2.1.0 │ │ │ ├── package.json │ │ │ ├── sea-debug.js │ │ │ ├── sea.js │ │ │ └── sea.js.map │ │ │ ├── 2.1.1 │ │ │ ├── package.json │ │ │ ├── sea-debug.js │ │ │ ├── sea.js │ │ │ └── sea.js.map │ │ │ ├── 2.2.0 │ │ │ ├── package.json │ │ │ ├── sea-debug.js │ │ │ └── sea.js │ │ │ └── 3.0.0 │ │ │ └── sea.js │ └── share │ │ ├── all │ │ ├── 1.0.0 │ │ │ ├── all-back.js │ │ │ └── all.js │ │ └── 2.0.0 │ │ │ └── all.js │ │ ├── extend │ │ └── 1.0.0 │ │ │ └── extendzepto.js │ │ └── verify │ │ └── 1.0.0 │ │ └── verify.js └── stylesheets │ ├── bootstrap.css │ ├── datatables.min.css │ └── style.css ├── routes ├── function.js ├── index.js ├── routes_classify.js └── user.js └── views ├── admin.html ├── error.html ├── footer.html ├── forget.html ├── friendly-error.html ├── header.html ├── home.html ├── homeback.html ├── index.html ├── login.html ├── nav.html ├── paster.html ├── register.html ├── soso.html ├── upload.html ├── wx-active.html └── wxinit.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/.npmignore -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/README.md -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/app.js -------------------------------------------------------------------------------- /db/appset-.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/db/appset-.json -------------------------------------------------------------------------------- /db/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/db/config.js -------------------------------------------------------------------------------- /db/mysql_db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/db/mysql_db.js -------------------------------------------------------------------------------- /db/userlist_comment_article.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/db/userlist_comment_article.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/package.json -------------------------------------------------------------------------------- /public/images/Sorting icons.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/public/images/Sorting icons.psd -------------------------------------------------------------------------------- /public/images/add.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/public/images/add.gif -------------------------------------------------------------------------------- /public/images/back_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/public/images/back_disabled.png -------------------------------------------------------------------------------- /public/images/back_enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/public/images/back_enabled.png -------------------------------------------------------------------------------- /public/images/back_enabled_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/public/images/back_enabled_hover.png -------------------------------------------------------------------------------- /public/images/close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/public/images/close.gif -------------------------------------------------------------------------------- /public/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/public/images/favicon.ico -------------------------------------------------------------------------------- /public/images/forward_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/public/images/forward_disabled.png -------------------------------------------------------------------------------- /public/images/forward_enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/public/images/forward_enabled.png -------------------------------------------------------------------------------- /public/images/forward_enabled_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/public/images/forward_enabled_hover.png -------------------------------------------------------------------------------- /public/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/public/images/loading.gif -------------------------------------------------------------------------------- /public/images/loading副本.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/public/images/loading副本.gif -------------------------------------------------------------------------------- /public/images/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/public/images/logo.gif -------------------------------------------------------------------------------- /public/images/ok.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/public/images/ok.gif -------------------------------------------------------------------------------- /public/images/qq.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/public/images/qq.gif -------------------------------------------------------------------------------- /public/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/public/images/sort_asc.png -------------------------------------------------------------------------------- /public/images/sort_asc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/public/images/sort_asc_disabled.png -------------------------------------------------------------------------------- /public/images/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/public/images/sort_both.png -------------------------------------------------------------------------------- /public/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/public/images/sort_desc.png -------------------------------------------------------------------------------- /public/images/sort_desc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/public/images/sort_desc_disabled.png -------------------------------------------------------------------------------- /public/images/weibo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/public/images/weibo.gif -------------------------------------------------------------------------------- /public/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/public/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /public/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/public/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /public/javascripts/angular/angularjs/1.1.5/angular-debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/public/javascripts/angular/angularjs/1.1.5/angular-debug.js -------------------------------------------------------------------------------- /public/javascripts/angular/angularjs/1.1.5/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/public/javascripts/angular/angularjs/1.1.5/angular.js -------------------------------------------------------------------------------- /public/javascripts/assets/boots-jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/public/javascripts/assets/boots-jquery.js -------------------------------------------------------------------------------- /public/javascripts/bootstrap/bootstrap/2.3.2/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/public/javascripts/bootstrap/bootstrap/2.3.2/bootstrap.js -------------------------------------------------------------------------------- /public/javascripts/bootstrap/bootstrap/2.3.2/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/public/javascripts/bootstrap/bootstrap/2.3.2/bootstrap.min.js -------------------------------------------------------------------------------- /public/javascripts/bootstrap/paginator/1.0.2/bootstrap-paginator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/public/javascripts/bootstrap/paginator/1.0.2/bootstrap-paginator.js -------------------------------------------------------------------------------- /public/javascripts/bootstrap/paginator/1.0.2/bootstrap-paginator.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/public/javascripts/bootstrap/paginator/1.0.2/bootstrap-paginator.min.js -------------------------------------------------------------------------------- /public/javascripts/jquery/datatable/1.10.4/jquery.dataTables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/public/javascripts/jquery/datatable/1.10.4/jquery.dataTables.js -------------------------------------------------------------------------------- /public/javascripts/jquery/easing/1.3.0/easing-debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/public/javascripts/jquery/easing/1.3.0/easing-debug.js -------------------------------------------------------------------------------- /public/javascripts/jquery/easing/1.3.0/easing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/public/javascripts/jquery/easing/1.3.0/easing.js -------------------------------------------------------------------------------- /public/javascripts/jquery/easing/1.3.0/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/public/javascripts/jquery/easing/1.3.0/package.json -------------------------------------------------------------------------------- /public/javascripts/jquery/jquery/1.10.1/jquery-debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/public/javascripts/jquery/jquery/1.10.1/jquery-debug.js -------------------------------------------------------------------------------- /public/javascripts/jquery/jquery/1.10.1/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/public/javascripts/jquery/jquery/1.10.1/jquery.js -------------------------------------------------------------------------------- /public/javascripts/jquery/jquery/1.10.1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/public/javascripts/jquery/jquery/1.10.1/package.json -------------------------------------------------------------------------------- /public/javascripts/jquery/mypage/1.0.0/mypage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/public/javascripts/jquery/mypage/1.0.0/mypage.js -------------------------------------------------------------------------------- /public/javascripts/jquery/zepto/1.1.6/zepto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/public/javascripts/jquery/zepto/1.1.6/zepto.js -------------------------------------------------------------------------------- /public/javascripts/jquery/zepto/1.1.6/zepto.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/public/javascripts/jquery/zepto/1.1.6/zepto.min.js -------------------------------------------------------------------------------- /public/javascripts/seajs/seajs/2.1.0/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/public/javascripts/seajs/seajs/2.1.0/package.json -------------------------------------------------------------------------------- /public/javascripts/seajs/seajs/2.1.0/sea-debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/public/javascripts/seajs/seajs/2.1.0/sea-debug.js -------------------------------------------------------------------------------- /public/javascripts/seajs/seajs/2.1.0/sea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/public/javascripts/seajs/seajs/2.1.0/sea.js -------------------------------------------------------------------------------- /public/javascripts/seajs/seajs/2.1.0/sea.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/public/javascripts/seajs/seajs/2.1.0/sea.js.map -------------------------------------------------------------------------------- /public/javascripts/seajs/seajs/2.1.1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/public/javascripts/seajs/seajs/2.1.1/package.json -------------------------------------------------------------------------------- /public/javascripts/seajs/seajs/2.1.1/sea-debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/public/javascripts/seajs/seajs/2.1.1/sea-debug.js -------------------------------------------------------------------------------- /public/javascripts/seajs/seajs/2.1.1/sea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/public/javascripts/seajs/seajs/2.1.1/sea.js -------------------------------------------------------------------------------- /public/javascripts/seajs/seajs/2.1.1/sea.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/public/javascripts/seajs/seajs/2.1.1/sea.js.map -------------------------------------------------------------------------------- /public/javascripts/seajs/seajs/2.2.0/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/public/javascripts/seajs/seajs/2.2.0/package.json -------------------------------------------------------------------------------- /public/javascripts/seajs/seajs/2.2.0/sea-debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/public/javascripts/seajs/seajs/2.2.0/sea-debug.js -------------------------------------------------------------------------------- /public/javascripts/seajs/seajs/2.2.0/sea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/public/javascripts/seajs/seajs/2.2.0/sea.js -------------------------------------------------------------------------------- /public/javascripts/seajs/seajs/3.0.0/sea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/public/javascripts/seajs/seajs/3.0.0/sea.js -------------------------------------------------------------------------------- /public/javascripts/share/all/1.0.0/all-back.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/public/javascripts/share/all/1.0.0/all-back.js -------------------------------------------------------------------------------- /public/javascripts/share/all/1.0.0/all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/public/javascripts/share/all/1.0.0/all.js -------------------------------------------------------------------------------- /public/javascripts/share/all/2.0.0/all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/public/javascripts/share/all/2.0.0/all.js -------------------------------------------------------------------------------- /public/javascripts/share/extend/1.0.0/extendzepto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/public/javascripts/share/extend/1.0.0/extendzepto.js -------------------------------------------------------------------------------- /public/javascripts/share/verify/1.0.0/verify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/public/javascripts/share/verify/1.0.0/verify.js -------------------------------------------------------------------------------- /public/stylesheets/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/public/stylesheets/bootstrap.css -------------------------------------------------------------------------------- /public/stylesheets/datatables.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/public/stylesheets/datatables.min.css -------------------------------------------------------------------------------- /public/stylesheets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/public/stylesheets/style.css -------------------------------------------------------------------------------- /routes/function.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/routes/function.js -------------------------------------------------------------------------------- /routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/routes/index.js -------------------------------------------------------------------------------- /routes/routes_classify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/routes/routes_classify.js -------------------------------------------------------------------------------- /routes/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/routes/user.js -------------------------------------------------------------------------------- /views/admin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/views/admin.html -------------------------------------------------------------------------------- /views/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/views/error.html -------------------------------------------------------------------------------- /views/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/views/footer.html -------------------------------------------------------------------------------- /views/forget.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/views/forget.html -------------------------------------------------------------------------------- /views/friendly-error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/views/friendly-error.html -------------------------------------------------------------------------------- /views/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/views/header.html -------------------------------------------------------------------------------- /views/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/views/home.html -------------------------------------------------------------------------------- /views/homeback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/views/homeback.html -------------------------------------------------------------------------------- /views/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/views/index.html -------------------------------------------------------------------------------- /views/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/views/login.html -------------------------------------------------------------------------------- /views/nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/views/nav.html -------------------------------------------------------------------------------- /views/paster.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/views/paster.html -------------------------------------------------------------------------------- /views/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/views/register.html -------------------------------------------------------------------------------- /views/soso.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/views/soso.html -------------------------------------------------------------------------------- /views/upload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/views/upload.html -------------------------------------------------------------------------------- /views/wx-active.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/views/wx-active.html -------------------------------------------------------------------------------- /views/wxinit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsea/hi-vote/HEAD/views/wxinit.html --------------------------------------------------------------------------------