├── .gitignore ├── LICENSE ├── README ├── bot ├── MySQL-python-1.2.2.tar.gz ├── config.py ├── irc_config.txt.example ├── ircbot.py ├── irclib.py ├── mysql_config.txt.example ├── pierc.py └── pierc_db.py └── web ├── config.php.example ├── index.php ├── json.php ├── pierc.js ├── pierc_db.php └── theme ├── rnarian ├── ajax-loader.gif └── style.css └── standard ├── ajax-loader.gif └── style.css /.gitignore: -------------------------------------------------------------------------------- 1 | config.php 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cube-drone/pierc/HEAD/LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cube-drone/pierc/HEAD/README -------------------------------------------------------------------------------- /bot/MySQL-python-1.2.2.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cube-drone/pierc/HEAD/bot/MySQL-python-1.2.2.tar.gz -------------------------------------------------------------------------------- /bot/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cube-drone/pierc/HEAD/bot/config.py -------------------------------------------------------------------------------- /bot/irc_config.txt.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cube-drone/pierc/HEAD/bot/irc_config.txt.example -------------------------------------------------------------------------------- /bot/ircbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cube-drone/pierc/HEAD/bot/ircbot.py -------------------------------------------------------------------------------- /bot/irclib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cube-drone/pierc/HEAD/bot/irclib.py -------------------------------------------------------------------------------- /bot/mysql_config.txt.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cube-drone/pierc/HEAD/bot/mysql_config.txt.example -------------------------------------------------------------------------------- /bot/pierc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cube-drone/pierc/HEAD/bot/pierc.py -------------------------------------------------------------------------------- /bot/pierc_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cube-drone/pierc/HEAD/bot/pierc_db.py -------------------------------------------------------------------------------- /web/config.php.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cube-drone/pierc/HEAD/web/config.php.example -------------------------------------------------------------------------------- /web/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cube-drone/pierc/HEAD/web/index.php -------------------------------------------------------------------------------- /web/json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cube-drone/pierc/HEAD/web/json.php -------------------------------------------------------------------------------- /web/pierc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cube-drone/pierc/HEAD/web/pierc.js -------------------------------------------------------------------------------- /web/pierc_db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cube-drone/pierc/HEAD/web/pierc_db.php -------------------------------------------------------------------------------- /web/theme/rnarian/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cube-drone/pierc/HEAD/web/theme/rnarian/ajax-loader.gif -------------------------------------------------------------------------------- /web/theme/rnarian/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cube-drone/pierc/HEAD/web/theme/rnarian/style.css -------------------------------------------------------------------------------- /web/theme/standard/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cube-drone/pierc/HEAD/web/theme/standard/ajax-loader.gif -------------------------------------------------------------------------------- /web/theme/standard/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cube-drone/pierc/HEAD/web/theme/standard/style.css --------------------------------------------------------------------------------