对不起,该页面出错了。请反馈给我们
6 |将在3秒后跳转到首页
7 |├── data └── .gitignore ├── static ├── upload │ └── .gitignore ├── img │ ├── go.ico │ ├── gold.png │ ├── new.png │ ├── top.gif │ ├── top.png │ ├── go_top.png │ ├── gold_48.png │ ├── logo1.png │ ├── logo2.png │ ├── logo3.png │ ├── copper_48.png │ ├── rank_num1.png │ ├── rank_num2.png │ ├── rank_num3.png │ ├── silver_48.png │ ├── text_logo.png │ ├── admin │ │ ├── list.png │ │ ├── quote.png │ │ ├── thead.png │ │ ├── calarrow.png │ │ ├── line.ccc.png │ │ ├── icons │ │ │ ├── call.png │ │ │ ├── mail.png │ │ │ ├── users.png │ │ │ ├── sprites.png │ │ │ ├── calendar.png │ │ │ ├── settings.png │ │ │ └── sprites.white.png │ │ ├── line.dashed.png │ │ ├── menuarrow.png │ │ ├── noise.white.png │ │ ├── sliderhor.png │ │ ├── sliderver.png │ │ ├── topheaderbg.png │ │ ├── icons_sprite.png │ │ ├── icons_sprite2.png │ │ ├── menucollapsed.png │ │ ├── treetable │ │ │ ├── new.gif │ │ │ ├── blank.gif │ │ │ ├── fopen.gif │ │ │ ├── fshut.gif │ │ │ ├── minus.gif │ │ │ ├── plus.gif │ │ │ ├── tv-item.gif │ │ │ ├── vertline.gif │ │ │ ├── tv-expandable.gif │ │ │ ├── tv-item-last.gif │ │ │ ├── tv-collapsable.gif │ │ │ ├── tv-expandable-last.gif │ │ │ └── tv-collapsable-last.gif │ │ ├── userinfoarrow.png │ │ └── uniform │ │ │ ├── bg-input.png │ │ │ ├── sprite.png │ │ │ └── bg-input-focus.png │ ├── dock_shadow.png │ ├── logo-width.png │ ├── rank_medal1.png │ ├── rank_medal2.png │ ├── rank_medal3.png │ ├── wmd-buttons.png │ ├── activity │ │ ├── 1024-0.jpg │ │ └── 1024-1.jpg │ └── loaders │ │ ├── loader1.gif │ │ ├── loader10.gif │ │ ├── loader2.gif │ │ ├── loader3.gif │ │ ├── loader4.gif │ │ ├── loader5.gif │ │ ├── loader6.gif │ │ ├── loader7.gif │ │ ├── loader8.gif │ │ └── loader9.gif ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff ├── css │ ├── admin │ │ ├── style.custombg.css │ │ └── jquery.timepicker.css │ ├── inner │ │ └── table.css │ ├── libs │ │ ├── jquery.atwho.min.css │ │ ├── jquery.cftoaster.1.0.1.css │ │ └── zoom.css │ ├── search.css │ ├── md_toolbar.css │ ├── message.css │ └── resources.css ├── js │ ├── install │ │ └── password-strength-meter.js │ ├── libs │ │ └── jquery.timeago.zh-CN.js │ ├── admin │ │ ├── authority │ │ │ ├── modify.js │ │ │ └── new.js │ │ └── jquery.equalHeight.js │ ├── account.js │ ├── base │ │ └── upload.js │ └── wiki.js ├── dist │ ├── css │ │ ├── table.min.css │ │ └── table_data.min.css │ └── js │ │ ├── account.min.js │ │ ├── wiki.min.js │ │ ├── preview.min.js │ │ ├── message.min.js │ │ ├── books.min.js │ │ ├── projects.min.js │ │ └── topics.min.js └── ckeditor │ └── plugins │ ├── autosave │ └── lang │ │ ├── zh.js │ │ ├── zh-cn.js │ │ └── en.js │ └── prism │ └── Creating and Editing Code Snippets.txt ├── middleware ├── README.md └── auth.go ├── db └── nosql │ └── README.md ├── template ├── admin │ ├── common_query.html │ ├── index.html │ ├── tool │ │ └── sitemap.html │ ├── 403.html │ └── 50x.html ├── wr.html ├── cssjs │ ├── prism.css.html │ ├── publish.js.html │ └── ckeditor.js.html ├── sitemapindex.xml ├── sidebar │ ├── stat.html │ ├── hot_node.html │ ├── friend_link.html │ ├── comment.html │ ├── topic.html │ ├── reading.html │ ├── article.html │ ├── project.html │ ├── resource.html │ ├── active_user.html │ ├── new_user.html │ ├── view_rank.html │ └── concern.html ├── wide │ └── playground.html ├── notfound.html ├── 500.html ├── 403.html ├── gctt │ └── apply.html ├── common │ └── view_stat.html ├── 404.html └── link.html ├── util ├── echoutils │ └── README.md ├── slice.go ├── form.go └── convert_test.go ├── vendor ├── github.com │ ├── labstack │ │ ├── gommon │ │ │ ├── gommon.go │ │ │ ├── log │ │ │ │ └── README.md │ │ │ ├── glide.yaml │ │ │ ├── bytes │ │ │ │ └── README.md │ │ │ ├── README.md │ │ │ └── glide.lock │ │ └── echo │ │ │ ├── glide.yaml │ │ │ └── log │ │ │ └── logger.go │ ├── polaris1119 │ │ ├── keyword │ │ │ ├── README.md │ │ │ └── word.go │ │ ├── goutils │ │ │ ├── README.md │ │ │ ├── bool.go │ │ │ ├── security.go │ │ │ ├── rand.go │ │ │ ├── ip.go │ │ │ ├── convert.go │ │ │ └── float.go │ │ ├── slices │ │ │ └── README.md │ │ └── times │ │ │ └── README.md │ ├── go-xorm │ │ ├── core │ │ │ ├── benchmark.sh │ │ │ ├── go.mod │ │ │ ├── error.go │ │ │ ├── converstion.go │ │ │ ├── pk.go │ │ │ ├── driver.go │ │ │ └── ilogger.go │ │ ├── builder │ │ │ ├── go.mod │ │ │ ├── builder_delete.go │ │ │ ├── error.go │ │ │ ├── builder_union.go │ │ │ └── cond_expr.go │ │ └── xorm │ │ │ ├── test_mymysql.sh │ │ │ ├── test_mysql.sh │ │ │ ├── test_mysql_cache.sh │ │ │ ├── test_sqlite.sh │ │ │ ├── test_mymysql_cache.sh │ │ │ ├── test_postgres.sh │ │ │ ├── test_sqlite_cache.sh │ │ │ ├── test_postgres_cache.sh │ │ │ ├── test_mssql.sh │ │ │ ├── test_mssql_cache.sh │ │ │ ├── gen_reserved.sh │ │ │ ├── go.mod │ │ │ ├── types.go │ │ │ ├── helpler_time.go │ │ │ ├── engine_maxlife.go │ │ │ └── context.go │ ├── mattn │ │ ├── go-isatty │ │ │ ├── doc.go │ │ │ ├── isatty_others.go │ │ │ ├── isatty_solaris.go │ │ │ ├── isatty_linux.go │ │ │ ├── isatty_appengine.go │ │ │ ├── isatty_bsd.go │ │ │ └── isatty_linux_ppc64x.go │ │ ├── go-runewidth │ │ │ ├── runewidth_js.go │ │ │ ├── runewidth_windows.go │ │ │ └── README.mkd │ │ └── go-colorable │ │ │ ├── colorable_appengine.go │ │ │ └── colorable_others.go │ ├── tidwall │ │ ├── gjson │ │ │ ├── logo.png │ │ │ └── gjson_gae.go │ │ └── match │ │ │ └── README.md │ ├── andybalholm │ │ └── cascadia │ │ │ ├── go.mod │ │ │ └── README.md │ ├── gorilla │ │ ├── sessions │ │ │ └── go.mod │ │ ├── feeds │ │ │ ├── to-implement.md │ │ │ └── uuid.go │ │ ├── securecookie │ │ │ ├── fuzz.go │ │ │ └── AUTHORS │ │ └── context │ │ │ └── README.md │ ├── dgrijalva │ │ └── jwt-go │ │ │ └── doc.go │ ├── garyburd │ │ └── redigo │ │ │ └── redis │ │ │ └── go18.go │ ├── facebookgo │ │ └── stats │ │ │ ├── readme.md │ │ │ ├── stopper.go │ │ │ └── aggregation.go │ ├── twinj │ │ └── uuid │ │ │ ├── glide.yaml │ │ │ ├── glide.lock │ │ │ └── appveyor.yml │ ├── valyala │ │ ├── fasttemplate │ │ │ ├── unsafe_gae.go │ │ │ └── unsafe.go │ │ └── bytebufferpool │ │ │ └── doc.go │ ├── qiniu │ │ ├── bytes │ │ │ └── README.md │ │ ├── rpc │ │ │ ├── README.md │ │ │ └── CHANGELOG.md │ │ └── api.v6 │ │ │ └── conf │ │ │ └── conf.go │ ├── robfig │ │ └── cron │ │ │ └── README.md │ ├── tylerb │ │ └── graceful │ │ │ ├── signal_appengine.go │ │ │ ├── signal.go │ │ │ └── keepalive_listener.go │ ├── adamzy │ │ └── cedar-go │ │ │ ├── errors.go │ │ │ └── doc.go │ ├── ssor │ │ └── bom │ │ │ ├── README.md │ │ │ └── bom.go │ ├── meission │ │ └── log4go │ │ │ └── README │ ├── huichen │ │ └── sego │ │ │ ├── segment.go │ │ │ ├── license.txt │ │ │ └── test_utils.go │ ├── go-sql-driver │ │ └── mysql │ │ │ ├── appengine.go │ │ │ ├── result.go │ │ │ └── transaction.go │ ├── lunny │ │ └── html2md │ │ │ └── core.go │ ├── fatih │ │ └── structs │ │ │ └── tags.go │ └── jmcvetta │ │ └── randutil │ │ └── README.md ├── golang.org │ └── x │ │ ├── oauth2 │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ └── internal │ │ │ ├── doc.go │ │ │ └── client_appengine.go │ │ ├── sys │ │ └── unix │ │ │ ├── endian_big.go │ │ │ ├── endian_little.go │ │ │ ├── constants.go │ │ │ ├── syscall_linux_amd64_gc.go │ │ │ ├── aliases.go │ │ │ ├── pagesize_unix.go │ │ │ ├── fcntl_linux_32bit.go │ │ │ ├── asm_solaris_amd64.s │ │ │ ├── gccgo_linux_amd64.go │ │ │ ├── syscall_linux_gc.go │ │ │ ├── race0.go │ │ │ ├── syscall_solaris_amd64.go │ │ │ ├── syscall_linux_gc_386.go │ │ │ ├── syscall_unix_gc.go │ │ │ ├── dirent.go │ │ │ ├── syscall_linux_gccgo_arm.go │ │ │ ├── str.go │ │ │ ├── race.go │ │ │ ├── env_unix.go │ │ │ ├── asm_freebsd_arm.s │ │ │ ├── asm_netbsd_arm.s │ │ │ ├── asm_openbsd_arm.s │ │ │ ├── asm_darwin_386.s │ │ │ ├── asm_freebsd_386.s │ │ │ ├── asm_netbsd_386.s │ │ │ ├── asm_openbsd_386.s │ │ │ ├── asm_darwin_amd64.s │ │ │ ├── asm_freebsd_amd64.s │ │ │ ├── asm_netbsd_amd64.s │ │ │ ├── asm_openbsd_amd64.s │ │ │ ├── asm_dragonfly_amd64.s │ │ │ ├── asm_darwin_arm.s │ │ │ ├── bluetooth_linux.go │ │ │ ├── asm_darwin_arm64.s │ │ │ ├── dev_darwin.go │ │ │ ├── syscall_netbsd_amd64.go │ │ │ ├── syscall_netbsd_386.go │ │ │ ├── syscall_netbsd_arm.go │ │ │ ├── syscall_openbsd_386.go │ │ │ ├── syscall_openbsd_arm.go │ │ │ └── mksysnum_darwin.pl │ │ ├── text │ │ ├── language │ │ │ ├── go1_2.go │ │ │ └── go1_1.go │ │ ├── encoding │ │ │ ├── japanese │ │ │ │ └── all.go │ │ │ └── simplifiedchinese │ │ │ │ └── all.go │ │ └── internal │ │ │ └── language │ │ │ ├── common.go │ │ │ ├── coverage.go │ │ │ └── compact.go │ │ └── net │ │ ├── websocket │ │ └── dial.go │ │ └── context │ │ └── go19.go └── google.golang.org │ └── appengine │ ├── internal │ ├── main.go │ ├── identity.go │ ├── base │ │ └── api_base.proto │ └── app_id.go │ └── cloudsql │ ├── cloudsql_classic.go │ └── cloudsql_vm.go ├── robots.txt ├── config ├── reload_windows.go ├── reload_unix.go └── changelogs │ └── 1.0 │ └── studygolang.xml ├── docs ├── api.docx ├── README.md ├── qiniu.md └── gctt.md ├── liquibase ├── liquibase.jar ├── lib │ ├── snakeyaml-1.17.jar │ └── mysql-connector-java-5.1.25-bin.jar └── liquibase.bat ├── logic ├── data_test.go ├── user_rich_test.go ├── observer_test.go ├── email_test.go ├── user_test.go ├── topic_test.go ├── topic_node_test.go ├── rank_test.go ├── download.go ├── dynamic.go ├── learning_material.go ├── commenter.go └── friend_link.go ├── http ├── controller │ ├── app │ │ ├── doc.go │ │ └── routes.go │ ├── install_windows.go │ ├── admin │ │ ├── index.go │ │ ├── tool.go │ │ └── routes.go │ ├── install_unix.go │ ├── wide.go │ ├── link.go │ └── captcha.go └── middleware │ └── admin.go ├── cmd ├── main │ ├── graceful_windows.go │ ├── graceful_unix.go │ └── pprof.go ├── migrator │ └── main.go ├── crawler │ └── main.go └── indexer │ └── main.go ├── .gitignore ├── .travis.yml ├── docker-compose.yml ├── CHANGELOG.md ├── model ├── image.go ├── default_avatar.go ├── search_stat.go ├── view_record.go ├── view_source.go ├── favorite.go ├── auto_tag.go ├── friend_link.go ├── wechat.go ├── dynamic.go ├── user_setting.go ├── github_user.go ├── learning_material.go ├── authority.go ├── like.go ├── download.go ├── wiki.go └── ad.go ├── Dockerfile └── global └── chan.go /data/.gitignore: -------------------------------------------------------------------------------- 1 | max_online_num -------------------------------------------------------------------------------- /static/upload/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /middleware/README.md: -------------------------------------------------------------------------------- 1 | # middleware 2 | web中间件 3 | -------------------------------------------------------------------------------- /db/nosql/README.md: -------------------------------------------------------------------------------- 1 | # nosql 2 | nosql client and cache 3 | -------------------------------------------------------------------------------- /template/admin/common_query.html: -------------------------------------------------------------------------------- 1 | {{template "querylist" .}} -------------------------------------------------------------------------------- /util/echoutils/README.md: -------------------------------------------------------------------------------- 1 | # echoutils 2 | echo 框架辅助库 3 | -------------------------------------------------------------------------------- /vendor/github.com/labstack/gommon/gommon.go: -------------------------------------------------------------------------------- 1 | package gommon 2 | -------------------------------------------------------------------------------- /vendor/github.com/polaris1119/keyword/README.md: -------------------------------------------------------------------------------- 1 | # keyword 2 | 中文关键词提取 3 | -------------------------------------------------------------------------------- /robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Allow: / 3 | Sitemap: 4 | Disallow:/dl/golang/ -------------------------------------------------------------------------------- /vendor/github.com/go-xorm/core/benchmark.sh: -------------------------------------------------------------------------------- 1 | go test -v -bench=. -run=XXX 2 | -------------------------------------------------------------------------------- /vendor/github.com/go-xorm/core/go.mod: -------------------------------------------------------------------------------- 1 | module "github.com/go-xorm/core" 2 | -------------------------------------------------------------------------------- /vendor/github.com/polaris1119/goutils/README.md: -------------------------------------------------------------------------------- 1 | # goutils 2 | Go语言常用工具类封装 3 | -------------------------------------------------------------------------------- /config/reload_windows.go: -------------------------------------------------------------------------------- 1 | package config 2 | 3 | func signalReload() { 4 | } 5 | -------------------------------------------------------------------------------- /docs/api.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studygolang/sander/HEAD/docs/api.docx -------------------------------------------------------------------------------- /vendor/github.com/go-xorm/builder/go.mod: -------------------------------------------------------------------------------- 1 | module "github.com/go-xorm/builder" 2 | -------------------------------------------------------------------------------- /static/img/go.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studygolang/sander/HEAD/static/img/go.ico -------------------------------------------------------------------------------- /static/img/gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studygolang/sander/HEAD/static/img/gold.png -------------------------------------------------------------------------------- /static/img/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studygolang/sander/HEAD/static/img/new.png -------------------------------------------------------------------------------- /static/img/top.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studygolang/sander/HEAD/static/img/top.gif -------------------------------------------------------------------------------- /static/img/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studygolang/sander/HEAD/static/img/top.png -------------------------------------------------------------------------------- /vendor/github.com/go-xorm/xorm/test_mymysql.sh: -------------------------------------------------------------------------------- 1 | go test -db=mymysql -conn_str="xorm_test/root/" -------------------------------------------------------------------------------- /vendor/github.com/go-xorm/xorm/test_mysql.sh: -------------------------------------------------------------------------------- 1 | go test -db=mysql -conn_str="root:@/xorm_test" -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- 1 | studygolang 文档 2 | =============== 3 | 本文的旨在让大家更好地了解 studygolang 源码,方便参与到社区的开发中来。 -------------------------------------------------------------------------------- /static/img/go_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studygolang/sander/HEAD/static/img/go_top.png -------------------------------------------------------------------------------- /static/img/gold_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studygolang/sander/HEAD/static/img/gold_48.png -------------------------------------------------------------------------------- /static/img/logo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studygolang/sander/HEAD/static/img/logo1.png -------------------------------------------------------------------------------- /static/img/logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studygolang/sander/HEAD/static/img/logo2.png -------------------------------------------------------------------------------- /static/img/logo3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studygolang/sander/HEAD/static/img/logo3.png -------------------------------------------------------------------------------- /liquibase/liquibase.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studygolang/sander/HEAD/liquibase/liquibase.jar -------------------------------------------------------------------------------- /static/img/copper_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studygolang/sander/HEAD/static/img/copper_48.png -------------------------------------------------------------------------------- /static/img/rank_num1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studygolang/sander/HEAD/static/img/rank_num1.png -------------------------------------------------------------------------------- /static/img/rank_num2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studygolang/sander/HEAD/static/img/rank_num2.png -------------------------------------------------------------------------------- /static/img/rank_num3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studygolang/sander/HEAD/static/img/rank_num3.png -------------------------------------------------------------------------------- /static/img/silver_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studygolang/sander/HEAD/static/img/silver_48.png -------------------------------------------------------------------------------- /static/img/text_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studygolang/sander/HEAD/static/img/text_logo.png -------------------------------------------------------------------------------- /static/img/admin/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studygolang/sander/HEAD/static/img/admin/list.png -------------------------------------------------------------------------------- /static/img/admin/quote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studygolang/sander/HEAD/static/img/admin/quote.png -------------------------------------------------------------------------------- /static/img/admin/thead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studygolang/sander/HEAD/static/img/admin/thead.png -------------------------------------------------------------------------------- /static/img/dock_shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studygolang/sander/HEAD/static/img/dock_shadow.png -------------------------------------------------------------------------------- /static/img/logo-width.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studygolang/sander/HEAD/static/img/logo-width.png -------------------------------------------------------------------------------- /static/img/rank_medal1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studygolang/sander/HEAD/static/img/rank_medal1.png -------------------------------------------------------------------------------- /static/img/rank_medal2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studygolang/sander/HEAD/static/img/rank_medal2.png -------------------------------------------------------------------------------- /static/img/rank_medal3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studygolang/sander/HEAD/static/img/rank_medal3.png -------------------------------------------------------------------------------- /static/img/wmd-buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studygolang/sander/HEAD/static/img/wmd-buttons.png -------------------------------------------------------------------------------- /vendor/github.com/go-xorm/xorm/test_mysql_cache.sh: -------------------------------------------------------------------------------- 1 | go test -db=mysql -conn_str="root:@/xorm_test" -cache=true -------------------------------------------------------------------------------- /vendor/github.com/go-xorm/xorm/test_sqlite.sh: -------------------------------------------------------------------------------- 1 | go test -db=sqlite3 -conn_str="./test.db?cache=shared&mode=rwc" -------------------------------------------------------------------------------- /static/img/admin/calarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studygolang/sander/HEAD/static/img/admin/calarrow.png -------------------------------------------------------------------------------- /static/img/admin/line.ccc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studygolang/sander/HEAD/static/img/admin/line.ccc.png -------------------------------------------------------------------------------- /vendor/github.com/go-xorm/xorm/test_mymysql_cache.sh: -------------------------------------------------------------------------------- 1 | go test -db=mymysql -conn_str="xorm_test/root/" -cache=true -------------------------------------------------------------------------------- /vendor/github.com/go-xorm/xorm/test_postgres.sh: -------------------------------------------------------------------------------- 1 | go test -db=postgres -conn_str="dbname=xorm_test sslmode=disable" -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-isatty/doc.go: -------------------------------------------------------------------------------- 1 | // Package isatty implements interface to isatty 2 | package isatty 3 | -------------------------------------------------------------------------------- /liquibase/lib/snakeyaml-1.17.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studygolang/sander/HEAD/liquibase/lib/snakeyaml-1.17.jar -------------------------------------------------------------------------------- /static/img/activity/1024-0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studygolang/sander/HEAD/static/img/activity/1024-0.jpg -------------------------------------------------------------------------------- /static/img/activity/1024-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studygolang/sander/HEAD/static/img/activity/1024-1.jpg -------------------------------------------------------------------------------- /static/img/admin/icons/call.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studygolang/sander/HEAD/static/img/admin/icons/call.png -------------------------------------------------------------------------------- /static/img/admin/icons/mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studygolang/sander/HEAD/static/img/admin/icons/mail.png -------------------------------------------------------------------------------- /static/img/admin/icons/users.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studygolang/sander/HEAD/static/img/admin/icons/users.png -------------------------------------------------------------------------------- /static/img/admin/line.dashed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studygolang/sander/HEAD/static/img/admin/line.dashed.png -------------------------------------------------------------------------------- /static/img/admin/menuarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studygolang/sander/HEAD/static/img/admin/menuarrow.png -------------------------------------------------------------------------------- /static/img/admin/noise.white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studygolang/sander/HEAD/static/img/admin/noise.white.png -------------------------------------------------------------------------------- /static/img/admin/sliderhor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studygolang/sander/HEAD/static/img/admin/sliderhor.png -------------------------------------------------------------------------------- /static/img/admin/sliderver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studygolang/sander/HEAD/static/img/admin/sliderver.png -------------------------------------------------------------------------------- /static/img/admin/topheaderbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studygolang/sander/HEAD/static/img/admin/topheaderbg.png -------------------------------------------------------------------------------- /static/img/loaders/loader1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studygolang/sander/HEAD/static/img/loaders/loader1.gif -------------------------------------------------------------------------------- /static/img/loaders/loader10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studygolang/sander/HEAD/static/img/loaders/loader10.gif -------------------------------------------------------------------------------- /static/img/loaders/loader2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studygolang/sander/HEAD/static/img/loaders/loader2.gif -------------------------------------------------------------------------------- /static/img/loaders/loader3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studygolang/sander/HEAD/static/img/loaders/loader3.gif -------------------------------------------------------------------------------- /static/img/loaders/loader4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studygolang/sander/HEAD/static/img/loaders/loader4.gif -------------------------------------------------------------------------------- /static/img/loaders/loader5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studygolang/sander/HEAD/static/img/loaders/loader5.gif -------------------------------------------------------------------------------- /static/img/loaders/loader6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studygolang/sander/HEAD/static/img/loaders/loader6.gif -------------------------------------------------------------------------------- /static/img/loaders/loader7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studygolang/sander/HEAD/static/img/loaders/loader7.gif -------------------------------------------------------------------------------- /static/img/loaders/loader8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studygolang/sander/HEAD/static/img/loaders/loader8.gif -------------------------------------------------------------------------------- /static/img/loaders/loader9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studygolang/sander/HEAD/static/img/loaders/loader9.gif -------------------------------------------------------------------------------- /static/img/admin/icons/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studygolang/sander/HEAD/static/img/admin/icons/sprites.png -------------------------------------------------------------------------------- /static/img/admin/icons_sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studygolang/sander/HEAD/static/img/admin/icons_sprite.png -------------------------------------------------------------------------------- /static/img/admin/icons_sprite2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studygolang/sander/HEAD/static/img/admin/icons_sprite2.png -------------------------------------------------------------------------------- /static/img/admin/menucollapsed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studygolang/sander/HEAD/static/img/admin/menucollapsed.png -------------------------------------------------------------------------------- /static/img/admin/treetable/new.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studygolang/sander/HEAD/static/img/admin/treetable/new.gif -------------------------------------------------------------------------------- /static/img/admin/userinfoarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studygolang/sander/HEAD/static/img/admin/userinfoarrow.png -------------------------------------------------------------------------------- /static/img/admin/icons/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studygolang/sander/HEAD/static/img/admin/icons/calendar.png -------------------------------------------------------------------------------- /static/img/admin/icons/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studygolang/sander/HEAD/static/img/admin/icons/settings.png -------------------------------------------------------------------------------- /static/img/admin/treetable/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studygolang/sander/HEAD/static/img/admin/treetable/blank.gif -------------------------------------------------------------------------------- /static/img/admin/treetable/fopen.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studygolang/sander/HEAD/static/img/admin/treetable/fopen.gif -------------------------------------------------------------------------------- /static/img/admin/treetable/fshut.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studygolang/sander/HEAD/static/img/admin/treetable/fshut.gif -------------------------------------------------------------------------------- /static/img/admin/treetable/minus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studygolang/sander/HEAD/static/img/admin/treetable/minus.gif -------------------------------------------------------------------------------- /static/img/admin/treetable/plus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studygolang/sander/HEAD/static/img/admin/treetable/plus.gif -------------------------------------------------------------------------------- /static/img/admin/uniform/bg-input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studygolang/sander/HEAD/static/img/admin/uniform/bg-input.png -------------------------------------------------------------------------------- /static/img/admin/uniform/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studygolang/sander/HEAD/static/img/admin/uniform/sprite.png -------------------------------------------------------------------------------- /vendor/github.com/go-xorm/xorm/test_sqlite_cache.sh: -------------------------------------------------------------------------------- 1 | go test -db=sqlite3 -conn_str="./test.db?cache=shared&mode=rwc" -cache=true -------------------------------------------------------------------------------- /vendor/github.com/labstack/gommon/log/README.md: -------------------------------------------------------------------------------- 1 | ## WORK IN PROGRESS 2 | 3 | ### Usage 4 | 5 | [log_test.go](log_test.go) 6 | -------------------------------------------------------------------------------- /static/img/admin/treetable/tv-item.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studygolang/sander/HEAD/static/img/admin/treetable/tv-item.gif -------------------------------------------------------------------------------- /static/img/admin/treetable/vertline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studygolang/sander/HEAD/static/img/admin/treetable/vertline.gif -------------------------------------------------------------------------------- /vendor/github.com/go-xorm/xorm/test_postgres_cache.sh: -------------------------------------------------------------------------------- 1 | go test -db=postgres -conn_str="dbname=xorm_test sslmode=disable" -cache=true -------------------------------------------------------------------------------- /vendor/github.com/polaris1119/slices/README.md: -------------------------------------------------------------------------------- 1 | # slices 2 | Utilities for Go slice http://godoc.org/github.com/polaris1119/slices 3 | -------------------------------------------------------------------------------- /static/img/admin/icons/sprites.white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studygolang/sander/HEAD/static/img/admin/icons/sprites.white.png -------------------------------------------------------------------------------- /vendor/github.com/tidwall/gjson/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studygolang/sander/HEAD/vendor/github.com/tidwall/gjson/logo.png -------------------------------------------------------------------------------- /static/img/admin/treetable/tv-expandable.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studygolang/sander/HEAD/static/img/admin/treetable/tv-expandable.gif -------------------------------------------------------------------------------- /static/img/admin/treetable/tv-item-last.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studygolang/sander/HEAD/static/img/admin/treetable/tv-item-last.gif -------------------------------------------------------------------------------- /static/img/admin/uniform/bg-input-focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studygolang/sander/HEAD/static/img/admin/uniform/bg-input-focus.png -------------------------------------------------------------------------------- /vendor/github.com/go-xorm/xorm/test_mssql.sh: -------------------------------------------------------------------------------- 1 | go test -db=mssql -conn_str="server=192.168.1.58;user id=sa;password=123456;database=xorm_test" -------------------------------------------------------------------------------- /logic/data_test.go: -------------------------------------------------------------------------------- 1 | package logic 2 | 3 | import "testing" 4 | 5 | func TestLoadRecommendNodes(t *testing.T) { 6 | loadRecommendNodes() 7 | } 8 | -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studygolang/sander/HEAD/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studygolang/sander/HEAD/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studygolang/sander/HEAD/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /static/img/admin/treetable/tv-collapsable.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studygolang/sander/HEAD/static/img/admin/treetable/tv-collapsable.gif -------------------------------------------------------------------------------- /liquibase/lib/mysql-connector-java-5.1.25-bin.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studygolang/sander/HEAD/liquibase/lib/mysql-connector-java-5.1.25-bin.jar -------------------------------------------------------------------------------- /static/img/admin/treetable/tv-expandable-last.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studygolang/sander/HEAD/static/img/admin/treetable/tv-expandable-last.gif -------------------------------------------------------------------------------- /static/img/admin/treetable/tv-collapsable-last.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studygolang/sander/HEAD/static/img/admin/treetable/tv-collapsable-last.gif -------------------------------------------------------------------------------- /vendor/github.com/go-xorm/xorm/test_mssql_cache.sh: -------------------------------------------------------------------------------- 1 | go test -db=mssql -conn_str="server=192.168.1.58;user id=sa;password=123456;database=xorm_test" -cache=true -------------------------------------------------------------------------------- /vendor/github.com/andybalholm/cascadia/go.mod: -------------------------------------------------------------------------------- 1 | module "github.com/andybalholm/cascadia" 2 | 3 | require "golang.org/x/net" v0.0.0-20180218175443-cbe0f9307d01 4 | -------------------------------------------------------------------------------- /logic/user_rich_test.go: -------------------------------------------------------------------------------- 1 | package logic_test 2 | 3 | import "testing" 4 | 5 | func TestAwardCooper(t *testing.T) { 6 | // logic.DefaultUserRich.AwardCooper() 7 | } 8 | -------------------------------------------------------------------------------- /vendor/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 | -------------------------------------------------------------------------------- /vendor/github.com/gorilla/sessions/go.mod: -------------------------------------------------------------------------------- 1 | module "github.com/gorilla/sessions" 2 | 3 | require ( 4 | "github.com/gorilla/context" v1.1.1 5 | "github.com/gorilla/securecookie" v1.1.1 6 | ) 7 | -------------------------------------------------------------------------------- /template/admin/index.html: -------------------------------------------------------------------------------- 1 | {{define "content"}} 2 |
您可以进行以下步骤
8 |7 | {{if .msg}} 8 | {{noescape .msg}} 9 | {{else}} 10 | 将在3秒后跳转到首页
11 | {{end}} 12 |Please contact the server administrator webmaster@yourdomain.com and informed them of the time the error occurred.
More information about this error may be available in the server error log.
可能因为:
10 |