├── .gitignore ├── .gitmodules ├── .sbclrc ├── LICENSE ├── README.md ├── contrib ├── cl-clientlib │ ├── potato-client.asd │ └── src │ │ ├── package.lisp │ │ └── potato-client.lisp ├── clim-test │ ├── clim-test.asd │ └── src │ │ ├── main.lisp │ │ ├── misc.lisp │ │ └── package.lisp ├── potato-client-clim │ ├── notes.org │ ├── potato-client-clim.asd │ └── src │ │ ├── flexichain-output-history.lisp │ │ ├── image-cache.lisp │ │ ├── largelist.lisp │ │ ├── main.lisp │ │ ├── messages.lisp │ │ ├── misc.lisp │ │ ├── notifications.lisp │ │ ├── package.lisp │ │ └── user.lisp └── rqjava │ ├── .gitignore │ ├── .idea │ ├── compiler.xml │ ├── dictionaries │ │ └── emartenson.xml │ ├── encodings.xml │ ├── libraries │ │ ├── KotlinJavaRuntime.xml │ │ ├── com_google_code_gson_gson_2_6_2.xml │ │ └── com_rabbitmq_amqp_client_3_4_1.xml │ ├── misc.xml │ ├── modules.xml │ ├── runConfigurations │ │ └── com_dhsdevelopments_rqjava_Main.xml │ └── vcs.xml │ ├── rqjava.iml │ └── src │ └── com │ └── dhsdevelopments │ └── rqjava │ ├── ChannelSubscription.kt │ ├── CmdRegistration.kt │ ├── Main.kt │ ├── PotatoConnection.kt │ ├── model.kt │ ├── sexps.kt │ └── utils.kt ├── deploy ├── .gitignore ├── README.md ├── ansible.cfg ├── deploy-docker.yml ├── group_vars │ └── production.yml ├── inventory │ └── mxproduction.ini └── roles │ ├── base-ubuntu │ ├── defaults │ │ └── main.yml │ ├── files │ │ └── environment │ └── tasks │ │ └── main.yml │ ├── docker │ └── tasks │ │ └── main.yml │ └── haproxy │ ├── handlers │ └── main.yml │ ├── tasks │ └── main.yml │ └── templates │ └── haproxy.cfg.j2 ├── docs └── INSTALL.md ├── potato-common.asd ├── potato-index.asd ├── potato-sso.asd ├── potato-tests.asd ├── potato.asd ├── potato.cfg.template ├── public └── .gitkeep ├── server-config2.lisp ├── setup-dev.sh ├── src ├── common │ ├── application.lisp │ ├── chars.lisp │ ├── common-db.lisp │ ├── common.lisp │ ├── file.lisp │ ├── format-message.lisp │ ├── fset-map.lisp │ ├── log.lisp │ ├── memcached.lisp │ ├── msgl-queue.lisp │ ├── package.lisp │ ├── rabbitmq.lisp │ ├── s3-util.lisp │ ├── sorted-list.lisp │ └── timer.lisp ├── index │ ├── package.lisp │ └── potato-index.lisp ├── potato │ ├── admin.lisp │ ├── api-android.lisp │ ├── api.lisp │ ├── build-id.lisp │ ├── channel-nickname.lisp │ ├── channel-web.lisp │ ├── channel.lisp │ ├── chat-server.lisp │ ├── cmd-giphy.lisp │ ├── commands.lisp │ ├── content-processor.lisp │ ├── db-fixes.lisp │ ├── db.lisp │ ├── domain-nickname.lisp │ ├── domain-web.lisp │ ├── domain-welcome-web.lisp │ ├── domain.lisp │ ├── email.lisp │ ├── gcm.lisp │ ├── github-processor.lisp │ ├── group.lisp │ ├── image-convert.lisp │ ├── login.lisp │ ├── message-update.lisp │ ├── message.lisp │ ├── metaclasses.lisp │ ├── misc-core.lisp │ ├── misc.lisp │ ├── notification-keywords.lisp │ ├── notifications.lisp │ ├── oauth-north.lisp │ ├── package.lisp │ ├── ping-sender.lisp │ ├── potato-main.lisp │ ├── private-web.lisp │ ├── private.lisp │ ├── rabbitmq-channels.lisp │ ├── rabbitmq-notifications.lisp │ ├── register.lisp │ ├── register2.lisp │ ├── search.lisp │ ├── serialiser.lisp │ ├── session-notification.lisp │ ├── session.lisp │ ├── settings.lisp │ ├── slashcommand.lisp │ ├── spotify-processor.lisp │ ├── typing.lisp │ ├── upload-plain.lisp │ ├── upload.lisp │ ├── user-display-config.lisp │ ├── user-image.lisp │ ├── user-notification-web.lisp │ ├── user-notification.lisp │ ├── user-state.lisp │ ├── user.lisp │ ├── userlist-web.lisp │ ├── usocket.lisp │ ├── views.lisp │ ├── web.lisp │ ├── wikipedia-processor.lisp │ ├── workflow.lisp │ ├── ws-server.lisp │ ├── xkcd-processor.lisp │ └── youtube-processor.lisp ├── sso │ ├── package.lisp │ ├── regblock.lisp │ └── sso.lisp ├── state-server │ ├── id-gen.lisp │ ├── package.lisp │ └── state-server.lisp ├── template │ ├── activation_email_sent.tmpl │ ├── activation_helper.tmpl │ ├── admin.tmpl │ ├── channel.tmpl │ ├── channels.tmpl │ ├── common_meta.tmpl │ ├── common_script.tmpl │ ├── domain-create.tmpl │ ├── domain-invite.tmpl │ ├── domain-main.tmpl │ ├── domain_list.tmpl │ ├── downloads.tmpl │ ├── forgot-password.tmpl │ ├── giphy-data.tmpl │ ├── github-data.tmpl │ ├── landing.tmpl │ ├── login.tmpl │ ├── main-loggedin.tmpl │ ├── main.tmpl │ ├── mathjax.tmpl │ ├── menu.tmpl │ ├── new_messages_email.tmpl │ ├── oauth-authorise.tmpl │ ├── potato_footer.tmpl │ ├── potato_header.tmpl │ ├── private_message.tmpl │ ├── private_test.tmpl │ ├── redirect.tmpl │ ├── register.tmpl │ ├── register2.tmpl │ ├── register2_loginkey.tmpl │ ├── settings.tmpl │ ├── update-password.tmpl │ ├── user_activated_notification.tmpl │ ├── user_not_activated.tmpl │ ├── wikipedia-data.tmpl │ ├── xkcd-data.tmpl │ └── youtube-data.tmpl └── tests │ ├── channel-tests.lisp │ ├── common-string-tests.lisp │ ├── db-tests.lisp │ ├── domain-tests.lisp │ ├── message-tests.lisp │ ├── msgl-tests.lisp │ ├── notifications-tests.lisp │ ├── package.lisp │ ├── potato-tests.lisp │ ├── private-tests.lisp │ ├── state-server-tests.lisp │ ├── timer-tests.lisp │ ├── user-tests.lisp │ └── workflow-tests.lisp ├── state-server.asd ├── tools ├── build_binary.sh ├── build_binary_sso.sh └── update_submodules └── web-app ├── .gitignore ├── README.md ├── admin └── cljs │ └── potato │ └── admin │ ├── channels.cljs │ ├── core.cljs │ └── groupedit.cljs ├── env ├── admin-dev │ └── cljs │ │ └── potato │ │ └── admin.cljs ├── admin-prod │ └── cljs │ │ └── potato │ │ └── admin.cljs ├── dev │ ├── cljs │ │ └── potato │ │ │ └── main.cljs │ └── repl.clj ├── prod │ └── cljs │ │ └── potato │ │ └── main.cljs └── test │ └── cljs │ └── potato │ ├── core-test.cljs │ └── main.cljs ├── make-css.sh ├── make-fonts.sh ├── make-html.sh ├── make-img.sh ├── make-vendor.sh ├── make.sh ├── project.clj └── src ├── cljs ├── externs-input.js └── potato │ ├── core.cljs │ ├── emoji.cljs │ ├── eventsource2.cljs │ ├── fineuploader.cljs │ ├── keyboard.cljs │ ├── levenshtein.cljs │ ├── mathjax.cljs │ ├── preferences.cljs │ ├── search.cljs │ ├── state.cljs │ └── urls.cljs ├── css ├── build.sh ├── channel.scss ├── channel │ ├── emoji.scss │ ├── entry.scss │ ├── header.scss │ ├── history.scss │ ├── input.scss │ ├── left-nav.scss │ └── toolbar.scss ├── downloads.scss ├── dropit.css ├── include │ ├── animations.scss │ ├── atwho.scss │ ├── font-awe.scss │ ├── font-ssp.scss │ ├── font-symb.scss │ ├── fonts.scss │ ├── footer.scss │ ├── header.scss │ ├── mobile.scss │ ├── normalize.css │ ├── noscript.scss │ └── potato.scss ├── landing.scss ├── login.scss ├── main.scss ├── themes │ └── colours-2016.scss └── user │ └── preferences.scss ├── html ├── mathjax.html └── test.html ├── images ├── 8bcLQqF.png ├── apple_sprite.png ├── apple_sprite@2x.png ├── emojis.png ├── landing-full.png ├── potato.png ├── potatochips.png ├── potatochips2.png └── users │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ └── 7.png └── vendor ├── fine-uploader.min.js └── s3.fineuploader.min.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/.gitmodules -------------------------------------------------------------------------------- /.sbclrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/.sbclrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/README.md -------------------------------------------------------------------------------- /contrib/cl-clientlib/potato-client.asd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/contrib/cl-clientlib/potato-client.asd -------------------------------------------------------------------------------- /contrib/cl-clientlib/src/package.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/contrib/cl-clientlib/src/package.lisp -------------------------------------------------------------------------------- /contrib/cl-clientlib/src/potato-client.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/contrib/cl-clientlib/src/potato-client.lisp -------------------------------------------------------------------------------- /contrib/clim-test/clim-test.asd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/contrib/clim-test/clim-test.asd -------------------------------------------------------------------------------- /contrib/clim-test/src/main.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/contrib/clim-test/src/main.lisp -------------------------------------------------------------------------------- /contrib/clim-test/src/misc.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/contrib/clim-test/src/misc.lisp -------------------------------------------------------------------------------- /contrib/clim-test/src/package.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/contrib/clim-test/src/package.lisp -------------------------------------------------------------------------------- /contrib/potato-client-clim/notes.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/contrib/potato-client-clim/notes.org -------------------------------------------------------------------------------- /contrib/potato-client-clim/potato-client-clim.asd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/contrib/potato-client-clim/potato-client-clim.asd -------------------------------------------------------------------------------- /contrib/potato-client-clim/src/flexichain-output-history.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/contrib/potato-client-clim/src/flexichain-output-history.lisp -------------------------------------------------------------------------------- /contrib/potato-client-clim/src/image-cache.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/contrib/potato-client-clim/src/image-cache.lisp -------------------------------------------------------------------------------- /contrib/potato-client-clim/src/largelist.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/contrib/potato-client-clim/src/largelist.lisp -------------------------------------------------------------------------------- /contrib/potato-client-clim/src/main.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/contrib/potato-client-clim/src/main.lisp -------------------------------------------------------------------------------- /contrib/potato-client-clim/src/messages.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/contrib/potato-client-clim/src/messages.lisp -------------------------------------------------------------------------------- /contrib/potato-client-clim/src/misc.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/contrib/potato-client-clim/src/misc.lisp -------------------------------------------------------------------------------- /contrib/potato-client-clim/src/notifications.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/contrib/potato-client-clim/src/notifications.lisp -------------------------------------------------------------------------------- /contrib/potato-client-clim/src/package.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/contrib/potato-client-clim/src/package.lisp -------------------------------------------------------------------------------- /contrib/potato-client-clim/src/user.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/contrib/potato-client-clim/src/user.lisp -------------------------------------------------------------------------------- /contrib/rqjava/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/workspace.xml 2 | lib 3 | out 4 | -------------------------------------------------------------------------------- /contrib/rqjava/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/contrib/rqjava/.idea/compiler.xml -------------------------------------------------------------------------------- /contrib/rqjava/.idea/dictionaries/emartenson.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/contrib/rqjava/.idea/dictionaries/emartenson.xml -------------------------------------------------------------------------------- /contrib/rqjava/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/contrib/rqjava/.idea/encodings.xml -------------------------------------------------------------------------------- /contrib/rqjava/.idea/libraries/KotlinJavaRuntime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/contrib/rqjava/.idea/libraries/KotlinJavaRuntime.xml -------------------------------------------------------------------------------- /contrib/rqjava/.idea/libraries/com_google_code_gson_gson_2_6_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/contrib/rqjava/.idea/libraries/com_google_code_gson_gson_2_6_2.xml -------------------------------------------------------------------------------- /contrib/rqjava/.idea/libraries/com_rabbitmq_amqp_client_3_4_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/contrib/rqjava/.idea/libraries/com_rabbitmq_amqp_client_3_4_1.xml -------------------------------------------------------------------------------- /contrib/rqjava/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/contrib/rqjava/.idea/misc.xml -------------------------------------------------------------------------------- /contrib/rqjava/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/contrib/rqjava/.idea/modules.xml -------------------------------------------------------------------------------- /contrib/rqjava/.idea/runConfigurations/com_dhsdevelopments_rqjava_Main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/contrib/rqjava/.idea/runConfigurations/com_dhsdevelopments_rqjava_Main.xml -------------------------------------------------------------------------------- /contrib/rqjava/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/contrib/rqjava/.idea/vcs.xml -------------------------------------------------------------------------------- /contrib/rqjava/rqjava.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/contrib/rqjava/rqjava.iml -------------------------------------------------------------------------------- /contrib/rqjava/src/com/dhsdevelopments/rqjava/ChannelSubscription.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/contrib/rqjava/src/com/dhsdevelopments/rqjava/ChannelSubscription.kt -------------------------------------------------------------------------------- /contrib/rqjava/src/com/dhsdevelopments/rqjava/CmdRegistration.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/contrib/rqjava/src/com/dhsdevelopments/rqjava/CmdRegistration.kt -------------------------------------------------------------------------------- /contrib/rqjava/src/com/dhsdevelopments/rqjava/Main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/contrib/rqjava/src/com/dhsdevelopments/rqjava/Main.kt -------------------------------------------------------------------------------- /contrib/rqjava/src/com/dhsdevelopments/rqjava/PotatoConnection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/contrib/rqjava/src/com/dhsdevelopments/rqjava/PotatoConnection.kt -------------------------------------------------------------------------------- /contrib/rqjava/src/com/dhsdevelopments/rqjava/model.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/contrib/rqjava/src/com/dhsdevelopments/rqjava/model.kt -------------------------------------------------------------------------------- /contrib/rqjava/src/com/dhsdevelopments/rqjava/sexps.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/contrib/rqjava/src/com/dhsdevelopments/rqjava/sexps.kt -------------------------------------------------------------------------------- /contrib/rqjava/src/com/dhsdevelopments/rqjava/utils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/contrib/rqjava/src/com/dhsdevelopments/rqjava/utils.kt -------------------------------------------------------------------------------- /deploy/.gitignore: -------------------------------------------------------------------------------- 1 | ansible-ssh-key* 2 | -------------------------------------------------------------------------------- /deploy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/deploy/README.md -------------------------------------------------------------------------------- /deploy/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/deploy/ansible.cfg -------------------------------------------------------------------------------- /deploy/deploy-docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/deploy/deploy-docker.yml -------------------------------------------------------------------------------- /deploy/group_vars/production.yml: -------------------------------------------------------------------------------- 1 | --- -------------------------------------------------------------------------------- /deploy/inventory/mxproduction.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/deploy/inventory/mxproduction.ini -------------------------------------------------------------------------------- /deploy/roles/base-ubuntu/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/deploy/roles/base-ubuntu/defaults/main.yml -------------------------------------------------------------------------------- /deploy/roles/base-ubuntu/files/environment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/deploy/roles/base-ubuntu/files/environment -------------------------------------------------------------------------------- /deploy/roles/base-ubuntu/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/deploy/roles/base-ubuntu/tasks/main.yml -------------------------------------------------------------------------------- /deploy/roles/docker/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/deploy/roles/docker/tasks/main.yml -------------------------------------------------------------------------------- /deploy/roles/haproxy/handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/deploy/roles/haproxy/handlers/main.yml -------------------------------------------------------------------------------- /deploy/roles/haproxy/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/deploy/roles/haproxy/tasks/main.yml -------------------------------------------------------------------------------- /deploy/roles/haproxy/templates/haproxy.cfg.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/deploy/roles/haproxy/templates/haproxy.cfg.j2 -------------------------------------------------------------------------------- /docs/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/docs/INSTALL.md -------------------------------------------------------------------------------- /potato-common.asd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/potato-common.asd -------------------------------------------------------------------------------- /potato-index.asd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/potato-index.asd -------------------------------------------------------------------------------- /potato-sso.asd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/potato-sso.asd -------------------------------------------------------------------------------- /potato-tests.asd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/potato-tests.asd -------------------------------------------------------------------------------- /potato.asd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/potato.asd -------------------------------------------------------------------------------- /potato.cfg.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/potato.cfg.template -------------------------------------------------------------------------------- /public/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server-config2.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/server-config2.lisp -------------------------------------------------------------------------------- /setup-dev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/setup-dev.sh -------------------------------------------------------------------------------- /src/common/application.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/common/application.lisp -------------------------------------------------------------------------------- /src/common/chars.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/common/chars.lisp -------------------------------------------------------------------------------- /src/common/common-db.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/common/common-db.lisp -------------------------------------------------------------------------------- /src/common/common.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/common/common.lisp -------------------------------------------------------------------------------- /src/common/file.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/common/file.lisp -------------------------------------------------------------------------------- /src/common/format-message.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/common/format-message.lisp -------------------------------------------------------------------------------- /src/common/fset-map.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/common/fset-map.lisp -------------------------------------------------------------------------------- /src/common/log.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/common/log.lisp -------------------------------------------------------------------------------- /src/common/memcached.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/common/memcached.lisp -------------------------------------------------------------------------------- /src/common/msgl-queue.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/common/msgl-queue.lisp -------------------------------------------------------------------------------- /src/common/package.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/common/package.lisp -------------------------------------------------------------------------------- /src/common/rabbitmq.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/common/rabbitmq.lisp -------------------------------------------------------------------------------- /src/common/s3-util.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/common/s3-util.lisp -------------------------------------------------------------------------------- /src/common/sorted-list.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/common/sorted-list.lisp -------------------------------------------------------------------------------- /src/common/timer.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/common/timer.lisp -------------------------------------------------------------------------------- /src/index/package.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/index/package.lisp -------------------------------------------------------------------------------- /src/index/potato-index.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/index/potato-index.lisp -------------------------------------------------------------------------------- /src/potato/admin.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/potato/admin.lisp -------------------------------------------------------------------------------- /src/potato/api-android.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/potato/api-android.lisp -------------------------------------------------------------------------------- /src/potato/api.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/potato/api.lisp -------------------------------------------------------------------------------- /src/potato/build-id.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/potato/build-id.lisp -------------------------------------------------------------------------------- /src/potato/channel-nickname.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/potato/channel-nickname.lisp -------------------------------------------------------------------------------- /src/potato/channel-web.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/potato/channel-web.lisp -------------------------------------------------------------------------------- /src/potato/channel.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/potato/channel.lisp -------------------------------------------------------------------------------- /src/potato/chat-server.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/potato/chat-server.lisp -------------------------------------------------------------------------------- /src/potato/cmd-giphy.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/potato/cmd-giphy.lisp -------------------------------------------------------------------------------- /src/potato/commands.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/potato/commands.lisp -------------------------------------------------------------------------------- /src/potato/content-processor.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/potato/content-processor.lisp -------------------------------------------------------------------------------- /src/potato/db-fixes.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/potato/db-fixes.lisp -------------------------------------------------------------------------------- /src/potato/db.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/potato/db.lisp -------------------------------------------------------------------------------- /src/potato/domain-nickname.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/potato/domain-nickname.lisp -------------------------------------------------------------------------------- /src/potato/domain-web.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/potato/domain-web.lisp -------------------------------------------------------------------------------- /src/potato/domain-welcome-web.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/potato/domain-welcome-web.lisp -------------------------------------------------------------------------------- /src/potato/domain.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/potato/domain.lisp -------------------------------------------------------------------------------- /src/potato/email.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/potato/email.lisp -------------------------------------------------------------------------------- /src/potato/gcm.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/potato/gcm.lisp -------------------------------------------------------------------------------- /src/potato/github-processor.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/potato/github-processor.lisp -------------------------------------------------------------------------------- /src/potato/group.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/potato/group.lisp -------------------------------------------------------------------------------- /src/potato/image-convert.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/potato/image-convert.lisp -------------------------------------------------------------------------------- /src/potato/login.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/potato/login.lisp -------------------------------------------------------------------------------- /src/potato/message-update.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/potato/message-update.lisp -------------------------------------------------------------------------------- /src/potato/message.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/potato/message.lisp -------------------------------------------------------------------------------- /src/potato/metaclasses.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/potato/metaclasses.lisp -------------------------------------------------------------------------------- /src/potato/misc-core.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/potato/misc-core.lisp -------------------------------------------------------------------------------- /src/potato/misc.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/potato/misc.lisp -------------------------------------------------------------------------------- /src/potato/notification-keywords.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/potato/notification-keywords.lisp -------------------------------------------------------------------------------- /src/potato/notifications.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/potato/notifications.lisp -------------------------------------------------------------------------------- /src/potato/oauth-north.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/potato/oauth-north.lisp -------------------------------------------------------------------------------- /src/potato/package.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/potato/package.lisp -------------------------------------------------------------------------------- /src/potato/ping-sender.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/potato/ping-sender.lisp -------------------------------------------------------------------------------- /src/potato/potato-main.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/potato/potato-main.lisp -------------------------------------------------------------------------------- /src/potato/private-web.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/potato/private-web.lisp -------------------------------------------------------------------------------- /src/potato/private.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/potato/private.lisp -------------------------------------------------------------------------------- /src/potato/rabbitmq-channels.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/potato/rabbitmq-channels.lisp -------------------------------------------------------------------------------- /src/potato/rabbitmq-notifications.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/potato/rabbitmq-notifications.lisp -------------------------------------------------------------------------------- /src/potato/register.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/potato/register.lisp -------------------------------------------------------------------------------- /src/potato/register2.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/potato/register2.lisp -------------------------------------------------------------------------------- /src/potato/search.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/potato/search.lisp -------------------------------------------------------------------------------- /src/potato/serialiser.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/potato/serialiser.lisp -------------------------------------------------------------------------------- /src/potato/session-notification.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/potato/session-notification.lisp -------------------------------------------------------------------------------- /src/potato/session.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/potato/session.lisp -------------------------------------------------------------------------------- /src/potato/settings.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/potato/settings.lisp -------------------------------------------------------------------------------- /src/potato/slashcommand.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/potato/slashcommand.lisp -------------------------------------------------------------------------------- /src/potato/spotify-processor.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/potato/spotify-processor.lisp -------------------------------------------------------------------------------- /src/potato/typing.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/potato/typing.lisp -------------------------------------------------------------------------------- /src/potato/upload-plain.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/potato/upload-plain.lisp -------------------------------------------------------------------------------- /src/potato/upload.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/potato/upload.lisp -------------------------------------------------------------------------------- /src/potato/user-display-config.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/potato/user-display-config.lisp -------------------------------------------------------------------------------- /src/potato/user-image.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/potato/user-image.lisp -------------------------------------------------------------------------------- /src/potato/user-notification-web.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/potato/user-notification-web.lisp -------------------------------------------------------------------------------- /src/potato/user-notification.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/potato/user-notification.lisp -------------------------------------------------------------------------------- /src/potato/user-state.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/potato/user-state.lisp -------------------------------------------------------------------------------- /src/potato/user.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/potato/user.lisp -------------------------------------------------------------------------------- /src/potato/userlist-web.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/potato/userlist-web.lisp -------------------------------------------------------------------------------- /src/potato/usocket.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/potato/usocket.lisp -------------------------------------------------------------------------------- /src/potato/views.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/potato/views.lisp -------------------------------------------------------------------------------- /src/potato/web.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/potato/web.lisp -------------------------------------------------------------------------------- /src/potato/wikipedia-processor.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/potato/wikipedia-processor.lisp -------------------------------------------------------------------------------- /src/potato/workflow.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/potato/workflow.lisp -------------------------------------------------------------------------------- /src/potato/ws-server.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/potato/ws-server.lisp -------------------------------------------------------------------------------- /src/potato/xkcd-processor.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/potato/xkcd-processor.lisp -------------------------------------------------------------------------------- /src/potato/youtube-processor.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/potato/youtube-processor.lisp -------------------------------------------------------------------------------- /src/sso/package.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/sso/package.lisp -------------------------------------------------------------------------------- /src/sso/regblock.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/sso/regblock.lisp -------------------------------------------------------------------------------- /src/sso/sso.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/sso/sso.lisp -------------------------------------------------------------------------------- /src/state-server/id-gen.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/state-server/id-gen.lisp -------------------------------------------------------------------------------- /src/state-server/package.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/state-server/package.lisp -------------------------------------------------------------------------------- /src/state-server/state-server.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/state-server/state-server.lisp -------------------------------------------------------------------------------- /src/template/activation_email_sent.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/template/activation_email_sent.tmpl -------------------------------------------------------------------------------- /src/template/activation_helper.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/template/activation_helper.tmpl -------------------------------------------------------------------------------- /src/template/admin.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/template/admin.tmpl -------------------------------------------------------------------------------- /src/template/channel.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/template/channel.tmpl -------------------------------------------------------------------------------- /src/template/channels.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/template/channels.tmpl -------------------------------------------------------------------------------- /src/template/common_meta.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/template/common_meta.tmpl -------------------------------------------------------------------------------- /src/template/common_script.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/template/common_script.tmpl -------------------------------------------------------------------------------- /src/template/domain-create.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/template/domain-create.tmpl -------------------------------------------------------------------------------- /src/template/domain-invite.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/template/domain-invite.tmpl -------------------------------------------------------------------------------- /src/template/domain-main.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/template/domain-main.tmpl -------------------------------------------------------------------------------- /src/template/domain_list.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/template/domain_list.tmpl -------------------------------------------------------------------------------- /src/template/downloads.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/template/downloads.tmpl -------------------------------------------------------------------------------- /src/template/forgot-password.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/template/forgot-password.tmpl -------------------------------------------------------------------------------- /src/template/giphy-data.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/template/giphy-data.tmpl -------------------------------------------------------------------------------- /src/template/github-data.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/template/github-data.tmpl -------------------------------------------------------------------------------- /src/template/landing.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/template/landing.tmpl -------------------------------------------------------------------------------- /src/template/login.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/template/login.tmpl -------------------------------------------------------------------------------- /src/template/main-loggedin.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/template/main-loggedin.tmpl -------------------------------------------------------------------------------- /src/template/main.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/template/main.tmpl -------------------------------------------------------------------------------- /src/template/mathjax.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/template/mathjax.tmpl -------------------------------------------------------------------------------- /src/template/menu.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/template/menu.tmpl -------------------------------------------------------------------------------- /src/template/new_messages_email.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/template/new_messages_email.tmpl -------------------------------------------------------------------------------- /src/template/oauth-authorise.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/template/oauth-authorise.tmpl -------------------------------------------------------------------------------- /src/template/potato_footer.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/template/potato_footer.tmpl -------------------------------------------------------------------------------- /src/template/potato_header.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/template/potato_header.tmpl -------------------------------------------------------------------------------- /src/template/private_message.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/template/private_message.tmpl -------------------------------------------------------------------------------- /src/template/private_test.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/template/private_test.tmpl -------------------------------------------------------------------------------- /src/template/redirect.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/template/redirect.tmpl -------------------------------------------------------------------------------- /src/template/register.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/template/register.tmpl -------------------------------------------------------------------------------- /src/template/register2.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/template/register2.tmpl -------------------------------------------------------------------------------- /src/template/register2_loginkey.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/template/register2_loginkey.tmpl -------------------------------------------------------------------------------- /src/template/settings.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/template/settings.tmpl -------------------------------------------------------------------------------- /src/template/update-password.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/template/update-password.tmpl -------------------------------------------------------------------------------- /src/template/user_activated_notification.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/template/user_activated_notification.tmpl -------------------------------------------------------------------------------- /src/template/user_not_activated.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/template/user_not_activated.tmpl -------------------------------------------------------------------------------- /src/template/wikipedia-data.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/template/wikipedia-data.tmpl -------------------------------------------------------------------------------- /src/template/xkcd-data.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/template/xkcd-data.tmpl -------------------------------------------------------------------------------- /src/template/youtube-data.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/template/youtube-data.tmpl -------------------------------------------------------------------------------- /src/tests/channel-tests.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/tests/channel-tests.lisp -------------------------------------------------------------------------------- /src/tests/common-string-tests.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/tests/common-string-tests.lisp -------------------------------------------------------------------------------- /src/tests/db-tests.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/tests/db-tests.lisp -------------------------------------------------------------------------------- /src/tests/domain-tests.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/tests/domain-tests.lisp -------------------------------------------------------------------------------- /src/tests/message-tests.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/tests/message-tests.lisp -------------------------------------------------------------------------------- /src/tests/msgl-tests.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/tests/msgl-tests.lisp -------------------------------------------------------------------------------- /src/tests/notifications-tests.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/tests/notifications-tests.lisp -------------------------------------------------------------------------------- /src/tests/package.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/tests/package.lisp -------------------------------------------------------------------------------- /src/tests/potato-tests.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/tests/potato-tests.lisp -------------------------------------------------------------------------------- /src/tests/private-tests.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/tests/private-tests.lisp -------------------------------------------------------------------------------- /src/tests/state-server-tests.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/tests/state-server-tests.lisp -------------------------------------------------------------------------------- /src/tests/timer-tests.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/tests/timer-tests.lisp -------------------------------------------------------------------------------- /src/tests/user-tests.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/tests/user-tests.lisp -------------------------------------------------------------------------------- /src/tests/workflow-tests.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/src/tests/workflow-tests.lisp -------------------------------------------------------------------------------- /state-server.asd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/state-server.asd -------------------------------------------------------------------------------- /tools/build_binary.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/tools/build_binary.sh -------------------------------------------------------------------------------- /tools/build_binary_sso.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/tools/build_binary_sso.sh -------------------------------------------------------------------------------- /tools/update_submodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/tools/update_submodules -------------------------------------------------------------------------------- /web-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/web-app/.gitignore -------------------------------------------------------------------------------- /web-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/web-app/README.md -------------------------------------------------------------------------------- /web-app/admin/cljs/potato/admin/channels.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/web-app/admin/cljs/potato/admin/channels.cljs -------------------------------------------------------------------------------- /web-app/admin/cljs/potato/admin/core.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/web-app/admin/cljs/potato/admin/core.cljs -------------------------------------------------------------------------------- /web-app/admin/cljs/potato/admin/groupedit.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/web-app/admin/cljs/potato/admin/groupedit.cljs -------------------------------------------------------------------------------- /web-app/env/admin-dev/cljs/potato/admin.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/web-app/env/admin-dev/cljs/potato/admin.cljs -------------------------------------------------------------------------------- /web-app/env/admin-prod/cljs/potato/admin.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/web-app/env/admin-prod/cljs/potato/admin.cljs -------------------------------------------------------------------------------- /web-app/env/dev/cljs/potato/main.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/web-app/env/dev/cljs/potato/main.cljs -------------------------------------------------------------------------------- /web-app/env/dev/repl.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/web-app/env/dev/repl.clj -------------------------------------------------------------------------------- /web-app/env/prod/cljs/potato/main.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/web-app/env/prod/cljs/potato/main.cljs -------------------------------------------------------------------------------- /web-app/env/test/cljs/potato/core-test.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/web-app/env/test/cljs/potato/core-test.cljs -------------------------------------------------------------------------------- /web-app/env/test/cljs/potato/main.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/web-app/env/test/cljs/potato/main.cljs -------------------------------------------------------------------------------- /web-app/make-css.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/web-app/make-css.sh -------------------------------------------------------------------------------- /web-app/make-fonts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/web-app/make-fonts.sh -------------------------------------------------------------------------------- /web-app/make-html.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/web-app/make-html.sh -------------------------------------------------------------------------------- /web-app/make-img.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/web-app/make-img.sh -------------------------------------------------------------------------------- /web-app/make-vendor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/web-app/make-vendor.sh -------------------------------------------------------------------------------- /web-app/make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/web-app/make.sh -------------------------------------------------------------------------------- /web-app/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/web-app/project.clj -------------------------------------------------------------------------------- /web-app/src/cljs/externs-input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/web-app/src/cljs/externs-input.js -------------------------------------------------------------------------------- /web-app/src/cljs/potato/core.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/web-app/src/cljs/potato/core.cljs -------------------------------------------------------------------------------- /web-app/src/cljs/potato/emoji.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/web-app/src/cljs/potato/emoji.cljs -------------------------------------------------------------------------------- /web-app/src/cljs/potato/eventsource2.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/web-app/src/cljs/potato/eventsource2.cljs -------------------------------------------------------------------------------- /web-app/src/cljs/potato/fineuploader.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/web-app/src/cljs/potato/fineuploader.cljs -------------------------------------------------------------------------------- /web-app/src/cljs/potato/keyboard.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/web-app/src/cljs/potato/keyboard.cljs -------------------------------------------------------------------------------- /web-app/src/cljs/potato/levenshtein.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/web-app/src/cljs/potato/levenshtein.cljs -------------------------------------------------------------------------------- /web-app/src/cljs/potato/mathjax.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/web-app/src/cljs/potato/mathjax.cljs -------------------------------------------------------------------------------- /web-app/src/cljs/potato/preferences.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/web-app/src/cljs/potato/preferences.cljs -------------------------------------------------------------------------------- /web-app/src/cljs/potato/search.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/web-app/src/cljs/potato/search.cljs -------------------------------------------------------------------------------- /web-app/src/cljs/potato/state.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/web-app/src/cljs/potato/state.cljs -------------------------------------------------------------------------------- /web-app/src/cljs/potato/urls.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/web-app/src/cljs/potato/urls.cljs -------------------------------------------------------------------------------- /web-app/src/css/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/web-app/src/css/build.sh -------------------------------------------------------------------------------- /web-app/src/css/channel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/web-app/src/css/channel.scss -------------------------------------------------------------------------------- /web-app/src/css/channel/emoji.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/web-app/src/css/channel/emoji.scss -------------------------------------------------------------------------------- /web-app/src/css/channel/entry.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/web-app/src/css/channel/entry.scss -------------------------------------------------------------------------------- /web-app/src/css/channel/header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/web-app/src/css/channel/header.scss -------------------------------------------------------------------------------- /web-app/src/css/channel/history.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/web-app/src/css/channel/history.scss -------------------------------------------------------------------------------- /web-app/src/css/channel/input.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/web-app/src/css/channel/input.scss -------------------------------------------------------------------------------- /web-app/src/css/channel/left-nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/web-app/src/css/channel/left-nav.scss -------------------------------------------------------------------------------- /web-app/src/css/channel/toolbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/web-app/src/css/channel/toolbar.scss -------------------------------------------------------------------------------- /web-app/src/css/downloads.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/web-app/src/css/downloads.scss -------------------------------------------------------------------------------- /web-app/src/css/dropit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/web-app/src/css/dropit.css -------------------------------------------------------------------------------- /web-app/src/css/include/animations.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/web-app/src/css/include/animations.scss -------------------------------------------------------------------------------- /web-app/src/css/include/atwho.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/web-app/src/css/include/atwho.scss -------------------------------------------------------------------------------- /web-app/src/css/include/font-awe.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/web-app/src/css/include/font-awe.scss -------------------------------------------------------------------------------- /web-app/src/css/include/font-ssp.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/web-app/src/css/include/font-ssp.scss -------------------------------------------------------------------------------- /web-app/src/css/include/font-symb.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/web-app/src/css/include/font-symb.scss -------------------------------------------------------------------------------- /web-app/src/css/include/fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/web-app/src/css/include/fonts.scss -------------------------------------------------------------------------------- /web-app/src/css/include/footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/web-app/src/css/include/footer.scss -------------------------------------------------------------------------------- /web-app/src/css/include/header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/web-app/src/css/include/header.scss -------------------------------------------------------------------------------- /web-app/src/css/include/mobile.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/web-app/src/css/include/mobile.scss -------------------------------------------------------------------------------- /web-app/src/css/include/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/web-app/src/css/include/normalize.css -------------------------------------------------------------------------------- /web-app/src/css/include/noscript.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/web-app/src/css/include/noscript.scss -------------------------------------------------------------------------------- /web-app/src/css/include/potato.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/web-app/src/css/include/potato.scss -------------------------------------------------------------------------------- /web-app/src/css/landing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/web-app/src/css/landing.scss -------------------------------------------------------------------------------- /web-app/src/css/login.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/web-app/src/css/login.scss -------------------------------------------------------------------------------- /web-app/src/css/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/web-app/src/css/main.scss -------------------------------------------------------------------------------- /web-app/src/css/themes/colours-2016.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/web-app/src/css/themes/colours-2016.scss -------------------------------------------------------------------------------- /web-app/src/css/user/preferences.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/web-app/src/css/user/preferences.scss -------------------------------------------------------------------------------- /web-app/src/html/mathjax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/web-app/src/html/mathjax.html -------------------------------------------------------------------------------- /web-app/src/html/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/web-app/src/html/test.html -------------------------------------------------------------------------------- /web-app/src/images/8bcLQqF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/web-app/src/images/8bcLQqF.png -------------------------------------------------------------------------------- /web-app/src/images/apple_sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/web-app/src/images/apple_sprite.png -------------------------------------------------------------------------------- /web-app/src/images/apple_sprite@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/web-app/src/images/apple_sprite@2x.png -------------------------------------------------------------------------------- /web-app/src/images/emojis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/web-app/src/images/emojis.png -------------------------------------------------------------------------------- /web-app/src/images/landing-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/web-app/src/images/landing-full.png -------------------------------------------------------------------------------- /web-app/src/images/potato.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/web-app/src/images/potato.png -------------------------------------------------------------------------------- /web-app/src/images/potatochips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/web-app/src/images/potatochips.png -------------------------------------------------------------------------------- /web-app/src/images/potatochips2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/web-app/src/images/potatochips2.png -------------------------------------------------------------------------------- /web-app/src/images/users/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/web-app/src/images/users/1.png -------------------------------------------------------------------------------- /web-app/src/images/users/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/web-app/src/images/users/2.png -------------------------------------------------------------------------------- /web-app/src/images/users/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/web-app/src/images/users/3.png -------------------------------------------------------------------------------- /web-app/src/images/users/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/web-app/src/images/users/4.png -------------------------------------------------------------------------------- /web-app/src/images/users/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/web-app/src/images/users/5.png -------------------------------------------------------------------------------- /web-app/src/images/users/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/web-app/src/images/users/6.png -------------------------------------------------------------------------------- /web-app/src/images/users/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/web-app/src/images/users/7.png -------------------------------------------------------------------------------- /web-app/src/vendor/fine-uploader.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/web-app/src/vendor/fine-uploader.min.js -------------------------------------------------------------------------------- /web-app/src/vendor/s3.fineuploader.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cicakhq/potato/HEAD/web-app/src/vendor/s3.fineuploader.min.js --------------------------------------------------------------------------------