├── .gitignore ├── favicon.ico ├── images ├── 1x1.gif ├── clear.gif ├── lbulb.gif ├── start.gif ├── stop.gif ├── lloogg.png ├── lloogg16.gif ├── led-red-on.gif └── led-red-off.gif ├── geoipdata └── GeoIP.dat ├── javascript ├── usermain.js ├── .usermain_unstable.js.swp ├── log.js.php ├── switchuser.js ├── feedbacks.js ├── login.js ├── form.js ├── register.js └── mfx.js ├── eventcodes.php ├── dbapi.php ├── footer.php ├── welcome.html.php ├── index.php ├── success.html.php ├── rmallowed.php ├── g.php ├── lib.php ├── ajax ├── checkusername.php ├── allow.php └── login.php ├── localconfig.php.example ├── mkpro.php ├── admin.html.php ├── mail ├── welcome.txt └── validate.txt ├── bcrypt.php ├── url.php ├── logout.php ├── sendfeedback.html.php ├── .htaccess ├── redisinfo.php ├── config.php ├── adm.php ├── synopsys.php ├── login.html.php ├── feedbacks.html.php ├── header.php ├── usernav.php ├── register.php ├── l.js ├── l_local.js ├── register.html.php ├── pro.php ├── secureid.php ├── search.php ├── recv.php ├── user.php ├── usercode.php ├── poll.php ├── usermain.php ├── utils.php ├── trends.php ├── README.md ├── trendsframe.php ├── css ├── iphone_style.css └── style.css ├── display.php ├── redis.php ├── geoip.inc └── json.php /.gitignore: -------------------------------------------------------------------------------- 1 | *.swf 2 | localconfig.php 3 | -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antirez/lloogg/HEAD/favicon.ico -------------------------------------------------------------------------------- /images/1x1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antirez/lloogg/HEAD/images/1x1.gif -------------------------------------------------------------------------------- /images/clear.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antirez/lloogg/HEAD/images/clear.gif -------------------------------------------------------------------------------- /images/lbulb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antirez/lloogg/HEAD/images/lbulb.gif -------------------------------------------------------------------------------- /images/start.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antirez/lloogg/HEAD/images/start.gif -------------------------------------------------------------------------------- /images/stop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antirez/lloogg/HEAD/images/stop.gif -------------------------------------------------------------------------------- /geoipdata/GeoIP.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antirez/lloogg/HEAD/geoipdata/GeoIP.dat -------------------------------------------------------------------------------- /images/lloogg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antirez/lloogg/HEAD/images/lloogg.png -------------------------------------------------------------------------------- /images/lloogg16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antirez/lloogg/HEAD/images/lloogg16.gif -------------------------------------------------------------------------------- /images/led-red-on.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antirez/lloogg/HEAD/images/led-red-on.gif -------------------------------------------------------------------------------- /images/led-red-off.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antirez/lloogg/HEAD/images/led-red-off.gif -------------------------------------------------------------------------------- /javascript/usermain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antirez/lloogg/HEAD/javascript/usermain.js -------------------------------------------------------------------------------- /eventcodes.php: -------------------------------------------------------------------------------- 1 | 2 | define("LOG_EVENT_PAGEVIEW",0); 3 | define("LOG_EVENT_ADCLICK",1); 4 | ?> 5 | -------------------------------------------------------------------------------- /javascript/.usermain_unstable.js.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antirez/lloogg/HEAD/javascript/.usermain_unstable.js.swp -------------------------------------------------------------------------------- /javascript/log.js.php: -------------------------------------------------------------------------------- 1 | 2 | include("mfx.js"); 3 | include("form.js"); 4 | include("login.js"); 5 | include("register.js"); 6 | include("feedbacks.js"); 7 | include("switchuser.js"); 8 | ?> 9 | -------------------------------------------------------------------------------- /dbapi.php: -------------------------------------------------------------------------------- 1 | 2 | function redisLink() { 3 | static $r = false; 4 | 5 | if ($r) return $r; 6 | $r = new Redis(Config('redishost'),Config('redisport')); 7 | $r->connect(); 8 | return $r; 9 | } 10 | ?> 11 | -------------------------------------------------------------------------------- /footer.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
8 |