├── Procfile
├── Godeps
├── _workspace
│ ├── .gitignore
│ └── src
│ │ ├── github.com
│ │ ├── go-xorm
│ │ │ ├── core
│ │ │ │ ├── .gitignore
│ │ │ │ ├── benchmark.sh
│ │ │ │ ├── converstion.go
│ │ │ │ ├── error.go
│ │ │ │ ├── pk.go
│ │ │ │ ├── driver.go
│ │ │ │ ├── pk_test.go
│ │ │ │ ├── ilogger.go
│ │ │ │ ├── mapper_test.go
│ │ │ │ ├── index.go
│ │ │ │ └── filter.go
│ │ │ └── xorm
│ │ │ │ ├── VERSION
│ │ │ │ ├── .gopmfile
│ │ │ │ ├── docs
│ │ │ │ ├── images
│ │ │ │ │ └── cache_design.png
│ │ │ │ └── README.md
│ │ │ │ ├── gen_reserved.sh
│ │ │ │ ├── .gitmodules
│ │ │ │ ├── .gitignore
│ │ │ │ ├── sqlite3_driver.go
│ │ │ │ ├── examples
│ │ │ │ ├── tables.go
│ │ │ │ ├── singlemapping.go
│ │ │ │ ├── derive.go
│ │ │ │ └── conversion.go
│ │ │ │ ├── error.go
│ │ │ │ ├── odbc_driver.go
│ │ │ │ ├── memroy_store.go
│ │ │ │ ├── oci8_driver.go
│ │ │ │ ├── goracle_driver.go
│ │ │ │ ├── processors.go
│ │ │ │ ├── mysql_driver.go
│ │ │ │ ├── LICENSE
│ │ │ │ └── mymysql_driver.go
│ │ ├── Unknwon
│ │ │ ├── com
│ │ │ │ ├── testdata
│ │ │ │ │ ├── sample_file.txt
│ │ │ │ │ ├── SaveFile.txt
│ │ │ │ │ ├── statDir
│ │ │ │ │ │ ├── sample_file.txt
│ │ │ │ │ │ ├── SaveFile.txt
│ │ │ │ │ │ ├── SaveFileS.txt
│ │ │ │ │ │ └── secondLevel
│ │ │ │ │ │ │ ├── sample_file.txt
│ │ │ │ │ │ │ ├── SaveFile.txt
│ │ │ │ │ │ │ └── SaveFileS.txt
│ │ │ │ │ └── SaveFileS.txt
│ │ │ │ ├── .travis.yml
│ │ │ │ ├── .gitignore
│ │ │ │ ├── math.go
│ │ │ │ ├── README.md
│ │ │ │ ├── html_test.go
│ │ │ │ ├── url.go
│ │ │ │ ├── math_test.go
│ │ │ │ ├── convert_test.go
│ │ │ │ ├── dir_test.go
│ │ │ │ └── file_test.go
│ │ │ └── macaron
│ │ │ │ ├── inject
│ │ │ │ ├── inject.goconvey
│ │ │ │ └── README.md
│ │ │ │ ├── fixtures
│ │ │ │ ├── basic
│ │ │ │ │ ├── hypertext.html
│ │ │ │ │ ├── content.tmpl
│ │ │ │ │ ├── delims.tmpl
│ │ │ │ │ ├── hello.tmpl
│ │ │ │ │ ├── layout.tmpl
│ │ │ │ │ ├── admin
│ │ │ │ │ │ └── index.tmpl
│ │ │ │ │ ├── another_layout.tmpl
│ │ │ │ │ └── current_layout.tmpl
│ │ │ │ ├── basic2
│ │ │ │ │ ├── hello.tmpl
│ │ │ │ │ └── hello2.tmpl
│ │ │ │ └── custom_funcs
│ │ │ │ │ └── index.tmpl
│ │ │ │ ├── .gitignore
│ │ │ │ └── macaronlogo.png
│ │ ├── robfig
│ │ │ └── cron
│ │ │ │ ├── .travis.yml
│ │ │ │ ├── README.md
│ │ │ │ ├── .gitignore
│ │ │ │ ├── constantdelay.go
│ │ │ │ └── LICENSE
│ │ ├── mattn
│ │ │ └── go-sqlite3
│ │ │ │ ├── .gitignore
│ │ │ │ ├── sqlite3-binding.c
│ │ │ │ ├── sqlite3-binding.h
│ │ │ │ ├── .travis.yml
│ │ │ │ ├── sqlite3_other.go
│ │ │ │ ├── sqlite3_icu.go
│ │ │ │ ├── sqlite3_libsqlite3.go
│ │ │ │ ├── sqlite3_windows.go
│ │ │ │ └── LICENSE
│ │ ├── qiniu
│ │ │ └── log
│ │ │ │ ├── README.md
│ │ │ │ ├── .gitignore
│ │ │ │ └── logext_test.go
│ │ ├── gorilla
│ │ │ └── websocket
│ │ │ │ ├── .travis.yml
│ │ │ │ ├── AUTHORS
│ │ │ │ ├── .gitignore
│ │ │ │ ├── examples
│ │ │ │ ├── autobahn
│ │ │ │ │ ├── README.md
│ │ │ │ │ └── fuzzingclient.json
│ │ │ │ ├── filewatch
│ │ │ │ │ └── README.md
│ │ │ │ └── chat
│ │ │ │ │ ├── README.md
│ │ │ │ │ ├── main.go
│ │ │ │ │ └── hub.go
│ │ │ │ ├── bench_test.go
│ │ │ │ ├── util_test.go
│ │ │ │ ├── server_test.go
│ │ │ │ ├── util.go
│ │ │ │ ├── LICENSE
│ │ │ │ └── json.go
│ │ └── go-sql-driver
│ │ │ └── mysql
│ │ │ ├── .gitignore
│ │ │ ├── .travis.yml
│ │ │ ├── appengine.go
│ │ │ ├── result.go
│ │ │ ├── transaction.go
│ │ │ ├── errors_test.go
│ │ │ ├── AUTHORS
│ │ │ └── CONTRIBUTING.md
│ │ └── gopkg.in
│ │ └── ini.v1
│ │ ├── testdata
│ │ └── conf.ini
│ │ └── .gitignore
├── Readme
└── Godeps.json
├── public
├── bower_components
│ ├── jquery
│ │ ├── src
│ │ │ ├── outro.js
│ │ │ ├── selector.js
│ │ │ ├── var
│ │ │ │ ├── arr.js
│ │ │ │ ├── rnotwhite.js
│ │ │ │ ├── strundefined.js
│ │ │ │ ├── push.js
│ │ │ │ ├── class2type.js
│ │ │ │ ├── concat.js
│ │ │ │ ├── indexOf.js
│ │ │ │ ├── slice.js
│ │ │ │ ├── pnum.js
│ │ │ │ ├── toString.js
│ │ │ │ ├── hasOwn.js
│ │ │ │ └── support.js
│ │ │ ├── ajax
│ │ │ │ ├── var
│ │ │ │ │ ├── rquery.js
│ │ │ │ │ └── nonce.js
│ │ │ │ ├── parseJSON.js
│ │ │ │ ├── parseXML.js
│ │ │ │ └── script.js
│ │ │ ├── css
│ │ │ │ ├── var
│ │ │ │ │ ├── rmargin.js
│ │ │ │ │ ├── cssExpand.js
│ │ │ │ │ ├── rnumnonpx.js
│ │ │ │ │ ├── isHidden.js
│ │ │ │ │ └── getStyles.js
│ │ │ │ ├── hiddenVisibleSelectors.js
│ │ │ │ ├── addGetHookIf.js
│ │ │ │ ├── swap.js
│ │ │ │ └── curCSS.js
│ │ │ ├── data
│ │ │ │ ├── var
│ │ │ │ │ ├── data_priv.js
│ │ │ │ │ └── data_user.js
│ │ │ │ └── accepts.js
│ │ │ ├── manipulation
│ │ │ │ ├── var
│ │ │ │ │ └── rcheckableType.js
│ │ │ │ ├── _evalUrl.js
│ │ │ │ └── support.js
│ │ │ ├── core
│ │ │ │ ├── var
│ │ │ │ │ └── rsingleTag.js
│ │ │ │ ├── parseHTML.js
│ │ │ │ └── access.js
│ │ │ ├── traversing
│ │ │ │ └── var
│ │ │ │ │ └── rneedsContext.js
│ │ │ ├── event
│ │ │ │ ├── support.js
│ │ │ │ ├── ajax.js
│ │ │ │ └── alias.js
│ │ │ ├── attributes.js
│ │ │ ├── deprecated.js
│ │ │ ├── effects
│ │ │ │ └── animatedSelector.js
│ │ │ ├── selector-sizzle.js
│ │ │ ├── queue
│ │ │ │ └── delay.js
│ │ │ ├── jquery.js
│ │ │ ├── exports
│ │ │ │ ├── global.js
│ │ │ │ └── amd.js
│ │ │ ├── attributes
│ │ │ │ └── support.js
│ │ │ ├── intro.js
│ │ │ └── wrap.js
│ │ ├── bower.json
│ │ ├── .bower.json
│ │ └── MIT-LICENSE.txt
│ ├── humanize
│ │ ├── .gitignore
│ │ ├── bower.json
│ │ ├── .bower.json
│ │ ├── package.json
│ │ └── LICENSE
│ ├── angularjs-humanize
│ │ ├── .gitignore
│ │ ├── bower.json
│ │ ├── package.json
│ │ ├── example
│ │ │ ├── example.js
│ │ │ └── index.html
│ │ ├── .bower.json
│ │ ├── src
│ │ │ └── angular-humanize.js
│ │ ├── LICENSE
│ │ └── README.md
│ ├── bootstrap-switch
│ │ ├── .bowerrc
│ │ ├── .gitignore
│ │ ├── src
│ │ │ ├── less
│ │ │ │ ├── bootstrap2
│ │ │ │ │ └── build.less
│ │ │ │ └── bootstrap3
│ │ │ │ │ └── build.less
│ │ │ └── coffee
│ │ │ │ └── bootstrap-switch.tests.coffee
│ │ ├── karma.json
│ │ ├── bower.json
│ │ └── .bower.json
│ ├── angular
│ │ ├── index.js
│ │ ├── angular.min.js.gzip
│ │ ├── bower.json
│ │ ├── angular-csp.css
│ │ ├── .bower.json
│ │ └── package.json
│ ├── angularjs
│ │ ├── index.js
│ │ ├── angular.min.js.gzip
│ │ ├── bower.json
│ │ ├── angular-csp.css
│ │ ├── .bower.json
│ │ └── package.json
│ ├── bootstrap
│ │ ├── grunt
│ │ │ ├── .jshintrc
│ │ │ ├── bs-commonjs-generator.js
│ │ │ ├── configBridge.json
│ │ │ ├── bs-raw-files-generator.js
│ │ │ ├── bs-glyphicons-data-generator.js
│ │ │ └── sauce_browsers.yml
│ │ ├── fonts
│ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ ├── glyphicons-halflings-regular.woff
│ │ │ └── glyphicons-halflings-regular.woff2
│ │ ├── dist
│ │ │ ├── fonts
│ │ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ │ ├── glyphicons-halflings-regular.woff
│ │ │ │ └── glyphicons-halflings-regular.woff2
│ │ │ └── js
│ │ │ │ └── npm.js
│ │ ├── less
│ │ │ ├── mixins
│ │ │ │ ├── center-block.less
│ │ │ │ ├── size.less
│ │ │ │ ├── opacity.less
│ │ │ │ ├── text-emphasis.less
│ │ │ │ ├── text-overflow.less
│ │ │ │ ├── background-variant.less
│ │ │ │ ├── tab-focus.less
│ │ │ │ ├── resize.less
│ │ │ │ ├── labels.less
│ │ │ │ ├── progress-bar.less
│ │ │ │ ├── reset-filter.less
│ │ │ │ ├── nav-divider.less
│ │ │ │ ├── alerts.less
│ │ │ │ ├── nav-vertical-align.less
│ │ │ │ ├── responsive-visibility.less
│ │ │ │ ├── border-radius.less
│ │ │ │ ├── reset-text.less
│ │ │ │ ├── pagination.less
│ │ │ │ ├── panels.less
│ │ │ │ ├── hide-text.less
│ │ │ │ ├── list-group.less
│ │ │ │ ├── clearfix.less
│ │ │ │ ├── table-row.less
│ │ │ │ ├── image.less
│ │ │ │ └── buttons.less
│ │ │ ├── .csslintrc
│ │ │ ├── wells.less
│ │ │ ├── breadcrumbs.less
│ │ │ ├── responsive-embed.less
│ │ │ ├── component-animations.less
│ │ │ ├── close.less
│ │ │ ├── thumbnails.less
│ │ │ ├── utilities.less
│ │ │ ├── pager.less
│ │ │ ├── media.less
│ │ │ ├── jumbotron.less
│ │ │ ├── mixins.less
│ │ │ ├── labels.less
│ │ │ ├── badges.less
│ │ │ ├── bootstrap.less
│ │ │ ├── code.less
│ │ │ ├── grid.less
│ │ │ └── alerts.less
│ │ ├── js
│ │ │ └── .jshintrc
│ │ ├── bower.json
│ │ ├── package.js
│ │ ├── .bower.json
│ │ └── LICENSE
│ ├── angular-scroll
│ │ ├── bower.json
│ │ ├── CONTRIBUTING.md
│ │ ├── .bower.json
│ │ ├── LICENSE
│ │ └── gulpfile.js
│ └── ng-notify
│ │ ├── CONTRIBUTORS.md
│ │ ├── bower.json
│ │ ├── LICENSE
│ │ ├── .bower.json
│ │ ├── dist
│ │ └── ng-notify.min.css
│ │ └── src
│ │ └── styles
│ │ └── ng-notify.css.map
├── favicon.ico
├── fonts
│ ├── glyphiconshalflings-regular.eot
│ ├── glyphiconshalflings-regular.ttf
│ └── glyphiconshalflings-regular.woff
├── schedule_april_96px_516578_easyicon.net.png
├── bower.json
└── css
│ └── settings.css
├── scripts
├── homepage.png
└── hello.go
├── .travis.yml
├── .gopack.yml
├── Makefile
├── assetfs.go
├── Dockerfile
├── .gitignore
├── .fswatch.json
├── templates
└── footer.html
├── sched.json
├── README.md
└── LICENSE
/Procfile:
--------------------------------------------------------------------------------
1 | web: webcrontab -port $PORT
2 |
--------------------------------------------------------------------------------
/Godeps/_workspace/.gitignore:
--------------------------------------------------------------------------------
1 | /pkg
2 | /bin
3 |
--------------------------------------------------------------------------------
/public/bower_components/jquery/src/outro.js:
--------------------------------------------------------------------------------
1 | }));
2 |
--------------------------------------------------------------------------------
/Godeps/_workspace/src/github.com/go-xorm/core/.gitignore:
--------------------------------------------------------------------------------
1 | *.db
2 |
--------------------------------------------------------------------------------
/Godeps/_workspace/src/github.com/Unknwon/com/testdata/sample_file.txt:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Godeps/_workspace/src/github.com/robfig/cron/.travis.yml:
--------------------------------------------------------------------------------
1 | language: go
2 |
--------------------------------------------------------------------------------
/Godeps/_workspace/src/github.com/Unknwon/com/testdata/SaveFile.txt:
--------------------------------------------------------------------------------
1 | TestSaveFile
--------------------------------------------------------------------------------
/Godeps/_workspace/src/github.com/Unknwon/com/testdata/statDir/sample_file.txt:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Godeps/_workspace/src/github.com/Unknwon/macaron/inject/inject.goconvey:
--------------------------------------------------------------------------------
1 | ignore
--------------------------------------------------------------------------------
/Godeps/_workspace/src/github.com/go-xorm/xorm/VERSION:
--------------------------------------------------------------------------------
1 | xorm v0.4.3.0824
2 |
--------------------------------------------------------------------------------
/public/bower_components/humanize/.gitignore:
--------------------------------------------------------------------------------
1 | *~
2 | *.swp
3 | node_modules
4 |
--------------------------------------------------------------------------------
/Godeps/_workspace/src/github.com/Unknwon/com/testdata/SaveFileS.txt:
--------------------------------------------------------------------------------
1 | TestSaveFileS
--------------------------------------------------------------------------------
/public/bower_components/jquery/src/selector.js:
--------------------------------------------------------------------------------
1 | define([ "./selector-sizzle" ]);
2 |
--------------------------------------------------------------------------------
/Godeps/_workspace/src/github.com/Unknwon/com/testdata/statDir/SaveFile.txt:
--------------------------------------------------------------------------------
1 | TestSaveFile
--------------------------------------------------------------------------------
/Godeps/_workspace/src/github.com/Unknwon/com/testdata/statDir/SaveFileS.txt:
--------------------------------------------------------------------------------
1 | TestSaveFileS
--------------------------------------------------------------------------------
/Godeps/_workspace/src/github.com/Unknwon/macaron/fixtures/basic/hypertext.html:
--------------------------------------------------------------------------------
1 | Hypertext!
--------------------------------------------------------------------------------
/Godeps/_workspace/src/gopkg.in/ini.v1/testdata/conf.ini:
--------------------------------------------------------------------------------
1 | [author]
2 | E-MAIL = u@gogs.io
--------------------------------------------------------------------------------
/Godeps/_workspace/src/github.com/Unknwon/com/testdata/statDir/secondLevel/sample_file.txt:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Godeps/_workspace/src/github.com/Unknwon/macaron/fixtures/basic/content.tmpl:
--------------------------------------------------------------------------------
1 |
{{ . }}
--------------------------------------------------------------------------------
/Godeps/_workspace/src/github.com/go-xorm/core/benchmark.sh:
--------------------------------------------------------------------------------
1 | go test -v -bench=. -run=XXX
2 |
--------------------------------------------------------------------------------
/Godeps/_workspace/src/github.com/mattn/go-sqlite3/.gitignore:
--------------------------------------------------------------------------------
1 | *.db
2 | *.exe
3 | *.dll
4 |
--------------------------------------------------------------------------------
/public/bower_components/angularjs-humanize/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules/
2 | bower_components/
3 |
--------------------------------------------------------------------------------
/public/bower_components/bootstrap-switch/.bowerrc:
--------------------------------------------------------------------------------
1 | {
2 | "directory": "components"
3 | }
4 |
--------------------------------------------------------------------------------
/public/bower_components/jquery/src/var/arr.js:
--------------------------------------------------------------------------------
1 | define(function() {
2 | return [];
3 | });
4 |
--------------------------------------------------------------------------------
/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/codeskyblue/webcron/HEAD/public/favicon.ico
--------------------------------------------------------------------------------
/Godeps/_workspace/src/github.com/Unknwon/com/testdata/statDir/secondLevel/SaveFile.txt:
--------------------------------------------------------------------------------
1 | TestSaveFile
--------------------------------------------------------------------------------
/Godeps/_workspace/src/github.com/Unknwon/macaron/fixtures/basic/delims.tmpl:
--------------------------------------------------------------------------------
1 | Hello {[{.}]}
--------------------------------------------------------------------------------
/Godeps/_workspace/src/github.com/Unknwon/macaron/fixtures/basic/hello.tmpl:
--------------------------------------------------------------------------------
1 | Hello {{.}}
--------------------------------------------------------------------------------
/Godeps/_workspace/src/github.com/Unknwon/macaron/fixtures/basic/layout.tmpl:
--------------------------------------------------------------------------------
1 | head{{ yield }}foot
--------------------------------------------------------------------------------
/Godeps/_workspace/src/github.com/go-xorm/xorm/.gopmfile:
--------------------------------------------------------------------------------
1 | [target]
2 | path = github.com/go-xorm/xorm
--------------------------------------------------------------------------------
/public/bower_components/angular/index.js:
--------------------------------------------------------------------------------
1 | require('./angular');
2 | module.exports = angular;
3 |
--------------------------------------------------------------------------------
/public/bower_components/angularjs/index.js:
--------------------------------------------------------------------------------
1 | require('./angular');
2 | module.exports = angular;
3 |
--------------------------------------------------------------------------------
/scripts/homepage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/codeskyblue/webcron/HEAD/scripts/homepage.png
--------------------------------------------------------------------------------
/Godeps/_workspace/src/github.com/Unknwon/com/testdata/statDir/secondLevel/SaveFileS.txt:
--------------------------------------------------------------------------------
1 | TestSaveFileS
--------------------------------------------------------------------------------
/Godeps/_workspace/src/github.com/Unknwon/macaron/fixtures/basic/admin/index.tmpl:
--------------------------------------------------------------------------------
1 | Admin {{.}}
--------------------------------------------------------------------------------
/Godeps/_workspace/src/github.com/Unknwon/macaron/fixtures/basic2/hello.tmpl:
--------------------------------------------------------------------------------
1 | What's up, {{.}}
--------------------------------------------------------------------------------
/Godeps/_workspace/src/github.com/Unknwon/macaron/fixtures/basic2/hello2.tmpl:
--------------------------------------------------------------------------------
1 | Hello {{.Name}}
--------------------------------------------------------------------------------
/Godeps/_workspace/src/github.com/Unknwon/macaron/fixtures/custom_funcs/index.tmpl:
--------------------------------------------------------------------------------
1 | {{ myCustomFunc }}
--------------------------------------------------------------------------------
/Godeps/_workspace/src/github.com/qiniu/log/README.md:
--------------------------------------------------------------------------------
1 | log
2 | ===
3 |
4 | Extension module of golang logging
--------------------------------------------------------------------------------
/public/bower_components/jquery/src/ajax/var/rquery.js:
--------------------------------------------------------------------------------
1 | define(function() {
2 | return (/\?/);
3 | });
4 |
--------------------------------------------------------------------------------
/public/bower_components/jquery/src/var/rnotwhite.js:
--------------------------------------------------------------------------------
1 | define(function() {
2 | return (/\S+/g);
3 | });
4 |
--------------------------------------------------------------------------------
/Godeps/_workspace/src/github.com/Unknwon/macaron/.gitignore:
--------------------------------------------------------------------------------
1 | macaron.sublime-project
2 | macaron.sublime-workspace
--------------------------------------------------------------------------------
/public/bower_components/jquery/src/css/var/rmargin.js:
--------------------------------------------------------------------------------
1 | define(function() {
2 | return (/^margin/);
3 | });
4 |
--------------------------------------------------------------------------------
/Godeps/_workspace/src/github.com/Unknwon/macaron/fixtures/basic/another_layout.tmpl:
--------------------------------------------------------------------------------
1 | another head{{ yield }}another foot
--------------------------------------------------------------------------------
/public/bower_components/jquery/src/var/strundefined.js:
--------------------------------------------------------------------------------
1 | define(function() {
2 | return typeof undefined;
3 | });
4 |
--------------------------------------------------------------------------------
/Godeps/_workspace/src/github.com/Unknwon/macaron/inject/README.md:
--------------------------------------------------------------------------------
1 | inject
2 | ======
3 |
4 | Dependency injection for go
5 |
--------------------------------------------------------------------------------
/Godeps/_workspace/src/github.com/gorilla/websocket/.travis.yml:
--------------------------------------------------------------------------------
1 | language: go
2 |
3 | go:
4 | - 1.1
5 | - 1.2
6 | - tip
7 |
--------------------------------------------------------------------------------
/public/bower_components/bootstrap-switch/.gitignore:
--------------------------------------------------------------------------------
1 | .grunt
2 | npm-debug.log
3 | node_modules
4 | components
5 | .DS_Store
6 |
--------------------------------------------------------------------------------
/public/bower_components/jquery/src/var/push.js:
--------------------------------------------------------------------------------
1 | define([
2 | "./arr"
3 | ], function( arr ) {
4 | return arr.push;
5 | });
6 |
--------------------------------------------------------------------------------
/Godeps/_workspace/src/github.com/Unknwon/macaron/fixtures/basic/current_layout.tmpl:
--------------------------------------------------------------------------------
1 | {{ current }} head{{ yield }}{{ current }} foot
--------------------------------------------------------------------------------
/public/bower_components/jquery/src/var/class2type.js:
--------------------------------------------------------------------------------
1 | define(function() {
2 | // [[Class]] -> type pairs
3 | return {};
4 | });
5 |
--------------------------------------------------------------------------------
/public/bower_components/jquery/src/var/concat.js:
--------------------------------------------------------------------------------
1 | define([
2 | "./arr"
3 | ], function( arr ) {
4 | return arr.concat;
5 | });
6 |
--------------------------------------------------------------------------------
/public/bower_components/jquery/src/var/indexOf.js:
--------------------------------------------------------------------------------
1 | define([
2 | "./arr"
3 | ], function( arr ) {
4 | return arr.indexOf;
5 | });
6 |
--------------------------------------------------------------------------------
/public/bower_components/jquery/src/var/slice.js:
--------------------------------------------------------------------------------
1 | define([
2 | "./arr"
3 | ], function( arr ) {
4 | return arr.slice;
5 | });
6 |
--------------------------------------------------------------------------------
/public/bower_components/jquery/src/css/var/cssExpand.js:
--------------------------------------------------------------------------------
1 | define(function() {
2 | return [ "Top", "Right", "Bottom", "Left" ];
3 | });
4 |
--------------------------------------------------------------------------------
/public/bower_components/jquery/src/var/pnum.js:
--------------------------------------------------------------------------------
1 | define(function() {
2 | return (/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/).source;
3 | });
4 |
--------------------------------------------------------------------------------
/public/bower_components/jquery/src/data/var/data_priv.js:
--------------------------------------------------------------------------------
1 | define([
2 | "../Data"
3 | ], function( Data ) {
4 | return new Data();
5 | });
6 |
--------------------------------------------------------------------------------
/public/bower_components/jquery/src/data/var/data_user.js:
--------------------------------------------------------------------------------
1 | define([
2 | "../Data"
3 | ], function( Data ) {
4 | return new Data();
5 | });
6 |
--------------------------------------------------------------------------------
/public/bower_components/jquery/src/manipulation/var/rcheckableType.js:
--------------------------------------------------------------------------------
1 | define(function() {
2 | return (/^(?:checkbox|radio)$/i);
3 | });
4 |
--------------------------------------------------------------------------------
/public/fonts/glyphiconshalflings-regular.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/codeskyblue/webcron/HEAD/public/fonts/glyphiconshalflings-regular.eot
--------------------------------------------------------------------------------
/public/fonts/glyphiconshalflings-regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/codeskyblue/webcron/HEAD/public/fonts/glyphiconshalflings-regular.ttf
--------------------------------------------------------------------------------
/public/bower_components/bootstrap-switch/src/less/bootstrap2/build.less:
--------------------------------------------------------------------------------
1 | @import "variables";
2 | @import "mixins";
3 | @import "bootstrap-switch";
--------------------------------------------------------------------------------
/public/bower_components/bootstrap-switch/src/less/bootstrap3/build.less:
--------------------------------------------------------------------------------
1 | @import "variables";
2 | @import "mixins";
3 | @import "bootstrap-switch";
--------------------------------------------------------------------------------
/public/bower_components/jquery/src/ajax/var/nonce.js:
--------------------------------------------------------------------------------
1 | define([
2 | "../../core"
3 | ], function( jQuery ) {
4 | return jQuery.now();
5 | });
6 |
--------------------------------------------------------------------------------
/public/fonts/glyphiconshalflings-regular.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/codeskyblue/webcron/HEAD/public/fonts/glyphiconshalflings-regular.woff
--------------------------------------------------------------------------------
/Godeps/_workspace/src/github.com/mattn/go-sqlite3/sqlite3-binding.c:
--------------------------------------------------------------------------------
1 | #ifndef USE_LIBSQLITE3
2 | # include "code/sqlite3-binding.c"
3 | #endif
4 |
5 |
--------------------------------------------------------------------------------
/Godeps/_workspace/src/gopkg.in/ini.v1/.gitignore:
--------------------------------------------------------------------------------
1 | testdata/conf_out.ini
2 | ini.sublime-project
3 | ini.sublime-workspace
4 | testdata/conf_reflect.ini
5 |
--------------------------------------------------------------------------------
/public/bower_components/angular/angular.min.js.gzip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/codeskyblue/webcron/HEAD/public/bower_components/angular/angular.min.js.gzip
--------------------------------------------------------------------------------
/public/bower_components/jquery/src/var/toString.js:
--------------------------------------------------------------------------------
1 | define([
2 | "./class2type"
3 | ], function( class2type ) {
4 | return class2type.toString;
5 | });
6 |
--------------------------------------------------------------------------------
/public/schedule_april_96px_516578_easyicon.net.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/codeskyblue/webcron/HEAD/public/schedule_april_96px_516578_easyicon.net.png
--------------------------------------------------------------------------------
/Godeps/_workspace/src/github.com/robfig/cron/README.md:
--------------------------------------------------------------------------------
1 | [](http://godoc.org/github.com/robfig/cron)
2 |
--------------------------------------------------------------------------------
/public/bower_components/angularjs/angular.min.js.gzip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/codeskyblue/webcron/HEAD/public/bower_components/angularjs/angular.min.js.gzip
--------------------------------------------------------------------------------
/public/bower_components/jquery/src/var/hasOwn.js:
--------------------------------------------------------------------------------
1 | define([
2 | "./class2type"
3 | ], function( class2type ) {
4 | return class2type.hasOwnProperty;
5 | });
6 |
--------------------------------------------------------------------------------
/public/bower_components/jquery/src/core/var/rsingleTag.js:
--------------------------------------------------------------------------------
1 | define(function() {
2 | // Match a standalone tag
3 | return (/^<(\w+)\s*\/?>(?:<\/\1>|)$/);
4 | });
5 |
--------------------------------------------------------------------------------
/public/bower_components/jquery/src/var/support.js:
--------------------------------------------------------------------------------
1 | define(function() {
2 | // All support tests are defined in their respective modules.
3 | return {};
4 | });
5 |
--------------------------------------------------------------------------------
/.travis.yml:
--------------------------------------------------------------------------------
1 | language: go
2 | go:
3 | - 1.5
4 | script:
5 | - go test -v ./...
6 | after_success:
7 | - bash -c "$(curl -fsSL http://bitly.com/gorelease)" gorelease
8 |
--------------------------------------------------------------------------------
/Godeps/Readme:
--------------------------------------------------------------------------------
1 | This directory tree is generated automatically by godep.
2 |
3 | Please do not edit.
4 |
5 | See https://github.com/tools/godep for more information.
6 |
--------------------------------------------------------------------------------
/Godeps/_workspace/src/github.com/go-sql-driver/mysql/.gitignore:
--------------------------------------------------------------------------------
1 | .DS_Store
2 | .DS_Store?
3 | ._*
4 | .Spotlight-V100
5 | .Trashes
6 | Icon?
7 | ehthumbs.db
8 | Thumbs.db
9 |
--------------------------------------------------------------------------------
/Godeps/_workspace/src/github.com/mattn/go-sqlite3/sqlite3-binding.h:
--------------------------------------------------------------------------------
1 | #ifndef USE_LIBSQLITE3
2 | #include "code/sqlite3-binding.h"
3 | #else
4 | #include
5 | #endif
6 |
--------------------------------------------------------------------------------
/Godeps/_workspace/src/github.com/Unknwon/macaron/macaronlogo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/codeskyblue/webcron/HEAD/Godeps/_workspace/src/github.com/Unknwon/macaron/macaronlogo.png
--------------------------------------------------------------------------------
/public/bower_components/angular/bower.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "angular",
3 | "version": "1.4.4",
4 | "main": "./angular.js",
5 | "ignore": [],
6 | "dependencies": {
7 | }
8 | }
9 |
--------------------------------------------------------------------------------
/public/bower_components/jquery/src/css/var/rnumnonpx.js:
--------------------------------------------------------------------------------
1 | define([
2 | "../../var/pnum"
3 | ], function( pnum ) {
4 | return new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" );
5 | });
6 |
--------------------------------------------------------------------------------
/public/bower_components/angularjs/bower.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "angular",
3 | "version": "1.4.4",
4 | "main": "./angular.js",
5 | "ignore": [],
6 | "dependencies": {
7 | }
8 | }
9 |
--------------------------------------------------------------------------------
/public/bower_components/bootstrap/grunt/.jshintrc:
--------------------------------------------------------------------------------
1 | {
2 | "extends" : "../js/.jshintrc",
3 | "asi" : false,
4 | "browser" : false,
5 | "es3" : false,
6 | "node" : true
7 | }
8 |
--------------------------------------------------------------------------------
/Godeps/_workspace/src/github.com/go-xorm/xorm/docs/images/cache_design.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/codeskyblue/webcron/HEAD/Godeps/_workspace/src/github.com/go-xorm/xorm/docs/images/cache_design.png
--------------------------------------------------------------------------------
/public/bower_components/bootstrap/fonts/glyphicons-halflings-regular.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/codeskyblue/webcron/HEAD/public/bower_components/bootstrap/fonts/glyphicons-halflings-regular.eot
--------------------------------------------------------------------------------
/public/bower_components/bootstrap/fonts/glyphicons-halflings-regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/codeskyblue/webcron/HEAD/public/bower_components/bootstrap/fonts/glyphicons-halflings-regular.ttf
--------------------------------------------------------------------------------
/public/bower_components/bootstrap/fonts/glyphicons-halflings-regular.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/codeskyblue/webcron/HEAD/public/bower_components/bootstrap/fonts/glyphicons-halflings-regular.woff
--------------------------------------------------------------------------------
/public/bower_components/bootstrap/fonts/glyphicons-halflings-regular.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/codeskyblue/webcron/HEAD/public/bower_components/bootstrap/fonts/glyphicons-halflings-regular.woff2
--------------------------------------------------------------------------------
/public/bower_components/jquery/src/traversing/var/rneedsContext.js:
--------------------------------------------------------------------------------
1 | define([
2 | "../../core",
3 | "../../selector"
4 | ], function( jQuery ) {
5 | return jQuery.expr.match.needsContext;
6 | });
7 |
--------------------------------------------------------------------------------
/Godeps/_workspace/src/github.com/go-xorm/xorm/gen_reserved.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 | if [ -f $1 ];then
3 | cat $1| awk '{printf("\""$1"\":true,\n")}'
4 | else
5 | echo "argument $1 if not a file!"
6 | fi
7 |
--------------------------------------------------------------------------------
/public/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/codeskyblue/webcron/HEAD/public/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.eot
--------------------------------------------------------------------------------
/public/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/codeskyblue/webcron/HEAD/public/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf
--------------------------------------------------------------------------------
/public/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/codeskyblue/webcron/HEAD/public/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.woff
--------------------------------------------------------------------------------
/public/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/codeskyblue/webcron/HEAD/public/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2
--------------------------------------------------------------------------------
/public/bower_components/bootstrap/less/mixins/center-block.less:
--------------------------------------------------------------------------------
1 | // Center-align a block level element
2 |
3 | .center-block() {
4 | display: block;
5 | margin-left: auto;
6 | margin-right: auto;
7 | }
8 |
--------------------------------------------------------------------------------
/public/bower_components/humanize/bower.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "humanize",
3 | "version": "0.0.9",
4 | "repository": {
5 | "type": "git",
6 | "url": "git://github.com/taijinlee/humanize"
7 | }
8 | }
9 |
--------------------------------------------------------------------------------
/public/bower_components/jquery/src/event/support.js:
--------------------------------------------------------------------------------
1 | define([
2 | "../var/support"
3 | ], function( support ) {
4 |
5 | support.focusinBubbles = "onfocusin" in window;
6 |
7 | return support;
8 |
9 | });
10 |
--------------------------------------------------------------------------------
/.gopack.yml:
--------------------------------------------------------------------------------
1 | author: shengxiang
2 | description: '...'
3 | includes:
4 | - README.md
5 | - LICENSE
6 | - conf
7 | - templates
8 | - public
9 | excludes:
10 | - \.git
11 | script:
12 | - godep go build
13 |
--------------------------------------------------------------------------------
/Godeps/_workspace/src/github.com/go-xorm/xorm/docs/README.md:
--------------------------------------------------------------------------------
1 | # Xorm Manuals
2 |
3 | Please visit [xorm.io/docs](http://xorm.io/docs)
4 |
5 | # Contributing
6 |
7 | If you have any suggestion about docs, please pull request.
--------------------------------------------------------------------------------
/Godeps/_workspace/src/github.com/Unknwon/com/.travis.yml:
--------------------------------------------------------------------------------
1 | language: go
2 |
3 | go:
4 | - 1.2
5 | - 1.3
6 | - 1.4
7 | - tip
8 |
9 | install: go get -v -t
10 |
11 | notifications:
12 | email:
13 | - u@gogs.io
--------------------------------------------------------------------------------
/Godeps/_workspace/src/github.com/go-sql-driver/mysql/.travis.yml:
--------------------------------------------------------------------------------
1 | sudo: false
2 | language: go
3 | go:
4 | - 1.2
5 | - 1.3
6 | - 1.4
7 | - tip
8 |
9 | before_script:
10 | - mysql -e 'create database gotest;'
11 |
--------------------------------------------------------------------------------
/public/bower_components/bootstrap/less/mixins/size.less:
--------------------------------------------------------------------------------
1 | // Sizing shortcuts
2 |
3 | .size(@width; @height) {
4 | width: @width;
5 | height: @height;
6 | }
7 |
8 | .square(@size) {
9 | .size(@size; @size);
10 | }
11 |
--------------------------------------------------------------------------------
/public/bower_components/bootstrap/less/mixins/opacity.less:
--------------------------------------------------------------------------------
1 | // Opacity
2 |
3 | .opacity(@opacity) {
4 | opacity: @opacity;
5 | // IE8 filter
6 | @opacity-ie: (@opacity * 100);
7 | filter: ~"alpha(opacity=@{opacity-ie})";
8 | }
9 |
--------------------------------------------------------------------------------
/public/bower_components/bootstrap/less/mixins/text-emphasis.less:
--------------------------------------------------------------------------------
1 | // Typography
2 |
3 | .text-emphasis-variant(@color) {
4 | color: @color;
5 | a&:hover,
6 | a&:focus {
7 | color: darken(@color, 10%);
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/Makefile:
--------------------------------------------------------------------------------
1 | develop:
2 | go build
3 |
4 | standalone:
5 | go-bindata-assetfs data/...
6 | go build -tags "bindata"
7 |
8 | dep:
9 | go get -v github.com/jteeuwen/go-bindata/...
10 | go get -v github.com/elazarl/go-bindata-assetfs/...
11 |
--------------------------------------------------------------------------------
/public/bower_components/bootstrap/less/mixins/text-overflow.less:
--------------------------------------------------------------------------------
1 | // Text overflow
2 | // Requires inline-block or block for proper styling
3 |
4 | .text-overflow() {
5 | overflow: hidden;
6 | text-overflow: ellipsis;
7 | white-space: nowrap;
8 | }
9 |
--------------------------------------------------------------------------------
/assetfs.go:
--------------------------------------------------------------------------------
1 | // +build bindata
2 |
3 | package main
4 |
5 | import (
6 | "log"
7 | "net/http"
8 | )
9 |
10 | func init() {
11 | log.Println("Enable bindata fs")
12 | http.Handle("/-/", http.StripPrefix("/-/", http.FileServer(assetFS())))
13 | }
14 |
--------------------------------------------------------------------------------
/public/bower_components/bootstrap/less/mixins/background-variant.less:
--------------------------------------------------------------------------------
1 | // Contextual backgrounds
2 |
3 | .bg-variant(@color) {
4 | background-color: @color;
5 | a&:hover,
6 | a&:focus {
7 | background-color: darken(@color, 10%);
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/public/bower_components/bootstrap/less/mixins/tab-focus.less:
--------------------------------------------------------------------------------
1 | // WebKit-style focus
2 |
3 | .tab-focus() {
4 | // Default
5 | outline: thin dotted;
6 | // WebKit
7 | outline: 5px auto -webkit-focus-ring-color;
8 | outline-offset: -2px;
9 | }
10 |
--------------------------------------------------------------------------------
/public/bower_components/bootstrap/less/mixins/resize.less:
--------------------------------------------------------------------------------
1 | // Resize anything
2 |
3 | .resizable(@direction) {
4 | resize: @direction; // Options: horizontal, vertical, both
5 | overflow: auto; // Per CSS3 UI, `resize` only applies when `overflow` isn't `visible`
6 | }
7 |
--------------------------------------------------------------------------------
/Godeps/_workspace/src/github.com/gorilla/websocket/AUTHORS:
--------------------------------------------------------------------------------
1 | # This is the official list of Gorilla WebSocket authors for copyright
2 | # purposes.
3 | #
4 | # Please keep the list sorted.
5 |
6 | Gary Burd
7 | Joachim Bauch
8 |
9 |
--------------------------------------------------------------------------------
/public/bower_components/bootstrap/less/mixins/labels.less:
--------------------------------------------------------------------------------
1 | // Labels
2 |
3 | .label-variant(@color) {
4 | background-color: @color;
5 |
6 | &[href] {
7 | &:hover,
8 | &:focus {
9 | background-color: darken(@color, 10%);
10 | }
11 | }
12 | }
13 |
--------------------------------------------------------------------------------
/Godeps/_workspace/src/github.com/go-xorm/xorm/.gitmodules:
--------------------------------------------------------------------------------
1 | [submodule "docs/manual-en-US"]
2 | path = docs/manual-en-US
3 | url = https://github.com/go-xorm/manual-en-US.git
4 | [submodule "docs/manual-zh-CN"]
5 | path = docs/manual-zh-CN
6 | url = https://github.com/go-xorm/manual-zh-CN.git
7 |
--------------------------------------------------------------------------------
/public/bower_components/bootstrap/less/mixins/progress-bar.less:
--------------------------------------------------------------------------------
1 | // Progress bars
2 |
3 | .progress-bar-variant(@color) {
4 | background-color: @color;
5 |
6 | // Deprecated parent class requirement as of v3.2.0
7 | .progress-striped & {
8 | #gradient > .striped();
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/public/bower_components/jquery/src/attributes.js:
--------------------------------------------------------------------------------
1 | define([
2 | "./core",
3 | "./attributes/attr",
4 | "./attributes/prop",
5 | "./attributes/classes",
6 | "./attributes/val"
7 | ], function( jQuery ) {
8 |
9 | // Return jQuery for attributes-only inclusion
10 | return jQuery;
11 | });
12 |
--------------------------------------------------------------------------------
/Godeps/_workspace/src/github.com/go-xorm/core/converstion.go:
--------------------------------------------------------------------------------
1 | package core
2 |
3 | // Conversion is an interface. A type implements Conversion will according
4 | // the custom method to fill into database and retrieve from database.
5 | type Conversion interface {
6 | FromDB([]byte) error
7 | ToDB() ([]byte, error)
8 | }
9 |
--------------------------------------------------------------------------------
/scripts/hello.go:
--------------------------------------------------------------------------------
1 | package main
2 |
3 | import (
4 | "flag"
5 | "fmt"
6 | "os"
7 | "time"
8 | )
9 |
10 | func main() {
11 | exit := flag.Int("e", 0, "exit code")
12 | flag.Parse()
13 | for i := 0; i < 10; i++ {
14 | fmt.Println("Now:", i)
15 | time.Sleep(time.Second)
16 | }
17 | os.Exit(*exit)
18 | }
19 |
--------------------------------------------------------------------------------
/Dockerfile:
--------------------------------------------------------------------------------
1 | FROM google/golang:latest
2 | MAINTAINER codeskyblue@gmail.com
3 |
4 | COPY . /gopath/src/github.com/codeskyblue/webcrontab
5 | WORKDIR /gopath/src/github.com/codeskyblue/webcrontab
6 |
7 | RUN go get -v
8 | RUN go build
9 |
10 | EXPOSE 80
11 | ENTRYPOINT []
12 | CMD ["./webcrontab", "-port", "80"]
13 |
14 |
--------------------------------------------------------------------------------
/public/bower_components/jquery/src/deprecated.js:
--------------------------------------------------------------------------------
1 | define([
2 | "./core",
3 | "./traversing"
4 | ], function( jQuery ) {
5 |
6 | // The number of elements contained in the matched element set
7 | jQuery.fn.size = function() {
8 | return this.length;
9 | };
10 |
11 | jQuery.fn.andSelf = jQuery.fn.addBack;
12 |
13 | });
14 |
--------------------------------------------------------------------------------
/public/bower_components/bootstrap/less/mixins/reset-filter.less:
--------------------------------------------------------------------------------
1 | // Reset filters for IE
2 | //
3 | // When you need to remove a gradient background, do not forget to use this to reset
4 | // the IE filter for IE9 and below.
5 |
6 | .reset-filter() {
7 | filter: e(%("progid:DXImageTransform.Microsoft.gradient(enabled = false)"));
8 | }
9 |
--------------------------------------------------------------------------------
/public/bower_components/jquery/src/ajax/parseJSON.js:
--------------------------------------------------------------------------------
1 | define([
2 | "../core"
3 | ], function( jQuery ) {
4 |
5 | // Support: Android 2.3
6 | // Workaround failure to string-cast null input
7 | jQuery.parseJSON = function( data ) {
8 | return JSON.parse( data + "" );
9 | };
10 |
11 | return jQuery.parseJSON;
12 |
13 | });
14 |
--------------------------------------------------------------------------------
/public/bower_components/bootstrap/less/mixins/nav-divider.less:
--------------------------------------------------------------------------------
1 | // Horizontal dividers
2 | //
3 | // Dividers (basically an hr) within dropdowns and nav lists
4 |
5 | .nav-divider(@color: #e5e5e5) {
6 | height: 1px;
7 | margin: ((@line-height-computed / 2) - 1) 0;
8 | overflow: hidden;
9 | background-color: @color;
10 | }
11 |
--------------------------------------------------------------------------------
/Godeps/_workspace/src/github.com/mattn/go-sqlite3/.travis.yml:
--------------------------------------------------------------------------------
1 | language: go
2 | go:
3 | - tip
4 | before_install:
5 | - go get github.com/axw/gocov/gocov
6 | - go get github.com/mattn/goveralls
7 | - go get golang.org/x/tools/cmd/cover
8 | script:
9 | - $HOME/gopath/bin/goveralls -repotoken 3qJVUE0iQwqnCbmNcDsjYu1nh4J4KIFXx
10 |
--------------------------------------------------------------------------------
/public/bower_components/jquery/src/effects/animatedSelector.js:
--------------------------------------------------------------------------------
1 | define([
2 | "../core",
3 | "../selector",
4 | "../effects"
5 | ], function( jQuery ) {
6 |
7 | jQuery.expr.filters.animated = function( elem ) {
8 | return jQuery.grep(jQuery.timers, function( fn ) {
9 | return elem === fn.elem;
10 | }).length;
11 | };
12 |
13 | });
14 |
--------------------------------------------------------------------------------
/Godeps/_workspace/src/github.com/go-xorm/core/error.go:
--------------------------------------------------------------------------------
1 | package core
2 |
3 | import "errors"
4 |
5 | var (
6 | ErrNoMapPointer = errors.New("mp should be a map's pointer")
7 | ErrNoStructPointer = errors.New("mp should be a map's pointer")
8 | //ErrNotExist = errors.New("Not exist")
9 | //ErrIgnore = errors.New("Ignore")
10 | )
11 |
--------------------------------------------------------------------------------
/public/bower_components/bootstrap/less/mixins/alerts.less:
--------------------------------------------------------------------------------
1 | // Alerts
2 |
3 | .alert-variant(@background; @border; @text-color) {
4 | background-color: @background;
5 | border-color: @border;
6 | color: @text-color;
7 |
8 | hr {
9 | border-top-color: darken(@border, 5%);
10 | }
11 | .alert-link {
12 | color: darken(@text-color, 10%);
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # Compiled Object files, Static and Dynamic libs (Shared Objects)
2 | *.o
3 | *.a
4 | *.so
5 |
6 | # Folders
7 | _obj
8 | _test
9 |
10 | # Architecture specific extensions/prefixes
11 | *.[568vq]
12 | [568vq].out
13 |
14 | *.cgo1.go
15 | *.cgo2.c
16 | _cgo_defun.c
17 | _cgo_gotypes.go
18 | _cgo_export.*
19 |
20 | _testmain.go
21 |
22 | *.exe
23 | *.test
24 |
25 |
--------------------------------------------------------------------------------
/public/bower_components/jquery/src/manipulation/_evalUrl.js:
--------------------------------------------------------------------------------
1 | define([
2 | "../ajax"
3 | ], function( jQuery ) {
4 |
5 | jQuery._evalUrl = function( url ) {
6 | return jQuery.ajax({
7 | url: url,
8 | type: "GET",
9 | dataType: "script",
10 | async: false,
11 | global: false,
12 | "throws": true
13 | });
14 | };
15 |
16 | return jQuery._evalUrl;
17 |
18 | });
19 |
--------------------------------------------------------------------------------
/Godeps/_workspace/src/github.com/mattn/go-sqlite3/sqlite3_other.go:
--------------------------------------------------------------------------------
1 | // Copyright (C) 2014 Yasuhiro Matsumoto .
2 | //
3 | // Use of this source code is governed by an MIT-style
4 | // license that can be found in the LICENSE file.
5 | // +build !windows
6 |
7 | package sqlite3
8 |
9 | /*
10 | #cgo CFLAGS: -I.
11 | #cgo linux LDFLAGS: -ldl
12 | */
13 | import "C"
14 |
--------------------------------------------------------------------------------
/public/bower_components/bootstrap/js/.jshintrc:
--------------------------------------------------------------------------------
1 | {
2 | "asi" : true,
3 | "browser" : true,
4 | "eqeqeq" : false,
5 | "eqnull" : true,
6 | "es3" : true,
7 | "expr" : true,
8 | "jquery" : true,
9 | "latedef" : true,
10 | "laxbreak" : true,
11 | "nonbsp" : true,
12 | "strict" : true,
13 | "undef" : true,
14 | "unused" : true
15 | }
16 |
--------------------------------------------------------------------------------
/.fswatch.json:
--------------------------------------------------------------------------------
1 | {
2 | "paths": [
3 | "."
4 | ],
5 | "depth": 1,
6 | "exclude": [],
7 | "include": [
8 | "\\.(go|py|php|java|cpp|h|rb)$"
9 | ],
10 | "command": "go build",
11 | "env": {
12 | "POWERD_BY": "github.com/codeskyblue/fswatch"
13 | },
14 | "autorestart": false,
15 | "restart-interval": 0,
16 | "kill-signal": "KILL"
17 | }
18 |
--------------------------------------------------------------------------------
/Godeps/_workspace/src/github.com/mattn/go-sqlite3/sqlite3_icu.go:
--------------------------------------------------------------------------------
1 | // Copyright (C) 2014 Yasuhiro Matsumoto .
2 | //
3 | // Use of this source code is governed by an MIT-style
4 | // license that can be found in the LICENSE file.
5 | // +build icu
6 |
7 | package sqlite3
8 |
9 | /*
10 | #cgo LDFLAGS: -licuuc -licui18n
11 | #cgo CFLAGS: -DSQLITE_ENABLE_ICU
12 | */
13 | import "C"
14 |
--------------------------------------------------------------------------------
/Godeps/_workspace/src/github.com/mattn/go-sqlite3/sqlite3_libsqlite3.go:
--------------------------------------------------------------------------------
1 | // Copyright (C) 2014 Yasuhiro Matsumoto .
2 | //
3 | // Use of this source code is governed by an MIT-style
4 | // license that can be found in the LICENSE file.
5 | // +build libsqlite3
6 |
7 | package sqlite3
8 |
9 | /*
10 | #cgo CFLAGS: -DUSE_LIBSQLITE3
11 | #cgo LDFLAGS: -lsqlite3
12 | */
13 | import "C"
14 |
--------------------------------------------------------------------------------
/Godeps/_workspace/src/github.com/qiniu/log/.gitignore:
--------------------------------------------------------------------------------
1 | # Compiled Object files, Static and Dynamic libs (Shared Objects)
2 | *.o
3 | *.a
4 | *.so
5 |
6 | # Folders
7 | _obj
8 | _test
9 |
10 | # Architecture specific extensions/prefixes
11 | *.[568vq]
12 | [568vq].out
13 |
14 | *.cgo1.go
15 | *.cgo2.c
16 | _cgo_defun.c
17 | _cgo_gotypes.go
18 | _cgo_export.*
19 |
20 | _testmain.go
21 |
22 | *.exe
23 |
--------------------------------------------------------------------------------
/Godeps/_workspace/src/github.com/robfig/cron/.gitignore:
--------------------------------------------------------------------------------
1 | # Compiled Object files, Static and Dynamic libs (Shared Objects)
2 | *.o
3 | *.a
4 | *.so
5 |
6 | # Folders
7 | _obj
8 | _test
9 |
10 | # Architecture specific extensions/prefixes
11 | *.[568vq]
12 | [568vq].out
13 |
14 | *.cgo1.go
15 | *.cgo2.c
16 | _cgo_defun.c
17 | _cgo_gotypes.go
18 | _cgo_export.*
19 |
20 | _testmain.go
21 |
22 | *.exe
23 |
--------------------------------------------------------------------------------
/public/bower_components/jquery/src/selector-sizzle.js:
--------------------------------------------------------------------------------
1 | define([
2 | "./core",
3 | "sizzle"
4 | ], function( jQuery, Sizzle ) {
5 |
6 | jQuery.find = Sizzle;
7 | jQuery.expr = Sizzle.selectors;
8 | jQuery.expr[":"] = jQuery.expr.pseudos;
9 | jQuery.unique = Sizzle.uniqueSort;
10 | jQuery.text = Sizzle.getText;
11 | jQuery.isXMLDoc = Sizzle.isXML;
12 | jQuery.contains = Sizzle.contains;
13 |
14 | });
15 |
--------------------------------------------------------------------------------
/Godeps/_workspace/src/github.com/gorilla/websocket/.gitignore:
--------------------------------------------------------------------------------
1 | # Compiled Object files, Static and Dynamic libs (Shared Objects)
2 | *.o
3 | *.a
4 | *.so
5 |
6 | # Folders
7 | _obj
8 | _test
9 |
10 | # Architecture specific extensions/prefixes
11 | *.[568vq]
12 | [568vq].out
13 |
14 | *.cgo1.go
15 | *.cgo2.c
16 | _cgo_defun.c
17 | _cgo_gotypes.go
18 | _cgo_export.*
19 |
20 | _testmain.go
21 |
22 | *.exe
23 |
--------------------------------------------------------------------------------
/public/bower_components/jquery/src/event/ajax.js:
--------------------------------------------------------------------------------
1 | define([
2 | "../core",
3 | "../event"
4 | ], function( jQuery ) {
5 |
6 | // Attach a bunch of functions for handling common AJAX events
7 | jQuery.each( [ "ajaxStart", "ajaxStop", "ajaxComplete", "ajaxError", "ajaxSuccess", "ajaxSend" ], function( i, type ) {
8 | jQuery.fn[ type ] = function( fn ) {
9 | return this.on( type, fn );
10 | };
11 | });
12 |
13 | });
14 |
--------------------------------------------------------------------------------
/Godeps/_workspace/src/github.com/Unknwon/com/.gitignore:
--------------------------------------------------------------------------------
1 | # Compiled Object files, Static and Dynamic libs (Shared Objects)
2 | *.o
3 | *.a
4 | *.so
5 |
6 | # Folders
7 | _obj
8 | _test
9 | .idea
10 |
11 | # Architecture specific extensions/prefixes
12 | *.[568vq]
13 | [568vq].out
14 |
15 | *.cgo1.go
16 | *.cgo2.c
17 | _cgo_defun.c
18 | _cgo_gotypes.go
19 | _cgo_export.*
20 |
21 | _testmain.go
22 |
23 | *.exe
24 | *.iml
25 |
--------------------------------------------------------------------------------
/Godeps/_workspace/src/github.com/gorilla/websocket/examples/autobahn/README.md:
--------------------------------------------------------------------------------
1 | # Test Server
2 |
3 | This package contains a server for the [Autobahn WebSockets Test Suite](http://autobahn.ws/testsuite).
4 |
5 | To test the server, run
6 |
7 | go run server.go
8 |
9 | and start the client test driver
10 |
11 | wstest -m fuzzingclient -s fuzzingclient.json
12 |
13 | When the client completes, it writes a report to reports/clients/index.html.
14 |
--------------------------------------------------------------------------------
/public/bower_components/angularjs-humanize/bower.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "angularjs-humanize",
3 | "version": "0.0.1",
4 | "main": "src/angular-humanize.js",
5 | "description": "Angular filter for rendering human-readable data",
6 | "license": "MIT",
7 | "dependencies": {
8 | "angular": "~1.2.7",
9 | "humanize": "~0.0.9"
10 | },
11 | "devDependencies": {
12 | "angular-mocks": "~1.2.7",
13 | "jasmine": "~1.3.1"
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/public/bower_components/jquery/src/css/var/isHidden.js:
--------------------------------------------------------------------------------
1 | define([
2 | "../../core",
3 | "../../selector"
4 | // css is assumed
5 | ], function( jQuery ) {
6 |
7 | return function( elem, el ) {
8 | // isHidden might be called from jQuery#filter function;
9 | // in that case, element will be second argument
10 | elem = el || elem;
11 | return jQuery.css( elem, "display" ) === "none" || !jQuery.contains( elem.ownerDocument, elem );
12 | };
13 | });
14 |
--------------------------------------------------------------------------------
/public/bower_components/bootstrap/less/mixins/nav-vertical-align.less:
--------------------------------------------------------------------------------
1 | // Navbar vertical align
2 | //
3 | // Vertically center elements in the navbar.
4 | // Example: an element has a height of 30px, so write out `.navbar-vertical-align(30px);` to calculate the appropriate top margin.
5 |
6 | .navbar-vertical-align(@element-height) {
7 | margin-top: ((@navbar-height - @element-height) / 2);
8 | margin-bottom: ((@navbar-height - @element-height) / 2);
9 | }
10 |
--------------------------------------------------------------------------------
/Godeps/_workspace/src/github.com/go-xorm/xorm/.gitignore:
--------------------------------------------------------------------------------
1 | # Compiled Object files, Static and Dynamic libs (Shared Objects)
2 | *.o
3 | *.a
4 | *.so
5 | *.db
6 |
7 | # Folders
8 | _obj
9 | _test
10 |
11 | # Architecture specific extensions/prefixes
12 | *.[568vq]
13 | [568vq].out
14 |
15 | *.cgo1.go
16 | *.cgo2.c
17 | _cgo_defun.c
18 | _cgo_gotypes.go
19 | _cgo_export.*
20 |
21 | _testmain.go
22 |
23 | *.exe
24 | vendor
25 |
26 | *.log
27 | .vendor
28 | temp_test.go
29 |
--------------------------------------------------------------------------------
/public/bower_components/angular/angular-csp.css:
--------------------------------------------------------------------------------
1 | /* Include this file in your html if you are using the CSP mode. */
2 |
3 | @charset "UTF-8";
4 |
5 | [ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak],
6 | .ng-cloak, .x-ng-cloak,
7 | .ng-hide:not(.ng-hide-animate) {
8 | display: none !important;
9 | }
10 |
11 | ng\:form {
12 | display: block;
13 | }
14 |
15 | .ng-animate-shim {
16 | visibility:hidden;
17 | }
18 |
19 | .ng-anchor {
20 | position:absolute;
21 | }
22 |
--------------------------------------------------------------------------------
/public/bower_components/angularjs/angular-csp.css:
--------------------------------------------------------------------------------
1 | /* Include this file in your html if you are using the CSP mode. */
2 |
3 | @charset "UTF-8";
4 |
5 | [ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak],
6 | .ng-cloak, .x-ng-cloak,
7 | .ng-hide:not(.ng-hide-animate) {
8 | display: none !important;
9 | }
10 |
11 | ng\:form {
12 | display: block;
13 | }
14 |
15 | .ng-animate-shim {
16 | visibility:hidden;
17 | }
18 |
19 | .ng-anchor {
20 | position:absolute;
21 | }
22 |
--------------------------------------------------------------------------------
/Godeps/_workspace/src/github.com/gorilla/websocket/examples/filewatch/README.md:
--------------------------------------------------------------------------------
1 | # File Watch example.
2 |
3 | This example sends a file to the browser client for display whenever the file is modified.
4 |
5 | $ go get github.com/gorilla/websocket
6 | $ cd `go list -f '{{.Dir}}' github.com/gorilla/websocket/examples/filewatch`
7 | $ go run main.go
8 | # Open http://localhost:8080/ .
9 | # Modify the file to see it update in the browser.
10 |
--------------------------------------------------------------------------------
/public/bower_components/bootstrap/less/mixins/responsive-visibility.less:
--------------------------------------------------------------------------------
1 | // Responsive utilities
2 |
3 | //
4 | // More easily include all the states for responsive-utilities.less.
5 | .responsive-visibility() {
6 | display: block !important;
7 | table& { display: table !important; }
8 | tr& { display: table-row !important; }
9 | th&,
10 | td& { display: table-cell !important; }
11 | }
12 |
13 | .responsive-invisibility() {
14 | display: none !important;
15 | }
16 |
--------------------------------------------------------------------------------
/Godeps/_workspace/src/github.com/mattn/go-sqlite3/sqlite3_windows.go:
--------------------------------------------------------------------------------
1 | // Copyright (C) 2014 Yasuhiro Matsumoto .
2 | //
3 | // Use of this source code is governed by an MIT-style
4 | // license that can be found in the LICENSE file.
5 | // +build windows
6 |
7 | package sqlite3
8 |
9 | /*
10 | #cgo CFLAGS: -I. -fno-stack-check -fno-stack-protector -mno-stack-arg-probe
11 | #cgo windows,386 CFLAGS: -D_localtime32=localtime
12 | #cgo LDFLAGS: -lmingwex -lmingw32
13 | */
14 | import "C"
15 |
--------------------------------------------------------------------------------
/public/bower_components/jquery/src/css/hiddenVisibleSelectors.js:
--------------------------------------------------------------------------------
1 | define([
2 | "../core",
3 | "../selector"
4 | ], function( jQuery ) {
5 |
6 | jQuery.expr.filters.hidden = function( elem ) {
7 | // Support: Opera <= 12.12
8 | // Opera reports offsetWidths and offsetHeights less than zero on some elements
9 | return elem.offsetWidth <= 0 && elem.offsetHeight <= 0;
10 | };
11 | jQuery.expr.filters.visible = function( elem ) {
12 | return !jQuery.expr.filters.hidden( elem );
13 | };
14 |
15 | });
16 |
--------------------------------------------------------------------------------
/public/bower_components/jquery/src/css/var/getStyles.js:
--------------------------------------------------------------------------------
1 | define(function() {
2 | return function( elem ) {
3 | // Support: IE<=11+, Firefox<=30+ (#15098, #14150)
4 | // IE throws on elements created in popups
5 | // FF meanwhile throws on frame elements through "defaultView.getComputedStyle"
6 | if ( elem.ownerDocument.defaultView.opener ) {
7 | return elem.ownerDocument.defaultView.getComputedStyle( elem, null );
8 | }
9 |
10 | return window.getComputedStyle( elem, null );
11 | };
12 | });
13 |
--------------------------------------------------------------------------------
/templates/footer.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |