├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── backup └── news.db ├── create_tables.sql ├── nb.go ├── nb_test.go ├── screenshots ├── nb-index.png └── nb-item1.png ├── spec.txt ├── static ├── gallery.html ├── handlevote.js ├── nbstyle.css ├── news-paper.ico └── style.css └── tools └── initdata.go /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | *.db 3 | nb 4 | initdata 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robdelacruz/newsboard/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robdelacruz/newsboard/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robdelacruz/newsboard/HEAD/README.md -------------------------------------------------------------------------------- /backup/news.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robdelacruz/newsboard/HEAD/backup/news.db -------------------------------------------------------------------------------- /create_tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robdelacruz/newsboard/HEAD/create_tables.sql -------------------------------------------------------------------------------- /nb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robdelacruz/newsboard/HEAD/nb.go -------------------------------------------------------------------------------- /nb_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robdelacruz/newsboard/HEAD/nb_test.go -------------------------------------------------------------------------------- /screenshots/nb-index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robdelacruz/newsboard/HEAD/screenshots/nb-index.png -------------------------------------------------------------------------------- /screenshots/nb-item1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robdelacruz/newsboard/HEAD/screenshots/nb-item1.png -------------------------------------------------------------------------------- /spec.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robdelacruz/newsboard/HEAD/spec.txt -------------------------------------------------------------------------------- /static/gallery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robdelacruz/newsboard/HEAD/static/gallery.html -------------------------------------------------------------------------------- /static/handlevote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robdelacruz/newsboard/HEAD/static/handlevote.js -------------------------------------------------------------------------------- /static/nbstyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robdelacruz/newsboard/HEAD/static/nbstyle.css -------------------------------------------------------------------------------- /static/news-paper.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robdelacruz/newsboard/HEAD/static/news-paper.ico -------------------------------------------------------------------------------- /static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robdelacruz/newsboard/HEAD/static/style.css -------------------------------------------------------------------------------- /tools/initdata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robdelacruz/newsboard/HEAD/tools/initdata.go --------------------------------------------------------------------------------