├── .gitignore ├── README ├── checkurl_lastmodified.sh ├── ninupdates ├── api.php ├── api_cli.php ├── aqua.py ├── config.php ├── db.php ├── deletereport.php ├── difflogs.php ├── get_officialchangelog.php ├── get_officialchangelog_cli.php ├── http_pagelogger.php ├── http_pagelogger_cli.php ├── logs.php ├── manage_consoles.php ├── manage_report_updatever.php ├── manage_titledesc.php ├── merge_reports.php ├── ninsoap.php ├── ninsoap_ircbot.php ├── nzone │ └── nzone.php ├── parsesoap.php ├── postproc.php ├── send_irc.php ├── send_mastodon.py ├── send_notif.py ├── setup.php ├── tools │ └── switch │ │ └── switch_wikigen.py ├── tweet.php ├── versionlist.php ├── webhook.py ├── weblogging.php └── wikibot.php ├── pub_html └── ninupdates │ ├── 3ds_nzonehotspots.php │ ├── eshop │ ├── index.php │ └── verlist_parser.php │ ├── feed.php │ ├── get_reportinfo.php │ ├── reports.php │ ├── scanstatus.php │ ├── sendtweet.php │ ├── title_setdesc.php │ ├── titlelist.php │ └── updatedetails.php └── start_ninsoap.sh /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | *~ 3 | *.pyc 4 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellows8/ninupdates/HEAD/README -------------------------------------------------------------------------------- /checkurl_lastmodified.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellows8/ninupdates/HEAD/checkurl_lastmodified.sh -------------------------------------------------------------------------------- /ninupdates/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellows8/ninupdates/HEAD/ninupdates/api.php -------------------------------------------------------------------------------- /ninupdates/api_cli.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellows8/ninupdates/HEAD/ninupdates/api_cli.php -------------------------------------------------------------------------------- /ninupdates/aqua.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellows8/ninupdates/HEAD/ninupdates/aqua.py -------------------------------------------------------------------------------- /ninupdates/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellows8/ninupdates/HEAD/ninupdates/config.php -------------------------------------------------------------------------------- /ninupdates/db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellows8/ninupdates/HEAD/ninupdates/db.php -------------------------------------------------------------------------------- /ninupdates/deletereport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellows8/ninupdates/HEAD/ninupdates/deletereport.php -------------------------------------------------------------------------------- /ninupdates/difflogs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellows8/ninupdates/HEAD/ninupdates/difflogs.php -------------------------------------------------------------------------------- /ninupdates/get_officialchangelog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellows8/ninupdates/HEAD/ninupdates/get_officialchangelog.php -------------------------------------------------------------------------------- /ninupdates/get_officialchangelog_cli.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellows8/ninupdates/HEAD/ninupdates/get_officialchangelog_cli.php -------------------------------------------------------------------------------- /ninupdates/http_pagelogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellows8/ninupdates/HEAD/ninupdates/http_pagelogger.php -------------------------------------------------------------------------------- /ninupdates/http_pagelogger_cli.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellows8/ninupdates/HEAD/ninupdates/http_pagelogger_cli.php -------------------------------------------------------------------------------- /ninupdates/logs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellows8/ninupdates/HEAD/ninupdates/logs.php -------------------------------------------------------------------------------- /ninupdates/manage_consoles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellows8/ninupdates/HEAD/ninupdates/manage_consoles.php -------------------------------------------------------------------------------- /ninupdates/manage_report_updatever.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellows8/ninupdates/HEAD/ninupdates/manage_report_updatever.php -------------------------------------------------------------------------------- /ninupdates/manage_titledesc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellows8/ninupdates/HEAD/ninupdates/manage_titledesc.php -------------------------------------------------------------------------------- /ninupdates/merge_reports.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellows8/ninupdates/HEAD/ninupdates/merge_reports.php -------------------------------------------------------------------------------- /ninupdates/ninsoap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellows8/ninupdates/HEAD/ninupdates/ninsoap.php -------------------------------------------------------------------------------- /ninupdates/ninsoap_ircbot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellows8/ninupdates/HEAD/ninupdates/ninsoap_ircbot.php -------------------------------------------------------------------------------- /ninupdates/nzone/nzone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellows8/ninupdates/HEAD/ninupdates/nzone/nzone.php -------------------------------------------------------------------------------- /ninupdates/parsesoap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellows8/ninupdates/HEAD/ninupdates/parsesoap.php -------------------------------------------------------------------------------- /ninupdates/postproc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellows8/ninupdates/HEAD/ninupdates/postproc.php -------------------------------------------------------------------------------- /ninupdates/send_irc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellows8/ninupdates/HEAD/ninupdates/send_irc.php -------------------------------------------------------------------------------- /ninupdates/send_mastodon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellows8/ninupdates/HEAD/ninupdates/send_mastodon.py -------------------------------------------------------------------------------- /ninupdates/send_notif.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellows8/ninupdates/HEAD/ninupdates/send_notif.py -------------------------------------------------------------------------------- /ninupdates/setup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellows8/ninupdates/HEAD/ninupdates/setup.php -------------------------------------------------------------------------------- /ninupdates/tools/switch/switch_wikigen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellows8/ninupdates/HEAD/ninupdates/tools/switch/switch_wikigen.py -------------------------------------------------------------------------------- /ninupdates/tweet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellows8/ninupdates/HEAD/ninupdates/tweet.php -------------------------------------------------------------------------------- /ninupdates/versionlist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellows8/ninupdates/HEAD/ninupdates/versionlist.php -------------------------------------------------------------------------------- /ninupdates/webhook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellows8/ninupdates/HEAD/ninupdates/webhook.py -------------------------------------------------------------------------------- /ninupdates/weblogging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellows8/ninupdates/HEAD/ninupdates/weblogging.php -------------------------------------------------------------------------------- /ninupdates/wikibot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellows8/ninupdates/HEAD/ninupdates/wikibot.php -------------------------------------------------------------------------------- /pub_html/ninupdates/3ds_nzonehotspots.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellows8/ninupdates/HEAD/pub_html/ninupdates/3ds_nzonehotspots.php -------------------------------------------------------------------------------- /pub_html/ninupdates/eshop/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellows8/ninupdates/HEAD/pub_html/ninupdates/eshop/index.php -------------------------------------------------------------------------------- /pub_html/ninupdates/eshop/verlist_parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellows8/ninupdates/HEAD/pub_html/ninupdates/eshop/verlist_parser.php -------------------------------------------------------------------------------- /pub_html/ninupdates/feed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellows8/ninupdates/HEAD/pub_html/ninupdates/feed.php -------------------------------------------------------------------------------- /pub_html/ninupdates/get_reportinfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellows8/ninupdates/HEAD/pub_html/ninupdates/get_reportinfo.php -------------------------------------------------------------------------------- /pub_html/ninupdates/reports.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellows8/ninupdates/HEAD/pub_html/ninupdates/reports.php -------------------------------------------------------------------------------- /pub_html/ninupdates/scanstatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellows8/ninupdates/HEAD/pub_html/ninupdates/scanstatus.php -------------------------------------------------------------------------------- /pub_html/ninupdates/sendtweet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellows8/ninupdates/HEAD/pub_html/ninupdates/sendtweet.php -------------------------------------------------------------------------------- /pub_html/ninupdates/title_setdesc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellows8/ninupdates/HEAD/pub_html/ninupdates/title_setdesc.php -------------------------------------------------------------------------------- /pub_html/ninupdates/titlelist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellows8/ninupdates/HEAD/pub_html/ninupdates/titlelist.php -------------------------------------------------------------------------------- /pub_html/ninupdates/updatedetails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellows8/ninupdates/HEAD/pub_html/ninupdates/updatedetails.php -------------------------------------------------------------------------------- /start_ninsoap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellows8/ninupdates/HEAD/start_ninsoap.sh --------------------------------------------------------------------------------