├── .gitignore ├── LICENSE.txt ├── README.md ├── client ├── assets │ ├── css │ │ ├── custom.css │ │ ├── font-awesome.css │ │ ├── font-awesome.min.css │ │ └── style.css │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ └── fontawesome-webfont.woff │ ├── img │ │ ├── emoticons.png │ │ ├── favicon.ico │ │ ├── ico.png │ │ ├── loader.gif │ │ └── resize_handle.png │ ├── libs │ │ ├── ace │ │ │ ├── ace.js │ │ │ ├── ext-elastic_tabstops_lite.js │ │ │ ├── ext-emmet.js │ │ │ ├── ext-searchbox.js │ │ │ ├── ext-spellcheck.js │ │ │ ├── ext-static_highlight.js │ │ │ ├── ext-textarea.js │ │ │ ├── ext-whitespace.js │ │ │ ├── keybinding-emacs.js │ │ │ ├── keybinding-vim.js │ │ │ ├── mode-css.js │ │ │ ├── mode-html.js │ │ │ ├── mode-javascript.js │ │ │ ├── mode-json.js │ │ │ ├── theme-ambiance.js │ │ │ ├── theme-chaos.js │ │ │ ├── theme-chrome.js │ │ │ ├── theme-clouds.js │ │ │ ├── theme-clouds_midnight.js │ │ │ ├── theme-cobalt.js │ │ │ ├── theme-crimson_editor.js │ │ │ ├── theme-dawn.js │ │ │ ├── theme-dreamweaver.js │ │ │ ├── theme-eclipse.js │ │ │ ├── theme-github.js │ │ │ ├── theme-idle_fingers.js │ │ │ ├── theme-kr.js │ │ │ ├── theme-merbivore.js │ │ │ ├── theme-merbivore_soft.js │ │ │ ├── theme-mono_industrial.js │ │ │ ├── theme-monokai.js │ │ │ ├── theme-pastel_on_dark.js │ │ │ ├── theme-solarized_dark.js │ │ │ ├── theme-solarized_light.js │ │ │ ├── theme-terminal.js │ │ │ ├── theme-textmate.js │ │ │ ├── theme-tomorrow.js │ │ │ ├── theme-tomorrow_night.js │ │ │ ├── theme-tomorrow_night_blue.js │ │ │ ├── theme-tomorrow_night_bright.js │ │ │ ├── theme-tomorrow_night_eighties.js │ │ │ ├── theme-twilight.js │ │ │ ├── theme-vibrant_ink.js │ │ │ ├── theme-xcode.js │ │ │ ├── worker-css.js │ │ │ ├── worker-javascript.js │ │ │ └── worker-json.js │ │ ├── backbone.min.js │ │ ├── engine.io.js │ │ ├── engine.io.tools.js │ │ ├── jed.js │ │ ├── jquery-1.11.1.min.js │ │ ├── lodash.min.js │ │ ├── promise.min.js │ │ └── soundmanager2 │ │ │ ├── soundmanager2-jsmin.js │ │ │ ├── soundmanager2-nodebug-jsmin.js │ │ │ ├── soundmanager2-nodebug.js │ │ │ ├── soundmanager2.js │ │ │ ├── soundmanager2.swf │ │ │ ├── soundmanager2_debug.swf │ │ │ ├── soundmanager2_flash9.swf │ │ │ ├── soundmanager2_flash9_debug.swf │ │ │ └── soundmanager2_flash_xdomain.zip │ ├── plugins │ │ ├── emoticonlist.html │ │ ├── filepicker.html │ │ ├── plugin_example.html │ │ └── textstyle.html │ ├── sound │ │ └── highlight.mp3 │ ├── text_themes │ │ └── default.json │ └── themes │ │ ├── basic │ │ ├── background-light.png │ │ ├── style.css │ │ └── theme.json │ │ ├── cli │ │ ├── style.css │ │ └── theme.json │ │ ├── mini │ │ ├── style.css │ │ └── theme.json │ │ └── relaxed │ │ ├── background-light.png │ │ ├── style.css │ │ └── theme.json └── src │ ├── app.js │ ├── applets │ ├── chanlist.js │ ├── scripteditor.js │ ├── settings.js │ └── startup.js │ ├── helpers │ ├── desktopnotifications.js │ ├── formatdate.js │ ├── plugininterface.js │ └── utils.js │ ├── index.html.tmpl │ ├── misc │ └── clientuicommands.js │ ├── models │ ├── applet.js │ ├── application.js │ ├── channel.js │ ├── channelinfo.js │ ├── datastore.js │ ├── gateway.js │ ├── ignorelist.js │ ├── member.js │ ├── memberlist.js │ ├── network.js │ ├── networkpanellist.js │ ├── newconnection.js │ ├── panel.js │ ├── panellist.js │ ├── pluginmanager.js │ ├── query.js │ └── server.js │ ├── translations │ ├── bs.po │ ├── ca.po │ ├── cs.po │ ├── de-de.po │ ├── el.po │ ├── en-gb.po │ ├── es-419.po │ ├── es.po │ ├── fr.po │ ├── gl.po │ ├── he.po │ ├── it.po │ ├── ko-kr.po │ ├── mk.po │ ├── nl.po │ ├── no.po │ ├── pl.po │ ├── pt-br.po │ ├── ro.po │ ├── ru.po │ ├── sq.po │ ├── sr.po │ ├── template.po │ ├── tr.po │ ├── translations.json │ ├── uk.po │ ├── vi.po │ └── zh-tw.po │ └── views │ ├── applet.js │ ├── application.js │ ├── apptoolbar.js │ ├── autocomplete.js │ ├── channel.js │ ├── channelinfo.js │ ├── channeltools.js │ ├── controlbox.js │ ├── favicon.js │ ├── mediamessage.js │ ├── member.js │ ├── memberlist.js │ ├── menubox.js │ ├── networktabs.js │ ├── nickchangebox.js │ ├── notification.js │ ├── panel.js │ ├── resizehandler.js │ ├── rightbar.js │ ├── serverselect.js │ ├── statusmessage.js │ ├── tabs.js │ ├── topicbar.js │ └── userbox.js ├── config.example.js ├── kiwi ├── kiwi.bat ├── man └── kiwiirc.1 ├── package.json ├── server ├── .jshintrc ├── client.js ├── clientcommands.js ├── configuration.js ├── controlinterface.js ├── ee.js ├── helpers │ ├── build.js │ ├── configloader.js │ └── launcher.js ├── httphandler.js ├── identd.js ├── irc │ ├── channel.js │ ├── commands.js │ ├── commands │ │ ├── channel.js │ │ ├── messaging.js │ │ ├── misc.js │ │ ├── registration.js │ │ └── user.js │ ├── connection.js │ ├── eventbinder.js │ ├── server.js │ ├── state.js │ └── user.js ├── kiwi.js ├── modules.js ├── plugininterface.js ├── proxy.js ├── rehash.js ├── settingsgenerator.js ├── stats.js ├── weblistener.js └── websocketrpc.js ├── server_modules ├── client_file_watcher.js ├── control.js ├── dnsbl.js ├── example.js ├── force_https.js ├── proxychecker.js ├── stats.js └── web_agent_debugger.js └── translations.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/README.md -------------------------------------------------------------------------------- /client/assets/css/custom.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/assets/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/css/font-awesome.css -------------------------------------------------------------------------------- /client/assets/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/css/font-awesome.min.css -------------------------------------------------------------------------------- /client/assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/css/style.css -------------------------------------------------------------------------------- /client/assets/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /client/assets/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /client/assets/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /client/assets/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /client/assets/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /client/assets/img/emoticons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/img/emoticons.png -------------------------------------------------------------------------------- /client/assets/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/img/favicon.ico -------------------------------------------------------------------------------- /client/assets/img/ico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/img/ico.png -------------------------------------------------------------------------------- /client/assets/img/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/img/loader.gif -------------------------------------------------------------------------------- /client/assets/img/resize_handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/img/resize_handle.png -------------------------------------------------------------------------------- /client/assets/libs/ace/ace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/libs/ace/ace.js -------------------------------------------------------------------------------- /client/assets/libs/ace/ext-elastic_tabstops_lite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/libs/ace/ext-elastic_tabstops_lite.js -------------------------------------------------------------------------------- /client/assets/libs/ace/ext-emmet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/libs/ace/ext-emmet.js -------------------------------------------------------------------------------- /client/assets/libs/ace/ext-searchbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/libs/ace/ext-searchbox.js -------------------------------------------------------------------------------- /client/assets/libs/ace/ext-spellcheck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/libs/ace/ext-spellcheck.js -------------------------------------------------------------------------------- /client/assets/libs/ace/ext-static_highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/libs/ace/ext-static_highlight.js -------------------------------------------------------------------------------- /client/assets/libs/ace/ext-textarea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/libs/ace/ext-textarea.js -------------------------------------------------------------------------------- /client/assets/libs/ace/ext-whitespace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/libs/ace/ext-whitespace.js -------------------------------------------------------------------------------- /client/assets/libs/ace/keybinding-emacs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/libs/ace/keybinding-emacs.js -------------------------------------------------------------------------------- /client/assets/libs/ace/keybinding-vim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/libs/ace/keybinding-vim.js -------------------------------------------------------------------------------- /client/assets/libs/ace/mode-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/libs/ace/mode-css.js -------------------------------------------------------------------------------- /client/assets/libs/ace/mode-html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/libs/ace/mode-html.js -------------------------------------------------------------------------------- /client/assets/libs/ace/mode-javascript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/libs/ace/mode-javascript.js -------------------------------------------------------------------------------- /client/assets/libs/ace/mode-json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/libs/ace/mode-json.js -------------------------------------------------------------------------------- /client/assets/libs/ace/theme-ambiance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/libs/ace/theme-ambiance.js -------------------------------------------------------------------------------- /client/assets/libs/ace/theme-chaos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/libs/ace/theme-chaos.js -------------------------------------------------------------------------------- /client/assets/libs/ace/theme-chrome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/libs/ace/theme-chrome.js -------------------------------------------------------------------------------- /client/assets/libs/ace/theme-clouds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/libs/ace/theme-clouds.js -------------------------------------------------------------------------------- /client/assets/libs/ace/theme-clouds_midnight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/libs/ace/theme-clouds_midnight.js -------------------------------------------------------------------------------- /client/assets/libs/ace/theme-cobalt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/libs/ace/theme-cobalt.js -------------------------------------------------------------------------------- /client/assets/libs/ace/theme-crimson_editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/libs/ace/theme-crimson_editor.js -------------------------------------------------------------------------------- /client/assets/libs/ace/theme-dawn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/libs/ace/theme-dawn.js -------------------------------------------------------------------------------- /client/assets/libs/ace/theme-dreamweaver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/libs/ace/theme-dreamweaver.js -------------------------------------------------------------------------------- /client/assets/libs/ace/theme-eclipse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/libs/ace/theme-eclipse.js -------------------------------------------------------------------------------- /client/assets/libs/ace/theme-github.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/libs/ace/theme-github.js -------------------------------------------------------------------------------- /client/assets/libs/ace/theme-idle_fingers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/libs/ace/theme-idle_fingers.js -------------------------------------------------------------------------------- /client/assets/libs/ace/theme-kr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/libs/ace/theme-kr.js -------------------------------------------------------------------------------- /client/assets/libs/ace/theme-merbivore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/libs/ace/theme-merbivore.js -------------------------------------------------------------------------------- /client/assets/libs/ace/theme-merbivore_soft.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/libs/ace/theme-merbivore_soft.js -------------------------------------------------------------------------------- /client/assets/libs/ace/theme-mono_industrial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/libs/ace/theme-mono_industrial.js -------------------------------------------------------------------------------- /client/assets/libs/ace/theme-monokai.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/libs/ace/theme-monokai.js -------------------------------------------------------------------------------- /client/assets/libs/ace/theme-pastel_on_dark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/libs/ace/theme-pastel_on_dark.js -------------------------------------------------------------------------------- /client/assets/libs/ace/theme-solarized_dark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/libs/ace/theme-solarized_dark.js -------------------------------------------------------------------------------- /client/assets/libs/ace/theme-solarized_light.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/libs/ace/theme-solarized_light.js -------------------------------------------------------------------------------- /client/assets/libs/ace/theme-terminal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/libs/ace/theme-terminal.js -------------------------------------------------------------------------------- /client/assets/libs/ace/theme-textmate.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/assets/libs/ace/theme-tomorrow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/libs/ace/theme-tomorrow.js -------------------------------------------------------------------------------- /client/assets/libs/ace/theme-tomorrow_night.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/libs/ace/theme-tomorrow_night.js -------------------------------------------------------------------------------- /client/assets/libs/ace/theme-tomorrow_night_blue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/libs/ace/theme-tomorrow_night_blue.js -------------------------------------------------------------------------------- /client/assets/libs/ace/theme-tomorrow_night_bright.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/libs/ace/theme-tomorrow_night_bright.js -------------------------------------------------------------------------------- /client/assets/libs/ace/theme-tomorrow_night_eighties.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/libs/ace/theme-tomorrow_night_eighties.js -------------------------------------------------------------------------------- /client/assets/libs/ace/theme-twilight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/libs/ace/theme-twilight.js -------------------------------------------------------------------------------- /client/assets/libs/ace/theme-vibrant_ink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/libs/ace/theme-vibrant_ink.js -------------------------------------------------------------------------------- /client/assets/libs/ace/theme-xcode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/libs/ace/theme-xcode.js -------------------------------------------------------------------------------- /client/assets/libs/ace/worker-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/libs/ace/worker-css.js -------------------------------------------------------------------------------- /client/assets/libs/ace/worker-javascript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/libs/ace/worker-javascript.js -------------------------------------------------------------------------------- /client/assets/libs/ace/worker-json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/libs/ace/worker-json.js -------------------------------------------------------------------------------- /client/assets/libs/backbone.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/libs/backbone.min.js -------------------------------------------------------------------------------- /client/assets/libs/engine.io.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/libs/engine.io.js -------------------------------------------------------------------------------- /client/assets/libs/engine.io.tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/libs/engine.io.tools.js -------------------------------------------------------------------------------- /client/assets/libs/jed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/libs/jed.js -------------------------------------------------------------------------------- /client/assets/libs/jquery-1.11.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/libs/jquery-1.11.1.min.js -------------------------------------------------------------------------------- /client/assets/libs/lodash.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/libs/lodash.min.js -------------------------------------------------------------------------------- /client/assets/libs/promise.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/libs/promise.min.js -------------------------------------------------------------------------------- /client/assets/libs/soundmanager2/soundmanager2-jsmin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/libs/soundmanager2/soundmanager2-jsmin.js -------------------------------------------------------------------------------- /client/assets/libs/soundmanager2/soundmanager2-nodebug-jsmin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/libs/soundmanager2/soundmanager2-nodebug-jsmin.js -------------------------------------------------------------------------------- /client/assets/libs/soundmanager2/soundmanager2-nodebug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/libs/soundmanager2/soundmanager2-nodebug.js -------------------------------------------------------------------------------- /client/assets/libs/soundmanager2/soundmanager2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/libs/soundmanager2/soundmanager2.js -------------------------------------------------------------------------------- /client/assets/libs/soundmanager2/soundmanager2.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/libs/soundmanager2/soundmanager2.swf -------------------------------------------------------------------------------- /client/assets/libs/soundmanager2/soundmanager2_debug.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/libs/soundmanager2/soundmanager2_debug.swf -------------------------------------------------------------------------------- /client/assets/libs/soundmanager2/soundmanager2_flash9.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/libs/soundmanager2/soundmanager2_flash9.swf -------------------------------------------------------------------------------- /client/assets/libs/soundmanager2/soundmanager2_flash9_debug.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/libs/soundmanager2/soundmanager2_flash9_debug.swf -------------------------------------------------------------------------------- /client/assets/libs/soundmanager2/soundmanager2_flash_xdomain.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/libs/soundmanager2/soundmanager2_flash_xdomain.zip -------------------------------------------------------------------------------- /client/assets/plugins/emoticonlist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/plugins/emoticonlist.html -------------------------------------------------------------------------------- /client/assets/plugins/filepicker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/plugins/filepicker.html -------------------------------------------------------------------------------- /client/assets/plugins/plugin_example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/plugins/plugin_example.html -------------------------------------------------------------------------------- /client/assets/plugins/textstyle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/plugins/textstyle.html -------------------------------------------------------------------------------- /client/assets/sound/highlight.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/sound/highlight.mp3 -------------------------------------------------------------------------------- /client/assets/text_themes/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/text_themes/default.json -------------------------------------------------------------------------------- /client/assets/themes/basic/background-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/themes/basic/background-light.png -------------------------------------------------------------------------------- /client/assets/themes/basic/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/themes/basic/style.css -------------------------------------------------------------------------------- /client/assets/themes/basic/theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/themes/basic/theme.json -------------------------------------------------------------------------------- /client/assets/themes/cli/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/themes/cli/style.css -------------------------------------------------------------------------------- /client/assets/themes/cli/theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/themes/cli/theme.json -------------------------------------------------------------------------------- /client/assets/themes/mini/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/themes/mini/style.css -------------------------------------------------------------------------------- /client/assets/themes/mini/theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/themes/mini/theme.json -------------------------------------------------------------------------------- /client/assets/themes/relaxed/background-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/themes/relaxed/background-light.png -------------------------------------------------------------------------------- /client/assets/themes/relaxed/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/themes/relaxed/style.css -------------------------------------------------------------------------------- /client/assets/themes/relaxed/theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/assets/themes/relaxed/theme.json -------------------------------------------------------------------------------- /client/src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/src/app.js -------------------------------------------------------------------------------- /client/src/applets/chanlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/src/applets/chanlist.js -------------------------------------------------------------------------------- /client/src/applets/scripteditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/src/applets/scripteditor.js -------------------------------------------------------------------------------- /client/src/applets/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/src/applets/settings.js -------------------------------------------------------------------------------- /client/src/applets/startup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/src/applets/startup.js -------------------------------------------------------------------------------- /client/src/helpers/desktopnotifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/src/helpers/desktopnotifications.js -------------------------------------------------------------------------------- /client/src/helpers/formatdate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/src/helpers/formatdate.js -------------------------------------------------------------------------------- /client/src/helpers/plugininterface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/src/helpers/plugininterface.js -------------------------------------------------------------------------------- /client/src/helpers/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/src/helpers/utils.js -------------------------------------------------------------------------------- /client/src/index.html.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/src/index.html.tmpl -------------------------------------------------------------------------------- /client/src/misc/clientuicommands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/src/misc/clientuicommands.js -------------------------------------------------------------------------------- /client/src/models/applet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/src/models/applet.js -------------------------------------------------------------------------------- /client/src/models/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/src/models/application.js -------------------------------------------------------------------------------- /client/src/models/channel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/src/models/channel.js -------------------------------------------------------------------------------- /client/src/models/channelinfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/src/models/channelinfo.js -------------------------------------------------------------------------------- /client/src/models/datastore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/src/models/datastore.js -------------------------------------------------------------------------------- /client/src/models/gateway.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/src/models/gateway.js -------------------------------------------------------------------------------- /client/src/models/ignorelist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/src/models/ignorelist.js -------------------------------------------------------------------------------- /client/src/models/member.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/src/models/member.js -------------------------------------------------------------------------------- /client/src/models/memberlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/src/models/memberlist.js -------------------------------------------------------------------------------- /client/src/models/network.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/src/models/network.js -------------------------------------------------------------------------------- /client/src/models/networkpanellist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/src/models/networkpanellist.js -------------------------------------------------------------------------------- /client/src/models/newconnection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/src/models/newconnection.js -------------------------------------------------------------------------------- /client/src/models/panel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/src/models/panel.js -------------------------------------------------------------------------------- /client/src/models/panellist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/src/models/panellist.js -------------------------------------------------------------------------------- /client/src/models/pluginmanager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/src/models/pluginmanager.js -------------------------------------------------------------------------------- /client/src/models/query.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/src/models/query.js -------------------------------------------------------------------------------- /client/src/models/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/src/models/server.js -------------------------------------------------------------------------------- /client/src/translations/bs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/src/translations/bs.po -------------------------------------------------------------------------------- /client/src/translations/ca.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/src/translations/ca.po -------------------------------------------------------------------------------- /client/src/translations/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/src/translations/cs.po -------------------------------------------------------------------------------- /client/src/translations/de-de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/src/translations/de-de.po -------------------------------------------------------------------------------- /client/src/translations/el.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/src/translations/el.po -------------------------------------------------------------------------------- /client/src/translations/en-gb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/src/translations/en-gb.po -------------------------------------------------------------------------------- /client/src/translations/es-419.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/src/translations/es-419.po -------------------------------------------------------------------------------- /client/src/translations/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/src/translations/es.po -------------------------------------------------------------------------------- /client/src/translations/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/src/translations/fr.po -------------------------------------------------------------------------------- /client/src/translations/gl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/src/translations/gl.po -------------------------------------------------------------------------------- /client/src/translations/he.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/src/translations/he.po -------------------------------------------------------------------------------- /client/src/translations/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/src/translations/it.po -------------------------------------------------------------------------------- /client/src/translations/ko-kr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/src/translations/ko-kr.po -------------------------------------------------------------------------------- /client/src/translations/mk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/src/translations/mk.po -------------------------------------------------------------------------------- /client/src/translations/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/src/translations/nl.po -------------------------------------------------------------------------------- /client/src/translations/no.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/src/translations/no.po -------------------------------------------------------------------------------- /client/src/translations/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/src/translations/pl.po -------------------------------------------------------------------------------- /client/src/translations/pt-br.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/src/translations/pt-br.po -------------------------------------------------------------------------------- /client/src/translations/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/src/translations/ro.po -------------------------------------------------------------------------------- /client/src/translations/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/src/translations/ru.po -------------------------------------------------------------------------------- /client/src/translations/sq.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/src/translations/sq.po -------------------------------------------------------------------------------- /client/src/translations/sr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/src/translations/sr.po -------------------------------------------------------------------------------- /client/src/translations/template.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/src/translations/template.po -------------------------------------------------------------------------------- /client/src/translations/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/src/translations/tr.po -------------------------------------------------------------------------------- /client/src/translations/translations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/src/translations/translations.json -------------------------------------------------------------------------------- /client/src/translations/uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/src/translations/uk.po -------------------------------------------------------------------------------- /client/src/translations/vi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/src/translations/vi.po -------------------------------------------------------------------------------- /client/src/translations/zh-tw.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/src/translations/zh-tw.po -------------------------------------------------------------------------------- /client/src/views/applet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/src/views/applet.js -------------------------------------------------------------------------------- /client/src/views/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/src/views/application.js -------------------------------------------------------------------------------- /client/src/views/apptoolbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/src/views/apptoolbar.js -------------------------------------------------------------------------------- /client/src/views/autocomplete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/src/views/autocomplete.js -------------------------------------------------------------------------------- /client/src/views/channel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/src/views/channel.js -------------------------------------------------------------------------------- /client/src/views/channelinfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/src/views/channelinfo.js -------------------------------------------------------------------------------- /client/src/views/channeltools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/src/views/channeltools.js -------------------------------------------------------------------------------- /client/src/views/controlbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/src/views/controlbox.js -------------------------------------------------------------------------------- /client/src/views/favicon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/src/views/favicon.js -------------------------------------------------------------------------------- /client/src/views/mediamessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/src/views/mediamessage.js -------------------------------------------------------------------------------- /client/src/views/member.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/src/views/member.js -------------------------------------------------------------------------------- /client/src/views/memberlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/src/views/memberlist.js -------------------------------------------------------------------------------- /client/src/views/menubox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/src/views/menubox.js -------------------------------------------------------------------------------- /client/src/views/networktabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/src/views/networktabs.js -------------------------------------------------------------------------------- /client/src/views/nickchangebox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/src/views/nickchangebox.js -------------------------------------------------------------------------------- /client/src/views/notification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/src/views/notification.js -------------------------------------------------------------------------------- /client/src/views/panel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/src/views/panel.js -------------------------------------------------------------------------------- /client/src/views/resizehandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/src/views/resizehandler.js -------------------------------------------------------------------------------- /client/src/views/rightbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/src/views/rightbar.js -------------------------------------------------------------------------------- /client/src/views/serverselect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/src/views/serverselect.js -------------------------------------------------------------------------------- /client/src/views/statusmessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/src/views/statusmessage.js -------------------------------------------------------------------------------- /client/src/views/tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/src/views/tabs.js -------------------------------------------------------------------------------- /client/src/views/topicbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/src/views/topicbar.js -------------------------------------------------------------------------------- /client/src/views/userbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/client/src/views/userbox.js -------------------------------------------------------------------------------- /config.example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/config.example.js -------------------------------------------------------------------------------- /kiwi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/kiwi -------------------------------------------------------------------------------- /kiwi.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | node "%~dp0\server\helpers\launcher.js" %* -------------------------------------------------------------------------------- /man/kiwiirc.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/man/kiwiirc.1 -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/package.json -------------------------------------------------------------------------------- /server/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/server/.jshintrc -------------------------------------------------------------------------------- /server/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/server/client.js -------------------------------------------------------------------------------- /server/clientcommands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/server/clientcommands.js -------------------------------------------------------------------------------- /server/configuration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/server/configuration.js -------------------------------------------------------------------------------- /server/controlinterface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/server/controlinterface.js -------------------------------------------------------------------------------- /server/ee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/server/ee.js -------------------------------------------------------------------------------- /server/helpers/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/server/helpers/build.js -------------------------------------------------------------------------------- /server/helpers/configloader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/server/helpers/configloader.js -------------------------------------------------------------------------------- /server/helpers/launcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/server/helpers/launcher.js -------------------------------------------------------------------------------- /server/httphandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/server/httphandler.js -------------------------------------------------------------------------------- /server/identd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/server/identd.js -------------------------------------------------------------------------------- /server/irc/channel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/server/irc/channel.js -------------------------------------------------------------------------------- /server/irc/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/server/irc/commands.js -------------------------------------------------------------------------------- /server/irc/commands/channel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/server/irc/commands/channel.js -------------------------------------------------------------------------------- /server/irc/commands/messaging.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/server/irc/commands/messaging.js -------------------------------------------------------------------------------- /server/irc/commands/misc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/server/irc/commands/misc.js -------------------------------------------------------------------------------- /server/irc/commands/registration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/server/irc/commands/registration.js -------------------------------------------------------------------------------- /server/irc/commands/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/server/irc/commands/user.js -------------------------------------------------------------------------------- /server/irc/connection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/server/irc/connection.js -------------------------------------------------------------------------------- /server/irc/eventbinder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/server/irc/eventbinder.js -------------------------------------------------------------------------------- /server/irc/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/server/irc/server.js -------------------------------------------------------------------------------- /server/irc/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/server/irc/state.js -------------------------------------------------------------------------------- /server/irc/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/server/irc/user.js -------------------------------------------------------------------------------- /server/kiwi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/server/kiwi.js -------------------------------------------------------------------------------- /server/modules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/server/modules.js -------------------------------------------------------------------------------- /server/plugininterface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/server/plugininterface.js -------------------------------------------------------------------------------- /server/proxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/server/proxy.js -------------------------------------------------------------------------------- /server/rehash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/server/rehash.js -------------------------------------------------------------------------------- /server/settingsgenerator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/server/settingsgenerator.js -------------------------------------------------------------------------------- /server/stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/server/stats.js -------------------------------------------------------------------------------- /server/weblistener.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/server/weblistener.js -------------------------------------------------------------------------------- /server/websocketrpc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/server/websocketrpc.js -------------------------------------------------------------------------------- /server_modules/client_file_watcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/server_modules/client_file_watcher.js -------------------------------------------------------------------------------- /server_modules/control.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/server_modules/control.js -------------------------------------------------------------------------------- /server_modules/dnsbl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/server_modules/dnsbl.js -------------------------------------------------------------------------------- /server_modules/example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/server_modules/example.js -------------------------------------------------------------------------------- /server_modules/force_https.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/server_modules/force_https.js -------------------------------------------------------------------------------- /server_modules/proxychecker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/server_modules/proxychecker.js -------------------------------------------------------------------------------- /server_modules/stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/server_modules/stats.js -------------------------------------------------------------------------------- /server_modules/web_agent_debugger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/server_modules/web_agent_debugger.js -------------------------------------------------------------------------------- /translations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prawnsalad/KiwiIRC/HEAD/translations.md --------------------------------------------------------------------------------